-
Notifications
You must be signed in to change notification settings - Fork 0
/
secret_agent.go
136 lines (114 loc) · 3.43 KB
/
secret_agent.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
// Copyright 2024 Aerospike, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package backup
import (
"crypto/tls"
"crypto/x509"
"fmt"
"os"
"strings"
"time"
saClient "github.com/aerospike/backup-go/pkg/secret-agent"
)
const secretPrefix = "secrets:"
func getSecret(config *SecretAgentConfig, key string) (string, error) {
if config == nil {
return "", fmt.Errorf("secret config not initialized")
}
// Getting resource and key.
resource, secretKey, err := getResourceKey(key)
if err != nil {
return "", err
}
// Getting tls config.
tlsConfig, err := getTlSConfig(config.CaFile)
if err != nil {
return "", err
}
// Parsing config values.
address := *config.Address
if config.Port != nil {
address = fmt.Sprintf("%s:%d", *config.Address, *config.Port)
}
// Parsing timeout, if it is a nil, by default we set 1000 Millisecond
timeout := 1000 * time.Millisecond
if config.TimeoutMillisecond != nil {
timeout = time.Duration(*config.TimeoutMillisecond) * time.Millisecond
}
// Parsing isBase64 param.
var isBase64 bool
if config.IsBase64 != nil {
isBase64 = *config.IsBase64
}
// Initializing client.
client, err := saClient.NewClient(
*config.ConnectionType,
address,
timeout,
isBase64,
tlsConfig,
)
if err != nil {
return "", fmt.Errorf("failed to initialize secret agent client: %w", err)
}
result, err := client.GetSecret(resource, secretKey)
if err != nil {
return "", fmt.Errorf("failed to get secret from secret agent: %w", err)
}
return result, nil
}
func getResourceKey(key string) (resource, secretKey string, err error) {
if !isSecret(key) {
return "", "",
fmt.Errorf("invalid secret key format, must be secrets:<resource>:<secret>")
}
keyArr := strings.Split(key, ":")
if len(keyArr) != 3 {
return "", "", fmt.Errorf("invalid secret key format")
}
// We believe that keyArr[0] == secretPrefix
return keyArr[1], keyArr[2], nil
}
// getTlSConfig returns *tls.Config if caFile is set, or nil if caFile is not set.
func getTlSConfig(caFile *string) (*tls.Config, error) {
if caFile == nil {
return nil, nil
}
caCert, err := os.ReadFile(*caFile)
if err != nil {
return nil, fmt.Errorf("unable to read ca file: %w", err)
}
caCertPool := x509.NewCertPool()
ok := caCertPool.AppendCertsFromPEM(caCert)
if !ok {
return nil, fmt.Errorf("nothing to append to ca cert pool")
}
//nolint:gosec // we must support any tls configuration for legacy.
tlsConfig := &tls.Config{
RootCAs: caCertPool,
}
return tlsConfig, nil
}
// isSecret checks if string is secret. e.g.: secrets:resource2:cacert
func isSecret(secret string) bool {
return strings.HasPrefix(secret, secretPrefix)
}
// ParseSecret check if string contains secret and tries to load secret from secret agent.
func ParseSecret(config *SecretAgentConfig, secret string) (string, error) {
// If value doesn't contain the secret, we return it as is.
if !isSecret(secret) {
return secret, nil
}
return getSecret(config, secret)
}