dnscrypt-proxy/dnscrypt-proxy/plugin_query_log.go

99 lines
2.2 KiB
Go
Raw Normal View History

2018-01-16 18:21:17 +01:00
package main
import (
"errors"
"fmt"
"net"
"os"
"strings"
2018-01-16 18:21:17 +01:00
"sync"
"time"
"github.com/jedisct1/dlog"
"github.com/miekg/dns"
)
type PluginQueryLog struct {
sync.Mutex
outFd *os.File
format string
ignoredQtypes []string
2018-01-16 18:21:17 +01:00
}
func (plugin *PluginQueryLog) Name() string {
return "query_log"
}
func (plugin *PluginQueryLog) Description() string {
return "Log DNS queries."
}
func (plugin *PluginQueryLog) Init(proxy *Proxy) error {
plugin.Lock()
defer plugin.Unlock()
outFd, err := os.OpenFile(proxy.queryLogFile, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0644)
if err != nil {
return err
}
plugin.outFd = outFd
plugin.format = proxy.queryLogFormat
plugin.ignoredQtypes = proxy.queryLogIgnoredQtypes
2018-01-16 18:21:17 +01:00
return nil
}
func (plugin *PluginQueryLog) Drop() error {
return nil
}
func (plugin *PluginQueryLog) Reload() error {
return nil
}
func (plugin *PluginQueryLog) Eval(pluginsState *PluginsState, msg *dns.Msg) error {
questions := msg.Question
if len(questions) == 0 {
return nil
}
question := questions[0]
qType, ok := dns.TypeToString[question.Qtype]
if !ok {
qType = string(qType)
}
if len(plugin.ignoredQtypes) > 0 {
for _, ignoredQtype := range plugin.ignoredQtypes {
if strings.EqualFold(ignoredQtype, qType) {
return nil
}
}
}
2018-01-16 18:21:17 +01:00
var clientIPStr string
if pluginsState.clientProto == "udp" {
clientIPStr = (*pluginsState.clientAddr).(*net.UDPAddr).IP.String()
} else {
clientIPStr = (*pluginsState.clientAddr).(*net.TCPAddr).IP.String()
}
2018-01-17 17:03:42 +01:00
qName := StripTrailingDot(question.Name)
2018-01-16 18:21:17 +01:00
var line string
if plugin.format == "tsv" {
now := time.Now()
year, month, day := now.Date()
hour, minute, second := now.Clock()
tsStr := fmt.Sprintf("[%d-%02d-%02d %02d:%02d:%02d]", year, int(month), day, hour, minute, second)
2018-01-17 17:03:42 +01:00
line = fmt.Sprintf("%s\t%s\t%s\t%s\n", tsStr, clientIPStr, StringQuote(qName), qType)
2018-01-16 18:21:17 +01:00
} else if plugin.format == "ltsv" {
line = fmt.Sprintf("time:%d\thost:%s\tmessage:%s\ttype:%s\n",
2018-01-17 17:03:42 +01:00
time.Now().Unix(), clientIPStr, StringQuote(qName), qType)
2018-01-16 18:21:17 +01:00
} else {
dlog.Fatalf("Unexpected log format: [%s]", plugin.format)
}
plugin.Lock()
if plugin.outFd == nil {
return errors.New("Log file not initialized")
}
plugin.outFd.WriteString(line)
defer plugin.Unlock()
return nil
}