-
Notifications
You must be signed in to change notification settings - Fork 11
/
alidns.go
228 lines (195 loc) · 6.97 KB
/
alidns.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// SPDX-License-Identifier: MIT
package main
import (
"context"
alidns "github.com/alibabacloud-go/alidns-20150109/v4/client"
openapi "github.com/alibabacloud-go/darabonba-openapi/v2/client"
"github.com/alibabacloud-go/tea/tea"
acme "github.com/cert-manager/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
cmmeta "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"
"github.com/cert-manager/cert-manager/pkg/issuer/acme/dns/util"
"github.com/pkg/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/klog/v2"
)
const (
DNSRecordType = "TXT"
ExactSearch = "EXACT"
)
// AliSolver implements the provider-specific logic needed to
// 'present' an ACME challenge TXT record for your own DNS provider.
type AliSolver struct {
ctx context.Context
kube *kubernetes.Clientset
}
// Name is used as the name for this DNS solver when referencing it on the ACME
// Issuer resource.
//
// This should be unique **within the group name**, i.e. you can have two
// solvers configured with the same Name() **so long as they do not co-exist
// within a single webhook deployment**.
func (s *AliSolver) Name() string {
return "alidns"
}
// Present is responsible for actually presenting the DNS record with the
// DNS provider.
//
// This method should tolerate being called multiple times with the same value.
// cert-manager itself will later perform a self check to ensure that the
// solver has correctly configured the DNS provider.
func (s *AliSolver) Present(challenge *acme.ChallengeRequest) error {
klog.Infof("Presenting TXT record: %v", challenge.ResolvedFQDN)
dns, err := s.loadAliDNS(challenge)
if err != nil {
klog.Errorf("Failed to load alidns cause by %q", err)
return err
}
err = dns.AddRecord(challenge.ResolvedFQDN, challenge.ResolvedZone, challenge.Key)
if err != nil {
klog.Errorf("Failed to add TXT record for %q cause by %q",
challenge.ResolvedFQDN, err.Error())
}
return err
}
// CleanUp should delete the relevant TXT record from the DNS provider console.
//
// If multiple TXT records exist with the same record name (e.g.
// _acme-challenge.example.com) then **only** the record with the same `key`
// value provided on the ChallengeRequest should be cleaned up.
//
// This is in order to facilitate multiple DNS validations for the same domain
// concurrently.
func (s *AliSolver) CleanUp(challenge *acme.ChallengeRequest) error {
klog.Infof("cleaning up TXT record: %v", challenge.ResolvedFQDN)
dns, err := s.loadAliDNS(challenge)
if err != nil {
return err
}
err = dns.DeleteRecord(challenge.ResolvedFQDN, challenge.ResolvedZone)
if err != nil {
klog.Errorf("Failed to delete TXT record for %q cause by %q",
challenge.ResolvedFQDN, err.Error())
}
return err
}
// Initialize will be called when the webhook first starts.
// This method can be used to instantiate the webhook, i.e. initialising
// connections or warming up caches.
// Typically, the kubeClientConfig parameter is used to build a Kubernetes
// client that can be used to fetch resources from the Kubernetes API, e.g.
// Secret resources containing credentials used to authenticate with DNS
// provider accounts.
// The stopCh can be used to handle early termination of the webhook, in cases
// where a SIGTERM or similar signal is sent to the webhook process.
func (s *AliSolver) Initialize(kubeClientConfig *rest.Config, stopCh <-chan struct{}) (err error) {
s.kube, err = kubernetes.NewForConfig(kubeClientConfig)
ctx, cancel := context.WithCancel(context.Background())
go func() { <-stopCh; cancel() }()
s.ctx = ctx
return
}
// loadAliDNS creates an AliDNS and used to solve a challenge with an ACME server.
func (s *AliSolver) loadAliDNS(challenge *acme.ChallengeRequest) (*AliDNS, error) {
cfg, err := loadConfig(challenge.Config)
if err != nil {
return nil, err
}
accessKeyId, err := s.loadSecretData(cfg.AccessKeyIdRef, challenge.ResourceNamespace)
if err != nil {
return nil, err
}
accessKeySecret, err := s.loadSecretData(cfg.AccessKeySecretRef, challenge.ResourceNamespace)
if err != nil {
return nil, err
}
var endpoint = "dns.aliyuncs.com"
if len(cfg.Region) != 0 {
endpoint = "alidns." + cfg.Region + ".aliyuncs.com"
}
cli, err := alidns.NewClient(&openapi.Config{
Endpoint: &endpoint,
AccessKeyId: tea.String(string(accessKeyId)),
AccessKeySecret: tea.String(string(accessKeySecret)),
})
if err != nil {
return nil, err
}
return &AliDNS{cli: cli}, nil
}
// loadSecretData loads the specified secret from kubernetes resources.
func (s *AliSolver) loadSecretData(selector cmmeta.SecretKeySelector, ns string) ([]byte, error) {
secret, err := s.kube.CoreV1().Secrets(ns).Get(s.ctx, selector.Name, metav1.GetOptions{})
if err != nil {
return nil, errors.Wrapf(err, "failed reading secret %q", ns+"/"+selector.Name)
}
if data, ok := secret.Data[selector.Key]; ok {
if !s.validSecretData(data) {
return nil, errors.Wrapf(err, "invalid value for secret %q", ns+"/"+selector.Name)
}
return data, nil
}
return nil, errors.Errorf("couldn't find key %q in secret %q", selector.Key, ns+"/"+selector.Name)
}
// validSecretData reports whether data contains a control byte.
func (s *AliSolver) validSecretData(data []byte) bool {
for _, b := range data {
if b <= ' ' || b == 0x7f || b == '\t' {
return false
}
}
return true
}
// AliDNS is a client for manipulating Aliyun-DNS
// records through openapi
type AliDNS struct {
cli *alidns.Client
}
// AddRecord adds the specified dns record via openapi
//
// If the dns record already exists, an attempt is made to update this record.
func (dns *AliDNS) AddRecord(fqdn, zone, value string) error {
queryReq := new(alidns.DescribeDomainRecordsRequest)
queryReq.SetDomainName(util.UnFqdn(zone))
queryReq.SetTypeKeyWord(DNSRecordType)
queryReq.SetKeyWord(fqdn[:len(fqdn)-len(zone)-1])
queryReq.SetSearchMode(ExactSearch)
queryResp, err := dns.cli.DescribeDomainRecords(queryReq)
if err != nil {
return err
}
// add record when not exists
if *queryResp.Body.TotalCount == 0 {
req := new(alidns.AddDomainRecordRequest)
req.SetType(DNSRecordType)
req.SetDomainName(util.UnFqdn(zone))
req.SetRR(fqdn[:len(fqdn)-len(zone)-1])
req.SetValue(value)
_, err = dns.cli.AddDomainRecord(req)
return err
}
record := *queryResp.Body.DomainRecords.Record[0] // it's okay
if *record.Value == value {
return nil
}
// update record when already exists
req := new(alidns.UpdateDomainRecordRequest)
req.SetRecordId(*record.RecordId)
req.SetType(DNSRecordType)
req.SetRR(fqdn[:len(fqdn)-len(zone)-1])
req.SetValue(value)
_, err = dns.cli.UpdateDomainRecord(req)
return err
}
// DeleteRecord deletes the specified dns record via openapi
//
// No error occurs when the dns record does not exist.
func (dns *AliDNS) DeleteRecord(fqdn, zone string) error {
req := new(alidns.DeleteSubDomainRecordsRequest)
req.SetDomainName(util.UnFqdn(zone))
req.SetRR(fqdn[:len(fqdn)-len(zone)-1])
req.SetType(DNSRecordType)
_, err := dns.cli.DeleteSubDomainRecords(req)
return err
}