forked from ethereum/node-crawler
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhandshake.go
213 lines (177 loc) · 5.06 KB
/
handshake.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
package main
import (
"context"
"crypto/ecdsa"
"fmt"
"math/big"
"net"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/forkid"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/enode"
"github.com/ethereum/go-ethereum/p2p/rlpx"
"github.com/ethereum/go-ethereum/params"
"github.com/pkg/errors"
)
var (
_status *Status
lastStatusUpdate time.Time
)
type clientInfo struct {
ClientType string
SoftwareVersion uint64
Capabilities []p2p.Cap
NetworkID uint64
ForkID forkid.ID
Blockheight string
TotalDifficulty *big.Int
HeadHash common.Hash
}
func getClientInfo(genesis *core.Genesis, networkID uint64, nodeURL string, n *enode.Node) (*clientInfo, error) {
var info clientInfo
conn, sk, err := dial(n)
if err != nil {
return nil, err
}
defer conn.Close()
if err = conn.SetDeadline(time.Now().Add(5 * time.Second)); err != nil {
return nil, errors.Wrap(err, "cannot set conn deadline")
}
if err = writeHello(conn, sk); err != nil {
return nil, err
}
if err = readHello(conn, &info); err != nil {
return nil, err
}
// If node provides no eth version, we can skip it.
if conn.negotiatedProtoVersion == 0 {
return &info, nil
}
if err = conn.SetDeadline(time.Now().Add(15 * time.Second)); err != nil {
return nil, errors.Wrap(err, "cannot set conn deadline")
}
s := getStatus(genesis.Config, uint32(conn.negotiatedProtoVersion), genesis.ToBlock(nil).Hash(), networkID, nodeURL)
if err = conn.Write(s); err != nil {
return nil, err
}
// Regardless of whether we wrote a status message or not, the remote side
// might still send us one.
if err = readStatus(conn, &info); err != nil {
return nil, err
}
// Disconnect from client
_ = conn.Write(Disconnect{Reason: p2p.DiscQuitting})
return &info, nil
}
// dial attempts to dial the given node and perform a handshake,
func dial(n *enode.Node) (*Conn, *ecdsa.PrivateKey, error) {
var conn Conn
// dial
fd, err := net.Dial("tcp", fmt.Sprintf("%v:%d", n.IP(), n.TCP()))
if err != nil {
return nil, nil, err
}
conn.Conn = rlpx.NewConn(fd, n.Pubkey())
if err = conn.SetDeadline(time.Now().Add(15 * time.Second)); err != nil {
return nil, nil, errors.Wrap(err, "cannot set conn deadline")
}
// do encHandshake
ourKey, _ := crypto.GenerateKey()
_, err = conn.Handshake(ourKey)
if err != nil {
return nil, nil, err
}
return &conn, ourKey, nil
}
func writeHello(conn *Conn, priv *ecdsa.PrivateKey) error {
pub0 := crypto.FromECDSAPub(&priv.PublicKey)[1:]
h := &Hello{
Version: 5,
Caps: []p2p.Cap{
{Name: "diff", Version: 1},
{Name: "eth", Version: 64},
{Name: "eth", Version: 65},
{Name: "eth", Version: 66},
{Name: "les", Version: 2},
{Name: "les", Version: 3},
{Name: "les", Version: 4},
{Name: "snap", Version: 1},
},
ID: pub0,
}
conn.ourHighestProtoVersion = 66
return conn.Write(h)
}
func readHello(conn *Conn, info *clientInfo) error {
switch msg := conn.Read().(type) {
case *Hello:
// set snappy if version is at least 5
if msg.Version >= 5 {
conn.SetSnappy(true)
}
info.Capabilities = msg.Caps
info.SoftwareVersion = msg.Version
info.ClientType = msg.Name
case *Disconnect:
return fmt.Errorf("bad hello handshake: %v", msg.Reason.Error())
case *Error:
return fmt.Errorf("bad hello handshake: %v", msg.Error())
default:
return fmt.Errorf("bad hello handshake: %v", msg.Code())
}
conn.negotiateEthProtocol(info.Capabilities)
return nil
}
func getStatus(config *params.ChainConfig, version uint32, genesis common.Hash, network uint64, nodeURL string) *Status {
if _status == nil {
_status = &Status{
ProtocolVersion: version,
NetworkID: network,
TD: big.NewInt(0),
Head: genesis,
Genesis: genesis,
ForkID: forkid.NewID(config, genesis, 0),
}
}
if nodeURL != "" && time.Since(lastStatusUpdate) > 15*time.Second {
cl, err := ethclient.Dial(nodeURL)
if err != nil {
log.Error("ethclient.Dial", "err", err)
return _status
}
header, err := cl.HeaderByNumber(context.Background(), nil)
if err != nil {
log.Error("cannot get header by number", "err", err)
return _status
}
_status.Head = header.Hash()
_status.ForkID = forkid.NewID(config, genesis, header.Number.Uint64())
}
return _status
}
func readStatus(conn *Conn, info *clientInfo) error {
switch msg := conn.Read().(type) {
case *Status:
info.ForkID = msg.ForkID
info.HeadHash = msg.Head
info.NetworkID = msg.NetworkID
// m.ProtocolVersion
info.TotalDifficulty = msg.TD
// Set correct TD if received TD is higher
if msg.TD.Cmp(_status.TD) > 0 {
_status.TD = msg.TD
}
case *Disconnect:
return fmt.Errorf("bad status handshake: %v", msg.Reason.Error())
case *Error:
return fmt.Errorf("bad status handshake: %v", msg.Error())
default:
return fmt.Errorf("bad status handshake: %v", msg.Code())
}
return nil
}