-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
135 lines (108 loc) · 2.95 KB
/
index.js
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
const { once } = require('events')
const net = require('net')
const ReadyResource = require('ready-resource')
const HyperDHT = require('hyperdht')
const { connPiper } = require('hyper-cmd-lib-net')
const b4a = require('b4a')
class ProxyServer extends ReadyResource {
constructor (seed, port, host, { keepAlive = 5000, bootstrap = null }) {
super()
this.dht = new HyperDHT(
{ bootstrap, connectionKeepAlive: keepAlive, seed }
)
const firewall = (remotePublicKey, payload, address) => {
const shouldBlock = !b4a.equals(
remotePublicKey,
this.dht.defaultKeyPair.publicKey
)
if (shouldBlock) {
this.emit('firewall-block', { remotePublicKey, payload, address })
}
return shouldBlock
}
this.connectionCounter = 0
const connHandler = (socket) => {
connPiper(
socket,
() => {
const id = this.connectionCounter++
const remotePublicKey = socket.remotePublicKey
this.emit('connection', { id, remotePublicKey })
socket.once('close', () => {
this.emit('connection-close', { id, remotePublicKey })
})
return net.connect({ port, host, allowHalfOpen: true })
},
{ isServer: true }
)
}
this.server = this.dht.createServer(
{ firewall, reusableSocket: true }, connHandler
)
}
async _open () {
await this.server.listen()
}
get address () {
return this.server.address()
}
}
class ProxyClient extends ReadyResource {
constructor (seed, port, host, { bootstrap = null, keepAlive = 5000 } = {}) {
super()
this.port = port
this.host = host
this.dht = new HyperDHT(
{ bootstrap, connectionKeepAlive: keepAlive, seed }
)
this.connectionCounter = 0
const connHandler = (socket) => {
const id = this.connectionCounter++
const remoteAddress = socket.remoteAddress
const remotePort = socket.remotePort
this.emit('connection', {
remoteAddress,
remotePort,
id
})
socket.on('close', () => {
this.emit('connection-close', {
remoteAddress,
remotePort,
id
})
})
return connPiper(
socket,
() => {
const stream = this.dht.connect(
b4a.from(this.dht.defaultKeyPair.publicKey, 'hex'),
{ reusableSocket: true }
)
return stream
}
)
}
this.proxy = net.createServer(
{ allowHalfOpen: true },
connHandler
)
}
async _open () {
const listenProm = once(this.proxy, 'listening')
this.proxy.listen(this.port, this.host)
await listenProm
}
async _close () {
this.proxy.close()
await once(this.proxy, 'close')
await this.dht.destroy()
}
get publicKey () {
return this.dht.defaultKeyPair.publicKey
}
get address () {
return this.proxy.address()
}
}
module.exports = { ProxyServer, ProxyClient }