-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonlog.go
312 lines (254 loc) · 6.68 KB
/
jsonlog.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
/*
Example config:
jsonlog {
enable_superapi
influxdb http://192.168.0.193:8086/ test dns_data base64keyhere==
# pgdb postgresql://[email protected]:5432/doc
}
*/
package jsonlog
import (
"context"
"encoding/json"
"fmt"
"strings"
"sync"
"time"
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
"github.com/miekg/dns"
"github.com/influxdata/influxdb-client-go/v2"
"github.com/jackc/pgx/v4/pgxpool"
clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/coredns/plugin/pkg/response"
"github.com/spr-networks/sprbus"
)
const (
coreDNSPackageName string = `jsonlog`
CLIENT_MEMORY_LOG_COUNT int = 1024
)
type DeviceEntry struct {
Name string
MAC string
WGPubKey string
VLANTag string
RecentIP string
Policies []string
Groups []string
DeviceTags []string
DHCPFirstTime string
DHCPLastTime string
DeviceExpiration int64
DeleteExpiration bool
DeviceDisabled bool //tbd deprecate this in favor of only using the policy name.
}
var log = clog.NewWithPlugin(coreDNSPackageName)
func init() {
caddy.RegisterPlugin(coreDNSPackageName, caddy.Plugin{
ServerType: `dns`,
Action: setup,
})
}
// JsonLog is the plugin.
type JsonLog struct {
SQL *pgxpool.Pool
config SPRLogConfig
IFDB influxdb2.Client
IFDB_org string
IFDB_bucket string
Next plugin.Handler
superapi_enabled bool
}
func New() *JsonLog {
return &JsonLog{}
}
func setup(c *caddy.Controller) error {
superapi_enabled := false
jsonlog := New()
for c.Next() {
for c.NextBlock() {
var arg, val string
arg = c.Val()
c.NextArg()
if arg == `enable_superapi` {
superapi_enabled = true
arg = c.Val()
c.NextArg()
}
val = c.Val()
c.NextArg()
switch arg {
case `pgdb`:
{
conn, err := pgxpool.Connect(context.Background(), val)
if err != nil {
panic("Unable to connect to database")
}
jsonlog.SQL = conn
}
case `influxdb`:
{
org := c.Val()
c.NextArg()
bucket := c.Val()
c.NextArg()
token := c.Val()
c.NextArg()
jsonlog.IFDB = influxdb2.NewClient(val, token) //tbd keep handle around to later close it
jsonlog.IFDB_org = org
jsonlog.IFDB_bucket = bucket
}
}
}
}
jsonlog.superapi_enabled = superapi_enabled
if jsonlog.SQL == nil && jsonlog.IFDB == nil && !superapi_enabled {
log.Fatal("no connection")
return nil
}
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
jsonlog.Next = next
return jsonlog
})
if jsonlog.superapi_enabled {
go func() {
jsonlog.loadSPRConfig()
jsonlog.runAPI()
go sprbus.HandleEvent("device:delete", func(topic string, jsonInput string) {
device := DeviceEntry{}
err := json.Unmarshal([]byte(jsonInput), &device)
if err == nil {
if device.RecentIP != "" {
jsonlog.removeHostIPFromConfig(device.RecentIP)
}
}
})
}()
}
return nil
}
func (plugin *JsonLog) String() string {
return coreDNSPackageName
}
func (plugin *JsonLog) Name() string {
return coreDNSPackageName
}
type EventData struct {
Q []dns.Question
A []dns.RR
Type string
FirstName string
FirstAnswer string
Local string
Remote string
Categories []string
Timestamp time.Time
}
type DNSEvent struct {
dns.ResponseWriter
data EventData
}
func (i *DNSEvent) Write(b []byte) (int, error) {
return i.ResponseWriter.Write(b)
}
func (i *DNSEvent) WriteMsg(m *dns.Msg) error {
tpe, _ := response.Typify(m, time.Now().UTC())
i.data.Type = tpe.String()
//the blocker will set no Authority messagres
if len(m.Ns) == 0 && m.Rcode == dns.RcodeNameError {
i.data.Type = "BLOCKED"
}
i.data.Q = m.Question
i.data.A = m.Answer
return i.ResponseWriter.WriteMsg(m)
}
func (i *DNSEvent) String() string {
x, _ := json.Marshal(i.data)
return string(x)
}
func (plugin *JsonLog) ServeDNS(ctx context.Context, rw dns.ResponseWriter, r *dns.Msg) (c int, err error) {
local := rw.LocalAddr()
remote := rw.RemoteAddr()
event := &DNSEvent{
ResponseWriter: rw,
}
event.data.Timestamp = time.Now()
event.data.Local = local.String()
event.data.Remote = remote.String()
dnsCategories := []string{}
ctx = context.WithValue(ctx, "DNSCategories", &dnsCategories)
c, err = plugin.Next.ServeDNS(ctx, event, r)
event.data.Categories = dnsCategories
if len(event.data.Q) >= 1 {
//set FirstName
event.data.FirstName = event.data.Q[0].Name
}
if len(event.data.A) >= 1 {
//set FirstName
event.data.FirstName = event.data.A[0].Header().Name
//Answers can be A, AAAA, CNAME, etc. To simplify things get the string form
//and use the separator. FirstName/FirstString will make it easy to classify results downstream
//TBD ... maybe pick the ip address as the first answer?
answerString := event.data.A[0].String()
parts := strings.Split(answerString, "\t")
event.data.FirstAnswer = parts[len(parts)-1]
}
plugin.PushEvent(event)
return c, err
}
var EventMemoryMtx sync.Mutex
var EventMemoryIdx = make(map[string]int)
var EventMemory = make(map[string]*[CLIENT_MEMORY_LOG_COUNT]EventData)
func (plugin *JsonLog) PushEvent(event *DNSEvent) {
client := strings.Split(event.data.Remote, ":")[0]
for _, entry := range plugin.config.HostPrivacyIPList {
if entry == client {
// no logs for entries in the privacy list
return
}
}
for _, entry := range plugin.config.DomainIgnoreList {
if entry == event.data.FirstName {
// ignore domain
return
}
}
dnsEventJson := event.String()
if plugin.superapi_enabled {
topic := fmt.Sprintf("dns:serve:%s", client)
//publish event to sprbus
sprbus.PublishString(topic, dnsEventJson)
if plugin.config.StoreLocalMemory {
EventMemoryMtx.Lock()
idx := EventMemoryIdx[client]
if idx >= CLIENT_MEMORY_LOG_COUNT {
idx = 0
}
EventMemoryIdx[client] = idx + 1
val, exists := EventMemory[client]
if !exists {
val = &[CLIENT_MEMORY_LOG_COUNT]EventData{}
//assign pointer once
EventMemory[client] = val
}
val[idx] = event.data
EventMemoryMtx.Unlock()
}
}
if plugin.SQL != nil {
_, err := plugin.SQL.Exec(context.Background(), "INSERT INTO dns(data) VALUES(?)", dnsEventJson)
if err != nil {
log.Fatal(err)
}
} else if plugin.IFDB != nil {
writeAPI := plugin.IFDB.WriteAPI(plugin.IFDB_org, plugin.IFDB_bucket)
p := influxdb2.NewPointWithMeasurement("dns").
AddField("FirstName", event.data.FirstName).
AddField("FirstAnswer", event.data.FirstAnswer).
AddField("Remote", event.data.Remote).
AddField("Local", event.data.Local)
writeAPI.WritePoint(p)
writeAPI.Flush()
}
}