mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 16:24:19 -04:00
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
|
|
package dnstap
|
||
|
|
|
||
|
|
import (
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/coredns/coredns/plugin/dnstap/msg"
|
||
|
|
tap "github.com/dnstap/golang-dnstap"
|
||
|
|
"github.com/miekg/dns"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ResponseWriter captures the client response and logs the query to dnstap.
|
||
|
|
// Single request use.
|
||
|
|
type ResponseWriter struct {
|
||
|
|
QueryTime time.Time
|
||
|
|
Query *dns.Msg
|
||
|
|
dns.ResponseWriter
|
||
|
|
Dnstap
|
||
|
|
}
|
||
|
|
|
||
|
|
// WriteMsg writes back the response to the client and THEN works on logging the request
|
||
|
|
// and response to dnstap.
|
||
|
|
func (w *ResponseWriter) WriteMsg(resp *dns.Msg) error {
|
||
|
|
err := w.ResponseWriter.WriteMsg(resp)
|
||
|
|
|
||
|
|
q := new(tap.Message)
|
||
|
|
msg.SetQueryTime(q, w.QueryTime)
|
||
|
|
msg.SetQueryAddress(q, w.RemoteAddr())
|
||
|
|
|
||
|
|
if w.IncludeRawMessage {
|
||
|
|
buf, _ := w.Query.Pack()
|
||
|
|
q.QueryMessage = buf
|
||
|
|
}
|
||
|
|
msg.SetType(q, tap.Message_CLIENT_QUERY)
|
||
|
|
w.TapMessage(q)
|
||
|
|
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
r := new(tap.Message)
|
||
|
|
msg.SetQueryTime(r, w.QueryTime)
|
||
|
|
msg.SetResponseTime(r, time.Now())
|
||
|
|
msg.SetQueryAddress(r, w.RemoteAddr())
|
||
|
|
|
||
|
|
if w.IncludeRawMessage {
|
||
|
|
buf, _ := resp.Pack()
|
||
|
|
r.ResponseMessage = buf
|
||
|
|
}
|
||
|
|
|
||
|
|
msg.SetType(r, tap.Message_CLIENT_RESPONSE)
|
||
|
|
w.TapMessage(r)
|
||
|
|
return nil
|
||
|
|
}
|