mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	Return a delegation when seeing one while traversing the tree in search of an answer. Put the SOA and NS record in the zone.Apex as these are to be handled somewhat special. Lowercase record on insert to make compares easier. This lowercases all RR that have domain names in their rdata as well.
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package file
 | |
| 
 | |
| import "github.com/miekg/dns"
 | |
| 
 | |
| // ClosestEncloser returns the closest encloser for rr.
 | |
| func (z *Zone) ClosestEncloser(qname string, qtype uint16) string {
 | |
| 	// tree/tree.go does not store a parent *Node pointer, so we can't
 | |
| 	// just follow up the tree. TODO(miek): fix.
 | |
| 	offset, end := dns.NextLabel(qname, 0)
 | |
| 	for !end {
 | |
| 		elem, _ := z.Tree.Search(qname, qtype)
 | |
| 		if elem != nil {
 | |
| 			return elem.Name()
 | |
| 		}
 | |
| 		qname = qname[offset:]
 | |
| 
 | |
| 		offset, end = dns.NextLabel(qname, offset)
 | |
| 	}
 | |
| 
 | |
| 	return z.Apex.SOA.Header().Name
 | |
| }
 | |
| 
 | |
| // nameErrorProof finds the closest encloser and return an NSEC that proofs
 | |
| // the wildcard does not exist and an NSEC that proofs the name does no exist.
 | |
| func (z *Zone) nameErrorProof(qname string, qtype uint16) []dns.RR {
 | |
| 	elem := z.Tree.Prev(qname)
 | |
| 	if elem == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	nsec := z.lookupNSEC(elem, true)
 | |
| 	nsecIndex := 0
 | |
| 	for i := 0; i < len(nsec); i++ {
 | |
| 		if nsec[i].Header().Rrtype == dns.TypeNSEC {
 | |
| 			nsecIndex = i
 | |
| 			break
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// We do this lookup twice, once for wildcard and once for the name proof. TODO(miek): fix
 | |
| 	ce := z.ClosestEncloser(qname, qtype)
 | |
| 	elem = z.Tree.Prev("*." + ce)
 | |
| 	if elem == nil {
 | |
| 		// Root?
 | |
| 		return nil
 | |
| 	}
 | |
| 	nsec1 := z.lookupNSEC(elem, true)
 | |
| 	nsec1Index := 0
 | |
| 	for i := 0; i < len(nsec1); i++ {
 | |
| 		if nsec1[i].Header().Rrtype == dns.TypeNSEC {
 | |
| 			nsec1Index = i
 | |
| 			break
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// Check for duplicate NSEC.
 | |
| 	if nsec[nsecIndex].Header().Name == nsec1[nsec1Index].Header().Name &&
 | |
| 		nsec[nsecIndex].(*dns.NSEC).NextDomain == nsec1[nsec1Index].(*dns.NSEC).NextDomain {
 | |
| 		return nsec
 | |
| 	}
 | |
| 
 | |
| 	return append(nsec, nsec1...)
 | |
| }
 |