| 
									
										
										
										
											2016-04-26 17:57:11 +01:00
										 |  |  | package dnssec
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"github.com/miekg/coredns/middleware"
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	"github.com/miekg/coredns/request"
 | 
					
						
							| 
									
										
										
										
											2016-04-26 17:57:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | 	"github.com/prometheus/client_golang/prometheus"
 | 
					
						
							|  |  |  | 	"golang.org/x/net/context"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ServeDNS implements the middleware.Handler interface.
 | 
					
						
							|  |  |  | func (d Dnssec) 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}
 | 
					
						
							| 
									
										
										
										
											2016-04-26 17:57:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	do := state.Do()
 | 
					
						
							|  |  |  | 	qname := state.Name()
 | 
					
						
							|  |  |  | 	qtype := state.QType()
 | 
					
						
							|  |  |  | 	zone := middleware.Zones(d.zones).Matches(qname)
 | 
					
						
							|  |  |  | 	if zone == "" {
 | 
					
						
							|  |  |  | 		return d.Next.ServeDNS(ctx, w, r)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Intercept queries for DNSKEY, but only if one of the zones matches the qname, otherwise we let
 | 
					
						
							|  |  |  | 	// the query through.
 | 
					
						
							|  |  |  | 	if qtype == dns.TypeDNSKEY {
 | 
					
						
							|  |  |  | 		for _, z := range d.zones {
 | 
					
						
							|  |  |  | 			if qname == z {
 | 
					
						
							|  |  |  | 				resp := d.getDNSKEY(state, z, do)
 | 
					
						
							| 
									
										
										
										
											2016-08-14 20:19:36 +02:00
										 |  |  | 				resp.Authoritative = true
 | 
					
						
							| 
									
										
										
										
											2016-04-26 17:57:11 +01:00
										 |  |  | 				state.SizeAndDo(resp)
 | 
					
						
							|  |  |  | 				w.WriteMsg(resp)
 | 
					
						
							|  |  |  | 				return dns.RcodeSuccess, nil
 | 
					
						
							|  |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	drr := NewDnssecResponseWriter(w, d)
 | 
					
						
							|  |  |  | 	return d.Next.ServeDNS(ctx, drr, r)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var (
 | 
					
						
							|  |  |  | 	cacheHitCount = prometheus.NewCounterVec(prometheus.CounterOpts{
 | 
					
						
							|  |  |  | 		Namespace: middleware.Namespace,
 | 
					
						
							|  |  |  | 		Subsystem: subsystem,
 | 
					
						
							|  |  |  | 		Name:      "hit_count_total",
 | 
					
						
							|  |  |  | 		Help:      "Counter of signatures that were found in the cache.",
 | 
					
						
							|  |  |  | 	}, []string{"zone"})
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cacheMissCount = prometheus.NewCounterVec(prometheus.CounterOpts{
 | 
					
						
							|  |  |  | 		Namespace: middleware.Namespace,
 | 
					
						
							|  |  |  | 		Subsystem: subsystem,
 | 
					
						
							|  |  |  | 		Name:      "miss_count_total",
 | 
					
						
							|  |  |  | 		Help:      "Counter of signatures that were not found in the cache.",
 | 
					
						
							|  |  |  | 	}, []string{"zone"})
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const subsystem = "dnssec"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() {
 | 
					
						
							|  |  |  | 	prometheus.MustRegister(cacheHitCount)
 | 
					
						
							|  |  |  | 	prometheus.MustRegister(cacheMissCount)
 | 
					
						
							|  |  |  | }
 |