-
Notifications
You must be signed in to change notification settings - Fork 19
/
path_config.go
289 lines (247 loc) · 8.7 KB
/
path_config.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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package azuresecrets
import (
"context"
"errors"
"time"
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/helper/pluginidentityutil"
"github.com/hashicorp/vault/sdk/helper/pluginutil"
"github.com/hashicorp/vault/sdk/logical"
)
const (
configStoragePath = "config"
// The default password expiration duration is 6 months in
// the Azure UI, so we're setting it to 6 months (in hours)
// as the default.
defaultRootPasswordTTL = 4380 * time.Hour
)
// azureConfig contains values to configure Azure clients and
// defaults for roles. The zero value is useful and results in
// environments variable and system defaults being used.
type azureConfig struct {
pluginidentityutil.PluginIdentityTokenParams
SubscriptionID string `json:"subscription_id"`
TenantID string `json:"tenant_id"`
ClientID string `json:"client_id"`
ClientSecret string `json:"client_secret"`
ClientSecretKeyID string `json:"client_secret_key_id"`
NewClientSecret string `json:"new_client_secret"`
NewClientSecretCreated time.Time `json:"new_client_secret_created"`
NewClientSecretExpirationDate time.Time `json:"new_client_secret_expiration_date"`
NewClientSecretKeyID string `json:"new_client_secret_key_id"`
Environment string `json:"environment"`
RootPasswordTTL time.Duration `json:"root_password_ttl"`
RootPasswordExpirationDate time.Time `json:"root_password_expiration_date"`
}
func pathConfig(b *azureSecretBackend) *framework.Path {
p := &framework.Path{
Pattern: "config",
DisplayAttrs: &framework.DisplayAttributes{
OperationPrefix: operationPrefixAzure,
},
Fields: map[string]*framework.FieldSchema{
"subscription_id": {
Type: framework.TypeString,
Description: `The subscription id for the Azure Active Directory.
This value can also be provided with the AZURE_SUBSCRIPTION_ID environment variable.`,
},
"tenant_id": {
Type: framework.TypeString,
Description: `The tenant id for the Azure Active Directory. This value can also
be provided with the AZURE_TENANT_ID environment variable.`,
},
"environment": {
Type: framework.TypeString,
Description: `The Azure environment name. If not provided, AzurePublicCloud is used.
This value can also be provided with the AZURE_ENVIRONMENT environment variable.`,
},
"client_id": {
Type: framework.TypeString,
Description: `The OAuth2 client id to connect to Azure.
This value can also be provided with the AZURE_CLIENT_ID environment variable.`,
},
"client_secret": {
Type: framework.TypeString,
Description: `The OAuth2 client secret to connect to Azure.
This value can also be provided with the AZURE_CLIENT_SECRET environment variable.`,
},
"root_password_ttl": {
Type: framework.TypeDurationSecond,
Default: defaultRootPasswordTTL,
Description: "The TTL of the root password in Azure. This can be either a number of seconds or a time formatted duration (ex: 24h, 48ds)",
Required: false,
},
},
Operations: map[logical.Operation]framework.OperationHandler{
logical.ReadOperation: &framework.PathOperation{
Callback: b.pathConfigRead,
DisplayAttrs: &framework.DisplayAttributes{
OperationSuffix: "configuration",
},
},
logical.CreateOperation: &framework.PathOperation{
Callback: b.pathConfigWrite,
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "configure",
},
},
logical.UpdateOperation: &framework.PathOperation{
Callback: b.pathConfigWrite,
DisplayAttrs: &framework.DisplayAttributes{
OperationVerb: "configure",
},
},
logical.DeleteOperation: &framework.PathOperation{
Callback: b.pathConfigDelete,
DisplayAttrs: &framework.DisplayAttributes{
OperationSuffix: "configuration",
},
},
},
ExistenceCheck: b.pathConfigExistenceCheck,
HelpSynopsis: confHelpSyn,
HelpDescription: confHelpDesc,
}
pluginidentityutil.AddPluginIdentityTokenFields(p.Fields)
return p
}
func (b *azureSecretBackend) pathConfigWrite(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
var merr *multierror.Error
config, err := b.getConfig(ctx, req.Storage)
if err != nil {
return nil, err
}
if config == nil {
if req.Operation == logical.UpdateOperation {
return nil, errors.New("config not found during update operation")
}
config = new(azureConfig)
}
if subscriptionID, ok := data.GetOk("subscription_id"); ok {
config.SubscriptionID = subscriptionID.(string)
}
if tenantID, ok := data.GetOk("tenant_id"); ok {
config.TenantID = tenantID.(string)
}
if environment, ok := data.GetOk("environment"); ok {
e := environment.(string)
if _, err := cloudConfigFromName(e); err != nil {
merr = multierror.Append(merr, err)
} else {
config.Environment = e
}
}
if clientID, ok := data.GetOk("client_id"); ok {
config.ClientID = clientID.(string)
}
if clientSecret, ok := data.GetOk("client_secret"); ok {
config.ClientSecret = clientSecret.(string)
}
if rootExpirationRaw, ok := data.GetOk("root_password_ttl"); ok {
config.RootPasswordTTL = time.Second * time.Duration(rootExpirationRaw.(int))
} else if req.Operation == logical.CreateOperation {
config.RootPasswordTTL = defaultRootPasswordTTL
}
if err := config.ParsePluginIdentityTokenFields(data); err != nil {
return logical.ErrorResponse(err.Error()), nil
}
if config.IdentityTokenAudience != "" && config.ClientSecret != "" {
return logical.ErrorResponse("only one of 'client_secret' or 'identity_token_audience' can be set"), nil
}
// generate token to check if WIF is enabled on this edition of Vault
if config.IdentityTokenAudience != "" {
_, err := b.System().GenerateIdentityToken(ctx, &pluginutil.IdentityTokenRequest{
Audience: config.IdentityTokenAudience,
})
if err != nil {
if errors.Is(err, pluginidentityutil.ErrPluginWorkloadIdentityUnsupported) {
return logical.ErrorResponse(err.Error()), nil
}
return nil, err
}
}
if merr.ErrorOrNil() != nil {
return logical.ErrorResponse(merr.Error()), nil
}
err = b.saveConfig(ctx, config, req.Storage)
if err != nil {
return nil, err
}
return nil, err
}
func (b *azureSecretBackend) pathConfigRead(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
config, err := b.getConfig(ctx, req.Storage)
if err != nil {
return nil, err
}
if config == nil {
config = new(azureConfig)
}
resp := &logical.Response{
Data: map[string]interface{}{
"subscription_id": config.SubscriptionID,
"tenant_id": config.TenantID,
"environment": config.Environment,
"client_id": config.ClientID,
"root_password_ttl": int(config.RootPasswordTTL.Seconds()),
},
}
config.PopulatePluginIdentityTokenData(resp.Data)
if !config.RootPasswordExpirationDate.IsZero() {
resp.Data["root_password_expiration_date"] = config.RootPasswordExpirationDate
}
return resp, nil
}
func (b *azureSecretBackend) pathConfigDelete(ctx context.Context, req *logical.Request, data *framework.FieldData) (*logical.Response, error) {
err := req.Storage.Delete(ctx, configStoragePath)
if err == nil {
b.reset()
}
return nil, err
}
func (b *azureSecretBackend) pathConfigExistenceCheck(ctx context.Context, req *logical.Request, data *framework.FieldData) (bool, error) {
config, err := b.getConfig(ctx, req.Storage)
if err != nil {
return false, err
}
return config != nil, err
}
func (b *azureSecretBackend) getConfig(ctx context.Context, s logical.Storage) (*azureConfig, error) {
entry, err := s.Get(ctx, configStoragePath)
if err != nil {
return nil, err
}
if entry == nil {
return nil, nil
}
config := new(azureConfig)
if err := entry.DecodeJSON(config); err != nil {
return nil, err
}
return config, nil
}
func (b *azureSecretBackend) saveConfig(ctx context.Context, config *azureConfig, s logical.Storage) error {
entry, err := logical.StorageEntryJSON(configStoragePath, config)
if err != nil {
return err
}
err = s.Put(ctx, entry)
if err != nil {
return err
}
// reset the backend since the client and provider will have been
// built using old versions of this data
b.reset()
return nil
}
const (
confHelpSyn = `Configure the Azure Secret backend.`
confHelpDesc = `
The Azure secret backend requires credentials for managing applications and
service principals. This endpoint is used to configure those credentials as
well as default values for the backend in general.
`
)