-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor locking and unlocking into methods on *backend
- Loading branch information
Showing
2 changed files
with
58 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -63,6 +63,8 @@ type backend struct { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
// Mutex to protect access to iam/sts clients | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
clientMutex sync.RWMutex | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
// iamClient and stsClient hold configured iam and sts clients for reuse, and | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
// to enable mocking with AWS iface for tests | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
iamClient iamiface.IAMAPI | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
stsClient stsiface.STSAPI | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -76,3 +78,43 @@ After mounting this backend, credentials to generate IAM keys must | |||||||||||||||||||||||||||||||||||||||||||||||||||||
be configured with the "root" path and policies must be written using | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
the "roles/" endpoints before any access keys can be generated. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
// clientIAM returns the configured IAM client. If nil, it constructs a new one | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
// and returns it, setting it the internal variable | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (b *backend) clientIAM(ctx context.Context, s logical.Storage) (iamiface.IAMAPI, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
b.clientMutex.RLock() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
This comment has been minimized.
Sorry, something went wrong. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
unlockFunc := b.clientMutex.RUnlock | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
defer func() { unlockFunc() }() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if b.iamClient == nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Upgrade the lock for writing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
b.clientMutex.RUnlock() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
b.clientMutex.Lock() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
unlockFunc = b.clientMutex.Unlock | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
iamClient, err := clientIAM(ctx, s) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
b.iamClient = iamClient | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
This comment has been minimized.
Sorry, something went wrong.
vishalnayak
Member
|
func clientIAM(ctx context.Context, s logical.Storage) (*iam.IAM, error) { | |
awsConfig, err := getRootConfig(ctx, s, "iam") | |
if err != nil { | |
return nil, err | |
} | |
client := iam.New(session.New(awsConfig)) | |
if client == nil { | |
return nil, fmt.Errorf("could not obtain iam client") | |
} | |
return client, nil | |
} | |
func clientSTS(ctx context.Context, s logical.Storage) (*sts.STS, error) { | |
awsConfig, err := getRootConfig(ctx, s, "sts") | |
if err != nil { | |
return nil, err | |
} | |
client := sts.New(session.New(awsConfig)) | |
if client == nil { | |
return nil, fmt.Errorf("could not obtain sts client") | |
} | |
return client, nil | |
} |
nil
clients and error if nil
, so we should be good here
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Although I see why you might have used this approach of setting
unlockFunc
in the first place, now that this is in its own function, I guess we don't need to juggle this much. Probably the following is more readable.