| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | package cache
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin/cache/freq"
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type item struct {
 | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 	Rcode              int
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	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
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*freq.Freq
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | func newItem(m *dns.Msg, now time.Time, d time.Duration) *item {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	i := new(item)
 | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 	i.Rcode = m.Rcode
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	i.AuthenticatedData = m.AuthenticatedData
 | 
					
						
							|  |  |  | 	i.RecursionAvailable = m.RecursionAvailable
 | 
					
						
							|  |  |  | 	i.Answer = m.Answer
 | 
					
						
							|  |  |  | 	i.Ns = m.Ns
 | 
					
						
							|  |  |  | 	i.Extra = make([]dns.RR, len(m.Extra))
 | 
					
						
							| 
									
										
										
										
											2018-05-08 18:36:08 +01:00
										 |  |  | 	// Don't copy OPT records as these are hop-by-hop.
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	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())
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 	i.stored = now.UTC()
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | 	i.Freq = new(freq.Freq)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	return i
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 12:39:10 -07:00
										 |  |  | // toMsg turns i into a message, it tailors the reply to m.
 | 
					
						
							| 
									
										
										
										
											2016-11-13 14:03:12 +00:00
										 |  |  | // The Authoritative bit is always set to 0, because the answer is from the cache.
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | func (i *item) toMsg(m *dns.Msg, now time.Time) *dns.Msg {
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	m1 := new(dns.Msg)
 | 
					
						
							|  |  |  | 	m1.SetReply(m)
 | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-19 21:36:59 +08:00
										 |  |  | 	// Set this to true as some DNS clients discard the *entire* packet when it's non-authoritative.
 | 
					
						
							| 
									
										
										
										
											2019-06-13 10:36:47 +01:00
										 |  |  | 	// This is probably not according to spec, but the bit itself is not super useful as this point, so
 | 
					
						
							|  |  |  | 	// just set it to true.
 | 
					
						
							|  |  |  | 	m1.Authoritative = true
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	m1.AuthenticatedData = i.AuthenticatedData
 | 
					
						
							|  |  |  | 	m1.RecursionAvailable = i.RecursionAvailable
 | 
					
						
							| 
									
										
										
										
											2016-10-28 07:50:16 +01:00
										 |  |  | 	m1.Rcode = i.Rcode
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 	m1.Answer = make([]dns.RR, len(i.Answer))
 | 
					
						
							|  |  |  | 	m1.Ns = make([]dns.RR, len(i.Ns))
 | 
					
						
							|  |  |  | 	m1.Extra = make([]dns.RR, len(i.Extra))
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 08:35:22 +01:00
										 |  |  | 	ttl := uint32(i.ttl(now))
 | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 	for j, r := range i.Answer {
 | 
					
						
							|  |  |  | 		m1.Answer[j] = dns.Copy(r)
 | 
					
						
							|  |  |  | 		m1.Answer[j].Header().Ttl = ttl
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 	for j, r := range i.Ns {
 | 
					
						
							|  |  |  | 		m1.Ns[j] = dns.Copy(r)
 | 
					
						
							|  |  |  | 		m1.Ns[j].Header().Ttl = ttl
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2018-05-08 18:36:08 +01:00
										 |  |  | 	// newItem skips OPT records, so we can just use i.Extra as is.
 | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 	for j, r := range i.Extra {
 | 
					
						
							|  |  |  | 		m1.Extra[j] = dns.Copy(r)
 | 
					
						
							| 
									
										
										
										
											2018-05-08 18:36:08 +01:00
										 |  |  | 		m1.Extra[j].Header().Ttl = ttl
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2017-06-26 07:44:25 -07:00
										 |  |  | 	return m1
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (i *item) ttl(now time.Time) int {
 | 
					
						
							|  |  |  | 	ttl := int(i.origTTL) - int(now.UTC().Sub(i.stored).Seconds())
 | 
					
						
							|  |  |  | 	return ttl
 | 
					
						
							| 
									
										
										
										
											2016-04-19 11:13:24 +01:00
										 |  |  | }
 |