forked from ethereum/node-crawler
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcrawlercmd.go
252 lines (219 loc) · 6.02 KB
/
crawlercmd.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
// Copyright 2021 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"database/sql"
"os"
"sync"
"time"
_ "github.com/mattn/go-sqlite3"
"github.com/oschwald/geoip2-golang"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/p2p/enode"
"gopkg.in/urfave/cli.v1"
)
var (
crawlerCommand = cli.Command{
Name: "crawl",
Usage: "Crawl the ethereum network",
ArgsUsage: "<nodefile>",
Action: crawlNodes,
Flags: []cli.Flag{
utils.MainnetFlag,
utils.RopstenFlag,
utils.RinkebyFlag,
utils.GoerliFlag,
utils.NetworkIdFlag,
bootnodesFlag,
nodeURLFlag,
nodeFileFlag,
timeoutFlag,
tableNameFlag,
listenAddrFlag,
nodekeyFlag,
nodedbFlag,
geoipdbFlag,
},
}
bootnodesFlag = cli.StringFlag{
Name: "bootnodes",
Usage: "Comma separated nodes used for bootstrapping",
}
nodeURLFlag = cli.StringFlag{
Name: "nodeURL",
Usage: "URL of the node you want to connect to",
// Value: "http://localhost:8545",
}
nodeFileFlag = cli.StringFlag{
Name: "nodefile",
Usage: "Path to a node file containing nodes to be crawled",
}
timeoutFlag = cli.DurationFlag{
Name: "timeout",
Usage: "Timeout for the crawling in a round",
Value: 5 * time.Minute,
}
tableNameFlag = cli.StringFlag{
Name: "table",
Usage: "Name of the sqlite table",
}
listenAddrFlag = cli.StringFlag{
Name: "addr",
Usage: "Listening address",
}
nodekeyFlag = cli.StringFlag{
Name: "nodekey",
Usage: "Hex-encoded node key",
}
nodedbFlag = cli.StringFlag{
Name: "nodedb",
Usage: "Nodes database location",
}
geoipdbFlag = cli.StringFlag{
Name: "geoipdb",
Usage: "geoip2 database location",
}
)
func crawlNodes(ctx *cli.Context) error {
var inputSet nodeSet
var geoipDB *geoip2.Reader
nodesFile := ctx.String(nodeFileFlag.Name)
if nodesFile != "" && common.FileExist(nodesFile) {
inputSet = loadNodesJSON(nodesFile)
}
var db *sql.DB
if ctx.IsSet(tableNameFlag.Name) {
name := ctx.String(tableNameFlag.Name)
shouldInit := false
if _, err := os.Stat(name); os.IsNotExist(err) {
shouldInit = true
}
var err error
if db, err = sql.Open("sqlite3", name); err != nil {
panic(err)
}
log.Info("Connected to db")
if shouldInit {
log.Info("DB did not exist, init")
if err := createDB(db); err != nil {
panic(err)
}
}
}
timeout := ctx.Duration(timeoutFlag.Name)
nodeDB, err := enode.OpenDB(ctx.String(nodedbFlag.Name))
if err != nil {
panic(err)
}
if geoipFile := ctx.String(geoipdbFlag.Name); geoipFile != "" {
geoipDB, err = geoip2.Open(geoipFile)
if err != nil {
return err
}
defer func() { _ = geoipDB.Close() }()
}
for {
inputSet = crawlRound(ctx, inputSet, db, geoipDB, nodeDB, timeout)
if nodesFile != "" {
writeNodesJSON(nodesFile, inputSet)
}
}
}
func crawlRound(ctx *cli.Context, inputSet nodeSet, db *sql.DB, geoipDB *geoip2.Reader, nodeDB *enode.DB, timeout time.Duration) nodeSet {
var v4, v5 nodeSet
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
v5 = discv5(ctx, nodeDB, inputSet, timeout)
log.Info("DiscV5", "nodes", len(v5.nodes()))
}()
wg.Add(1)
go func() {
defer wg.Done()
v4 = discv4(ctx, nodeDB, inputSet, timeout)
log.Info("DiscV4", "nodes", len(v4.nodes()))
}()
wg.Wait()
output := make(nodeSet, len(v5)+len(v4))
for _, n := range v5 {
output[n.N.ID()] = n
}
for _, n := range v4 {
output[n.N.ID()] = n
}
var nodes []nodeJSON
for _, node := range output {
nodes = append(nodes, node)
}
// Write the node info to influx
if db != nil {
if err := updateNodes(db, geoipDB, nodes); err != nil {
panic(err)
}
}
return output
}
func discv5(ctx *cli.Context, db *enode.DB, inputSet nodeSet, timeout time.Duration) nodeSet {
ln, config := makeDiscoveryConfig(ctx, db)
socket := listen(ln, ctx.String(listenAddrFlag.Name))
disc, err := discover.ListenV5(socket, ln, config)
if err != nil {
panic(err)
}
defer disc.Close()
return runCrawler(ctx, disc, inputSet, timeout)
}
func discv4(ctx *cli.Context, db *enode.DB, inputSet nodeSet, timeout time.Duration) nodeSet {
ln, config := makeDiscoveryConfig(ctx, db)
socket := listen(ln, ctx.String(listenAddrFlag.Name))
disc, err := discover.ListenV4(socket, ln, config)
if err != nil {
panic(err)
}
defer disc.Close()
return runCrawler(ctx, disc, inputSet, timeout)
}
func runCrawler(ctx *cli.Context, disc resolver, inputSet nodeSet, timeout time.Duration) nodeSet {
genesis := makeGenesis(ctx)
if genesis == nil {
genesis = core.DefaultGenesisBlock()
}
networkID := ctx.Uint64(utils.NetworkIdFlag.Name)
nodeURL := ctx.String(nodeURLFlag.Name)
// Crawl the DHT for some time
c := newCrawler(genesis, networkID, nodeURL, inputSet, disc, disc.RandomNodes())
c.revalidateInterval = 10 * time.Minute
return c.run(timeout)
}
// makeGenesis is the pendant to utils.MakeGenesis
// with local flags instead of global flags.
func makeGenesis(ctx *cli.Context) *core.Genesis {
switch {
case ctx.Bool(utils.RopstenFlag.Name):
return core.DefaultRopstenGenesisBlock()
case ctx.Bool(utils.RinkebyFlag.Name):
return core.DefaultRinkebyGenesisBlock()
case ctx.Bool(utils.GoerliFlag.Name):
return core.DefaultGoerliGenesisBlock()
default:
return core.DefaultGenesisBlock()
}
}