forked from cretz/caddy-tlsconsul
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
storage.go
322 lines (266 loc) · 8.31 KB
/
storage.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
package storageconsul
import (
"context"
"errors"
"fmt"
"io/fs"
"net"
"path"
"strings"
"sync"
"time"
"github.com/caddyserver/certmagic"
consul "github.com/hashicorp/consul/api"
"go.uber.org/zap"
)
var (
ErrLockNotFound = errors.New("lock not found")
)
// ConsulStorage allows to store certificates and other TLS resources
// in a shared cluster environment using Consul's key/value-store.
// It uses distributed locks to ensure consistency.
type ConsulStorage struct {
certmagic.Storage
ConsulClient *consul.Client
logger *zap.SugaredLogger
muLocks *sync.RWMutex
locks map[string]*consul.Lock
Address string `json:"address"`
Token string `json:"token"`
Timeout int `json:"timeout"`
Prefix string `json:"prefix"`
ValuePrefix string `json:"value_prefix"`
AESKey []byte `json:"aes_key"`
TlsEnabled bool `json:"tls_enabled"`
TlsInsecure bool `json:"tls_insecure"`
}
// New connects to Consul and returns a ConsulStorage
func New() *ConsulStorage {
// create ConsulStorage and pre-set values
s := ConsulStorage{
locks: make(map[string]*consul.Lock),
AESKey: []byte(DefaultAESKey),
ValuePrefix: DefaultValuePrefix,
Prefix: DefaultPrefix,
Timeout: DefaultTimeout,
muLocks: &sync.RWMutex{},
}
return &s
}
func (cs *ConsulStorage) prefixKey(key string) string {
return path.Join(cs.Prefix, key)
}
// Lock acquires a distributed lock for the given key or blocks until it gets one
func (cs *ConsulStorage) Lock(ctx context.Context, key string) error {
cs.logger.Debugf("trying lock for %s", key)
if _, isLocked := cs.GetLock(key); isLocked {
return nil
}
// prepare the distributed lock
cs.logger.Infof("creating Consul lock for %s", key)
lock, err := cs.ConsulClient.LockOpts(&consul.LockOptions{
Key: cs.prefixKey(key),
LockWaitTime: time.Duration(cs.Timeout) * time.Second,
LockTryOnce: true,
})
if err != nil {
return fmt.Errorf("could not create lock for %s: %w", cs.prefixKey(key), err)
}
// acquire the lock and return a channel that is closed upon lost
lockActive, err := lock.Lock(ctx.Done())
if err != nil {
return fmt.Errorf("unable to lock %s: %w", cs.prefixKey(key), err)
}
// auto-unlock and clean list of locks in case of lost
go func() {
<-lockActive
err := cs.Unlock(ctx, key)
if err != nil && !errors.Is(err, ErrLockNotFound) {
cs.logger.Errorf("failed to release lock: %s", err)
}
}()
// save the lock
cs.muLocks.Lock()
cs.locks[key] = lock
cs.muLocks.Unlock()
return nil
}
func (cs *ConsulStorage) GetLock(key string) (*consul.Lock, bool) {
cs.muLocks.RLock()
defer cs.muLocks.RUnlock()
// if we already hold the lock, return early
if lock, exists := cs.locks[key]; exists {
return lock, true
}
return nil, false
}
// Unlock releases a specific lock
func (cs *ConsulStorage) Unlock(_ context.Context, key string) error {
// check if we own it and unlock
lock, exists := cs.GetLock(key)
if !exists {
return fmt.Errorf("lock %s not found: %w", cs.prefixKey(key), ErrLockNotFound)
}
err := lock.Unlock()
if err != nil {
return fmt.Errorf("unable to unlock %s: %w", cs.prefixKey(key), err)
}
cs.muLocks.Lock()
delete(cs.locks, key)
cs.muLocks.Unlock()
return nil
}
// Store saves encrypted data value for a key in Consul KV
func (cs *ConsulStorage) Store(ctx context.Context, key string, value []byte) error {
kv := &consul.KVPair{Key: cs.prefixKey(key)}
// prepare the stored data
consulData := &StorageData{
Value: value,
Modified: time.Now(),
}
encryptedValue, err := cs.EncryptStorageData(consulData)
if err != nil {
return fmt.Errorf("unable to encode data for %s: %w", cs.prefixKey(key), err)
}
kv.Value = encryptedValue
opts := consul.WriteOptions{}
if _, err = cs.ConsulClient.KV().Put(kv, opts.WithContext(ctx)); err != nil {
return fmt.Errorf("unable to store data for %s: %w", cs.prefixKey(key), err)
}
return nil
}
// Load retrieves the value for a key from Consul KV
func (cs *ConsulStorage) Load(ctx context.Context, key string) ([]byte, error) {
cs.logger.Debugf("loading data from Consul for %s", key)
kv, _, err := cs.ConsulClient.KV().Get(cs.prefixKey(key), ConsulQueryDefaults(ctx))
if err != nil {
return nil, err
}
if kv == nil {
return nil, fs.ErrNotExist
}
contents, err := cs.DecryptStorageData(kv.Value)
if err != nil {
return nil, fmt.Errorf("unable to decrypt data for %s: %w", cs.prefixKey(key), err)
}
return contents.Value, nil
}
// Delete a key from Consul KV
func (cs *ConsulStorage) Delete(ctx context.Context, key string) error {
cs.logger.Infof("deleting key %s from Consul", key)
// first obtain existing keypair
kv, _, err := cs.ConsulClient.KV().Get(cs.prefixKey(key), ConsulQueryDefaults(ctx))
if err != nil {
return fmt.Errorf("%s: %w", err, fs.ErrNotExist)
}
if kv == nil {
return fs.ErrNotExist
}
// now do a Check-And-Set operation to verify we really deleted the key
if success, _, err := cs.ConsulClient.KV().DeleteCAS(kv, nil); err != nil {
return fmt.Errorf("unable to delete data for %s: %w", cs.prefixKey(key), err)
} else if !success {
return fmt.Errorf("failed to lock data delete for %s", cs.prefixKey(key))
}
return nil
}
// Exists checks if a key exists
func (cs *ConsulStorage) Exists(ctx context.Context, key string) bool {
kv, _, err := cs.ConsulClient.KV().Get(cs.prefixKey(key), ConsulQueryDefaults(ctx))
if kv != nil && err == nil {
return true
}
return false
}
// List returns a list with all keys under a given prefix
func (cs *ConsulStorage) List(ctx context.Context, prefix string, recursive bool) ([]string, error) {
var keysFound []string
// get a list of all keys at prefix
keys, _, err := cs.ConsulClient.KV().Keys(cs.prefixKey(prefix), "", ConsulQueryDefaults(ctx))
if err != nil {
return keysFound, err
}
if len(keys) == 0 {
return keysFound, fs.ErrNotExist
}
// remove default prefix from keys
for _, key := range keys {
if strings.HasPrefix(key, cs.prefixKey(prefix)) {
key = strings.TrimPrefix(key, cs.Prefix+"/")
keysFound = append(keysFound, key)
}
}
// if recursive wanted, just return all keys
if recursive {
return keysFound, nil
}
// for non-recursive split path and look for unique keys just under given prefix
keysMap := make(map[string]bool)
for _, key := range keysFound {
dir := strings.Split(strings.TrimPrefix(key, prefix+"/"), "/")
keysMap[dir[0]] = true
}
keysFound = make([]string, 0)
for key := range keysMap {
keysFound = append(keysFound, path.Join(prefix, key))
}
return keysFound, nil
}
// Stat returns statistic data of a key
func (cs *ConsulStorage) Stat(ctx context.Context, key string) (certmagic.KeyInfo, error) {
kv, _, err := cs.ConsulClient.KV().Get(cs.prefixKey(key), ConsulQueryDefaults(ctx))
if err != nil {
return certmagic.KeyInfo{}, fmt.Errorf("unable to obtain data for %s: %w", cs.prefixKey(key), fs.ErrNotExist)
}
if kv == nil {
return certmagic.KeyInfo{}, fs.ErrNotExist
}
contents, err := cs.DecryptStorageData(kv.Value)
if err != nil {
return certmagic.KeyInfo{}, fmt.Errorf("unable to decrypt data for %s: %w", cs.prefixKey(key), err)
}
return certmagic.KeyInfo{
Key: key,
Modified: contents.Modified,
Size: int64(len(contents.Value)),
IsTerminal: false,
}, nil
}
func (cs *ConsulStorage) createConsulClient() error {
// get the default config
consulCfg := consul.DefaultConfig()
if cs.Address != "" {
consulCfg.Address = cs.Address
} else {
cs.Address = consulCfg.Address
}
if cs.Token != "" {
consulCfg.Token = cs.Token
}
if cs.TlsEnabled {
consulCfg.Scheme = "https"
}
consulCfg.TLSConfig.InsecureSkipVerify = cs.TlsInsecure
// set a dial context to prevent default keepalive
consulCfg.Transport.DialContext = (&net.Dialer{
Timeout: time.Duration(cs.Timeout) * time.Second,
KeepAlive: time.Duration(cs.Timeout) * time.Second,
}).DialContext
// create the Consul API client
consulClient, err := consul.NewClient(consulCfg)
if err != nil {
return fmt.Errorf("unable to create Consul client: %w", err)
}
if _, err := consulClient.Agent().NodeName(); err != nil {
return fmt.Errorf("unable to ping Consul: %w", err)
}
cs.ConsulClient = consulClient
return nil
}
func ConsulQueryDefaults(ctx context.Context) *consul.QueryOptions {
opts := &consul.QueryOptions{
UseCache: false,
RequireConsistent: false,
}
return opts.WithContext(ctx)
}