mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 02:33:21 -05:00 
			
		
		
		
	* Add test case for TXT lookup via CNAME Signed-off-by: Jonathan Nagy <nagytech@users.noreply.github.com> * Return HostType of explicit TXT records Signed-off-by: Jonathan Nagy <nagytech@users.noreply.github.com> * Adapt TXT method lookup to allow lookup via CNAME Signed-off-by: Jonathan Nagy <nagytech@users.noreply.github.com> * Implement lookup of TXT records via CNAME Signed-off-by: Jonathan Nagy <nagytech@users.noreply.github.com>
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package etcd
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"github.com/coredns/coredns/plugin"
 | 
						|
	"github.com/coredns/coredns/request"
 | 
						|
 | 
						|
	"github.com/miekg/dns"
 | 
						|
)
 | 
						|
 | 
						|
// ServeDNS implements the plugin.Handler interface.
 | 
						|
func (e *Etcd) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
 | 
						|
	opt := plugin.Options{}
 | 
						|
	state := request.Request{W: w, Req: r}
 | 
						|
 | 
						|
	zone := plugin.Zones(e.Zones).Matches(state.Name())
 | 
						|
	if zone == "" {
 | 
						|
		return plugin.NextOrFailure(e.Name(), e.Next, ctx, w, r)
 | 
						|
	}
 | 
						|
 | 
						|
	var (
 | 
						|
		records, extra []dns.RR
 | 
						|
		err            error
 | 
						|
	)
 | 
						|
 | 
						|
	switch state.QType() {
 | 
						|
	case dns.TypeA:
 | 
						|
		records, err = plugin.A(ctx, e, zone, state, nil, opt)
 | 
						|
	case dns.TypeAAAA:
 | 
						|
		records, err = plugin.AAAA(ctx, e, zone, state, nil, opt)
 | 
						|
	case dns.TypeTXT:
 | 
						|
		records, err = plugin.TXT(ctx, e, zone, state, nil, opt)
 | 
						|
	case dns.TypeCNAME:
 | 
						|
		records, err = plugin.CNAME(ctx, e, zone, state, opt)
 | 
						|
	case dns.TypePTR:
 | 
						|
		records, err = plugin.PTR(ctx, e, zone, state, opt)
 | 
						|
	case dns.TypeMX:
 | 
						|
		records, extra, err = plugin.MX(ctx, e, zone, state, opt)
 | 
						|
	case dns.TypeSRV:
 | 
						|
		records, extra, err = plugin.SRV(ctx, e, zone, state, opt)
 | 
						|
	case dns.TypeSOA:
 | 
						|
		records, err = plugin.SOA(ctx, e, zone, state, opt)
 | 
						|
	case dns.TypeNS:
 | 
						|
		if state.Name() == zone {
 | 
						|
			records, extra, err = plugin.NS(ctx, e, zone, state, opt)
 | 
						|
			break
 | 
						|
		}
 | 
						|
		fallthrough
 | 
						|
	default:
 | 
						|
		// Do a fake A lookup, so we can distinguish between NODATA and NXDOMAIN
 | 
						|
		_, err = plugin.A(ctx, e, zone, state, nil, opt)
 | 
						|
	}
 | 
						|
	if err != nil && e.IsNameError(err) {
 | 
						|
		if e.Fall.Through(state.Name()) {
 | 
						|
			return plugin.NextOrFailure(e.Name(), e.Next, ctx, w, r)
 | 
						|
		}
 | 
						|
		// Make err nil when returning here, so we don't log spam for NXDOMAIN.
 | 
						|
		return plugin.BackendError(ctx, e, zone, dns.RcodeNameError, state, nil /* err */, opt)
 | 
						|
	}
 | 
						|
	if err != nil {
 | 
						|
		return plugin.BackendError(ctx, e, zone, dns.RcodeServerFailure, state, err, opt)
 | 
						|
	}
 | 
						|
 | 
						|
	if len(records) == 0 {
 | 
						|
		return plugin.BackendError(ctx, e, zone, dns.RcodeSuccess, state, err, opt)
 | 
						|
	}
 | 
						|
 | 
						|
	m := new(dns.Msg)
 | 
						|
	m.SetReply(r)
 | 
						|
	m.Authoritative = true
 | 
						|
	m.Answer = append(m.Answer, records...)
 | 
						|
	m.Extra = append(m.Extra, extra...)
 | 
						|
 | 
						|
	w.WriteMsg(m)
 | 
						|
	return dns.RcodeSuccess, nil
 | 
						|
}
 | 
						|
 | 
						|
// Name implements the Handler interface.
 | 
						|
func (e *Etcd) Name() string { return "etcd" }
 |