-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
396 lines (337 loc) · 13.8 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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
package main
// cspell:ignore cmapi cmacme
import (
"context"
"encoding/json"
"fmt"
"os"
"reflect"
"strconv"
"strings"
ibclient "github.com/infobloxopen/infoblox-go-client/v2"
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
webhook "github.com/cert-manager/cert-manager/pkg/acme/webhook"
whapi "github.com/cert-manager/cert-manager/pkg/acme/webhook/apis/acme/v1alpha1"
"github.com/cert-manager/cert-manager/pkg/acme/webhook/cmd"
cmmeta "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"
logf "github.com/cert-manager/cert-manager/pkg/logs"
)
const SecretPath = "/etc/secrets/creds.json"
// var _ webhook.Solver = (*customDNSProviderSolver)(nil)
var GroupName = os.Getenv("GROUP_NAME")
func main() {
if GroupName == "" {
panic("GROUP_NAME must be specified")
}
// This will register our custom 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, &customDNSProviderSolver{})
}
// Validate the customDNSProviderSolver satisfies the interface that cert manager expects.
var _ webhook.Solver = (*customDNSProviderSolver)(nil)
// customDNSProviderSolver 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/cert-manager/cert-manager/pkg/acme/webhook.Solver`
// interface.
type customDNSProviderSolver struct {
// If a Kubernetes 'clientset' is needed, you must:
// 1. uncomment the additional `client` field in this structure below
// 2. uncomment the "k8s.io/client-go/kubernetes" import at the top of the file
// 3. uncomment the relevant code in the Initialize method below
// 4. ensure your webhook's service account has the required RBAC role
// assigned to it for interacting with the Kubernetes APIs you need.
client *kubernetes.Clientset
}
// customDNSProviderConfig 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 customDNSProviderConfig struct {
// Change the two fields below according to the format of the configuration
// to be decoded.
// These fields will be set by users in the
// `issuer.spec.acme.dns01.providers.webhook.config` field.
Host string `json:"host"`
Port string `json:"port" default:"443"`
Version string `json:"version" default:"2.10"`
UsernameSecretRef cmmeta.SecretKeySelector `json:"usernameSecretRef"`
PasswordSecretRef cmmeta.SecretKeySelector `json:"passwordSecretRef"`
View string `json:"view"`
Zone string `json:"zone" default:""`
SslVerify bool `json:"sslVerify" default:"false"`
HttpRequestTimeout int `json:"httpRequestTimeout" default:"60"`
HttpPoolConnections int `json:"httpPoolConnections" default:"10"`
GetUserFromVolume bool `json:"getUserFromVolume" default:"false"`
TTL uint32 `json:"ttl" default:"90"`
UseTtl bool `json:"useTtl" default:"true"`
}
type usernamePassword struct {
Username string `json:"username"`
Password string `json:"password"`
}
// 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 *customDNSProviderSolver) Name() string {
return "infoblox-wapi"
}
// 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 *customDNSProviderSolver) Present(ch *whapi.ChallengeRequest) error {
logf.V(logf.InfoLevel).InfoS("CMI: Presenting DNS record")
cfg, err := loadConfig(ch.Config)
if err != nil {
return err
}
// Initialize ibclient
ib, err := c.getIbClient(&cfg, ch.ResourceNamespace)
if err != nil {
return err
}
// Find or create TXT record
recordName := c.DeDot(ch.ResolvedFQDN)
recordRef, err := c.GetTXTRecord(ib, recordName, ch.Key, cfg.View, cfg.Zone)
if err != nil {
logf.V(logf.ErrorLevel).InfoS("CMI: Error getting TXT record", "name", recordName, "error", err)
return err
}
if recordRef != "" {
logf.V(logf.InfoLevel).InfoS("CMI: TXT record already present", "name", recordName, "ref", recordRef)
} else {
recordRef, err := c.CreateTXTRecord(ib, recordName, ch.Key, cfg.View, cfg.Zone, cfg.TTL, cfg.UseTtl)
if err != nil {
return err
}
logf.V(logf.InfoLevel).InfoS("CMI: Created new TXT record", "name", recordName, "ref", recordRef)
}
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 *customDNSProviderSolver) CleanUp(ch *whapi.ChallengeRequest) error {
cfg, err := loadConfig(ch.Config)
if err != nil {
return err
}
// Initialize ibclient
ib, err := c.getIbClient(&cfg, ch.ResourceNamespace)
if err != nil {
return err
}
// Find and delete TXT record
recordName := c.DeDot(ch.ResolvedFQDN)
recordRef, err := c.GetTXTRecord(ib, recordName, ch.Key, cfg.View, cfg.Zone)
if err != nil {
return err
}
if recordRef == "" {
logf.V(logf.InfoLevel).InfoS("CMI: TXT record not found, skipping deletion", "name", recordName, "text", ch.Key)
return nil
}
err = c.DeleteTXTRecord(ib, recordRef)
if err != nil {
return err
}
logf.V(logf.InfoLevel).InfoS("CMI: Deleted TXT record", "name", recordName, "ref", recordRef)
return nil
}
// Initialize will be called when the webhook first starts.
// This method can be used to instantiate the webhook, i.e. initialising
// ibections 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 *customDNSProviderSolver) Initialize(kubeClientConfig *rest.Config, stopCh <-chan struct{}) error {
logf.V(logf.InfoLevel).InfoS("CMI: Initializing")
cl, err := kubernetes.NewForConfig(kubeClientConfig)
if err != nil {
logf.V(logf.ErrorLevel).InfoS("CMI: Error initializing k8s client.", err)
return err
}
c.client = cl
return nil
}
// loadConfig is a small helper function that decodes JSON configuration into
// the typed config struct.
func loadConfig(cfgJSON *apiextensionsv1.JSON) (customDNSProviderConfig, error) {
logf.V(logf.InfoLevel).InfoS("CMI: Loading config")
cfg := customDNSProviderConfig{}
// 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("CMI: Error decoding solver config: %v", err)
}
return cfg, nil
}
// Initialize and return infoblox client connector
// Configuration can be set in the webhook `config` section.
// Two secretRefs are needed to securely pass infoblox credentials
func (c *customDNSProviderSolver) getIbClient(cfg *customDNSProviderConfig, namespace string) (ibclient.IBConnector, error) {
var username, password string
hasConfig := false
logf.V(logf.InfoLevel).InfoS("CMI: Getting Infoblox User Data")
if cfg.UsernameSecretRef.Key != "" && cfg.PasswordSecretRef.Key != "" {
logf.V(logf.InfoLevel).InfoS("CMI: Getting Infoblox User and Password from secret")
hasConfig = true
var err error
// Find secret credentials
username, err = c.getSecret(cfg.UsernameSecretRef, namespace)
if err != nil {
return nil, err
}
password, err = c.getSecret(cfg.PasswordSecretRef, namespace)
if err != nil {
return nil, err
}
logf.V(logf.InfoLevel).Infof("CMI: Infoblox User: %s", username)
}
if cfg.GetUserFromVolume && !hasConfig {
logf.V(logf.InfoLevel).InfoS("CMI: Getting Infoblox User and Password from volume")
hasConfig = true
if _, err := os.Stat(SecretPath); os.IsNotExist(err) {
return nil, fmt.Errorf("CMI: File %s does not exist", SecretPath)
}
fileData, err := os.ReadFile(SecretPath)
if err != nil {
return nil, err
}
var creds usernamePassword
if err := json.Unmarshal(fileData, &creds); err != nil {
return nil, err
}
username = creds.Username
password = creds.Password
logf.V(logf.InfoLevel).Infof("CMI: Infoblox User: %s", username)
}
if !hasConfig {
return nil, fmt.Errorf("CMI: No secretRefs or secretPath provided")
}
// Set default values if needed
_t := reflect.TypeOf(customDNSProviderConfig{})
if cfg.Port == "" {
_f, _ := _t.FieldByName("Port")
cfg.Port = _f.Tag.Get("default")
}
if cfg.Version == "" {
_f, _ := _t.FieldByName("Version")
cfg.Version = _f.Tag.Get("default")
}
if cfg.HttpRequestTimeout <= 0 {
_f, _ := _t.FieldByName("HttpRequestTimeout")
if i, err := strconv.Atoi(_f.Tag.Get("default")); err == nil {
cfg.HttpRequestTimeout = i
}
}
if cfg.HttpPoolConnections <= 0 {
_f, _ := _t.FieldByName("HttpPoolConnections")
if i, err := strconv.Atoi(_f.Tag.Get("default")); err == nil {
cfg.HttpPoolConnections = i
}
}
// Initialize ibclient
hostConfig := ibclient.HostConfig{
Host: cfg.Host,
Version: cfg.Version,
Port: cfg.Port,
}
// Initialize the auth config for ibclient
authConfig := ibclient.AuthConfig{
Username: username,
Password: password,
}
transportConfig := ibclient.NewTransportConfig(strconv.FormatBool(cfg.SslVerify), cfg.HttpRequestTimeout, cfg.HttpPoolConnections)
requestBuilder := &ibclient.WapiRequestBuilder{}
requestor := &ibclient.WapiHttpRequestor{}
ib, err := ibclient.NewConnector(hostConfig, authConfig, transportConfig, requestBuilder, requestor)
if err != nil {
logf.V(logf.ErrorLevel).InfoS("CMI: Error creating Infoblox client", "error", err)
return nil, err
}
return ib, nil
}
// Resolve the value of a secret given a SecretKeySelector with name and key parameters
func (c *customDNSProviderSolver) getSecret(sel cmmeta.SecretKeySelector, namespace string) (string, error) {
logf.V(logf.InfoLevel).InfoS("CMI: Getting secret")
secret, err := c.client.CoreV1().Secrets(namespace).Get(context.Background(), sel.Name, metav1.GetOptions{})
if err != nil {
return "", err
}
secretData, ok := secret.Data[sel.Key]
if !ok {
return "", err
}
return strings.TrimSuffix(string(secretData), "\n"), nil
}
// Get the ref for TXT record in InfoBlox given its name, text and view
func (c *customDNSProviderSolver) GetTXTRecord(ib ibclient.IBConnector, name string, text string, view string, zone string) (string, error) {
logf.V(logf.InfoLevel).InfoS("CMI: Getting TXT record")
var records []ibclient.RecordTXT
recordTXT := ibclient.NewEmptyRecordTXT()
params := map[string]string{
"name": name,
"text": text,
"view": view,
"zone": zone,
}
err := ib.GetObject(recordTXT, "", ibclient.NewQueryParams(false, params), &records)
logf.V(logf.InfoLevel).Infof("CMI: Number of records is: %s", strconv.Itoa(len(records)))
if len(records) > 0 {
logf.V(logf.InfoLevel).InfoS("CMI: Found TXT record")
return records[0].Ref, err
} else {
if _, ok := err.(*ibclient.NotFoundError); ok {
logf.V(logf.TraceLevel).InfoS("CMI: No TXT record found. This can be normal for the first run.")
return "", nil
}
return "", err
}
}
// Create a TXT record in Infoblox
func (c *customDNSProviderSolver) CreateTXTRecord(ib ibclient.IBConnector, name string, text string, view string, zone string, ttl uint32, useTtl bool) (string, error) {
logf.V(logf.InfoLevel).InfoS("CMI: Creating TXT record")
recordTXT := ibclient.NewRecordTXT(view, zone, name, text, ttl, useTtl, "", nil)
logf.V(logf.InfoLevel).InfoS("CMI: RecordTXT:", recordTXT)
return ib.CreateObject(recordTXT)
}
// Delete a TXT record in Infoblox by ref
func (c *customDNSProviderSolver) DeleteTXTRecord(ib ibclient.IBConnector, ref string) error {
logf.V(logf.InfoLevel).InfoS("CMI: Deleting TXT record")
_, err := ib.DeleteObject(ref)
return err
}
// Remove trailing dot
func (c *customDNSProviderSolver) DeDot(string string) string {
result := strings.TrimSuffix(string, ".")
return result
}