-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
407 lines (317 loc) · 8.31 KB
/
main.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
package main
import (
"encoding/binary"
"encoding/hex"
"fmt"
"log"
"net"
"net/http"
"time"
"github.com/cilium/ebpf"
"github.com/gorilla/mux"
)
// Define global const variables for the paths of the ebpf maps
const (
xdpFlowsPath = "/sys/fs/bpf/eth0/xdp_flow_map"
xdpBlockedFlowsPath = "/sys/fs/bpf/eth0/xdp_blocked_flows"
monitoringTime = 1 * time.Second
)
// from eBPF_code/common_kern_user_datastructure.h
//
// struct flow { // Stored in BIG ENDIAN!
//
// __be32 saddr;
// __be32 daddr;
// __be16 sport;
// __be16 dport;
// __u8 protocol;
// };
type Flow struct {
saddr net.IP
daddr net.IP
sport uint16
dport uint16
protocol uint8
}
// from eBPF_code/common_kern_user_datastructure.h
//
// struct info_map {
// __u32 packets;
// __u64 bytes;
// };
type FlowInfo struct {
Packets uint64
Bytes uint64
}
type FlowDatabaseValue struct {
Packets uint64
Bytes uint64
Blocked int
Speed uint64
// Timestamps
Timestamp time.Time
}
// Map keys as bytes arrays
var FlowsDatabase = make(map[[16]byte]FlowDatabaseValue)
// TEMPORAL: returned as csv string
func (f Flow) String() string {
return fmt.Sprintf("%s,%d,%s,%d,%d", f.saddr, f.sport, f.daddr, f.dport, f.protocol)
}
// Implement encoding.BinaryMarshaler
// See: https://pkg.go.dev/github.com/cilium/ebpf#Map.
//
// Implement encoding.BinaryMarshaler or encoding.BinaryUnmarshaler if you require custom encoding.
func (f Flow) MarshalBinary() ([]byte, error) {
// We have to marsharl to a 16 byte array.
// The struct has 13 bytes, but (we think) due alignment the key
// is 16 bytes.
var data [16]byte
copy(data[:4], f.saddr.To4())
copy(data[4:8], f.daddr.To4())
binary.BigEndian.PutUint16(data[8:10], f.sport)
binary.BigEndian.PutUint16(data[10:12], f.dport)
data[12] = f.protocol
return data[:], nil
}
// Flow constructor from bytes
func NewFlowFromBytes(data []byte) (Flow, error) {
if len(data) != 16 {
return Flow{}, fmt.Errorf("data must be 16 bytes")
}
return Flow{
saddr: net.IP(data[:4]),
daddr: net.IP(data[4:8]),
sport: binary.BigEndian.Uint16(data[8:10]),
dport: binary.BigEndian.Uint16(data[10:12]),
protocol: data[12],
}, nil
}
func isFlowBlocked(key []byte) (int, error) {
// Key must be 16 bytes
if len(key) != 16 {
log.Printf("Key must be 16 bytes")
return 0, fmt.Errorf("key must be 16 bytes")
}
flowsBlockedMap, err := ebpf.LoadPinnedMap(xdpBlockedFlowsPath, nil)
if err != nil {
return 0, err
}
// Check already blocked
var value uint32
_ = flowsBlockedMap.Lookup(&key, &value)
if value == 1 {
log.Printf("Flow already blocked")
return 1, nil
}
return 0, nil
}
func blockFlow(key []byte) error {
// Key must be 16 bytes
if len(key) != 16 {
log.Printf("Key must be 16 bytes")
return fmt.Errorf("key must be 16 bytes")
}
flowsMap, err := ebpf.LoadPinnedMap(xdpFlowsPath, nil)
if err != nil {
log.Printf("Error loading pinned map: %s", err)
return err
}
flowKey, _ := NewFlowFromBytes(key)
// Value variable needed for the lookup
var valueNotUsed uint32
if err := flowsMap.Lookup(&flowKey, &valueNotUsed); err != nil {
log.Printf("Error looking up flow: %s", err)
return err
}
log.Printf("Flow found, blocking")
// Check if flow exists
flowsBlockedMap, err := ebpf.LoadPinnedMap(xdpBlockedFlowsPath, nil)
if err != nil {
return err
}
// Check already blocked
var value uint32
_ = flowsBlockedMap.Lookup(&key, &value)
if value == 1 {
log.Printf("Flow already blocked")
return nil
}
// Update or create new value
var newValue uint32 = 1
err = flowsBlockedMap.Put(key, newValue)
if err != nil {
log.Printf("Error updating blocked flows map: %s", err)
return err
}
return nil
}
func unblockFlow(key []byte) error {
// Key must be 16 bytes
if len(key) != 16 {
log.Printf("Key must be 16 bytes")
return fmt.Errorf("key must be 16 bytes")
}
flowsMap, err := ebpf.LoadPinnedMap(xdpFlowsPath, nil)
if err != nil {
log.Printf("Error loading pinned map: %s", err)
return err
}
flowKey, _ := NewFlowFromBytes(key)
// Value variable needed for the lookup
var valueNotUsed uint32
if err := flowsMap.Lookup(&flowKey, &valueNotUsed); err != nil {
log.Printf("Error looking up flow: %s", err)
return err
}
log.Printf("Flow found, unblocking")
// Check if flow exists
flowsBlockedMap, err := ebpf.LoadPinnedMap(xdpBlockedFlowsPath, nil)
if err != nil {
return err
}
// Check already blocked
var value uint32
err = flowsBlockedMap.Lookup(&key, &value)
if err != nil {
log.Printf("Flow not blocked")
return nil
}
// Block the flow even if it is already blocked
var newValue uint32 = 0
err = flowsBlockedMap.Put(key, newValue)
if err != nil {
log.Printf("Error updating blocked flows map: %s", err)
return err
}
return nil
}
func flowsGet(w http.ResponseWriter, req *http.Request) {
// Read directly the flows.
// A LOT OF PROBLEMS WITH THE HANDLING OF THE SLICES
// flowMap, err := ebpf.LoadPinnedMap(xdpFlowsPath, nil)
// Test
w.WriteHeader(http.StatusOK)
// Iterate map database
for key, value := range FlowsDatabase {
// Get if is blocked
// isBlocked, err := isFlowBlocked(key[:])
// if err != nil {
// panic(err)
// }
flow, err := NewFlowFromBytes(key[:])
if err != nil {
panic(err)
}
// Print key as hex
// Return as CSV
// id,src_ip,src_port,dst_ip,dst_port,protocol,blocked,speed(Bps),bytes
fmt.Fprintf(w, "%x,%s,%d,%d,%d\n", key, flow, value.Blocked, value.Speed, value.Bytes)
}
}
func blockPost(w http.ResponseWriter, req *http.Request) {
vars := mux.Vars(req)
// Convert string to byte[]
flowId, err := hex.DecodeString(vars["flowId"])
if err != nil {
log.Printf("failed to decode flowId: %v", err)
http.Error(w, "Failed to decode flowId", http.StatusInternalServerError)
return
}
// Block flow
err = blockFlow(flowId)
if err != nil {
http.Error(w, "Failed to block flow", http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}
func unblockPost(w http.ResponseWriter, req *http.Request) {
vars := mux.Vars(req)
// Convert string to byte[]
flowId, err := hex.DecodeString(vars["flowId"])
if err != nil {
log.Printf("failed to decode flowId: %v", err)
http.Error(w, "Failed to decode flowId", http.StatusInternalServerError)
return
}
// Block flow
err = unblockFlow(flowId)
if err != nil {
http.Error(w, "Failed to unblock flow", http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
}
func updateFlows() {
// Loop forever
for {
// Every 2 seconds
time.Sleep(monitoringTime)
flowMap, err := ebpf.LoadPinnedMap(xdpFlowsPath, nil)
if err != nil {
panic(err)
}
var key [16]byte
var value FlowInfo
// Iterate values
iterator := flowMap.Iterate()
// Create a new "database"
var newFlowsDatabase = make(map[[16]byte]FlowDatabaseValue)
for iterator.Next(&key, &value) {
// Get if is blocked
isBlocked, err := isFlowBlocked(key[:])
if err != nil {
panic(err)
}
// Save to "database"
// Take 16 bytes of the id and use it as a key
var keyMap [16]byte
copy(keyMap[:], key[:16])
// Load previous value
previousValue, ok := FlowsDatabase[key]
if !ok {
// If not found, create a new one
newFlowsDatabase[key] = FlowDatabaseValue{
Bytes: value.Bytes,
Packets: value.Packets,
Blocked: isBlocked,
Speed: 0,
Timestamp: time.Now(),
}
} else {
// Compute speed
now := time.Now()
elapsedTime := now.Sub(previousValue.Timestamp).Seconds()
// Compute speed
speed := value.Bytes - previousValue.Bytes/uint64(elapsedTime)
// Save to database
newFlowsDatabase[key] = FlowDatabaseValue{
Bytes: value.Bytes,
Packets: value.Packets,
Blocked: isBlocked,
Speed: speed,
Timestamp: now,
}
}
}
// Update the global database
FlowsDatabase = newFlowsDatabase
}
}
func main() {
// Start monitoring flows in background
go updateFlows()
r := mux.NewRouter()
// Flows
r.HandleFunc("/flows", flowsGet).Methods(http.MethodGet)
// Block
r.HandleFunc("/flows/{flowId}/block", blockPost).Methods(http.MethodPost)
// Unblock
r.HandleFunc("/flows/{flowId}/unblock", unblockPost).Methods(http.MethodPost)
server := &http.Server{
Handler: r,
Addr: "0.0.0.0:8000",
}
log.Printf("Listening on %s", "8000")
log.Fatal(server.ListenAndServe())
}