-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathCognitoCachingCredentialsProvider.cpp
183 lines (155 loc) · 8.85 KB
/
CognitoCachingCredentialsProvider.cpp
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
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/identity-management/auth/CognitoCachingCredentialsProvider.h>
#include <aws/identity-management/auth/PersistentCognitoIdentityProvider.h>
#include <aws/cognito-identity/model/GetCredentialsForIdentityRequest.h>
#include <aws/cognito-identity/model/GetIdRequest.h>
#include <aws/core/utils/Outcome.h>
#include <aws/core/utils/logging/LogMacros.h>
#include <aws/core/utils/DateTime.h>
using namespace Aws::Auth;
using namespace Aws::CognitoIdentity;
using namespace Aws::CognitoIdentity::Model;
using namespace Aws::Utils;
static const char* LOG_TAG = "CognitoCachingCredentialsProvider";
static const char* MEM_TAG = "CognitoCachingCredentialsProvider";
CognitoCachingCredentialsProvider::CognitoCachingCredentialsProvider
(const std::shared_ptr<PersistentCognitoIdentityProvider>& identityRepository, const std::shared_ptr<CognitoIdentityClient>& cognitoIdentityClient) :
m_cognitoIdentityClient(cognitoIdentityClient != nullptr ? cognitoIdentityClient :
Aws::MakeShared<CognitoIdentityClient>(MEM_TAG, Aws::MakeShared<AnonymousAWSCredentialsProvider>(MEM_TAG))),
m_identityRepository(identityRepository),
m_cachedCredentials("", ""),
m_expiry(0.0)
{
m_identityRepository->SetLoginsUpdatedCallback(std::bind(&CognitoCachingCredentialsProvider::OnLoginsUpdated, this, std::placeholders::_1));
}
AWSCredentials CognitoCachingCredentialsProvider::GetAWSCredentials()
{
if (IsTimeExpired(m_expiry.load()))
{
AWS_LOGSTREAM_TRACE(LOG_TAG, "Expiry expired, attempting to acquire lock and refresh credentials.");
std::lock_guard<std::mutex> locker(m_credsMutex);
AWS_LOGSTREAM_TRACE(LOG_TAG, "Lock acquired, checking if the expiry is still expired.");
if (IsTimeExpired(m_expiry.load()))
{
AWS_LOGSTREAM_INFO(LOG_TAG, "Expiry expired on cognito credentials attempting to pull new credentials.");
auto getCredentialsForIdentityOutcome = GetCredentialsFromCognito();
if (getCredentialsForIdentityOutcome.IsSuccess())
{
AWS_LOGSTREAM_INFO(LOG_TAG, "Successfully obtained cognito credentials");
const auto& cognitoCreds = getCredentialsForIdentityOutcome.GetResult().GetCredentials();
//If we went from anonymous to authenticated on a different machine than the original
//login, then we need to swap out the identity id to be the parent id.
const auto& parentIdentityId = getCredentialsForIdentityOutcome.GetResult().GetIdentityId();
if (m_identityRepository->GetIdentityId() != parentIdentityId)
{
AWS_LOGSTREAM_INFO(LOG_TAG, "A parent identity was from cognito which is different from the anonymous identity. Swapping that out now.");
m_identityRepository->PersistIdentityId(parentIdentityId);
}
m_cachedCredentials.SetAWSAccessKeyId(cognitoCreds.GetAccessKeyId());
m_cachedCredentials.SetAWSSecretKey(cognitoCreds.GetSecretKey());
m_cachedCredentials.SetSessionToken(cognitoCreds.GetSessionToken());
m_expiry = cognitoCreds.GetExpiration().SecondsWithMSPrecision();
AWS_LOGSTREAM_INFO(LOG_TAG, "Credentials will expire next at " << m_expiry.load());
}
else
{
auto error = getCredentialsForIdentityOutcome.GetError();
AWS_LOGSTREAM_ERROR(LOG_TAG, "Failed to pull credentials from cognito. Error: " <<
error.GetExceptionName() << " Message: " << error.GetMessage());
}
}
}
return m_cachedCredentials;
}
bool CognitoCachingCredentialsProvider::IsTimeExpired(double expiry)
{
//30s grace buffer so requests have time to finish before expiry.
static const double GRACE_BUFFER = 30.0;
return DateTime::Now().SecondsWithMSPrecision() > (expiry - GRACE_BUFFER);
}
void CognitoCachingCredentialsProvider::OnLoginsUpdated(const PersistentCognitoIdentityProvider&)
{
AWS_LOGSTREAM_INFO(LOG_TAG, "Logins Updated in the identity repository, resetting the expiry to force a refresh on the next run.");
m_expiry.store(DateTime().SecondsWithMSPrecision());
}
GetCredentialsForIdentityOutcome FetchCredentialsFromCognito(const CognitoIdentityClient& cognitoIdentityClient,
PersistentCognitoIdentityProvider& identityRepository,
const char* logTag, bool includeLogins)
{
auto logins = identityRepository.GetLogins();
Aws::Map<Aws::String, Aws::String> cognitoLogins;
for(auto& login : logins)
{
cognitoLogins[login.first] = login.second.accessToken;
}
if (!identityRepository.HasIdentityId())
{
auto accountId = identityRepository.GetAccountId();
auto identityPoolId = identityRepository.GetIdentityPoolId();
AWS_LOGSTREAM_INFO(logTag, "Identity not found, requesting an id for accountId " <<
accountId << " identity pool id " << identityPoolId <<
" with logins.");
GetIdRequest getIdRequest;
if(!accountId.empty())
{
getIdRequest.SetAccountId(accountId);
}
getIdRequest.SetIdentityPoolId(identityPoolId);
if(includeLogins)
{
getIdRequest.SetLogins(cognitoLogins);
}
auto getIdOutcome = cognitoIdentityClient.GetId(getIdRequest);
if(getIdOutcome.IsSuccess())
{
auto identityId = getIdOutcome.GetResult().GetIdentityId();
AWS_LOGSTREAM_INFO(logTag, "Successfully retrieved identity: " << identityId);
identityRepository.PersistIdentityId(identityId);
}
else
{
AWS_LOGSTREAM_ERROR(logTag, "Failed to retrieve identity. Error: "
<< getIdOutcome.GetError().GetExceptionName() << " "
<< getIdOutcome.GetError().GetMessage());
return GetCredentialsForIdentityOutcome(getIdOutcome.GetError());
}
}
GetCredentialsForIdentityRequest getCredentialsForIdentityRequest;
getCredentialsForIdentityRequest.SetIdentityId(identityRepository.GetIdentityId());
if(includeLogins)
{
getCredentialsForIdentityRequest.SetLogins(cognitoLogins);
}
return cognitoIdentityClient.GetCredentialsForIdentity(getCredentialsForIdentityRequest);
}
static const char* ANON_LOG_TAG = "CognitoCachingAnonymousCredentialsProvider";
CognitoCachingAnonymousCredentialsProvider::CognitoCachingAnonymousCredentialsProvider(
const std::shared_ptr<PersistentCognitoIdentityProvider>& identityRepository,
const std::shared_ptr<CognitoIdentityClient>& cognitoIdentityClient) :
CognitoCachingCredentialsProvider(identityRepository, cognitoIdentityClient)
{ }
CognitoCachingAnonymousCredentialsProvider::CognitoCachingAnonymousCredentialsProvider(const Aws::String& accountId, const Aws::String& identityPoolId,
const std::shared_ptr<CognitoIdentityClient>& cognitoIdentityClient) :
CognitoCachingCredentialsProvider(Aws::MakeShared<DefaultPersistentCognitoIdentityProvider>(MEM_TAG, identityPoolId, accountId), cognitoIdentityClient)
{ }
CognitoCachingAnonymousCredentialsProvider::CognitoCachingAnonymousCredentialsProvider(const Aws::String& identityPoolId,
const std::shared_ptr<CognitoIdentityClient>& cognitoIdentityClient) :
CognitoCachingCredentialsProvider(Aws::MakeShared<DefaultPersistentCognitoIdentityProvider>(MEM_TAG, identityPoolId), cognitoIdentityClient)
{ }
GetCredentialsForIdentityOutcome CognitoCachingAnonymousCredentialsProvider::GetCredentialsFromCognito() const
{
return FetchCredentialsFromCognito(*m_cognitoIdentityClient, *m_identityRepository, ANON_LOG_TAG, false);
}
static const char* AUTH_LOG_TAG = "CognitoCachingAuthenticatedCredentialsProvider";
CognitoCachingAuthenticatedCredentialsProvider::CognitoCachingAuthenticatedCredentialsProvider(
const std::shared_ptr<PersistentCognitoIdentityProvider>& identityRepository,
const std::shared_ptr<CognitoIdentityClient>& cognitoIdentityClient) :
CognitoCachingCredentialsProvider(identityRepository, cognitoIdentityClient)
{ }
GetCredentialsForIdentityOutcome CognitoCachingAuthenticatedCredentialsProvider::GetCredentialsFromCognito() const
{
return FetchCredentialsFromCognito(*m_cognitoIdentityClient, *m_identityRepository, AUTH_LOG_TAG, true);
}