2017-09-14 09:36:06 +01:00
|
|
|
// Package log implements basic but useful request (access) logging plugin.
|
2016-03-18 20:57:35 +00:00
|
|
|
package log
|
|
|
|
|
|
|
|
|
|
import (
|
2018-04-22 08:34:35 +01:00
|
|
|
"context"
|
2016-04-09 16:17:53 +01:00
|
|
|
"time"
|
2016-03-19 07:18:57 +00:00
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
"github.com/coredns/coredns/plugin"
|
2017-09-21 15:15:47 +01:00
|
|
|
"github.com/coredns/coredns/plugin/pkg/dnstest"
|
2018-10-31 21:32:23 +00:00
|
|
|
clog "github.com/coredns/coredns/plugin/pkg/log"
|
2017-09-14 09:36:06 +01:00
|
|
|
"github.com/coredns/coredns/plugin/pkg/replacer"
|
|
|
|
|
"github.com/coredns/coredns/plugin/pkg/response"
|
2017-02-21 22:51:47 -08:00
|
|
|
"github.com/coredns/coredns/request"
|
2016-04-09 16:17:53 +01:00
|
|
|
|
2016-03-18 20:57:35 +00:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
|
)
|
|
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// Logger is a basic request logging plugin.
|
2016-03-18 20:57:35 +00:00
|
|
|
type Logger struct {
|
2019-03-25 03:36:46 +00:00
|
|
|
Next plugin.Handler
|
|
|
|
|
Rules []Rule
|
2019-02-12 07:38:49 +00:00
|
|
|
|
|
|
|
|
repl replacer.Replacer
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// ServeDNS implements the plugin.Handler interface.
|
2016-03-19 07:18:57 +00:00
|
|
|
func (l Logger) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
2016-09-07 11:10:16 +01:00
|
|
|
state := request.Request{W: w, Req: r}
|
2019-07-16 15:00:22 -04:00
|
|
|
name := state.Name()
|
2016-03-18 20:57:35 +00:00
|
|
|
for _, rule := range l.Rules {
|
2019-07-16 15:00:22 -04:00
|
|
|
if !plugin.Name(rule.NameScope).Matches(name) {
|
2016-10-10 12:09:29 +01:00
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-21 15:15:47 +01:00
|
|
|
rrw := dnstest.NewRecorder(w)
|
2017-09-14 09:36:06 +01:00
|
|
|
rc, err := plugin.NextOrFailure(l.Name(), l.Next, ctx, rrw, r)
|
2016-04-04 15:45:17 +01:00
|
|
|
|
2018-04-11 09:50:16 +03:00
|
|
|
// If we don't set up a class in config, the default "all" will be added
|
|
|
|
|
// and we shouldn't have an empty rule.Class.
|
2018-12-10 10:17:15 +00:00
|
|
|
_, ok := rule.Class[response.All]
|
2019-07-16 15:00:22 -04:00
|
|
|
var ok1 bool
|
|
|
|
|
if !ok {
|
|
|
|
|
tpe, _ := response.Typify(rrw.Msg, time.Now().UTC())
|
|
|
|
|
class := response.Classify(tpe)
|
|
|
|
|
_, ok1 = rule.Class[class]
|
|
|
|
|
}
|
2018-12-10 10:17:15 +00:00
|
|
|
if ok || ok1 {
|
2019-02-12 07:38:49 +00:00
|
|
|
logstr := l.repl.Replace(ctx, state, rrw, rule.Format)
|
2022-06-05 13:17:00 -04:00
|
|
|
clog.Info(logstr)
|
2016-03-19 11:16:08 +00:00
|
|
|
}
|
2016-10-10 12:09:29 +01:00
|
|
|
|
|
|
|
|
return rc, err
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
2017-09-14 09:36:06 +01:00
|
|
|
return plugin.NextOrFailure(l.Name(), l.Next, ctx, w, r)
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
2016-10-27 11:48:37 +00:00
|
|
|
// Name implements the Handler interface.
|
2016-10-26 10:01:52 +01:00
|
|
|
func (l Logger) Name() string { return "log" }
|
|
|
|
|
|
2017-09-14 09:36:06 +01:00
|
|
|
// Rule configures the logging plugin.
|
2016-03-18 20:57:35 +00:00
|
|
|
type Rule struct {
|
2017-11-10 15:17:12 +00:00
|
|
|
NameScope string
|
2018-12-10 10:17:15 +00:00
|
|
|
Class map[response.Class]struct{}
|
2017-11-10 15:17:12 +00:00
|
|
|
Format string
|
2016-03-18 20:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
// CommonLogFormat is the common log format.
|
2019-02-12 07:38:49 +00:00
|
|
|
CommonLogFormat = `{remote}:{port} ` + replacer.EmptyValue + ` {>id} "{type} {class} {name} {proto} {size} {>do} {>bufsize}" {rcode} {>rflags} {rsize} {duration}`
|
2016-03-18 20:57:35 +00:00
|
|
|
// CombinedLogFormat is the combined log format.
|
2016-03-19 11:16:08 +00:00
|
|
|
CombinedLogFormat = CommonLogFormat + ` "{>opcode}"`
|
2016-03-18 20:57:35 +00:00
|
|
|
// DefaultLogFormat is the default log format.
|
|
|
|
|
DefaultLogFormat = CommonLogFormat
|
|
|
|
|
)
|