-
Notifications
You must be signed in to change notification settings - Fork 1
/
logger.go
92 lines (85 loc) · 2.58 KB
/
logger.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
package main
import (
"errors"
"fmt"
"io"
"log"
"net"
"time"
"github.com/brian14708/wg-gatekeeper/auditlog"
v3 "github.com/envoyproxy/go-control-plane/envoy/service/accesslog/v3"
"google.golang.org/grpc"
)
var (
auditDB *auditlog.DB
)
func startLog(srv *grpc.Server) {
d, err := auditlog.New("audit.db")
if err != nil {
log.Fatalf("failed to open auditlog: %v", err)
}
auditDB = d
v3.RegisterAccessLogServiceServer(srv, &LogServer{d})
}
type LogServer struct {
db *auditlog.DB
}
func (ls *LogServer) StreamAccessLogs(s v3.AccessLogService_StreamAccessLogsServer) error {
for {
msg, err := s.Recv()
if errors.Is(err, io.EOF) {
return nil
}
if err != nil {
return err
}
for _, l := range msg.GetHttpLogs().GetLogEntry() {
var ts time.Time
if t := l.GetCommonProperties().GetStartTime(); t == nil {
ts = time.Now()
} else {
ts = t.AsTime()
}
err := ls.db.Insert(
net.ParseIP(l.GetCommonProperties().GetDownstreamDirectRemoteAddress().GetSocketAddress().GetAddress()),
uint16(l.GetCommonProperties().GetDownstreamDirectRemoteAddress().GetSocketAddress().GetPortValue()),
net.ParseIP(l.GetCommonProperties().GetUpstreamRemoteAddress().GetSocketAddress().GetAddress()),
uint16(l.GetCommonProperties().GetUpstreamRemoteAddress().GetSocketAddress().GetPortValue()),
l.GetRequest().GetRequestHeadersBytes()+l.GetRequest().GetRequestBodyBytes(),
l.GetResponse().GetResponseHeadersBytes()+l.GetResponse().GetResponseBodyBytes(),
auditlog.ProtocolHTTP,
l.GetRequest().GetAuthority(),
ts,
)
if err != nil {
fmt.Println(err)
}
}
for _, l := range msg.GetTcpLogs().GetLogEntry() {
var ts time.Time
if t := l.GetCommonProperties().GetStartTime(); t == nil {
ts = time.Now()
} else {
ts = t.AsTime()
}
proto := auditlog.ProtocolTCP
if l.GetCommonProperties().GetTlsProperties() != nil {
proto = auditlog.ProtocolTLS
}
err := ls.db.Insert(
net.ParseIP(l.GetCommonProperties().GetDownstreamDirectRemoteAddress().GetSocketAddress().GetAddress()),
uint16(l.GetCommonProperties().GetDownstreamDirectRemoteAddress().GetSocketAddress().GetPortValue()),
net.ParseIP(l.GetCommonProperties().GetUpstreamRemoteAddress().GetSocketAddress().GetAddress()),
uint16(l.GetCommonProperties().GetUpstreamRemoteAddress().GetSocketAddress().GetPortValue()),
l.GetConnectionProperties().GetReceivedBytes(),
l.GetConnectionProperties().GetSentBytes(),
proto,
l.GetCommonProperties().GetTlsProperties().GetTlsSniHostname(),
ts,
)
if err != nil {
fmt.Println(err)
}
}
}
}