| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | package cache
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"strconv"
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type item struct {
 | 
					
						
							|  |  |  | 	Authoritative      bool
 | 
					
						
							|  |  |  | 	AuthenticatedData  bool
 | 
					
						
							|  |  |  | 	RecursionAvailable bool
 | 
					
						
							|  |  |  | 	Answer             []dns.RR
 | 
					
						
							|  |  |  | 	Ns                 []dns.RR
 | 
					
						
							|  |  |  | 	Extra              []dns.RR
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | 	origTTL uint32
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	stored  time.Time
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func newItem(m *dns.Msg, d time.Duration) *item {
 | 
					
						
							|  |  |  | 	i := new(item)
 | 
					
						
							|  |  |  | 	i.Authoritative = m.Authoritative
 | 
					
						
							|  |  |  | 	i.AuthenticatedData = m.AuthenticatedData
 | 
					
						
							|  |  |  | 	i.RecursionAvailable = m.RecursionAvailable
 | 
					
						
							|  |  |  | 	i.Answer = m.Answer
 | 
					
						
							|  |  |  | 	i.Ns = m.Ns
 | 
					
						
							|  |  |  | 	i.Extra = make([]dns.RR, len(m.Extra))
 | 
					
						
							|  |  |  | 	// Don't copy OPT record as these are hop-by-hop.
 | 
					
						
							|  |  |  | 	j := 0
 | 
					
						
							|  |  |  | 	for _, e := range m.Extra {
 | 
					
						
							|  |  |  | 		if e.Header().Rrtype == dns.TypeOPT {
 | 
					
						
							|  |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		i.Extra[j] = e
 | 
					
						
							|  |  |  | 		j++
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	i.Extra = i.Extra[:j]
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | 	i.origTTL = uint32(d.Seconds())
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	i.stored = time.Now().UTC()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return i
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // toMsg turns i into a message, it tailers to reply to m.
 | 
					
						
							|  |  |  | func (i *item) toMsg(m *dns.Msg) *dns.Msg {
 | 
					
						
							|  |  |  | 	m1 := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m1.SetReply(m)
 | 
					
						
							|  |  |  | 	m1.Authoritative = i.Authoritative
 | 
					
						
							|  |  |  | 	m1.AuthenticatedData = i.AuthenticatedData
 | 
					
						
							|  |  |  | 	m1.RecursionAvailable = i.RecursionAvailable
 | 
					
						
							|  |  |  | 	m1.Compress = true
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m1.Answer = i.Answer
 | 
					
						
							|  |  |  | 	m1.Ns = i.Ns
 | 
					
						
							|  |  |  | 	m1.Extra = i.Extra
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | 	ttl := int(i.origTTL) - int(time.Now().UTC().Sub(i.stored).Seconds())
 | 
					
						
							|  |  |  | 	if ttl < baseTTL {
 | 
					
						
							|  |  |  | 		ttl = baseTTL
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							|  |  |  | 	setCap(m1, uint32(ttl))
 | 
					
						
							|  |  |  | 	return m1
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // setCap sets the ttl on all RRs in all sections.
 | 
					
						
							|  |  |  | func setCap(m *dns.Msg, ttl uint32) {
 | 
					
						
							|  |  |  | 	for _, r := range m.Answer {
 | 
					
						
							|  |  |  | 		r.Header().Ttl = uint32(ttl)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for _, r := range m.Ns {
 | 
					
						
							|  |  |  | 		r.Header().Ttl = uint32(ttl)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	for _, r := range m.Extra {
 | 
					
						
							| 
									
										
										
										
											2016-05-22 19:43:58 +01:00
										 |  |  | 		if r.Header().Rrtype == dns.TypeOPT {
 | 
					
						
							|  |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 		r.Header().Ttl = uint32(ttl)
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // nodataKey returns a caching key for NODATA responses.
 | 
					
						
							|  |  |  | func noDataKey(qname string, qtype uint16, do bool) string {
 | 
					
						
							|  |  |  | 	if do {
 | 
					
						
							|  |  |  | 		return "1" + qname + ".." + strconv.Itoa(int(qtype))
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return "0" + qname + ".." + strconv.Itoa(int(qtype))
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // nameErrorKey returns a caching key for NXDOMAIN responses.
 | 
					
						
							|  |  |  | func nameErrorKey(qname string, do bool) string {
 | 
					
						
							|  |  |  | 	if do {
 | 
					
						
							|  |  |  | 		return "1" + qname
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 	return "0" + qname
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // successKey returns a caching key for successfull answers.
 | 
					
						
							|  |  |  | func successKey(qname string, qtype uint16, do bool) string { return noDataKey(qname, qtype, do) }
 |