2019-01-07 17:30:06 +00:00
|
|
|
// Package exec implements a DNS provider which runs a program for adding/removing the DNS record.
|
2018-04-06 15:04:03 +00:00
|
|
|
package exec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2018-07-23 15:30:03 +00:00
|
|
|
"fmt"
|
2018-04-06 15:04:03 +00:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2019-01-07 17:30:06 +00:00
|
|
|
"time"
|
2018-04-06 15:04:03 +00:00
|
|
|
|
2019-01-07 17:30:06 +00:00
|
|
|
"github.com/xenolf/lego/challenge/dns01"
|
2018-07-23 15:30:03 +00:00
|
|
|
"github.com/xenolf/lego/log"
|
|
|
|
"github.com/xenolf/lego/platform/config/env"
|
2018-04-06 15:04:03 +00:00
|
|
|
)
|
|
|
|
|
2018-07-23 15:30:03 +00:00
|
|
|
// Config Provider configuration.
|
|
|
|
type Config struct {
|
2019-01-07 17:30:06 +00:00
|
|
|
Program string
|
|
|
|
Mode string
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("EXEC_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("EXEC_POLLING_INTERVAL", dns01.DefaultPollingInterval),
|
|
|
|
}
|
2018-07-23 15:30:03 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 15:04:03 +00:00
|
|
|
// DNSProvider adds and removes the record for the DNS challenge by calling a
|
|
|
|
// program with command-line parameters.
|
|
|
|
type DNSProvider struct {
|
2018-07-23 15:30:03 +00:00
|
|
|
config *Config
|
2018-04-06 15:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a new DNS provider which runs the program in the
|
|
|
|
// environment variable EXEC_PATH for adding and removing the DNS record.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-07-23 15:30:03 +00:00
|
|
|
values, err := env.Get("EXEC_PATH")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("exec: %v", err)
|
2018-04-06 15:04:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-07 17:30:06 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.Program = values["EXEC_PATH"]
|
|
|
|
config.Mode = os.Getenv("EXEC_MODE")
|
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
2018-07-23 15:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProviderConfig returns a new DNS provider which runs the given configuration
|
|
|
|
// for adding and removing the DNS record.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("the configuration is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{config: config}, nil
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
// Present creates a TXT record to fulfill the dns-01 challenge.
|
2018-04-06 15:04:03 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
2018-07-23 15:30:03 +00:00
|
|
|
var args []string
|
|
|
|
if d.config.Mode == "RAW" {
|
|
|
|
args = []string{"present", "--", domain, token, keyAuth}
|
|
|
|
} else {
|
2019-01-07 17:30:06 +00:00
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
args = []string{"present", fqdn, value}
|
2018-07-23 15:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command(d.config.Program, args...)
|
|
|
|
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if len(output) > 0 {
|
|
|
|
log.Println(string(output))
|
|
|
|
}
|
2018-04-06 15:04:03 +00:00
|
|
|
|
2018-07-23 15:30:03 +00:00
|
|
|
return err
|
2018-04-06 15:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the TXT record matching the specified parameters
|
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
2018-07-23 15:30:03 +00:00
|
|
|
var args []string
|
|
|
|
if d.config.Mode == "RAW" {
|
|
|
|
args = []string{"cleanup", "--", domain, token, keyAuth}
|
|
|
|
} else {
|
2019-01-07 17:30:06 +00:00
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
args = []string{"cleanup", fqdn, value}
|
2018-07-23 15:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command(d.config.Program, args...)
|
|
|
|
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if len(output) > 0 {
|
|
|
|
log.Println(string(output))
|
|
|
|
}
|
2018-04-06 15:04:03 +00:00
|
|
|
|
2018-07-23 15:30:03 +00:00
|
|
|
return err
|
2018-04-06 15:04:03 +00:00
|
|
|
}
|
2019-01-07 17:30:06 +00:00
|
|
|
|
|
|
|
// Timeout returns the timeout and interval to use when checking for DNS propagation.
|
|
|
|
// Adjusting here to cope with spikes in propagation times.
|
|
|
|
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
|
|
|
|
return d.config.PropagationTimeout, d.config.PollingInterval
|
|
|
|
}
|