2015-06-10 22:12:46 +00:00
|
|
|
package acme
|
2015-11-16 22:57:41 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha256"
|
2016-01-01 13:36:30 +00:00
|
|
|
"encoding/base64"
|
2015-11-16 22:57:41 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2016-01-15 04:06:25 +00:00
|
|
|
"log"
|
2016-02-03 04:03:03 +00:00
|
|
|
"net"
|
2016-01-01 13:36:30 +00:00
|
|
|
"strings"
|
2015-11-16 22:57:41 +00:00
|
|
|
"time"
|
2016-01-22 00:38:15 +00:00
|
|
|
|
|
|
|
"github.com/miekg/dns"
|
2015-11-16 22:57:41 +00:00
|
|
|
)
|
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
type preCheckDNSFunc func(fqdn, value string) (bool, error)
|
2016-01-22 00:38:15 +00:00
|
|
|
|
2016-02-14 06:24:19 +00:00
|
|
|
var preCheckDNS preCheckDNSFunc = checkDNSPropagation
|
2016-01-22 00:38:15 +00:00
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
var recursiveNameserver = "google-public-dns-a.google.com"
|
2016-01-22 00:38:15 +00:00
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
// DNS01Record returns a DNS record which will fulfill the `dns-01` challenge
|
|
|
|
func DNS01Record(domain, keyAuth string) (fqdn string, value string, ttl int) {
|
|
|
|
keyAuthShaBytes := sha256.Sum256([]byte(keyAuth))
|
|
|
|
// base64URL encoding without padding
|
|
|
|
keyAuthSha := base64.URLEncoding.EncodeToString(keyAuthShaBytes[:sha256.Size])
|
|
|
|
value = strings.TrimRight(keyAuthSha, "=")
|
|
|
|
ttl = 120
|
|
|
|
fqdn = fmt.Sprintf("_acme-challenge.%s.", domain)
|
|
|
|
return
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
2015-11-16 22:57:41 +00:00
|
|
|
|
|
|
|
// dnsChallenge implements the dns-01 challenge according to ACME 7.5
|
|
|
|
type dnsChallenge struct {
|
2015-12-03 20:01:46 +00:00
|
|
|
jws *jws
|
2016-01-24 23:23:21 +00:00
|
|
|
validate validateFunc
|
2016-01-15 04:06:25 +00:00
|
|
|
provider ChallengeProvider
|
2015-11-16 22:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *dnsChallenge) Solve(chlng challenge, domain string) error {
|
2016-01-30 21:17:41 +00:00
|
|
|
logf("[INFO][%s] acme: Trying to solve DNS-01", domain)
|
2015-11-16 22:57:41 +00:00
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
if s.provider == nil {
|
|
|
|
return errors.New("No DNS Provider configured")
|
|
|
|
}
|
|
|
|
|
2015-11-16 22:57:41 +00:00
|
|
|
// Generate the Key Authorization for the challenge
|
|
|
|
keyAuth, err := getKeyAuthorization(chlng.Token, &s.jws.privKey.PublicKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
err = s.provider.Present(domain, chlng.Token, keyAuth)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error presenting token %s", err)
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
2016-01-15 04:06:25 +00:00
|
|
|
defer func() {
|
|
|
|
err := s.provider.CleanUp(domain, chlng.Token, keyAuth)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error cleaning up %s %v ", domain, err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
fqdn, value, _ := DNS01Record(domain, keyAuth)
|
2015-11-16 22:57:41 +00:00
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
logf("[INFO][%s] Checking DNS record propagation...", domain)
|
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
err = waitFor(30, 2, func() (bool, error) {
|
|
|
|
return preCheckDNS(fqdn, value)
|
|
|
|
})
|
|
|
|
if err != nil {
|
2016-02-03 04:03:03 +00:00
|
|
|
return err
|
|
|
|
}
|
2016-01-22 00:38:15 +00:00
|
|
|
|
2016-01-24 23:32:47 +00:00
|
|
|
return s.validate(s.jws, domain, chlng.URI, challenge{Resource: "challenge", Type: chlng.Type, Token: chlng.Token, KeyAuthorization: keyAuth})
|
2015-11-16 22:57:41 +00:00
|
|
|
}
|
2016-01-22 01:25:27 +00:00
|
|
|
|
2016-02-14 06:24:19 +00:00
|
|
|
// checkDNSPropagation checks if the expected TXT record has been propagated to all authoritative nameservers.
|
|
|
|
func checkDNSPropagation(fqdn, value string) (bool, error) {
|
2016-02-10 14:52:53 +00:00
|
|
|
// Initial attempt to resolve at the recursive NS
|
|
|
|
r, err := dnsQuery(fqdn, dns.TypeTXT, recursiveNameserver, true)
|
2016-01-22 01:25:27 +00:00
|
|
|
if err != nil {
|
2016-02-10 14:52:53 +00:00
|
|
|
return false, err
|
|
|
|
}
|
2016-02-19 08:14:26 +00:00
|
|
|
if r.Rcode == dns.RcodeSuccess {
|
|
|
|
// If we see a CNAME here then use the alias
|
|
|
|
for _, rr := range r.Answer {
|
|
|
|
if cn, ok := rr.(*dns.CNAME); ok {
|
|
|
|
if cn.Hdr.Name == fqdn {
|
|
|
|
fqdn = cn.Target
|
|
|
|
break
|
|
|
|
}
|
2016-02-10 14:52:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
authoritativeNss, err := lookupNameservers(fqdn)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
2016-01-22 01:25:27 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
return checkAuthoritativeNss(fqdn, value, authoritativeNss)
|
2016-02-03 04:03:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// checkAuthoritativeNss queries each of the given nameservers for the expected TXT record.
|
|
|
|
func checkAuthoritativeNss(fqdn, value string, nameservers []string) (bool, error) {
|
|
|
|
for _, ns := range nameservers {
|
|
|
|
r, err := dnsQuery(fqdn, dns.TypeTXT, ns, false)
|
2016-01-22 01:25:27 +00:00
|
|
|
if err != nil {
|
2016-02-03 04:03:03 +00:00
|
|
|
return false, err
|
2016-01-22 01:25:27 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
if r.Rcode != dns.RcodeSuccess {
|
2016-02-10 14:52:53 +00:00
|
|
|
return false, fmt.Errorf("NS %s returned %s for %s", ns, dns.RcodeToString[r.Rcode], fqdn)
|
2016-01-22 01:25:27 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
var found bool
|
|
|
|
for _, rr := range r.Answer {
|
|
|
|
if txt, ok := rr.(*dns.TXT); ok {
|
|
|
|
if strings.Join(txt.Txt, "") == value {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2016-01-22 01:25:27 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
if !found {
|
2016-02-10 14:52:53 +00:00
|
|
|
return false, fmt.Errorf("NS %s did not return the expected TXT record", ns)
|
2016-02-03 04:03:03 +00:00
|
|
|
}
|
2016-01-22 01:25:27 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// dnsQuery sends a DNS query to the given nameserver.
|
|
|
|
func dnsQuery(fqdn string, rtype uint16, nameserver string, recursive bool) (in *dns.Msg, err error) {
|
|
|
|
m := new(dns.Msg)
|
|
|
|
m.SetQuestion(fqdn, rtype)
|
|
|
|
m.SetEdns0(4096, false)
|
2016-02-10 14:52:53 +00:00
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
if !recursive {
|
|
|
|
m.RecursionDesired = false
|
|
|
|
}
|
|
|
|
|
|
|
|
in, err = dns.Exchange(m, net.JoinHostPort(nameserver, "53"))
|
|
|
|
if err == dns.ErrTruncated {
|
|
|
|
tcp := &dns.Client{Net: "tcp"}
|
|
|
|
in, _, err = tcp.Exchange(m, nameserver)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
// lookupNameservers returns the authoritative nameservers for the given fqdn.
|
2016-02-03 04:03:03 +00:00
|
|
|
func lookupNameservers(fqdn string) ([]string, error) {
|
|
|
|
var authoritativeNss []string
|
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
r, err := dnsQuery(fqdn, dns.TypeNS, recursiveNameserver, true)
|
2016-02-03 04:03:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, rr := range r.Answer {
|
2016-02-10 14:52:53 +00:00
|
|
|
if ns, ok := rr.(*dns.NS); ok {
|
|
|
|
authoritativeNss = append(authoritativeNss, strings.ToLower(ns.Ns))
|
2016-02-03 04:03:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-10 14:52:53 +00:00
|
|
|
if len(authoritativeNss) > 0 {
|
|
|
|
return authoritativeNss, nil
|
|
|
|
}
|
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
// Strip of the left most label to get the parent domain.
|
|
|
|
offset, _ := dns.NextLabel(fqdn, 0)
|
|
|
|
next := fqdn[offset:]
|
|
|
|
if dns.CountLabel(next) < 2 {
|
2016-02-10 14:52:53 +00:00
|
|
|
return nil, fmt.Errorf("Could not determine authoritative nameservers")
|
2016-02-03 04:03:03 +00:00
|
|
|
}
|
2016-02-10 14:52:53 +00:00
|
|
|
|
|
|
|
return lookupNameservers(next)
|
2016-01-22 01:25:27 +00:00
|
|
|
}
|
2016-01-26 15:37:50 +00:00
|
|
|
|
|
|
|
// toFqdn converts the name into a fqdn appending a trailing dot.
|
|
|
|
func toFqdn(name string) string {
|
|
|
|
n := len(name)
|
|
|
|
if n == 0 || name[n-1] == '.' {
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
return name + "."
|
|
|
|
}
|
|
|
|
|
|
|
|
// unFqdn converts the fqdn into a name removing the trailing dot.
|
|
|
|
func unFqdn(name string) string {
|
|
|
|
n := len(name)
|
|
|
|
if n != 0 && name[n-1] == '.' {
|
|
|
|
return name[:n-1]
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
2016-02-03 06:04:12 +00:00
|
|
|
|
2016-02-03 04:03:03 +00:00
|
|
|
// waitFor polls the given function 'f', once every 'interval' seconds, up to 'timeout' seconds.
|
|
|
|
func waitFor(timeout, interval int, f func() (bool, error)) error {
|
|
|
|
var lastErr string
|
|
|
|
timeup := time.After(time.Duration(timeout) * time.Second)
|
2016-02-03 06:04:12 +00:00
|
|
|
for {
|
2016-02-03 04:03:03 +00:00
|
|
|
select {
|
|
|
|
case <-timeup:
|
|
|
|
return fmt.Errorf("Time limit exceeded. Last error: %s", lastErr)
|
|
|
|
default:
|
2016-02-03 06:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop, err := f()
|
|
|
|
if stop {
|
|
|
|
return nil
|
|
|
|
}
|
2016-02-03 04:03:03 +00:00
|
|
|
if err != nil {
|
|
|
|
lastErr = err.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(time.Duration(interval) * time.Second)
|
2016-02-03 06:04:12 +00:00
|
|
|
}
|
|
|
|
}
|