-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
122 lines (96 loc) · 2.35 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
package main
import (
"encoding/json"
"log"
"net"
"net/http"
"sync"
"github.com/google/gopacket"
"github.com/google/gopacket/layers"
"github.com/scs-solution/go.pkt2/capture/pcap"
)
func GetOutboundIP() net.IP {
conn, err := net.Dial("udp", "8.8.8.8:80")
if err != nil {
log.Fatal(err)
}
defer conn.Close()
localAddr := conn.LocalAddr().(*net.UDPAddr)
return localAddr.IP
}
var inboundMap = map[string]int{}
var outboundMap = map[string]int{}
type ResultInfo struct {
Inbound *map[string]int `json:"inbound"`
Outbound *map[string]int `json:"outbound"`
}
func runServer() {
http.HandleFunc("/hello", func(w http.ResponseWriter, req *http.Request) {
w.Write([]byte("Hello World"))
})
http.HandleFunc("/check", func(w http.ResponseWriter, req *http.Request) {
res := ResultInfo{
Inbound: &inboundMap,
Outbound: &outboundMap,
}
jsonString, _ := json.Marshal(res)
w.Write(jsonString)
})
http.HandleFunc("/inbound", func(w http.ResponseWriter, req *http.Request) {
jsonString, _ := json.Marshal(inboundMap)
w.Write(jsonString)
})
http.HandleFunc("/outbound", func(w http.ResponseWriter, req *http.Request) {
jsonString, _ := json.Marshal(outboundMap)
w.Write(jsonString)
})
http.HandleFunc("/clear", func(w http.ResponseWriter, req *http.Request) {
for k := range inboundMap {
delete(inboundMap, k)
}
for k := range outboundMap {
delete(outboundMap, k)
}
w.Write([]byte("ok"))
})
http.ListenAndServe(":5000", nil)
}
func runCapture() {
src, err := pcap.Open("eth0")
if err != nil {
log.Fatal(err)
}
defer src.Close()
err = src.Activate()
if err != nil {
log.Fatal(err)
}
myIp := GetOutboundIP()
var mutex = &sync.Mutex{}
for {
buf, err := src.Capture()
if err != nil {
log.Fatal(err)
}
packet := gopacket.NewPacket(buf, layers.LayerTypeEthernet, gopacket.Default)
if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer == nil {
continue
}
if ipLayer := packet.Layer(layers.LayerTypeIPv4); ipLayer != nil {
ip, _ := ipLayer.(*layers.IPv4)
mutex.Lock()
if ip.SrcIP.Equal(myIp) {
outboundMap[ip.DstIP.String()]++
} else if ip.DstIP.Equal(myIp) {
inboundMap[ip.SrcIP.String()]++
}
mutex.Unlock()
}
}
}
func main() {
go runCapture()
go runServer()
// https://stackoverflow.com/questions/36419054/go-projects-main-goroutine-sleep-forever
select {}
}