2015-12-03 20:01:46 +00:00
|
|
|
package acme
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
2016-02-06 23:09:43 +00:00
|
|
|
|
|
|
|
"github.com/miekg/dns"
|
2015-12-03 20:01:46 +00:00
|
|
|
)
|
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
// DNSProviderRFC2136 is an implementation of the ChallengeProvider interface that
|
2015-12-03 20:01:46 +00:00
|
|
|
// uses dynamic DNS updates (RFC 2136) to create TXT records on a nameserver.
|
|
|
|
type DNSProviderRFC2136 struct {
|
2016-02-06 23:09:43 +00:00
|
|
|
nameserver string
|
|
|
|
zone string
|
|
|
|
tsigAlgorithm string
|
|
|
|
tsigKey string
|
|
|
|
tsigSecret string
|
|
|
|
records map[string]string
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProviderRFC2136 returns a new DNSProviderRFC2136 instance.
|
2016-02-06 23:09:43 +00:00
|
|
|
// To disable TSIG authentication 'tsigAlgorithm, 'tsigKey' and 'tsigSecret' must be set to the empty string.
|
2015-12-03 20:01:46 +00:00
|
|
|
// 'nameserver' must be a network address in the the form "host:port". 'zone' must be the fully
|
|
|
|
// qualified name of the zone.
|
2016-02-06 23:09:43 +00:00
|
|
|
func NewDNSProviderRFC2136(nameserver, zone, tsigAlgorithm, tsigKey, tsigSecret string) (*DNSProviderRFC2136, error) {
|
2015-12-03 20:01:46 +00:00
|
|
|
d := &DNSProviderRFC2136{
|
|
|
|
nameserver: nameserver,
|
|
|
|
zone: zone,
|
2016-01-15 04:06:25 +00:00
|
|
|
records: make(map[string]string),
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
2016-02-06 23:09:43 +00:00
|
|
|
if tsigAlgorithm == "" {
|
|
|
|
tsigAlgorithm = dns.HmacMD5
|
|
|
|
}
|
|
|
|
d.tsigAlgorithm = tsigAlgorithm
|
2015-12-03 20:01:46 +00:00
|
|
|
if len(tsigKey) > 0 && len(tsigSecret) > 0 {
|
|
|
|
d.tsigKey = tsigKey
|
|
|
|
d.tsigSecret = tsigSecret
|
|
|
|
}
|
|
|
|
|
|
|
|
return d, nil
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
// Present creates a TXT record using the specified parameters
|
|
|
|
func (r *DNSProviderRFC2136) Present(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value, ttl := DNS01Record(domain, keyAuth)
|
|
|
|
r.records[fqdn] = value
|
2015-12-03 20:01:46 +00:00
|
|
|
return r.changeRecord("INSERT", fqdn, value, ttl)
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
// CleanUp removes the TXT record matching the specified parameters
|
|
|
|
func (r *DNSProviderRFC2136) CleanUp(domain, token, keyAuth string) error {
|
|
|
|
fqdn, _, ttl := DNS01Record(domain, keyAuth)
|
|
|
|
value := r.records[fqdn]
|
2015-12-03 20:01:46 +00:00
|
|
|
return r.changeRecord("REMOVE", fqdn, value, ttl)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *DNSProviderRFC2136) changeRecord(action, fqdn, value string, ttl int) error {
|
|
|
|
// Create RR
|
|
|
|
rr := new(dns.TXT)
|
|
|
|
rr.Hdr = dns.RR_Header{Name: fqdn, Rrtype: dns.TypeTXT, Class: dns.ClassINET, Ttl: uint32(ttl)}
|
|
|
|
rr.Txt = []string{value}
|
|
|
|
rrs := make([]dns.RR, 1)
|
|
|
|
rrs[0] = rr
|
|
|
|
|
|
|
|
// Create dynamic update packet
|
|
|
|
m := new(dns.Msg)
|
|
|
|
m.SetUpdate(dns.Fqdn(r.zone))
|
|
|
|
switch action {
|
|
|
|
case "INSERT":
|
|
|
|
m.Insert(rrs)
|
|
|
|
case "REMOVE":
|
|
|
|
m.Remove(rrs)
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Unexpected action: %s", action)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup client
|
|
|
|
c := new(dns.Client)
|
|
|
|
c.SingleInflight = true
|
|
|
|
// TSIG authentication / msg signing
|
|
|
|
if len(r.tsigKey) > 0 && len(r.tsigSecret) > 0 {
|
2016-02-06 23:09:43 +00:00
|
|
|
m.SetTsig(dns.Fqdn(r.tsigKey), r.tsigAlgorithm, 300, time.Now().Unix())
|
2015-12-03 20:01:46 +00:00
|
|
|
c.TsigSecret = map[string]string{dns.Fqdn(r.tsigKey): r.tsigSecret}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send the query
|
|
|
|
reply, _, err := c.Exchange(m, r.nameserver)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("DNS update failed: %v", err)
|
|
|
|
}
|
|
|
|
if reply != nil && reply.Rcode != dns.RcodeSuccess {
|
|
|
|
return fmt.Errorf("DNS update failed. Server replied: %s", dns.RcodeToString[reply.Rcode])
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|