mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 16:24:19 -04:00
Every plugin needs to deal with EDNS0 and should call Scrub to make a message fit the client's buffer. Move this functionality into the server and wrapping the ResponseWriter into a ScrubWriter that handles these bits for us. Result: Less code and faster, because multiple chained plugins could all be calling scrub and SizeAndDo - now there is just one place. Most tests in file/* and dnssec/* needed adjusting because in those unit tests you don't see OPT RRs anymore. The DNSSEC signer was also looking at the returned OPT RR to see if it needed to sign - as those are now added by the server (and thus later), this needed to change slightly. Scrub itself still exist (for backward compat reasons), but has been made a noop. Scrub has been renamed to scrub as it should not be used by external plugins. Fixes: #2010 Signed-off-by: Miek Gieben <miek@miek.nl>
111 lines
3.0 KiB
Go
111 lines
3.0 KiB
Go
// Package route53 implements a plugin that returns resource records
|
|
// from AWS route53
|
|
package route53
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
"github.com/coredns/coredns/plugin"
|
|
"github.com/coredns/coredns/request"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/route53"
|
|
"github.com/aws/aws-sdk-go/service/route53/route53iface"
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
// Route53 is a plugin that returns RR from AWS route53
|
|
type Route53 struct {
|
|
Next plugin.Handler
|
|
|
|
zones []string
|
|
keys map[string]string
|
|
client route53iface.Route53API
|
|
}
|
|
|
|
// ServeDNS implements the plugin.Handler interface.
|
|
func (rr Route53) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) (int, error) {
|
|
state := request.Request{W: w, Req: r}
|
|
qname := state.Name()
|
|
|
|
zone := plugin.Zones(rr.zones).Matches(qname)
|
|
if zone == "" {
|
|
return plugin.NextOrFailure(rr.Name(), rr.Next, ctx, w, r)
|
|
}
|
|
|
|
output, err := rr.client.ListResourceRecordSets(&route53.ListResourceRecordSetsInput{
|
|
HostedZoneId: aws.String(rr.keys[zone]),
|
|
StartRecordName: aws.String(qname),
|
|
StartRecordType: aws.String(state.Type()),
|
|
MaxItems: aws.String("1"),
|
|
})
|
|
if err != nil {
|
|
return dns.RcodeServerFailure, err
|
|
}
|
|
|
|
answers := []dns.RR{}
|
|
switch state.QType() {
|
|
case dns.TypeA:
|
|
answers = a(qname, output.ResourceRecordSets)
|
|
case dns.TypeAAAA:
|
|
answers = aaaa(qname, output.ResourceRecordSets)
|
|
case dns.TypePTR:
|
|
answers = ptr(qname, output.ResourceRecordSets)
|
|
}
|
|
|
|
if len(answers) == 0 {
|
|
return plugin.NextOrFailure(rr.Name(), rr.Next, ctx, w, r)
|
|
}
|
|
|
|
m := new(dns.Msg)
|
|
m.SetReply(r)
|
|
m.Authoritative, m.RecursionAvailable = true, true
|
|
m.Answer = answers
|
|
|
|
w.WriteMsg(m)
|
|
return dns.RcodeSuccess, nil
|
|
}
|
|
|
|
func a(zone string, rrss []*route53.ResourceRecordSet) []dns.RR {
|
|
answers := []dns.RR{}
|
|
for _, rrs := range rrss {
|
|
for _, rr := range rrs.ResourceRecords {
|
|
r := new(dns.A)
|
|
r.Hdr = dns.RR_Header{Name: zone, Rrtype: dns.TypeA, Class: dns.ClassINET, Ttl: uint32(aws.Int64Value(rrs.TTL))}
|
|
r.A = net.ParseIP(aws.StringValue(rr.Value)).To4()
|
|
answers = append(answers, r)
|
|
}
|
|
}
|
|
return answers
|
|
}
|
|
|
|
func aaaa(zone string, rrss []*route53.ResourceRecordSet) []dns.RR {
|
|
answers := []dns.RR{}
|
|
for _, rrs := range rrss {
|
|
for _, rr := range rrs.ResourceRecords {
|
|
r := new(dns.AAAA)
|
|
r.Hdr = dns.RR_Header{Name: zone, Rrtype: dns.TypeAAAA, Class: dns.ClassINET, Ttl: uint32(aws.Int64Value(rrs.TTL))}
|
|
r.AAAA = net.ParseIP(aws.StringValue(rr.Value)).To16()
|
|
answers = append(answers, r)
|
|
}
|
|
}
|
|
return answers
|
|
}
|
|
|
|
func ptr(zone string, rrss []*route53.ResourceRecordSet) []dns.RR {
|
|
answers := []dns.RR{}
|
|
for _, rrs := range rrss {
|
|
for _, rr := range rrs.ResourceRecords {
|
|
r := new(dns.PTR)
|
|
r.Hdr = dns.RR_Header{Name: zone, Rrtype: dns.TypePTR, Class: dns.ClassINET, Ttl: uint32(aws.Int64Value(rrs.TTL))}
|
|
r.Ptr = aws.StringValue(rr.Value)
|
|
answers = append(answers, r)
|
|
}
|
|
}
|
|
return answers
|
|
}
|
|
|
|
// Name implements the Handler interface.
|
|
func (rr Route53) Name() string { return "route53" }
|