This repository was archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathconfig.go
88 lines (80 loc) · 2.32 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright (c) 2014 The SkyDNS Authors. All rights reserved.
// Use of this source code is governed by The MIT License (MIT) that can be
// found in the LICENSE file.
package main
import (
"encoding/json"
"fmt"
"net"
"strings"
"time"
"github.com/coreos/go-etcd/etcd"
"github.com/miekg/dns"
)
// Config provides options to the skydns resolver
type Config struct {
DnsAddr string `json:"dns_addr,omitempty"`
Domain string `json:"domain,omitempty"`
DomainLabels int `json:"-"`
DNSSEC string `json:"dnssec,omitempty"`
RoundRobin bool `json:"round_robin,omitempty"`
Nameservers []string `json:"nameservers,omitempty"`
ReadTimeout time.Duration `json:"read_timeout,omitempty"`
WriteTimeout time.Duration `json:"write_timeout,omitempty"`
// DNSSEC key material
PubKey *dns.DNSKEY `json:"-"`
KeyTag uint16 `json:"-"`
PrivKey dns.PrivateKey `json:"-"`
}
func LoadConfig(client *etcd.Client) (*Config, error) {
n, err := client.Get("/skydns/config", false, false)
config := &Config{ReadTimeout:0, WriteTimeout:0, Domain:"", DnsAddr:"", Nameservers:[]string{""},DNSSEC:""}
if err != nil {
return config, nil
}
if err := json.Unmarshal([]byte(n.Node.Value), &config); err != nil {
return nil, err
}
if err := setDefaults(config); err != nil {
return nil, err
}
return config, nil
}
func setDefaults(config *Config) error {
if config.ReadTimeout == 0 {
config.ReadTimeout = 2 * time.Second
}
if config.WriteTimeout == 0 {
config.WriteTimeout = 2 * time.Second
}
if config.DnsAddr == "" {
config.DnsAddr = "127.0.0.1:53"
}
if config.Domain == "" {
config.Domain = "skydns.local"
}
if len(config.Nameservers) == 0 {
c, err := dns.ClientConfigFromFile("/etc/resolv.conf")
if err != nil {
return err
}
for _, s := range c.Servers {
config.Nameservers = append(config.Nameservers, net.JoinHostPort(s, c.Port))
}
}
if config.DNSSEC != "" {
k, p, err := ParseKeyFile(config.DNSSEC)
if err != nil {
return err
}
if k.Header().Name != dns.Fqdn(config.Domain) {
return fmt.Errorf("ownername of DNSKEY must match SkyDNS domain")
}
config.PubKey = k
config.KeyTag = k.KeyTag()
config.PrivKey = p
}
config.Domain = dns.Fqdn(strings.ToLower(config.Domain))
config.DomainLabels = dns.CountLabel(config.Domain)
return nil
}