mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 02:33:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package dnstap
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/coredns/coredns/plugin"
 | 
						|
	"github.com/coredns/coredns/plugin/dnstap/taprw"
 | 
						|
 | 
						|
	tap "github.com/dnstap/golang-dnstap"
 | 
						|
	"github.com/miekg/dns"
 | 
						|
)
 | 
						|
 | 
						|
// Dnstap is the dnstap handler.
 | 
						|
type Dnstap struct {
 | 
						|
	Next plugin.Handler
 | 
						|
	IO   IORoutine
 | 
						|
 | 
						|
	// Set to true to include the relevant raw DNS message into the dnstap messages.
 | 
						|
	JoinRawMessage bool
 | 
						|
}
 | 
						|
 | 
						|
type (
 | 
						|
	// IORoutine is the dnstap I/O thread as defined by: <http://dnstap.info/Architecture>.
 | 
						|
	IORoutine interface {
 | 
						|
		Dnstap(tap.Dnstap)
 | 
						|
	}
 | 
						|
	// Tapper is implemented by the Context passed by the dnstap handler.
 | 
						|
	Tapper interface {
 | 
						|
		TapMessage(message *tap.Message)
 | 
						|
		Pack() bool
 | 
						|
	}
 | 
						|
	tapContext struct {
 | 
						|
		context.Context
 | 
						|
		Dnstap
 | 
						|
	}
 | 
						|
)
 | 
						|
 | 
						|
// ContextKey defines the type of key that is used to save data into the context
 | 
						|
type ContextKey string
 | 
						|
 | 
						|
const (
 | 
						|
	// DnstapSendOption specifies the Dnstap message to be send.  Default is sent all.
 | 
						|
	DnstapSendOption ContextKey = "dnstap-send-option"
 | 
						|
)
 | 
						|
 | 
						|
// TapMessage implements Tapper.
 | 
						|
func (h Dnstap) TapMessage(m *tap.Message) {
 | 
						|
	t := tap.Dnstap_MESSAGE
 | 
						|
	h.IO.Dnstap(tap.Dnstap{
 | 
						|
		Type:    &t,
 | 
						|
		Message: m,
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
// Pack returns true if the raw DNS message should be included into the dnstap messages.
 | 
						|
func (h Dnstap) Pack() bool {
 | 
						|
	return h.JoinRawMessage
 | 
						|
}
 | 
						|
 | 
						|
// ServeDNS logs the client query and response to dnstap and passes the dnstap Context.
 | 
						|
func (h Dnstap) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
 | 
						|
 | 
						|
	// Add send option into context so other plugin can decide on which DNSTap
 | 
						|
	// message to be sent out
 | 
						|
	sendOption := taprw.SendOption{Cq: true, Cr: true}
 | 
						|
	newCtx := context.WithValue(ctx, DnstapSendOption, &sendOption)
 | 
						|
	newCtx = ContextWithTapper(newCtx, h)
 | 
						|
 | 
						|
	rw := &taprw.ResponseWriter{
 | 
						|
		ResponseWriter: w,
 | 
						|
		Tapper:         &h,
 | 
						|
		Query:          r,
 | 
						|
		Send:           &sendOption,
 | 
						|
		QueryEpoch:     time.Now(),
 | 
						|
	}
 | 
						|
 | 
						|
	code, err := plugin.NextOrFailure(h.Name(), h.Next, newCtx, rw, r)
 | 
						|
	if err != nil {
 | 
						|
		// ignore dnstap errors
 | 
						|
		return code, err
 | 
						|
	}
 | 
						|
 | 
						|
	if err = rw.DnstapError(); err != nil {
 | 
						|
		return code, plugin.Error("dnstap", err)
 | 
						|
	}
 | 
						|
 | 
						|
	return code, nil
 | 
						|
}
 | 
						|
 | 
						|
// Name returns dnstap.
 | 
						|
func (h Dnstap) Name() string { return "dnstap" }
 |