lego/providers/dns/gandi/gandi.go

237 lines
6.9 KiB
Go
Raw Normal View History

// Package gandi implements a DNS provider for solving the DNS-01 challenge using Gandi DNS.
2019-03-11 16:56:48 +00:00
package gandi
2016-03-12 16:13:24 +00:00
import (
2023-05-05 07:49:38 +00:00
"context"
"errors"
2016-03-12 16:13:24 +00:00
"fmt"
"net/http"
"sync"
"time"
2020-09-02 01:20:01 +00:00
"github.com/go-acme/lego/v4/challenge/dns01"
"github.com/go-acme/lego/v4/platform/config/env"
2023-05-05 07:49:38 +00:00
"github.com/go-acme/lego/v4/providers/dns/gandi/internal"
2016-03-12 16:13:24 +00:00
)
// Gandi API reference: http://doc.rpc.gandi.net/index.html
// Gandi API domain examples: http://doc.rpc.gandi.net/domain/faq.html
2023-05-05 07:49:38 +00:00
const minTTL = 300
// Environment variables names.
const (
envNamespace = "GANDI_"
EnvAPIKey = envNamespace + "API_KEY"
EnvTTL = envNamespace + "TTL"
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT"
)
2020-05-08 17:35:25 +00:00
// Config is used to configure the creation of the DNSProvider.
type Config struct {
BaseURL string
APIKey string
PropagationTimeout time.Duration
PollingInterval time.Duration
TTL int
HTTPClient *http.Client
}
2020-05-08 17:35:25 +00:00
// NewDefaultConfig returns a default configuration for the DNSProvider.
func NewDefaultConfig() *Config {
return &Config{
TTL: env.GetOrDefaultInt(EnvTTL, minTTL),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 40*time.Minute),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 60*time.Second),
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 60*time.Second),
},
}
}
2020-05-08 17:35:25 +00:00
// inProgressInfo contains information about an in-progress challenge.
2016-03-12 16:13:24 +00:00
type inProgressInfo struct {
zoneID int // zoneID of gandi zone to restore in CleanUp
newZoneID int // zoneID of temporary gandi zone containing TXT record
authZone string // the domain name registered at gandi with trailing "."
2016-03-12 16:13:24 +00:00
}
2020-05-08 17:35:25 +00:00
// DNSProvider implements the challenge.Provider interface.
2016-03-12 16:13:24 +00:00
type DNSProvider struct {
2023-05-05 07:49:38 +00:00
config *Config
client *internal.Client
inProgressFQDNs map[string]inProgressInfo
inProgressAuthZones map[string]struct{}
inProgressMu sync.Mutex
2023-05-05 07:49:38 +00:00
// findZoneByFqdn determines the DNS zone of a FQDN.
// It is overridden during tests.
// only for testing purpose.
findZoneByFqdn func(fqdn string) (string, error)
2016-03-12 16:13:24 +00:00
}
// NewDNSProvider returns a DNSProvider instance configured for Gandi.
// Credentials must be passed in the environment variable: GANDI_API_KEY.
func NewDNSProvider() (*DNSProvider, error) {
values, err := env.Get(EnvAPIKey)
if err != nil {
2020-02-27 18:14:46 +00:00
return nil, fmt.Errorf("gandi: %w", err)
}
config := NewDefaultConfig()
config.APIKey = values[EnvAPIKey]
return NewDNSProviderConfig(config)
}
// NewDNSProviderConfig return a DNSProvider instance configured for Gandi.
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("gandi: the configuration of the DNS provider is nil")
2016-03-12 16:13:24 +00:00
}
if config.APIKey == "" {
2020-02-27 18:14:46 +00:00
return nil, errors.New("gandi: no API Key given")
}
2023-05-05 07:49:38 +00:00
client := internal.NewClient(config.APIKey)
if config.BaseURL != "" {
client.BaseURL = config.BaseURL
}
if config.HTTPClient != nil {
client.HTTPClient = config.HTTPClient
}
2016-03-12 16:13:24 +00:00
return &DNSProvider{
config: config,
2023-05-05 07:49:38 +00:00
client: client,
inProgressFQDNs: make(map[string]inProgressInfo),
inProgressAuthZones: make(map[string]struct{}),
findZoneByFqdn: dns01.FindZoneByFqdn,
2016-03-12 16:13:24 +00:00
}, nil
}
// Present creates a TXT record using the specified parameters. It
// does this by creating and activating a new temporary Gandi DNS
// zone. This new zone contains the TXT record.
2016-03-12 16:13:24 +00:00
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
info := dns01.GetChallengeInfo(domain, keyAuth)
if d.config.TTL < minTTL {
d.config.TTL = minTTL // 300 is gandi minimum value for ttl
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
// find authZone and Gandi zone_id for fqdn
authZone, err := d.findZoneByFqdn(info.EffectiveFQDN)
if err != nil {
return fmt.Errorf("gandi: could not find zone for domain %q: %w", domain, err)
}
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
ctx := context.Background()
zoneID, err := d.client.GetZoneID(ctx, authZone)
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("gandi: %w", err)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
// determine name of TXT record
subDomain, err := dns01.ExtractSubDomain(info.EffectiveFQDN, authZone)
if err != nil {
return fmt.Errorf("gandi: %w", err)
}
2018-05-30 17:53:04 +00:00
2016-03-12 16:13:24 +00:00
// acquire lock and check there is not a challenge already in
// progress for this value of authZone
2016-03-12 16:13:24 +00:00
d.inProgressMu.Lock()
defer d.inProgressMu.Unlock()
2018-05-30 17:53:04 +00:00
if _, ok := d.inProgressAuthZones[authZone]; ok {
return fmt.Errorf("gandi: challenge already in progress for authZone %s", authZone)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
// perform API actions to create and activate new gandi zone
2016-03-12 16:13:24 +00:00
// containing the required TXT record
newZoneName := fmt.Sprintf("%s [ACME Challenge %s]", dns01.UnFqdn(authZone), time.Now().Format(time.RFC822Z))
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
newZoneID, err := d.client.CloneZone(ctx, zoneID, newZoneName)
2016-03-12 16:13:24 +00:00
if err != nil {
return err
}
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
newZoneVersion, err := d.client.NewZoneVersion(ctx, newZoneID)
2016-03-12 16:13:24 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("gandi: %w", err)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
err = d.client.AddTXTRecord(ctx, newZoneID, newZoneVersion, subDomain, info.Value, d.config.TTL)
2016-03-12 16:13:24 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("gandi: %w", err)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
err = d.client.SetZoneVersion(ctx, newZoneID, newZoneVersion)
2016-03-12 16:13:24 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("gandi: %w", err)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
err = d.client.SetZone(ctx, authZone, newZoneID)
2016-03-12 16:13:24 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("gandi: %w", err)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
2016-03-12 16:13:24 +00:00
// save data necessary for CleanUp
d.inProgressFQDNs[info.EffectiveFQDN] = inProgressInfo{
2016-03-12 16:13:24 +00:00
zoneID: zoneID,
newZoneID: newZoneID,
authZone: authZone,
2016-03-12 16:13:24 +00:00
}
d.inProgressAuthZones[authZone] = struct{}{}
2016-03-12 16:13:24 +00:00
return nil
}
// CleanUp removes the TXT record matching the specified
// parameters. It does this by restoring the old Gandi DNS zone and
// removing the temporary one created by Present.
2016-03-12 16:13:24 +00:00
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
info := dns01.GetChallengeInfo(domain, keyAuth)
// acquire lock and retrieve zoneID, newZoneID and authZone
2016-03-12 16:13:24 +00:00
d.inProgressMu.Lock()
defer d.inProgressMu.Unlock()
2018-05-30 17:53:04 +00:00
if _, ok := d.inProgressFQDNs[info.EffectiveFQDN]; !ok {
2016-03-12 16:13:24 +00:00
// if there is no cleanup information then just return
return nil
}
2018-05-30 17:53:04 +00:00
zoneID := d.inProgressFQDNs[info.EffectiveFQDN].zoneID
newZoneID := d.inProgressFQDNs[info.EffectiveFQDN].newZoneID
authZone := d.inProgressFQDNs[info.EffectiveFQDN].authZone
delete(d.inProgressFQDNs, info.EffectiveFQDN)
delete(d.inProgressAuthZones, authZone)
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
ctx := context.Background()
// perform API actions to restore old gandi zone for authZone
2023-05-05 07:49:38 +00:00
err := d.client.SetZone(ctx, authZone, zoneID)
2016-03-12 16:13:24 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("gandi: %w", err)
2016-03-12 16:13:24 +00:00
}
2018-05-30 17:53:04 +00:00
2023-05-05 07:49:38 +00:00
return d.client.DeleteZone(ctx, newZoneID)
2016-03-12 16:13:24 +00:00
}
// Timeout returns the values (40*time.Minute, 60*time.Second) which
// are used by the acme package as timeout and check interval values
// when checking for DNS record propagation with Gandi.
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
return d.config.PropagationTimeout, d.config.PollingInterval
2016-03-12 16:13:24 +00:00
}