-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbackend.go
121 lines (96 loc) · 2.33 KB
/
backend.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
package packet
import (
"context"
"fmt"
"strings"
"sync"
"time"
"github.com/hashicorp/go-retryablehttp"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/logical"
"github.com/packethost/packngo"
)
const secretType = "packet"
func Factory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error) {
b := NewBackend(conf.System)
if err := b.Setup(ctx, conf); err != nil {
return nil, err
}
return b, nil
}
func NewBackend(system logical.SystemView) *backend {
var b backend
b.system = system
b.Backend = &framework.Backend{
Help: strings.TrimSpace(backendHelp),
PathsSpecial: &logical.Paths{
SealWrapStorage: []string{
"config",
},
},
Paths: []*framework.Path{
b.pathListRoles(),
b.pathRole(),
b.pathConfig(),
b.pathCredentials(),
},
Secrets: []*framework.Secret{
b.pathSecrets(),
},
BackendType: logical.TypeLogical,
}
return &b
}
type backend struct {
*framework.Backend
client *packngo.Client
lock sync.RWMutex
system logical.SystemView
}
func (b *backend) Client(ctx context.Context, s logical.Storage) (*packngo.Client, error) {
b.lock.RLock()
// If we already have a client, return it
if b.client != nil {
b.lock.RUnlock()
return b.client, nil
}
b.lock.RUnlock()
// Otherwise, attempt to make connection
entry, err := s.Get(ctx, "config")
if err != nil {
return nil, err
}
if entry == nil {
return nil, fmt.Errorf("setup the config first")
}
var conf packetSecretsEngineConfig
if err := entry.DecodeJSON(&conf); err != nil {
return nil, err
}
b.lock.Lock()
defer b.lock.Unlock()
// If the client was created during the lock switch, return it
if b.client != nil {
return b.client, nil
}
httpClient := retryablehttp.NewClient()
httpClient.Logger = nil
httpClient.RetryWaitMin = time.Second
httpClient.RetryWaitMax = 30 * time.Second
httpClient.RetryMax = 10
b.client = packngo.NewClientWithAuth("Hashicorp Vault", conf.APIToken, httpClient)
return b.client, nil
}
// resetClient forces a connection next time Client() is called.
func (b *backend) resetClient(_ context.Context) {
b.lock.Lock()
defer b.lock.Unlock()
b.client = nil
}
func (b *backend) invalidate(ctx context.Context, key string) {
switch key {
case "config":
b.resetClient(ctx)
}
}
const backendHelp = "Packet Secrets Engine for Vault"