forked from hashicorp/vault-plugin-secrets-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
435 lines (357 loc) · 13.5 KB
/
client.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package azuresecrets
import (
"context"
"errors"
"fmt"
"math/rand"
"net/http"
"os"
"strings"
"time"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/cloud"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization/v2"
"github.com/google/uuid"
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/vault/sdk/helper/pluginidentityutil"
"github.com/hashicorp/vault/sdk/logical"
"github.com/hashicorp/vault-plugin-secrets-azure/api"
)
const (
appNamePrefix = "vault-"
retryTimeout = 80 * time.Second
clientLifetime = 30 * time.Minute
azurePublicCloudBaseURI = "https://graph.microsoft.com"
azureChinaCloudBaseURI = "https://microsoftgraph.chinacloudapi.cn"
azureUSGovCloudBaseURI = "https://graph.microsoft.us"
azurePublicCloudEnvName = "AZUREPUBLICCLOUD"
azureChinaCloudEnvName = "AZURECHINACLOUD"
azureUSGovCloudEnvName = "AZUREUSGOVERNMENTCLOUD"
errInvalidApplicationObject = "does not reference a valid application object"
)
// client offers higher level Azure operations that provide a simpler interface
// for handlers. It in turn relies on a Provider interface to access the lower level
// Azure Client SDK methods.
type client struct {
provider AzureProvider
settings *clientSettings
expiration time.Time
}
// Valid returns whether the client defined and not expired.
func (c *client) Valid() bool {
return c != nil && time.Now().Before(c.expiration)
}
// createApp creates a new Azure application.
// An Application is a needed to create service principals used by
// the caller for authentication.
func (c *client) createApp(ctx context.Context, signInAudience string, tags []string) (app api.Application, err error) {
// TODO: Make this name customizable with the same logic as username customization
name := uuid.New().String()
name = appNamePrefix + name
result, err := c.provider.CreateApplication(ctx, name, signInAudience, tags)
return result, err
}
func (c *client) createAppWithName(ctx context.Context, rolename string, signInAudience string, tags []string) (app api.Application, err error) {
intSuffix := fmt.Sprintf("%d", time.Now().Unix())
name := fmt.Sprintf("%s%s-%s", appNamePrefix, rolename, intSuffix)
result, err := c.provider.CreateApplication(ctx, name, signInAudience, tags)
return result, err
}
// createSP creates a new service principal.
func (c *client) createSP(
ctx context.Context,
app api.Application,
duration time.Duration) (spID string, password string, err error) {
type idPass struct {
ID string
Password string
}
resultRaw, err := retry(ctx, func() (interface{}, bool, error) {
now := time.Now()
spID, password, err := c.provider.CreateServicePrincipal(ctx, app.AppID, now, now.Add(duration))
// Propagation delays within Azure can cause this error occasionally, so don't quit on it.
if err != nil && (strings.Contains(err.Error(), errInvalidApplicationObject)) {
return nil, false, nil
}
result := idPass{
ID: spID,
Password: password,
}
return result, true, err
})
if err != nil {
return "", "", fmt.Errorf("error creating service principal: %w", err)
}
result := resultRaw.(idPass)
return result.ID, result.Password, nil
}
// addAppPassword adds a new password to an App's credentials list.
func (c *client) addAppPassword(ctx context.Context, appObjID string, expiresIn time.Duration) (string, string, error) {
exp := time.Now().Add(expiresIn)
resp, err := c.provider.AddApplicationPassword(ctx, appObjID, "vault-plugin-secrets-azure", exp)
if err != nil {
if strings.Contains(err.Error(), "size of the object has exceeded its limit") {
err = errors.New("maximum number of Application passwords reached")
}
return "", "", fmt.Errorf("error updating credentials: %w", err)
}
return resp.KeyID, resp.SecretText, nil
}
// deleteAppPassword removes a password, if present, from an App's credentials list.
func (c *client) deleteAppPassword(ctx context.Context, appObjID string, keyID string) error {
err := c.provider.RemoveApplicationPassword(ctx, appObjID, keyID)
if err != nil {
if strings.Contains(err.Error(), "No password credential found with keyId") {
return nil
}
return fmt.Errorf("error removing credentials: %w", err)
}
return nil
}
// deleteApp deletes an Azure application.
func (c *client) deleteApp(ctx context.Context, appObjectID string, permanentlyDelete bool) error {
return c.provider.DeleteApplication(ctx, appObjectID, permanentlyDelete)
}
// deleteServicePrincipal deletes an Azure service principal.
func (c *client) deleteServicePrincipal(ctx context.Context, spObjectID string, permanentlyDelete bool) error {
return c.provider.DeleteServicePrincipal(ctx, spObjectID, permanentlyDelete)
}
// generateUUIDs pre-generates a list of UUIDs of a
// certain length.
func (c *client) generateUUIDs(length int) ([]string, error) {
var assignmentIDs []string
for i := 0; i < length; i++ {
assignmentID := uuid.New().String()
assignmentIDs = append(assignmentIDs, assignmentID)
}
return assignmentIDs, nil
}
// assignRoles assigns Azure roles to a service principal.
func (c *client) assignRoles(ctx context.Context, spID string, roles []*AzureRole, assignmentIDs []string) ([]string, error) {
var ids []string
if len(roles) != len(assignmentIDs) {
return nil, errors.New("number of Azure Roles and assignment IDs do not match")
}
for i, role := range roles {
resultRaw, err := retry(ctx, func() (interface{}, bool, error) {
if assignmentIDs[i] == "" {
return nil, true, fmt.Errorf("assignmentID at index %d was empty", i)
}
ra, err := c.provider.CreateRoleAssignment(ctx, role.Scope, assignmentIDs[i],
armauthorization.RoleAssignmentCreateParameters{
Properties: &armauthorization.RoleAssignmentProperties{
RoleDefinitionID: &role.RoleID,
PrincipalID: &spID,
},
})
// Propagation delays within Azure can cause this error occasionally, so don't quit on it.
if err != nil && strings.Contains(err.Error(), "PrincipalNotFound") {
return nil, false, nil
}
// check if ra is an empty response
// if so, return empty string
if ra == (armauthorization.RoleAssignmentsClientCreateResponse{}) {
return "", true, err
}
return *ra.ID, true, err
})
if err != nil {
return nil, fmt.Errorf("error while assigning roles: %w", err)
}
ids = append(ids, resultRaw.(string))
}
return ids, nil
}
// unassignRoles deletes role assignments, if they existed.
// This is a clean-up operation that isn't essential to revocation. As such, an
// attempt is made to remove all assignments, and not return immediately if there
// is an error.
func (c *client) unassignRoles(ctx context.Context, roleIDs []string) error {
var merr *multierror.Error
for _, id := range roleIDs {
var rawResponse *http.Response
ctxWithResp := policy.WithCaptureResponse(ctx, &rawResponse)
if _, err := c.provider.DeleteRoleAssignmentByID(ctxWithResp, id); err != nil {
// If a role was deleted manually then Azure returns a error and status 204
if rawResponse != nil && rawResponse.StatusCode == http.StatusNoContent || rawResponse.StatusCode == http.StatusNotFound {
continue
}
merr = multierror.Append(merr, fmt.Errorf("error unassigning role: %w", err))
}
}
return merr.ErrorOrNil()
}
// addGroupMemberships adds the service principal to the Azure groups.
func (c *client) addGroupMemberships(ctx context.Context, spID string, groups []*AzureGroup) error {
for _, group := range groups {
_, err := retry(ctx, func() (interface{}, bool, error) {
err := c.provider.AddGroupMember(ctx, group.ObjectID, spID)
// Propagation delays within Azure can cause this error occasionally, so don't quit on it.
if err != nil && strings.Contains(err.Error(), "Request_ResourceNotFound") {
return nil, false, nil
}
return nil, true, err
})
if err != nil {
return fmt.Errorf("error while adding group membership: %w", err)
}
}
return nil
}
// removeGroupMemberships removes the passed service principal from the passed
// groups. This is a clean-up operation that isn't essential to revocation. As
// such, an attempt is made to remove all memberships, and not return
// immediately if there is an error.
func (c *client) removeGroupMemberships(ctx context.Context, servicePrincipalObjectID string, groupIDs []string) error {
var merr *multierror.Error
for _, id := range groupIDs {
if err := c.provider.RemoveGroupMember(ctx, id, servicePrincipalObjectID); err != nil {
// If a membership was deleted manually then Azure returns a error with a Status=404
if strings.Contains(err.Error(), "Status=404") {
continue
}
merr = multierror.Append(merr, fmt.Errorf("error removing group membership: %w", err))
}
}
return merr.ErrorOrNil()
}
// groupObjectIDs is a helper for converting a list of AzureGroup
// objects to a list of their object IDs.
func groupObjectIDs(groups []*AzureGroup) []string {
groupIDs := make([]string, 0, len(groups))
for _, group := range groups {
groupIDs = append(groupIDs, group.ObjectID)
}
return groupIDs
}
// search for roles by name
func (c *client) findRoles(ctx context.Context, roleName string) ([]*armauthorization.RoleDefinition, error) {
return c.provider.ListRoleDefinitions(ctx, fmt.Sprintf("subscriptions/%s", c.settings.SubscriptionID), fmt.Sprintf("roleName eq '%s'", roleName))
}
// findGroups is used to find a group by name. It returns all groups matching
// the provided name.
func (c *client) findGroups(ctx context.Context, groupName string) ([]api.Group, error) {
return c.provider.ListGroups(ctx, fmt.Sprintf("displayName eq '%s'", groupName))
}
// clientSettings is used by a client to configure the connections to Azure.
// It is created from a combination of Vault config settings and environment variables.
type clientSettings struct {
pluginidentityutil.PluginIdentityTokenParams
SubscriptionID string
TenantID string
ClientID string
ClientSecret string
GraphURI string
CloudConfig cloud.Configuration
PluginEnv *logical.PluginEnvironment
}
// getClientSettings creates a new clientSettings object.
// Environment variables have higher precedence than stored configuration.
func (b *azureSecretBackend) getClientSettings(ctx context.Context, config *azureConfig) (*clientSettings, error) {
firstAvailable := func(opts ...string) string {
for _, s := range opts {
if s != "" {
return s
}
}
return ""
}
settings := new(clientSettings)
settings.ClientID = firstAvailable(os.Getenv("AZURE_CLIENT_ID"), config.ClientID)
settings.ClientSecret = firstAvailable(os.Getenv("AZURE_CLIENT_SECRET"), config.ClientSecret)
settings.IdentityTokenAudience = config.IdentityTokenAudience
settings.IdentityTokenTTL = config.IdentityTokenTTL
settings.SubscriptionID = firstAvailable(os.Getenv("AZURE_SUBSCRIPTION_ID"), config.SubscriptionID)
if settings.SubscriptionID == "" {
return nil, errors.New("subscription_id is required")
}
settings.TenantID = firstAvailable(os.Getenv("AZURE_TENANT_ID"), config.TenantID)
if settings.TenantID == "" {
return nil, errors.New("tenant_id is required")
}
envName := firstAvailable(os.Getenv("AZURE_ENVIRONMENT"), config.Environment, "AZUREPUBLICCLOUD")
if envName == "" {
// Default to Azure public cloud
settings.CloudConfig = cloud.AzurePublic
settings.GraphURI = azurePublicCloudBaseURI
} else {
var err error
settings.CloudConfig, err = cloudConfigFromName(envName)
if err != nil {
return nil, err
}
settings.GraphURI, err = graphURIFromName(envName)
if err != nil {
return nil, err
}
}
pluginEnv, err := b.System().PluginEnv(ctx)
if err != nil {
return nil, fmt.Errorf("failed to read plugin environment: %w", err)
}
settings.PluginEnv = pluginEnv
return settings, nil
}
func cloudConfigFromName(name string) (cloud.Configuration, error) {
configs := map[string]cloud.Configuration{
azureChinaCloudEnvName: cloud.AzureChina,
azurePublicCloudEnvName: cloud.AzurePublic,
azureUSGovCloudEnvName: cloud.AzureGovernment,
}
name = strings.ToUpper(name)
c, ok := configs[name]
if !ok {
return c, fmt.Errorf("err: no cloud configuration matching the name %q", name)
}
return c, nil
}
func graphURIFromName(name string) (string, error) {
configs := map[string]string{
azureChinaCloudEnvName: azureChinaCloudBaseURI,
azurePublicCloudEnvName: azurePublicCloudBaseURI,
azureUSGovCloudEnvName: azureUSGovCloudBaseURI,
}
name = strings.ToUpper(name)
c, ok := configs[name]
if !ok {
return c, fmt.Errorf("err: no MS Graph URI matching the name %q", name)
}
return c, nil
}
// retry will repeatedly call f until one of:
//
// - f returns true
// - the context is cancelled
// - 80 seconds elapses. Vault's default request timeout is 90s; we want to expire before then.
//
// Delays are random but will average 5 seconds.
func retry(ctx context.Context, f func() (interface{}, bool, error)) (interface{}, error) {
delayTimer := time.NewTimer(0)
if _, hasTimeout := ctx.Deadline(); !hasTimeout {
var cancel func()
ctx, cancel = context.WithTimeout(ctx, retryTimeout)
defer cancel()
}
rng := rand.New(rand.NewSource(time.Now().UnixNano()))
var lastErr error
for {
select {
case <-delayTimer.C:
result, done, err := f()
if done {
return result, err
}
lastErr = err
delay := time.Duration(2+rng.Intn(6)) * time.Second
delayTimer.Reset(delay)
case <-ctx.Done():
err := lastErr
if err == nil {
err = ctx.Err()
}
return nil, fmt.Errorf("retry failed: %w", err)
}
}
}