2018-12-06 21:50:17 +00:00
|
|
|
// Package azure implements a DNS provider for solving the DNS-01 challenge using azure DNS.
|
2016-11-02 14:33:57 +00:00
|
|
|
// Azure doesn't like trailing dots on domain names, most of the acme code does.
|
2019-03-11 16:56:48 +00:00
|
|
|
package azure
|
2016-11-02 14:33:57 +00:00
|
|
|
|
|
|
|
import (
|
2018-02-14 20:28:02 +00:00
|
|
|
"context"
|
2018-06-11 15:32:50 +00:00
|
|
|
"errors"
|
2016-11-02 14:33:57 +00:00
|
|
|
"fmt"
|
2018-10-23 08:03:31 +00:00
|
|
|
"io/ioutil"
|
2018-09-15 17:07:24 +00:00
|
|
|
"net/http"
|
2018-05-30 17:53:04 +00:00
|
|
|
"strings"
|
2016-11-02 14:33:57 +00:00
|
|
|
"time"
|
|
|
|
|
2018-02-14 20:28:02 +00:00
|
|
|
"github.com/Azure/azure-sdk-for-go/services/dns/mgmt/2017-09-01/dns"
|
2017-05-03 14:53:59 +00:00
|
|
|
"github.com/Azure/go-autorest/autorest"
|
2020-08-09 12:17:49 +00:00
|
|
|
aazure "github.com/Azure/go-autorest/autorest/azure"
|
2018-10-23 08:03:31 +00:00
|
|
|
"github.com/Azure/go-autorest/autorest/azure/auth"
|
2016-11-02 14:33:57 +00:00
|
|
|
"github.com/Azure/go-autorest/autorest/to"
|
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"
|
2016-11-02 14:33:57 +00:00
|
|
|
)
|
|
|
|
|
2018-10-23 08:03:31 +00:00
|
|
|
const defaultMetadataEndpoint = "http://169.254.169.254"
|
|
|
|
|
2020-03-11 22:51:10 +00:00
|
|
|
// Environment variables names.
|
|
|
|
const (
|
|
|
|
envNamespace = "AZURE_"
|
|
|
|
|
2020-08-09 12:17:49 +00:00
|
|
|
EnvEnvironment = envNamespace + "ENVIRONMENT"
|
2020-03-11 22:51:10 +00:00
|
|
|
EnvMetadataEndpoint = envNamespace + "METADATA_ENDPOINT"
|
|
|
|
EnvSubscriptionID = envNamespace + "SUBSCRIPTION_ID"
|
|
|
|
EnvResourceGroup = envNamespace + "RESOURCE_GROUP"
|
|
|
|
EnvTenantID = envNamespace + "TENANT_ID"
|
|
|
|
EnvClientID = envNamespace + "CLIENT_ID"
|
|
|
|
EnvClientSecret = envNamespace + "CLIENT_SECRET"
|
|
|
|
|
|
|
|
EnvTTL = envNamespace + "TTL"
|
|
|
|
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
|
|
|
|
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
|
|
|
|
)
|
|
|
|
|
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 {
|
2018-10-23 08:03:31 +00:00
|
|
|
// optional if using instance metadata service
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
TenantID string
|
|
|
|
|
|
|
|
SubscriptionID string
|
|
|
|
ResourceGroup string
|
|
|
|
|
2020-08-09 12:17:49 +00:00
|
|
|
MetadataEndpoint string
|
|
|
|
ResourceManagerEndpoint string
|
|
|
|
ActiveDirectoryEndpoint string
|
2018-10-23 08:03:31 +00:00
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
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.
|
2018-09-15 17:07:24 +00:00
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
2020-08-09 12:17:49 +00:00
|
|
|
TTL: env.GetOrDefaultInt(EnvTTL, 60),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 2*time.Minute),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 2*time.Second),
|
|
|
|
MetadataEndpoint: env.GetOrFile(EnvMetadataEndpoint),
|
|
|
|
ResourceManagerEndpoint: aazure.PublicCloud.ResourceManagerEndpoint,
|
|
|
|
ActiveDirectoryEndpoint: aazure.PublicCloud.ActiveDirectoryEndpoint,
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// DNSProvider implements the challenge.Provider interface.
|
2016-11-02 14:33:57 +00:00
|
|
|
type DNSProvider struct {
|
2018-10-23 08:03:31 +00:00
|
|
|
config *Config
|
|
|
|
authorizer autorest.Authorizer
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for azure.
|
2018-10-23 08:03:31 +00:00
|
|
|
// Credentials can be passed in the environment variables:
|
2020-08-09 12:17:49 +00:00
|
|
|
// AZURE_ENVIRONMENT, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET,
|
|
|
|
// AZURE_SUBSCRIPTION_ID, AZURE_TENANT_ID, AZURE_RESOURCE_GROUP
|
2018-10-23 08:03:31 +00:00
|
|
|
// If the credentials are _not_ set via the environment,
|
|
|
|
// then it will attempt to get a bearer token via the instance metadata service.
|
|
|
|
// see: https://github.com/Azure/go-autorest/blob/v10.14.0/autorest/azure/auth/auth.go#L38-L42
|
2016-11-02 14:33:57 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-09-15 17:07:24 +00:00
|
|
|
config := NewDefaultConfig()
|
2020-08-09 12:17:49 +00:00
|
|
|
|
|
|
|
environmentName := env.GetOrFile(EnvEnvironment)
|
|
|
|
if environmentName != "" {
|
|
|
|
var environment aazure.Environment
|
|
|
|
switch environmentName {
|
|
|
|
case "china":
|
|
|
|
environment = aazure.ChinaCloud
|
|
|
|
case "german":
|
|
|
|
environment = aazure.GermanCloud
|
|
|
|
case "public":
|
|
|
|
environment = aazure.PublicCloud
|
|
|
|
case "usgovernment":
|
|
|
|
environment = aazure.USGovernmentCloud
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("azure: unknown environment %s", environmentName)
|
|
|
|
}
|
|
|
|
|
|
|
|
config.ResourceManagerEndpoint = environment.ResourceManagerEndpoint
|
|
|
|
config.ActiveDirectoryEndpoint = environment.ActiveDirectoryEndpoint
|
|
|
|
}
|
|
|
|
|
2020-03-11 22:51:10 +00:00
|
|
|
config.SubscriptionID = env.GetOrFile(EnvSubscriptionID)
|
|
|
|
config.ResourceGroup = env.GetOrFile(EnvResourceGroup)
|
2020-03-12 23:08:58 +00:00
|
|
|
config.ClientSecret = env.GetOrFile(EnvClientSecret)
|
|
|
|
config.ClientID = env.GetOrFile(EnvClientID)
|
|
|
|
config.TenantID = env.GetOrFile(EnvTenantID)
|
2018-09-15 17:07:24 +00:00
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for Azure.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("azure: the configuration of the DNS provider is nil")
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 08:03:31 +00:00
|
|
|
if config.HTTPClient == nil {
|
|
|
|
config.HTTPClient = http.DefaultClient
|
|
|
|
}
|
|
|
|
|
|
|
|
authorizer, err := getAuthorizer(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.SubscriptionID == "" {
|
|
|
|
subsID, err := getMetadata(config, "subscriptionId")
|
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, fmt.Errorf("azure: %w", err)
|
2018-10-23 08:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if subsID == "" {
|
|
|
|
return nil, errors.New("azure: SubscriptionID is missing")
|
|
|
|
}
|
|
|
|
config.SubscriptionID = subsID
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.ResourceGroup == "" {
|
|
|
|
resGroup, err := getMetadata(config, "resourceGroupName")
|
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, fmt.Errorf("azure: %w", err)
|
2018-10-23 08:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if resGroup == "" {
|
|
|
|
return nil, errors.New("azure: ResourceGroup is missing")
|
|
|
|
}
|
|
|
|
config.ResourceGroup = resGroup
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 08:03:31 +00:00
|
|
|
return &DNSProvider{config: config, authorizer: authorizer}, nil
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 21:50:17 +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-11-02 14:33:57 +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-09-15 17:07:24 +00:00
|
|
|
ctx := context.Background()
|
2018-12-06 21:50:17 +00:00
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
2018-09-15 17:07:24 +00:00
|
|
|
|
|
|
|
zone, err := d.getHostedZoneID(ctx, fqdn)
|
2016-11-02 14:33:57 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("azure: %w", err)
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 12:17:49 +00:00
|
|
|
rsc := dns.NewRecordSetsClientWithBaseURI(d.config.ResourceManagerEndpoint, d.config.SubscriptionID)
|
2018-10-23 08:03:31 +00:00
|
|
|
rsc.Authorizer = d.authorizer
|
2017-05-03 14:53:59 +00:00
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
relative := toRelativeRecord(fqdn, dns01.ToFqdn(zone))
|
2018-12-04 20:04:39 +00:00
|
|
|
|
|
|
|
// Get existing record set
|
|
|
|
rset, err := rsc.Get(ctx, d.config.ResourceGroup, zone, relative, dns.TXT)
|
|
|
|
if err != nil {
|
2020-11-25 11:25:28 +00:00
|
|
|
var detailed autorest.DetailedError
|
2020-11-16 19:55:38 +00:00
|
|
|
if !errors.As(err, &detailed) || detailed.StatusCode != http.StatusNotFound {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("azure: %w", err)
|
2018-12-04 20:04:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct unique TXT records using map
|
|
|
|
uniqRecords := map[string]struct{}{value: {}}
|
|
|
|
if rset.RecordSetProperties != nil && rset.TxtRecords != nil {
|
|
|
|
for _, txtRecord := range *rset.TxtRecords {
|
|
|
|
// Assume Value doesn't contain multiple strings
|
|
|
|
if txtRecord.Value != nil && len(*txtRecord.Value) > 0 {
|
|
|
|
uniqRecords[(*txtRecord.Value)[0]] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var txtRecords []dns.TxtRecord
|
|
|
|
for txt := range uniqRecords {
|
|
|
|
txtRecords = append(txtRecords, dns.TxtRecord{Value: &[]string{txt}})
|
|
|
|
}
|
|
|
|
|
2016-11-02 14:33:57 +00:00
|
|
|
rec := dns.RecordSet{
|
|
|
|
Name: &relative,
|
2016-11-30 22:05:55 +00:00
|
|
|
RecordSetProperties: &dns.RecordSetProperties{
|
2018-09-15 17:07:24 +00:00
|
|
|
TTL: to.Int64Ptr(int64(d.config.TTL)),
|
2018-12-04 20:04:39 +00:00
|
|
|
TxtRecords: &txtRecords,
|
2016-11-02 14:33:57 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
_, err = rsc.CreateOrUpdate(ctx, d.config.ResourceGroup, zone, relative, dns.TXT, rec, "", "")
|
2018-09-20 21:18:13 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("azure: %w", err)
|
2018-09-20 21:18:13 +00:00
|
|
|
}
|
|
|
|
return nil
|
2016-11-02 14:33:57 +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-09-15 17:07:24 +00:00
|
|
|
ctx := context.Background()
|
2018-12-06 21:50:17 +00:00
|
|
|
fqdn, _ := dns01.GetRecord(domain, keyAuth)
|
2016-11-02 14:33:57 +00:00
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
zone, err := d.getHostedZoneID(ctx, fqdn)
|
2016-11-02 14:33:57 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("azure: %w", err)
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
relative := toRelativeRecord(fqdn, dns01.ToFqdn(zone))
|
2020-08-09 12:17:49 +00:00
|
|
|
rsc := dns.NewRecordSetsClientWithBaseURI(d.config.ResourceManagerEndpoint, d.config.SubscriptionID)
|
2018-10-23 08:03:31 +00:00
|
|
|
rsc.Authorizer = d.authorizer
|
2018-05-30 17:53:04 +00:00
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
_, err = rsc.Delete(ctx, d.config.ResourceGroup, zone, relative, dns.TXT, "")
|
2018-09-20 21:18:13 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("azure: %w", err)
|
2018-09-20 21:18:13 +00:00
|
|
|
}
|
|
|
|
return nil
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Checks that azure has a zone for this domain name.
|
2018-09-15 17:07:24 +00:00
|
|
|
func (d *DNSProvider) getHostedZoneID(ctx context.Context, fqdn string) (string, error) {
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
2016-11-02 14:33:57 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2020-08-09 12:17:49 +00:00
|
|
|
dc := dns.NewZonesClientWithBaseURI(d.config.ResourceManagerEndpoint, d.config.SubscriptionID)
|
2018-10-23 08:03:31 +00:00
|
|
|
dc.Authorizer = d.authorizer
|
2017-05-03 14:53:59 +00:00
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
zone, err := dc.Get(ctx, d.config.ResourceGroup, dns01.UnFqdn(authZone))
|
2016-11-02 14:33:57 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// zone.Name shouldn't have a trailing dot(.)
|
|
|
|
return to.String(zone.Name), nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// Returns the relative record to the domain.
|
2018-09-15 17:07:24 +00:00
|
|
|
func toRelativeRecord(domain, zone string) string {
|
2018-12-06 21:50:17 +00:00
|
|
|
return dns01.UnFqdn(strings.TrimSuffix(domain, zone))
|
2016-11-02 14:33:57 +00:00
|
|
|
}
|
2018-10-23 08:03:31 +00:00
|
|
|
|
|
|
|
func getAuthorizer(config *Config) (autorest.Authorizer, error) {
|
|
|
|
if config.ClientID != "" && config.ClientSecret != "" && config.TenantID != "" {
|
2020-08-09 12:17:49 +00:00
|
|
|
credentialsConfig := auth.ClientCredentialsConfig{
|
|
|
|
ClientID: config.ClientID,
|
|
|
|
ClientSecret: config.ClientSecret,
|
|
|
|
TenantID: config.TenantID,
|
|
|
|
Resource: config.ResourceManagerEndpoint,
|
|
|
|
AADEndpoint: config.ActiveDirectoryEndpoint,
|
|
|
|
}
|
2018-10-23 08:03:31 +00:00
|
|
|
|
2020-04-17 16:54:59 +00:00
|
|
|
spToken, err := credentialsConfig.ServicePrincipalToken()
|
2018-10-23 08:03:31 +00:00
|
|
|
if err != nil {
|
2020-10-27 11:01:05 +00:00
|
|
|
return nil, fmt.Errorf("failed to get oauth token from client credentials: %w", err)
|
2018-10-23 08:03:31 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 16:54:59 +00:00
|
|
|
spToken.SetSender(config.HTTPClient)
|
2018-10-23 08:03:31 +00:00
|
|
|
|
2020-04-17 16:54:59 +00:00
|
|
|
return autorest.NewBearerAuthorizer(spToken), nil
|
|
|
|
}
|
2020-08-09 12:17:49 +00:00
|
|
|
|
2018-10-23 08:03:31 +00:00
|
|
|
return auth.NewAuthorizerFromEnvironment()
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// Fetches metadata from environment or he instance metadata service.
|
2018-10-23 08:03:31 +00:00
|
|
|
// borrowed from https://github.com/Microsoft/azureimds/blob/master/imdssample.go
|
|
|
|
func getMetadata(config *Config, field string) (string, error) {
|
|
|
|
metadataEndpoint := config.MetadataEndpoint
|
|
|
|
if len(metadataEndpoint) == 0 {
|
|
|
|
metadataEndpoint = defaultMetadataEndpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
resource := fmt.Sprintf("%s/metadata/instance/compute/%s", metadataEndpoint, field)
|
|
|
|
req, err := http.NewRequest(http.MethodGet, resource, nil)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2020-10-17 12:51:55 +00:00
|
|
|
req.Header.Set("Metadata", "True")
|
2018-10-23 08:03:31 +00:00
|
|
|
|
|
|
|
q := req.URL.Query()
|
|
|
|
q.Add("format", "text")
|
|
|
|
q.Add("api-version", "2017-12-01")
|
|
|
|
req.URL.RawQuery = q.Encode()
|
|
|
|
|
|
|
|
resp, err := config.HTTPClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
respBody, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
return string(respBody), nil
|
2018-10-23 08:03:31 +00:00
|
|
|
}
|