| 
									
										
										
										
											2016-10-08 14:46:22 +01:00
										 |  |  | // Package cache implements a cache.
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | package cache
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"log"
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	"strconv"
 | 
					
						
							| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | 	"strings"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/coredns/middleware"
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	"github.com/miekg/coredns/middleware/pkg/response"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	"github.com/hashicorp/golang-lru"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Cache is middleware 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 {
 | 
					
						
							|  |  |  | 	Next  middleware.Handler
 | 
					
						
							|  |  |  | 	Zones []string
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	ncache *lru.Cache
 | 
					
						
							|  |  |  | 	ncap   int
 | 
					
						
							|  |  |  | 	nttl   time.Duration
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pcache *lru.Cache
 | 
					
						
							|  |  |  | 	pcap   int
 | 
					
						
							|  |  |  | 	pttl   time.Duration
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-07 16:27:50 +00:00
										 |  |  | // Return key under which we store the item. The empty string is returned
 | 
					
						
							|  |  |  | // when we don't want to cache the message. Currently we do not cache Truncated, errors
 | 
					
						
							|  |  |  | // zone transfers or dynamic update messages.
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | func key(m *dns.Msg, t response.Type, do bool) string {
 | 
					
						
							| 
									
										
										
										
											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 {
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 		return ""
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-11-07 16:27:50 +00:00
										 |  |  | 	// Nor errors or Meta or Update
 | 
					
						
							|  |  |  | 	if t == response.OtherError || t == response.Meta || t == response.Update {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		return ""
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	qtype := m.Question[0].Qtype
 | 
					
						
							| 
									
										
										
										
											2016-04-26 20:45:29 +01:00
										 |  |  | 	qname := strings.ToLower(m.Question[0].Name)
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	return rawKey(qname, qtype, do)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func rawKey(qname string, qtype uint16, do bool) string {
 | 
					
						
							|  |  |  | 	if do {
 | 
					
						
							|  |  |  | 		return "1" + qname + "." + strconv.Itoa(int(qtype))
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	return "0" + qname + "." + strconv.Itoa(int(qtype))
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // WriteMsg implements the dns.ResponseWriter interface.
 | 
					
						
							|  |  |  | func (c *ResponseWriter) WriteMsg(res *dns.Msg) error {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	do := false
 | 
					
						
							| 
									
										
										
										
											2016-10-10 12:09:29 +01:00
										 |  |  | 	mt, opt := response.Typify(res)
 | 
					
						
							| 
									
										
										
										
											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)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	duration := c.pttl
 | 
					
						
							|  |  |  | 	if mt == response.NameError || mt == response.NoData {
 | 
					
						
							|  |  |  | 		duration = c.nttl
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	if key != "" {
 | 
					
						
							|  |  |  | 		c.set(res, key, mt, duration)
 | 
					
						
							| 
									
										
										
										
											2016-10-26 10:01:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		cacheSize.WithLabelValues(Success).Set(float64(c.pcache.Len()))
 | 
					
						
							|  |  |  | 		cacheSize.WithLabelValues(Denial).Set(float64(c.ncache.Len()))
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	setMsgTTL(res, uint32(duration.Seconds()))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	return c.ResponseWriter.WriteMsg(res)
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | func (c *ResponseWriter) set(m *dns.Msg, key string, mt response.Type, duration time.Duration) {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	if key == "" {
 | 
					
						
							| 
									
										
										
										
											2016-05-22 19:43:58 +01:00
										 |  |  | 		log.Printf("[ERROR] Caching called with empty cache key")
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		return
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch mt {
 | 
					
						
							| 
									
										
										
										
											2016-10-10 12:09:29 +01:00
										 |  |  | 	case response.NoError, response.Delegation:
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		i := newItem(m, duration)
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 		c.pcache.Add(key, i)
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 11:10:16 +01:00
										 |  |  | 	case response.NameError, response.NoData:
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		i := newItem(m, duration)
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 		c.ncache.Add(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:
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +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.
 | 
					
						
							|  |  |  | func (c *ResponseWriter) Write(buf []byte) (int, error) {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	log.Printf("[WARNING] Caching called with Write: not caching reply")
 | 
					
						
							|  |  |  | 	n, err := c.ResponseWriter.Write(buf)
 | 
					
						
							|  |  |  | 	return n, err
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const (
 | 
					
						
							| 
									
										
										
										
											2016-10-02 08:31:44 +01:00
										 |  |  | 	maxTTL  = 1 * time.Hour
 | 
					
						
							|  |  |  | 	maxNTTL = 30 * time.Minute
 | 
					
						
							| 
									
										
										
										
											2016-11-09 10:01:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	minTTL = 5 // seconds
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | )
 |