-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.go
268 lines (229 loc) · 10.6 KB
/
main.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package main
import (
"context"
"encoding/json"
"fmt"
"os"
"strings"
cmmeta "github.com/jetstack/cert-manager/pkg/apis/meta/v1"
loopia "github.com/jonlil/loopia-go"
extapi "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/klog/v2"
"github.com/jetstack/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
"github.com/jetstack/cert-manager/pkg/acme/webhook/cmd"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
const (
LoopiaMinTtl = 300 // Loopia requires a TTL of minimum 300 sec.
)
var GroupName = os.Getenv("GROUP_NAME")
func main() {
if GroupName == "" {
panic("GROUP_NAME must be specified")
}
// This will register our loopia DNS provider with the webhook serving library, making it available as an API under the provided GroupName.
// You can register multiple DNS provider implementations with a single webhook, where the Name() method will be used to disambiguate between the different implementations.
cmd.RunWebhookServer(GroupName,
&loopiaDNSProviderSolver{},
)
}
// loopiaDNSProviderSolver implements the provider-specific logic needed to 'present' an ACME challenge TXT record for your own DNS provider.
// To do so, it must implement the `github.com/jetstack/cert-manager/pkg/acme/webhook.Solver` interface.
type loopiaDNSProviderSolver struct {
client *kubernetes.Clientset
}
// Type holding credential.
type credential struct {
Username string
Password string
}
// loopiaDNSProviderConfig is a structure that is used to decode into when solving a DNS01 challenge.
// This information is provided by cert-manager, and may be a reference to additional configuration that's needed to solve the challenge for this particular certificate or issuer.
// This typically includes references to Secret resources containing DNS provider credentials, in cases where a 'multi-tenant' DNS solver is being created.
// If you do *not* require per-issuer or per-certificate configuration to be provided to your webhook, you can skip decoding altogether in favour of using CLI flags or similar to provide configuration.
// You should not include sensitive information here. If credentials need to be used by your provider here, you should reference a Kubernetes Secret resource and fetch these credentials using a Kubernetes clientset.
type loopiaDNSProviderConfig struct {
// These fields will be set by users in the `issuer.spec.acme.dns01.providers.webhook.config` field.
UsernameSecretKeyRef cmmeta.SecretKeySelector `json:"usernameSecretKeyRef"`
PasswordSecretKeyRef cmmeta.SecretKeySelector `json:"passwordSecretKeyRef"`
}
// 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**. For example, `cloudflare` may be used as the name of a solver.
func (c *loopiaDNSProviderSolver) Name() string {
return "loopia"
}
// 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 (c *loopiaDNSProviderSolver) Present(ch *v1alpha1.ChallengeRequest) error {
klog.V(2).Infof("Call function Present: namespace=%s, zone=%s, fqdn=%s", ch.ResourceNamespace, ch.ResolvedZone, ch.ResolvedFQDN)
// Load config.
cfg, err := loadConfig(ch.Config)
if err != nil {
return fmt.Errorf("unable to load config: %v", err)
}
klog.V(2).Infof("Decoded configuration %v", cfg)
// Get credentials for connecting to Loopia.
creds, err := c.getCredentials(&cfg, ch.ResourceNamespace)
if err != nil {
return fmt.Errorf("unable to get credential: %v", err)
}
// Initialize new Loopia client.
loopiaClient, err := loopia.New(creds.Username, creds.Password)
if err != nil {
return fmt.Errorf("could not initialize Loopia client: %v", err)
}
// Split and format domain and sub domain values.
subdomain, domain := c.getDomainAndSubdomain(ch)
klog.V(2).Infof("Extracted subdomain=%s and domain=%s", subdomain, domain)
// Get loopia records for subdomain.
zoneRecords, err := loopiaClient.GetZoneRecords(domain, subdomain)
if err != nil {
klog.V(2).Infof("Subdomain %s is not present, needs to be created", subdomain)
} else {
klog.V(2).Infof("Subdomain %s is already present, checking if txt-record is present.", subdomain)
// Exit if record is already present by type and value.
for _, zoneRecord := range zoneRecords {
if zoneRecord.Type == "TXT" && zoneRecord.Value == ch.Key {
klog.V(2).Infof("Both TXT-record and value is present already, leaving")
return nil
}
}
}
// Record isn't present, instantiate it.
record := loopia.Record{
TTL: LoopiaMinTtl,
Type: "TXT",
Value: ch.Key,
Priority: 0,
}
// Record isn't present, create it, subdomain is created automatically.
err = loopiaClient.AddZoneRecord(domain, subdomain, &record)
if err != nil {
return fmt.Errorf("unable to create txt-record: %v", err)
} else {
// Verify the record has been created by checking it's id.
if record.ID != 0 {
klog.V(2).Infof("Successfully created txt-record in %s subdomain", subdomain)
} else {
return fmt.Errorf("unexpected error: txt-record was not created: %v", err)
}
}
return nil
}
// 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 (c *loopiaDNSProviderSolver) CleanUp(ch *v1alpha1.ChallengeRequest) error {
klog.V(2).Infof("Call function CleanUp: namespace=%s, zone=%s, fqdn=%s", ch.ResourceNamespace, ch.ResolvedZone, ch.ResolvedFQDN)
// Load config.
cfg, err := loadConfig(ch.Config)
if err != nil {
return err
}
// Get credentials for connecting to Loopia.
creds, err := c.getCredentials(&cfg, ch.ResourceNamespace)
if err != nil {
return fmt.Errorf("unable to get credential: %v", err)
}
// Initialize Loopia client.
loopiaClient, err := loopia.New(creds.Username, creds.Password)
if err != nil {
return fmt.Errorf("could not initialize loopia client: %v", err)
}
// Split and format domain and sub domain values.
subdomain, domain := c.getDomainAndSubdomain(ch)
klog.V(2).Infof("Cleanup for subdomain=%s, domain=%s", subdomain, domain)
// Get loopia records for subdomain.
zoneRecords, err := loopiaClient.GetZoneRecords(domain, subdomain)
if err != nil {
return fmt.Errorf("unable to get zone records: %v", err)
}
// Loop records to get the one to delete, if found delete it...
for _, zoneRecord := range zoneRecords {
if zoneRecord.Type == "TXT" && zoneRecord.Value == ch.Key {
_, err := loopiaClient.RemoveZoneRecord(domain, subdomain, zoneRecord.ID)
if err != nil {
return fmt.Errorf("unable to delete TXT record: %v", err)
}
}
}
// Clean up subdomain.
if len(zoneRecords) <= 1 {
_, err := loopiaClient.RemoveSubDomain(domain, subdomain)
if err != nil {
return fmt.Errorf("unable to remove subdomain: %v", err)
}
}
return nil
}
// 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 (c *loopiaDNSProviderSolver) Initialize(kubeClientConfig *rest.Config, _ <-chan struct{}) error {
klog.V(2).Infof("Call function Initialize")
cl, err := kubernetes.NewForConfig(kubeClientConfig)
if err != nil {
return fmt.Errorf("unable to get k8s client: %v", err)
}
c.client = cl
return nil
}
// loadConfig is a small helper function that decodes JSON configuration into the typed config struct.
func loadConfig(cfgJSON *extapi.JSON) (loopiaDNSProviderConfig, error) {
cfg := loopiaDNSProviderConfig{}
// handle the 'base case' where no configuration has been provided
if cfgJSON == nil {
return cfg, nil
}
if err := json.Unmarshal(cfgJSON.Raw, &cfg); err != nil {
return cfg, fmt.Errorf("error decoding solver config: %v", err)
}
return cfg, nil
}
// Split and format domain and sub domain values.
func (c *loopiaDNSProviderSolver) getDomainAndSubdomain(ch *v1alpha1.ChallengeRequest) (string, string) {
// ch.ResolvedZone form: example.com.
// ch.ResolvedFQDN form: _acme-challenge.example.com.
// Both ch.ResolvedZone and ch.ResolvedFQDN end with a dot: '.'
subDomain := strings.TrimSuffix(ch.ResolvedFQDN, ch.ResolvedZone)
subDomain = strings.TrimSuffix(subDomain, ".")
domain := strings.TrimSuffix(ch.ResolvedZone, ".")
return subDomain, domain
}
// Get Loopia API credentials from Kubernetes secret.
func (c *loopiaDNSProviderSolver) getCredentials(cfg *loopiaDNSProviderConfig, namespace string) (*credential, error) {
creds := credential{}
// Get Username.
klog.V(2).Infof("Trying to load secret `%s` with key `%s`", cfg.UsernameSecretKeyRef.Name, cfg.UsernameSecretKeyRef.Key)
usernameSecret, err := c.client.CoreV1().Secrets(namespace).Get(context.Background(), cfg.UsernameSecretKeyRef.Name, metav1.GetOptions{})
if err != nil {
return nil, fmt.Errorf("failed to load secret %q: %s", namespace+"/"+cfg.UsernameSecretKeyRef.Name, err.Error())
}
if username, ok := usernameSecret.Data[cfg.UsernameSecretKeyRef.Key]; ok {
creds.Username = string(username)
} else {
return nil, fmt.Errorf("no key %q in secret %q", cfg.UsernameSecretKeyRef, namespace+"/"+cfg.UsernameSecretKeyRef.Name)
}
// Get Password.
klog.V(2).Infof("Trying to load secret `%s` with key `%s`", cfg.PasswordSecretKeyRef.Name, cfg.PasswordSecretKeyRef.Key)
passwordSecret, err := c.client.CoreV1().Secrets(namespace).Get(context.Background(), cfg.PasswordSecretKeyRef.Name, metav1.GetOptions{})
if err != nil {
return nil, fmt.Errorf("failed to load secret %q: %s", namespace+"/"+cfg.PasswordSecretKeyRef.Name, err.Error())
}
if password, ok := passwordSecret.Data[cfg.PasswordSecretKeyRef.Key]; ok {
creds.Password = string(password)
} else {
return nil, fmt.Errorf("no key %q in secret %q", cfg.PasswordSecretKeyRef, namespace+"/"+cfg.PasswordSecretKeyRef.Name)
}
return &creds, nil
}