| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | // Package cache implements a cache.
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | package cache
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	"encoding/binary"
 | 
					
						
							|  |  |  | 	"hash/fnv"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	"log"
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/cache"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin/pkg/response"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | // Cache is plugin that looks up responses in a cache and caches replies.
 | 
					
						
							| 
									
										
										
										
											2016-10-08 15:12:28 +01:00
										 |  |  | // It has a success and a denial of existence cache.
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | type Cache struct {
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	Next  plugin.Handler
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	Zones []string
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	ncache *cache.Cache
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	ncap   int
 | 
					
						
							|  |  |  | 	nttl   time.Duration
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	pcache *cache.Cache
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	pcap   int
 | 
					
						
							|  |  |  | 	pttl   time.Duration
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Prefetch.
 | 
					
						
							|  |  |  | 	prefetch   int
 | 
					
						
							|  |  |  | 	duration   time.Duration
 | 
					
						
							|  |  |  | 	percentage int
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Testing.
 | 
					
						
							|  |  |  | 	now func() time.Time
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // New returns an initialized Cache with default settings. It's up to the
 | 
					
						
							|  |  |  | // caller to set the Next handler.
 | 
					
						
							|  |  |  | func New() *Cache {
 | 
					
						
							|  |  |  | 	return &Cache{
 | 
					
						
							|  |  |  | 		Zones:      []string{"."},
 | 
					
						
							|  |  |  | 		pcap:       defaultCap,
 | 
					
						
							|  |  |  | 		pcache:     cache.New(defaultCap),
 | 
					
						
							|  |  |  | 		pttl:       maxTTL,
 | 
					
						
							|  |  |  | 		ncap:       defaultCap,
 | 
					
						
							|  |  |  | 		ncache:     cache.New(defaultCap),
 | 
					
						
							|  |  |  | 		nttl:       maxNTTL,
 | 
					
						
							|  |  |  | 		prefetch:   0,
 | 
					
						
							|  |  |  | 		duration:   1 * time.Minute,
 | 
					
						
							|  |  |  | 		percentage: 10,
 | 
					
						
							|  |  |  | 		now:        time.Now,
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | // Return key under which we store the item, -1 will be returned if we don't store the
 | 
					
						
							|  |  |  | // message.
 | 
					
						
							|  |  |  | // Currently we do not cache Truncated, errors zone transfers or dynamic update messages.
 | 
					
						
							|  |  |  | func key(m *dns.Msg, t response.Type, do bool) int {
 | 
					
						
							| 
									
										
										
										
											2016-11-07 16:27:50 +00:00
										 |  |  | 	// We don't store truncated responses.
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	if m.Truncated {
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		return -1
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-11-07 16:27:50 +00:00
										 |  |  | 	// Nor errors or Meta or Update
 | 
					
						
							|  |  |  | 	if t == response.OtherError || t == response.Meta || t == response.Update {
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		return -1
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	return int(hash(m.Question[0].Name, m.Question[0].Qtype, do))
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | var one = []byte("1")
 | 
					
						
							|  |  |  | var zero = []byte("0")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func hash(qname string, qtype uint16, do bool) uint32 {
 | 
					
						
							|  |  |  | 	h := fnv.New32()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	if do {
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		h.Write(one)
 | 
					
						
							|  |  |  | 	} else {
 | 
					
						
							|  |  |  | 		h.Write(zero)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b := make([]byte, 2)
 | 
					
						
							|  |  |  | 	binary.BigEndian.PutUint16(b, qtype)
 | 
					
						
							|  |  |  | 	h.Write(b)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for i := range qname {
 | 
					
						
							|  |  |  | 		c := qname[i]
 | 
					
						
							|  |  |  | 		if c >= 'A' && c <= 'Z' {
 | 
					
						
							|  |  |  | 			c += 'a' - 'A'
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		h.Write([]byte{c})
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return h.Sum32()
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // ResponseWriter is a response writer that caches the reply message.
 | 
					
						
							|  |  |  | type ResponseWriter struct {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	dns.ResponseWriter
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	*Cache
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	prefetch bool // When true write nothing back to the client.
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // WriteMsg implements the dns.ResponseWriter interface.
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | func (w *ResponseWriter) WriteMsg(res *dns.Msg) error {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	do := false
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 	mt, opt := response.Typify(res, w.now().UTC())
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	if opt != nil {
 | 
					
						
							|  |  |  | 		do = opt.Do()
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-07 16:27:50 +00:00
										 |  |  | 	// key returns empty string for anything we don't want to cache.
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	key := key(res, mt, do)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	duration := w.pttl
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	if mt == response.NameError || mt == response.NoData {
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		duration = w.nttl
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	msgTTL := minMsgTTL(res, mt)
 | 
					
						
							|  |  |  | 	if msgTTL < duration {
 | 
					
						
							|  |  |  | 		duration = msgTTL
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 14:22:23 +01:00
										 |  |  | 	if key != -1 && duration > 0 {
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		w.set(res, key, mt, duration)
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		cacheSize.WithLabelValues(Success).Set(float64(w.pcache.Len()))
 | 
					
						
							|  |  |  | 		cacheSize.WithLabelValues(Denial).Set(float64(w.ncache.Len()))
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	if w.prefetch {
 | 
					
						
							|  |  |  | 		return nil
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 11:36:41 +01:00
										 |  |  | 	// Apply capped TTL to this reply to avoid jarring TTL experience 1799 -> 8 (e.g.)
 | 
					
						
							|  |  |  | 	ttl := uint32(duration.Seconds())
 | 
					
						
							|  |  |  | 	for i := range res.Answer {
 | 
					
						
							|  |  |  | 		res.Answer[i].Header().Ttl = ttl
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for i := range res.Ns {
 | 
					
						
							|  |  |  | 		res.Ns[i].Header().Ttl = ttl
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for i := range res.Extra {
 | 
					
						
							|  |  |  | 		if res.Extra[i].Header().Rrtype != dns.TypeOPT {
 | 
					
						
							|  |  |  | 			res.Extra[i].Header().Ttl = ttl
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	return w.ResponseWriter.WriteMsg(res)
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | func (w *ResponseWriter) set(m *dns.Msg, key int, mt response.Type, duration time.Duration) {
 | 
					
						
							| 
									
										
										
										
											2017-09-28 14:22:23 +01:00
										 |  |  | 	if key == -1 || duration == 0 {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		return
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch mt {
 | 
					
						
							| 
									
										
										
										
											2016-10-10 12:09:29 +01:00
										 |  |  | 	case response.NoError, response.Delegation:
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 		i := newItem(m, w.now(), duration)
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		w.pcache.Add(uint32(key), i)
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	case response.NameError, response.NoData:
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 		i := newItem(m, w.now(), duration)
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 		w.ncache.Add(uint32(key), i)
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	case response.OtherError:
 | 
					
						
							| 
									
										
										
										
											2016-05-22 19:43:58 +01:00
										 |  |  | 		// don't cache these
 | 
					
						
							|  |  |  | 	default:
 | 
					
						
							| 
									
										
										
										
											2018-02-17 19:45:52 +01:00
										 |  |  | 		log.Printf("[WARNING] Caching called with unknown classification: %d", mt)
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // Write implements the dns.ResponseWriter interface.
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | func (w *ResponseWriter) Write(buf []byte) (int, error) {
 | 
					
						
							| 
									
										
										
										
											2018-03-09 20:42:27 +00:00
										 |  |  | 	log.Print("[WARNING] Caching called with Write: not caching reply")
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	if w.prefetch {
 | 
					
						
							|  |  |  | 		return 0, nil
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	n, err := w.ResponseWriter.Write(buf)
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	return n, err
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const (
 | 
					
						
							| 
									
										
										
										
											2018-02-17 19:45:52 +01:00
										 |  |  | 	maxTTL      = 1 * time.Hour
 | 
					
						
							|  |  |  | 	maxNTTL     = 30 * time.Minute
 | 
					
						
							|  |  |  | 	failSafeTTL = 5 * time.Second
 | 
					
						
							| 
									
										
										
										
											2016-11-09 10:01:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	defaultCap = 10000 // default capacity of the cache.
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-13 14:03:12 +00:00
										 |  |  | 	// Success is the class for caching positive caching.
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 	Success = "success"
 | 
					
						
							|  |  |  | 	// Denial is the class defined for negative caching.
 | 
					
						
							|  |  |  | 	Denial = "denial"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | )
 |