| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | package dnstap
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2018-04-22 08:34:35 +01:00
										 |  |  | 	"context"
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | 	"time"
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/dnstap/taprw"
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tap "github.com/dnstap/golang-dnstap"
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | // Dnstap is the dnstap handler.
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | type Dnstap struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	Next plugin.Handler
 | 
					
						
							| 
									
										
										
										
											2017-09-26 17:45:33 +02:00
										 |  |  | 	IO   IORoutine
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Set to true to include the relevant raw DNS message into the dnstap messages.
 | 
					
						
							|  |  |  | 	JoinRawMessage bool
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | type (
 | 
					
						
							| 
									
										
										
										
											2017-09-26 17:45:33 +02:00
										 |  |  | 	// IORoutine is the dnstap I/O thread as defined by: <http://dnstap.info/Architecture>.
 | 
					
						
							|  |  |  | 	IORoutine interface {
 | 
					
						
							|  |  |  | 		Dnstap(tap.Dnstap)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | 	// Tapper is implemented by the Context passed by the dnstap handler.
 | 
					
						
							|  |  |  | 	Tapper interface {
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | 		TapMessage(message *tap.Message)
 | 
					
						
							|  |  |  | 		Pack() bool
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 	tapContext struct {
 | 
					
						
							|  |  |  | 		context.Context
 | 
					
						
							|  |  |  | 		Dnstap
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 13:38:01 -07:00
										 |  |  | // 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"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | // TapperFromContext will return a Tapper if the dnstap plugin is enabled.
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | func TapperFromContext(ctx context.Context) (t Tapper) {
 | 
					
						
							|  |  |  | 	t, _ = ctx.(Tapper)
 | 
					
						
							|  |  |  | 	return
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TapMessage implements Tapper.
 | 
					
						
							| 
									
										
										
										
											2018-08-02 00:58:23 +02:00
										 |  |  | func (h Dnstap) TapMessage(m *tap.Message) {
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | 	t := tap.Dnstap_MESSAGE
 | 
					
						
							|  |  |  | 	h.IO.Dnstap(tap.Dnstap{
 | 
					
						
							|  |  |  | 		Type:    &t,
 | 
					
						
							|  |  |  | 		Message: m,
 | 
					
						
							|  |  |  | 	})
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | // Pack returns true if the raw DNS message should be included into the dnstap messages.
 | 
					
						
							|  |  |  | func (h Dnstap) Pack() bool {
 | 
					
						
							|  |  |  | 	return h.JoinRawMessage
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ServeDNS logs the client query and response to dnstap and passes the dnstap Context.
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | func (h Dnstap) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
 | 
					
						
							| 
									
										
										
										
											2017-09-29 13:38:01 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// 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)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | 	rw := &taprw.ResponseWriter{
 | 
					
						
							|  |  |  | 		ResponseWriter: w,
 | 
					
						
							|  |  |  | 		Tapper:         &h,
 | 
					
						
							|  |  |  | 		Query:          r,
 | 
					
						
							|  |  |  | 		Send:           &sendOption,
 | 
					
						
							|  |  |  | 		QueryEpoch:     time.Now(),
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 13:38:01 -07:00
										 |  |  | 	code, err := plugin.NextOrFailure(h.Name(), h.Next, tapContext{newCtx, h}, rw, r)
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		// ignore dnstap errors
 | 
					
						
							|  |  |  | 		return code, err
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 03:19:01 +01:00
										 |  |  | 	if err = rw.DnstapError(); err != nil {
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 		return code, plugin.Error("dnstap", err)
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return code, nil
 | 
					
						
							|  |  |  | }
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:41:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Name returns dnstap.
 | 
					
						
							| 
									
										
										
										
											2017-07-24 23:12:50 +02:00
										 |  |  | func (h Dnstap) Name() string { return "dnstap" }
 |