-
Notifications
You must be signed in to change notification settings - Fork 0
/
gateway.go
441 lines (347 loc) · 10.6 KB
/
gateway.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
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
package quacktors
import (
"bytes"
"errors"
"github.com/Azer0s/qpmd"
"github.com/Azer0s/quacktors/metrics"
"github.com/opentracing/opentracing-go"
"github.com/vmihailenco/msgpack/v5"
"io"
"net"
)
/*
When connecting to a remote machine, quacktors works with two TCP streams
One for messages and another one for system commands (monitor, demonitor, kill)
*/
func startMessageGateway() (uint16, error) {
return startServer(func(portChan chan int, errorChan chan error) {
logger.Info("starting message gateway")
listener, err := net.Listen("tcp", ":0")
if err != nil {
errorChan <- errors.New("couldn't start message gateway on random port")
return
}
port := listener.Addr().(*net.TCPAddr).Port
logger.Debug("started message gatway",
"port", port)
portChan <- port
for {
conn, err := listener.Accept()
if err != nil {
logger.Warn("there was an error while accepting new connection to message gateway",
"error", err)
_ = conn.Close()
continue
}
go handleMessageClient(conn)
}
})
}
func handleMessageClient(conn net.Conn) {
c := conn.RemoteAddr().String()
defer func() {
logger.Info("closing connection to message gateway",
"client", c)
err := conn.Close()
if err != nil {
logger.Warn("there was an error while closing connection to the message gateway",
"client", c,
"error", err)
return
}
}()
logger.Info("handling new message gateway connection from remote machine",
"client", c)
for {
buf := make([]byte, 4096)
n, err := conn.Read(buf)
if n == 0 || err != nil {
if errors.Is(err, io.EOF) {
logger.Info("remote machine disconnected from message gateway",
"client", c)
} else {
logger.Warn("there was an error while reading incoming message from remote machine",
"client", c,
"error", err)
}
return
}
msgData := make(map[string]interface{})
err = msgpack.Unmarshal(buf[:n], &msgData)
if err != nil {
logger.Warn("there was an error while unmarshalling incoming message from remote machine",
"client", c,
"error", err)
return
}
go func(data map[string]interface{}) {
pidId := data[toVal].(string)
toPid, ok := getByPidId(pidId)
logger.Trace("received new message from remote machine for pid on local system",
"client", c,
"pid", pidId)
if !ok {
logger.Warn("couldn't find pid id target of remote message on local system",
"client", c,
"pid", pidId)
return
}
var msg Message
val, err := decodeValue(data[typeVal].(string), data[messageVal].(map[string]interface{}))
msg, ok = val.(Message)
if err != nil || !ok {
logger.Warn("there was an error while decoding incoming message from remote machine",
"client", c,
"pid", pidId)
return
}
if d, ok := msg.(DownMessage); ok {
//if we receive a DownMessage, we can remove the link from the remote connection to the monitor
m, ok := getMachine(d.Who.MachineId)
if ok && m.connected {
m.removeRemoteMonitor(remoteMonitorTuple{
From: toPid,
To: d.Who,
})
}
}
var spanContext opentracing.SpanContext = nil
if spanCtxBytes, ok := data[spanCtx].([]byte); ok && len(spanCtxBytes) != 0 {
spanContext, _ = opentracing.GlobalTracer().Extract(opentracing.Binary, bytes.NewBuffer(spanCtxBytes))
}
metrics.RecordReceiveRemote(toPid.Id)
doSend(toPid, msg, spanContext)
}(msgData)
}
}
func startGeneralPurposeGateway() (uint16, error) {
return startServer(func(portChan chan int, errorChan chan error) {
logger.Info("starting general purpose gateway")
listener, err := net.Listen("tcp", ":0")
if err != nil {
errorChan <- errors.New("couldn't start general purpose gateway on random port")
return
}
port := listener.Addr().(*net.TCPAddr).Port
logger.Debug("started general purpose gatway",
"port", port)
portChan <- port
for {
//As soon as we accept a connection, forward a "new_connection" request to our connected machines
//If they don't have that connection, they should register it, connect to it and forward the information
//To all of their connected machines
//If they do have that connection, they should do nothing
//Then, connect back to the requestor machine
//The requestor will then forward our connection to their connected machines and propagate
conn, err := listener.Accept()
if err != nil {
logger.Warn("there was an error while accepting new connection to general purpose gateway",
"error", err)
_ = conn.Close()
continue
}
go handleGpClient(conn)
}
})
}
func handleGpClient(conn net.Conn) {
c := conn.RemoteAddr().String()
defer func() {
logger.Info("closing connection to general purpose gateway",
"client", c)
err := conn.Close()
if err != nil {
logger.Warn("there was an error while closing connection to general purpose gateway",
"client", c,
"error", err)
return
}
}()
logger.Info("handling new general purpose gateway connection from remote machine",
"client", c)
req, err := readRequest(conn)
if err != nil {
logger.Warn("there was an error while reading the initial hello request to the general purpose gateway",
"client", c,
"error", err)
return
}
ip := conn.RemoteAddr().(*net.TCPAddr).IP
//Sometimes, go wants to force us to use IPv6, but there are some weird bugs
//("too many colons in address"), so I force IPv4 instead
if ip.IsLoopback() {
ip = net.IPv4(127, 0, 0, 1)
}
m := &Machine{
MachineId: req.Data[qpmd.MACHINE_ID].(string),
Address: ip.String(),
MessageGatewayPort: req.Data[qpmd.MESSAGE_GATEWAY_PORT].(uint16),
GeneralPurposePort: req.Data[qpmd.GP_GATEWAY_PORT].(uint16),
}
err = sendResponse(conn, qpmd.Response{
ResponseType: qpmd.RESPONSE_OK,
Data: make(map[string]interface{}),
})
if err != nil {
logger.Warn("there was an error while responding to the initial hello request to the general purpose gateway",
"client", c,
"error", err)
return
}
//if this is a back-connect, skip right to handling requests
//if not, propagate the machine to all connected machines
err = propagateMachineIfNotExists(m)
if err != nil {
logger.Warn("there was an error while attempting to propagate new connection information to connected machines",
"client", c,
"error", err)
return
}
defer func() {
machine, ok := getMachine(m.MachineId)
if ok {
if machine.connected {
machine.stop()
}
}
}()
defer func() {
remoteMonitorQuitAbortablesMu.RLock()
defer remoteMonitorQuitAbortablesMu.RUnlock()
for _, abortable := range remoteMonitorQuitAbortables {
abortable.Abort()
}
}()
for {
r, err := readRequest(conn)
if err != nil {
if errors.Is(err, io.EOF) {
logger.Info("remote machine disconnected from general purpose gateway",
"client", c)
} else {
logger.Warn("there was an error while reading incoming command from remote machine",
"client", c,
"error", err)
}
return
}
go handleGpRequest(r, c)
}
}
func propagateMachineIfNotExists(m *Machine) error {
if _, ok := getMachine(m.MachineId); !ok {
err := m.connect()
if err != nil {
return err
}
registerMachine(m)
machinesMu.RLock()
defer machinesMu.RUnlock()
for _, machine := range machines {
if machine.MachineId != m.MachineId {
logger.Debug("propagating new connection information to connected machine",
"machine_id", m.MachineId)
machine.newConnectionChan <- m
}
}
}
return nil
}
func handleGpRequest(req qpmd.Request, client string) {
switch req.RequestType {
case quitMessageType:
pidId := req.Data[pidVal].(string)
p, ok := getByPidId(pidId)
logger.Debug("received quit command from remote machine for pid on local system",
"client", client,
"pid", pidId)
if !ok {
logger.Warn("couldn't find pid id target of remote kill command on local system",
"client", client,
"pid", pidId)
return
}
p.die()
case monitorMessageType:
fromPid, err := parsePid(req.Data[fromVal].(map[string]interface{}))
if err != nil {
logger.Warn("there was an error while trying to decode PID data (monitor) for monitor request from remote machine",
"client", client,
"error", err)
return
}
toPid, err := parsePid(req.Data[toVal].(map[string]interface{}))
if err != nil {
logger.Warn("there was an error while trying to decode PID data (monitored PID) for monitor request from remote machine",
"client", client,
"error", err)
return
}
p, ok := getByPidId(toPid.Id)
if !ok {
logger.Warn("couldn't find pid id target of remote monitor request on local system",
"client", client,
"pid", toPid.Id)
return
}
remoteCtx := Context{
self: fromPid,
sendLock: nil,
Logger: contextLogger{},
deferred: make([]func(), 0),
}
remoteMonitorQuitAbortablesMu.Lock()
defer remoteMonitorQuitAbortablesMu.Unlock()
//TODO: log remote monitor request
remoteMonitorQuitAbortables[fromPid.String()+"_"+p.String()] = remoteCtx.Monitor(p)
case demonitorMessageType:
fromPid, err := parsePid(req.Data[fromVal].(map[string]interface{}))
if err != nil {
logger.Warn("there was an error while trying to decode PID data (monitor) for demonitor request from remote machine",
"client", client,
"error", err)
return
}
toPid, err := parsePid(req.Data[toVal].(map[string]interface{}))
if err != nil {
logger.Warn("there was an error while trying to decode PID data (monitored PID) for demonitor request from remote machine",
"client", client,
"error", err)
return
}
remoteMonitorQuitAbortablesMu.Lock()
defer remoteMonitorQuitAbortablesMu.Unlock()
//TODO: log remote demonitor request
name := fromPid.String() + "_" + toPid.String()
remoteMonitorQuitAbortables[name].Abort()
delete(remoteMonitorQuitAbortables, name)
case newConnectionMessageType:
m, err := parseMachine(req.Data[machineVal].(map[string]interface{}))
if err != nil {
logger.Warn("there was an error while trying to decode new connection information from remote machine",
"client", client,
"error", err)
return
}
logger.Debug("received new connection information from remote machine",
"client", client)
err = propagateMachineIfNotExists(m)
if err != nil {
logger.Warn("there was an error while attempting to propagate new connection information to connected machines",
"client", client,
"error", err)
return
}
}
}
func startServer(callback func(chan int, chan error)) (uint16, error) {
portChan := make(chan int)
errChan := make(chan error)
go callback(portChan, errChan)
select {
case p := <-portChan:
return uint16(p), nil
case err := <-errChan:
return 0, err
}
}