2018-12-06 21:50:17 +00:00
|
|
|
// Package cloudflare implements a DNS provider for solving the DNS-01 challenge using cloudflare DNS.
|
2019-03-11 16:56:48 +00:00
|
|
|
package cloudflare
|
2015-12-03 20:01:46 +00:00
|
|
|
|
|
|
|
import (
|
2018-06-11 15:32:50 +00:00
|
|
|
"errors"
|
2015-12-03 20:01:46 +00:00
|
|
|
"fmt"
|
2016-02-16 14:50:24 +00:00
|
|
|
"net/http"
|
2019-11-05 11:58:13 +00:00
|
|
|
"sync"
|
2016-02-16 14:50:24 +00:00
|
|
|
"time"
|
2016-02-29 02:48:41 +00:00
|
|
|
|
2019-01-11 18:23:27 +00:00
|
|
|
cloudflare "github.com/cloudflare/cloudflare-go"
|
2020-09-02 01:20:01 +00:00
|
|
|
"github.com/go-acme/lego/v4/challenge/dns01"
|
|
|
|
"github.com/go-acme/lego/v4/log"
|
|
|
|
"github.com/go-acme/lego/v4/platform/config/env"
|
2015-12-03 20:01:46 +00:00
|
|
|
)
|
|
|
|
|
2018-10-02 22:02:01 +00:00
|
|
|
const (
|
|
|
|
minTTL = 120
|
|
|
|
)
|
2018-09-15 17:07:24 +00:00
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// Config is used to configure the creation of the DNSProvider.
|
2018-09-15 17:07:24 +00:00
|
|
|
type Config struct {
|
2019-10-09 00:20:30 +00:00
|
|
|
AuthEmail string
|
|
|
|
AuthKey string
|
|
|
|
|
|
|
|
AuthToken string
|
|
|
|
ZoneToken string
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
TTL int
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
HTTPClient *http.Client
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider.
|
2018-09-15 17:07:24 +00:00
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
2018-10-02 22:02:01 +00:00
|
|
|
TTL: env.GetOrDefaultInt("CLOUDFLARE_TTL", minTTL),
|
2018-09-15 17:07:24 +00:00
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("CLOUDFLARE_PROPAGATION_TIMEOUT", 2*time.Minute),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("CLOUDFLARE_POLLING_INTERVAL", 2*time.Second),
|
|
|
|
HTTPClient: &http.Client{
|
|
|
|
Timeout: env.GetOrDefaultSecond("CLOUDFLARE_HTTP_TIMEOUT", 30*time.Second),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2016-02-16 14:50:24 +00:00
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// DNSProvider implements the challenge.Provider interface.
|
2016-03-11 02:46:09 +00:00
|
|
|
type DNSProvider struct {
|
2019-10-09 00:20:30 +00:00
|
|
|
client *metaClient
|
2018-09-15 17:07:24 +00:00
|
|
|
config *Config
|
2019-11-05 11:58:13 +00:00
|
|
|
|
|
|
|
recordIDs map[string]string
|
|
|
|
recordIDsMu sync.Mutex
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for Cloudflare.
|
2019-10-09 00:20:30 +00:00
|
|
|
// Credentials must be passed in as environment variables:
|
|
|
|
//
|
|
|
|
// Either provide CLOUDFLARE_EMAIL and CLOUDFLARE_API_KEY,
|
|
|
|
// or a CLOUDFLARE_DNS_API_TOKEN.
|
|
|
|
//
|
|
|
|
// For a more paranoid setup, provide CLOUDFLARE_DNS_API_TOKEN and CLOUDFLARE_ZONE_API_TOKEN.
|
|
|
|
//
|
|
|
|
// The email and API key should be avoided, if possible.
|
|
|
|
// Instead setup a API token with both Zone:Read and DNS:Edit permission, and pass the CLOUDFLARE_DNS_API_TOKEN environment variable.
|
|
|
|
// You can split the Zone:Read and DNS:Edit permissions across multiple API tokens:
|
|
|
|
// in this case pass both CLOUDFLARE_ZONE_API_TOKEN and CLOUDFLARE_DNS_API_TOKEN accordingly.
|
2016-03-17 20:59:15 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-10-02 20:34:34 +00:00
|
|
|
values, err := env.GetWithFallback(
|
|
|
|
[]string{"CLOUDFLARE_EMAIL", "CF_API_EMAIL"},
|
2019-09-01 12:32:20 +00:00
|
|
|
[]string{"CLOUDFLARE_API_KEY", "CF_API_KEY"},
|
|
|
|
)
|
2018-06-11 15:32:50 +00:00
|
|
|
if err != nil {
|
2019-09-01 12:32:20 +00:00
|
|
|
var errT error
|
|
|
|
values, errT = env.GetWithFallback(
|
2019-10-09 00:20:30 +00:00
|
|
|
[]string{"CLOUDFLARE_DNS_API_TOKEN", "CF_DNS_API_TOKEN"},
|
|
|
|
[]string{"CLOUDFLARE_ZONE_API_TOKEN", "CF_ZONE_API_TOKEN", "CLOUDFLARE_DNS_API_TOKEN", "CF_DNS_API_TOKEN"},
|
2019-09-01 12:32:20 +00:00
|
|
|
)
|
|
|
|
if errT != nil {
|
2020-10-27 11:01:05 +00:00
|
|
|
// nolint:errorlint
|
2019-09-01 12:32:20 +00:00
|
|
|
return nil, fmt.Errorf("cloudflare: %v or %v", err, errT)
|
|
|
|
}
|
2018-06-11 15:32:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.AuthEmail = values["CLOUDFLARE_EMAIL"]
|
|
|
|
config.AuthKey = values["CLOUDFLARE_API_KEY"]
|
2019-10-09 00:20:30 +00:00
|
|
|
config.AuthToken = values["CLOUDFLARE_DNS_API_TOKEN"]
|
|
|
|
config.ZoneToken = values["CLOUDFLARE_ZONE_API_TOKEN"]
|
2018-09-15 17:07:24 +00:00
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
2016-03-17 20:59:15 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for Cloudflare.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("cloudflare: the configuration of the DNS provider is nil")
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2018-10-02 22:02:01 +00:00
|
|
|
if config.TTL < minTTL {
|
2018-10-09 16:22:45 +00:00
|
|
|
return nil, fmt.Errorf("cloudflare: invalid TTL, TTL (%d) must be greater than %d", config.TTL, minTTL)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 00:20:30 +00:00
|
|
|
client, err := newClient(config)
|
2018-09-15 17:07:24 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, fmt.Errorf("cloudflare: %w", err)
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 10:50:44 +00:00
|
|
|
return &DNSProvider{
|
|
|
|
client: client,
|
|
|
|
config: config,
|
|
|
|
recordIDs: make(map[string]string),
|
|
|
|
}, nil
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2018-10-02 20:34:34 +00:00
|
|
|
// Timeout returns the timeout and interval to use when checking for DNS propagation.
|
|
|
|
// Adjusting here to cope with spikes in propagation times.
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
|
2018-09-15 17:07:24 +00:00
|
|
|
return d.config.PropagationTimeout, d.config.PollingInterval
|
2016-03-23 22:55:15 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// Present creates a TXT record to fulfill the dns-01 challenge.
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
2018-12-06 21:50:17 +00:00
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
2015-12-03 20:01:46 +00:00
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
2018-10-02 22:02:01 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("cloudflare: %w", err)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 00:20:30 +00:00
|
|
|
zoneID, err := d.client.ZoneIDByName(authZone)
|
2018-10-02 22:02:01 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("cloudflare: failed to find zone %s: %w", authZone, err)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dnsRecord := cloudflare.DNSRecord{
|
2016-02-16 14:50:24 +00:00
|
|
|
Type: "TXT",
|
2018-12-06 21:50:17 +00:00
|
|
|
Name: dns01.UnFqdn(fqdn),
|
2016-02-16 14:50:24 +00:00
|
|
|
Content: value,
|
2018-09-15 17:07:24 +00:00
|
|
|
TTL: d.config.TTL,
|
2016-02-16 14:50:24 +00:00
|
|
|
}
|
|
|
|
|
2018-11-15 21:41:54 +00:00
|
|
|
response, err := d.client.CreateDNSRecord(zoneID, dnsRecord)
|
2018-10-02 22:02:01 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("cloudflare: failed to create TXT record: %w", err)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !response.Success {
|
|
|
|
return fmt.Errorf("cloudflare: failed to create TXT record: %+v %+v", response.Errors, response.Messages)
|
|
|
|
}
|
|
|
|
|
2019-11-05 11:58:13 +00:00
|
|
|
d.recordIDsMu.Lock()
|
|
|
|
d.recordIDs[token] = response.Result.ID
|
|
|
|
d.recordIDsMu.Unlock()
|
|
|
|
|
2018-10-02 22:02:01 +00:00
|
|
|
log.Infof("cloudflare: new record for %s, ID %s", domain, response.Result.ID)
|
|
|
|
|
|
|
|
return nil
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// CleanUp removes the TXT record matching the specified parameters.
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
2018-12-06 21:50:17 +00:00
|
|
|
fqdn, _ := dns01.GetRecord(domain, keyAuth)
|
2016-02-16 14:50:24 +00:00
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
2018-10-02 22:02:01 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("cloudflare: %w", err)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 00:20:30 +00:00
|
|
|
zoneID, err := d.client.ZoneIDByName(authZone)
|
2018-10-02 22:02:01 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("cloudflare: failed to find zone %s: %w", authZone, err)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 11:58:13 +00:00
|
|
|
// get the record's unique ID from when we created it
|
|
|
|
d.recordIDsMu.Lock()
|
|
|
|
recordID, ok := d.recordIDs[token]
|
|
|
|
d.recordIDsMu.Unlock()
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("cloudflare: unknown record ID for '%s'", fqdn)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 11:58:13 +00:00
|
|
|
err = d.client.DeleteDNSRecord(zoneID, recordID)
|
2018-10-02 22:02:01 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
log.Printf("cloudflare: failed to delete TXT record: %w", err)
|
2018-10-02 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 11:58:13 +00:00
|
|
|
// Delete record ID from map
|
|
|
|
d.recordIDsMu.Lock()
|
|
|
|
delete(d.recordIDs, token)
|
|
|
|
d.recordIDsMu.Unlock()
|
2018-10-02 22:02:01 +00:00
|
|
|
|
|
|
|
return nil
|
2016-02-16 14:50:24 +00:00
|
|
|
}
|