forked from ethereumjs/ethereumjs-devp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.ts
215 lines (191 loc) · 6.23 KB
/
server.ts
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
import { EventEmitter } from 'events'
import * as dgram from 'dgram'
import ms from 'ms'
import { debug as createDebugLogger } from 'debug'
import LRUCache from 'lru-cache'
import { encode, decode } from './message'
import { keccak256, pk2id, createDeferred } from '../util'
import { DPT } from './dpt'
import { Socket as DgramSocket, RemoteInfo } from 'dgram'
import { PeerInfo } from './message'
const debug = createDebugLogger('devp2p:dpt:server')
const VERSION = 0x04
export interface DptServerOptions {
timeout?: number
endpoint?: PeerInfo
createSocket?: Function
}
export class Server extends EventEmitter {
_dpt: DPT
_privateKey: Buffer
_timeout: number
_endpoint: PeerInfo
_requests: Map<string, any>
_parityRequestMap: Map<string, string>
_requestsCache: LRUCache<string, Promise<any>>
_socket: DgramSocket | null
constructor(dpt: DPT, privateKey: Buffer, options: DptServerOptions) {
super()
this._dpt = dpt
this._privateKey = privateKey
this._timeout = options.timeout || ms('10s')
this._endpoint = options.endpoint || { address: '0.0.0.0', udpPort: null, tcpPort: null }
this._requests = new Map()
this._parityRequestMap = new Map()
this._requestsCache = new LRUCache({ max: 1000, maxAge: ms('1s'), stale: false })
const createSocket = options.createSocket || dgram.createSocket.bind(null, { type: 'udp4' })
this._socket = createSocket()
if (this._socket) {
this._socket.once('listening', () => this.emit('listening'))
this._socket.once('close', () => this.emit('close'))
this._socket.on('error', err => this.emit('error', err))
this._socket.on('message', (msg: Buffer, rinfo: RemoteInfo) => {
try {
this._handler(msg, rinfo)
} catch (err) {
this.emit('error', err)
}
})
}
}
bind(...args: any[]) {
this._isAliveCheck()
debug('call .bind')
if (this._socket) this._socket.bind(...args)
}
destroy(...args: any[]) {
this._isAliveCheck()
debug('call .destroy')
if (this._socket) {
this._socket.close(...args)
this._socket = null
}
}
async ping(peer: PeerInfo): Promise<any> {
this._isAliveCheck()
const rckey = `${peer.address}:${peer.udpPort}`
const promise = this._requestsCache.get(rckey)
if (promise !== undefined) return promise
const hash = this._send(peer, 'ping', {
version: VERSION,
from: this._endpoint,
to: peer,
})
const deferred = createDeferred()
const rkey = hash.toString('hex')
this._requests.set(rkey, {
peer,
deferred,
timeoutId: setTimeout(() => {
if (this._requests.get(rkey) !== undefined) {
debug(
`ping timeout: ${peer.address}:${peer.udpPort} ${peer.id && peer.id.toString('hex')}`,
)
this._requests.delete(rkey)
deferred.reject(new Error(`Timeout error: ping ${peer.address}:${peer.udpPort}`))
} else {
return deferred.promise
}
}, this._timeout),
})
this._requestsCache.set(rckey, deferred.promise)
return deferred.promise
}
findneighbours(peer: PeerInfo, id: Buffer) {
this._isAliveCheck()
this._send(peer, 'findneighbours', { id })
}
_isAliveCheck() {
if (this._socket === null) throw new Error('Server already destroyed')
}
_send(peer: PeerInfo, typename: string, data: any) {
debug(
`send ${typename} to ${peer.address}:${peer.udpPort} (peerId: ${peer.id &&
peer.id.toString('hex')})`,
)
const msg = encode(typename, data, this._privateKey)
// Parity hack
// There is a bug in Parity up to at lease 1.8.10 not echoing the hash from
// discovery spec (hash: sha3(signature || packet-type || packet-data))
// but just hashing the RLP-encoded packet data (see discovery.rs, on_ping())
// 2018-02-28
if (typename === 'ping') {
const rkeyParity = keccak256(msg.slice(98)).toString('hex')
this._parityRequestMap.set(rkeyParity, msg.slice(0, 32).toString('hex'))
setTimeout(() => {
if (this._parityRequestMap.get(rkeyParity) !== undefined) {
this._parityRequestMap.delete(rkeyParity)
}
}, this._timeout)
}
if (this._socket && peer.udpPort)
this._socket.send(msg, 0, msg.length, peer.udpPort, peer.address)
return msg.slice(0, 32) // message id
}
_handler(msg: Buffer, rinfo: RemoteInfo) {
const info = decode(msg)
const peerId = pk2id(info.publicKey)
debug(
`received ${info.typename} from ${rinfo.address}:${rinfo.port} (peerId: ${peerId.toString(
'hex',
)})`,
)
// add peer if not in our table
const peer = this._dpt.getPeer(peerId)
if (peer === null && info.typename === 'ping' && info.data.from.udpPort !== null) {
setTimeout(() => this.emit('peers', [info.data.from]), ms('100ms'))
}
switch (info.typename) {
case 'ping': {
const remote: PeerInfo = {
id: peerId,
udpPort: rinfo.port,
address: rinfo.address,
}
this._send(remote, 'pong', {
to: {
address: rinfo.address,
udpPort: rinfo.port,
tcpPort: info.data.from.tcpPort,
},
hash: msg.slice(0, 32),
})
break
}
case 'pong': {
let rkey = info.data.hash.toString('hex')
const rkeyParity = this._parityRequestMap.get(rkey)
if (rkeyParity) {
rkey = rkeyParity
this._parityRequestMap.delete(rkeyParity)
}
const request = this._requests.get(rkey)
if (request) {
this._requests.delete(rkey)
request.deferred.resolve({
id: peerId,
address: request.peer.address,
udpPort: request.peer.udpPort,
tcpPort: request.peer.tcpPort,
})
}
break
}
case 'findneighbours': {
const remote: PeerInfo = {
id: peerId,
udpPort: rinfo.port,
address: rinfo.address,
}
this._send(remote, 'neighbours', {
peers: this._dpt.getClosestPeers(info.data.id),
})
break
}
case 'neighbours': {
this.emit('peers', info.data.peers.map((peer: any) => peer.endpoint))
break
}
}
}
}