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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/auth/bearer-token-provider/SSOBearerTokenProvider.h>
#include <aws/core/auth/AWSCredentialsProvider.h>
#include <aws/core/config/AWSProfileConfigLoader.h>
#include <aws/core/internal/AWSHttpResourceClient.h>
#include <aws/core/platform/Environment.h>
#include <aws/core/platform/FileSystem.h>
#include <aws/core/utils/logging/LogMacros.h>
#include <aws/core/utils/FileSystemUtils.h>
#include <aws/core/client/SpecifiedRetryableErrorsRetryStrategy.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/utils/json/JsonSerializer.h>
using namespace Aws::Auth;
using Aws::Utils::Threading::ReaderLockGuard;
static const char SSO_BEARER_TOKEN_PROVIDER_LOG_TAG[] = "SSOBearerTokenProvider";
static const char SSO_GRANT_TYPE[] = "refresh_token";
const size_t SSOBearerTokenProvider::REFRESH_WINDOW_BEFORE_EXPIRATION_S = 600;
const size_t SSOBearerTokenProvider::REFRESH_ATTEMPT_INTERVAL_S = 30;
SSOBearerTokenProvider::SSOBearerTokenProvider()
: m_profileToUse(Aws::Auth::GetConfigProfileName()),
m_lastUpdateAttempt((int64_t) 0)
{
AWS_LOGSTREAM_INFO(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Setting sso bearerToken provider to read config from " << m_profileToUse);
}
SSOBearerTokenProvider::SSOBearerTokenProvider(const Aws::String& awsProfile)
: m_profileToUse(awsProfile),
m_lastUpdateAttempt((int64_t) 0)
{
AWS_LOGSTREAM_INFO(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Setting sso bearerToken provider to read config from " << m_profileToUse);
}
AWSBearerToken SSOBearerTokenProvider::GetAWSBearerToken()
{
Aws::Utils::Threading::ReaderLockGuard guard(m_reloadLock);
if(m_token.IsEmpty())
{
Reload();
}
if(!m_token.IsEmpty())
{
const Aws::Utils::DateTime now = Aws::Utils::DateTime::Now();
if (now >= m_token.GetExpiration() - std::chrono::seconds(REFRESH_WINDOW_BEFORE_EXPIRATION_S) &&
m_lastUpdateAttempt + std::chrono::seconds(REFRESH_ATTEMPT_INTERVAL_S) < now)
{
guard.UpgradeToWriterLock();
RefreshFromSso();
}
}
if(m_token.IsExpiredOrEmpty())
{
/* If a loaded token has expired and has insufficient metadata to perform a refresh the SSO token
provider must raise an exception that the token has expired and cannot be refreshed.
Error logging and returning an empty object instead because of disabled exceptions and poor legacy API design. */
AWS_LOGSTREAM_ERROR(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "SSOBearerTokenProvider is unable to provide a token");
return Aws::Auth::AWSBearerToken("", Aws::Utils::DateTime(0.0));
}
return m_token;
}
void SSOBearerTokenProvider::Reload()
{
CachedSsoToken cachedSsoToken = LoadAccessTokenFile();
if(cachedSsoToken.accessToken.empty()) {
AWS_LOGSTREAM_TRACE(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Access token for SSO not available");
return;
}
const Aws::Utils::DateTime now = Aws::Utils::DateTime::Now();
if(cachedSsoToken.expiresAt < now) {
AWS_LOGSTREAM_ERROR(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Cached Token is already expired at " << cachedSsoToken.expiresAt.ToGmtString(Aws::Utils::DateFormat::ISO_8601));
return;
}
m_token.SetToken(cachedSsoToken.accessToken);
m_token.SetExpiration(cachedSsoToken.expiresAt);
}
void SSOBearerTokenProvider::RefreshFromSso()
{
CachedSsoToken cachedSsoToken = LoadAccessTokenFile();
if(!m_client)
{
Aws::Client::ClientConfiguration config;
config.scheme = Aws::Http::Scheme::HTTPS;
/* The SSO token provider must not resolve if any SSO configuration values are present directly on the profile
* instead of an `sso-session` section. The SSO token provider must ignore these configuration values if these
* values are present directly on the profile instead of an `sso-session` section. */
// config.region = m_profile.GetSsoRegion(); // <- intentionally not used per comment above
config.region = cachedSsoToken.region;
m_client = Aws::MakeUnique<Aws::Internal::SSOCredentialsClient>(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, config);
}
Aws::Internal::SSOCredentialsClient::SSOCreateTokenRequest ssoCreateTokenRequest;
ssoCreateTokenRequest.clientId = cachedSsoToken.clientId;
ssoCreateTokenRequest.clientSecret = cachedSsoToken.clientSecret;
ssoCreateTokenRequest.grantType = SSO_GRANT_TYPE;
ssoCreateTokenRequest.refreshToken = cachedSsoToken.refreshToken;
if(!m_client) {
AWS_LOGSTREAM_FATAL(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Unexpected nullptr in SSOBearerTokenProvider::m_client");
return;
}
Aws::Internal::SSOCredentialsClient::SSOCreateTokenResult result = m_client->CreateToken(ssoCreateTokenRequest);
if(!result.accessToken.empty())
{
cachedSsoToken.accessToken = result.accessToken;
cachedSsoToken.expiresAt = Aws::Utils::DateTime::Now() + std::chrono::seconds(result.expiresIn);
if(!result.refreshToken.empty()) {
cachedSsoToken.refreshToken = result.refreshToken;
}
if(!result.clientId.empty()) {
cachedSsoToken.clientId = result.clientId;
}
}
if(WriteAccessTokenFile(cachedSsoToken))
{
m_token.SetToken(cachedSsoToken.accessToken);
m_token.SetExpiration(cachedSsoToken.expiresAt);
}
}
SSOBearerTokenProvider::CachedSsoToken SSOBearerTokenProvider::LoadAccessTokenFile() const
{
SSOBearerTokenProvider::CachedSsoToken retValue;
const Aws::Config::Profile& profile = Aws::Config::GetCachedConfigProfile(m_profileToUse);
if(!profile.IsSsoSessionSet()) {
AWS_LOGSTREAM_ERROR(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "SSOBearerTokenProvider set to use a profile " << m_profileToUse << " without a sso_session. Unable to load cached token.");
return retValue;
}
Aws::String hashedStartUrl = Aws::Utils::HashingUtils::HexEncode(Aws::Utils::HashingUtils::CalculateSHA1(profile.GetSsoSession().GetName()));
Aws::String profileDirectory = ProfileConfigFileAWSCredentialsProvider::GetProfileDirectory();
Aws::StringStream ssToken;
ssToken << profileDirectory;
ssToken << Aws::FileSystem::PATH_DELIM << "sso" << Aws::FileSystem::PATH_DELIM << "cache" << Aws::FileSystem::PATH_DELIM << hashedStartUrl << ".json";
auto ssoAccessTokenPath = ssToken.str();
AWS_LOGSTREAM_DEBUG(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Preparing to load token from: " << ssoAccessTokenPath);
Aws::IFStream inputFile(ssoAccessTokenPath.c_str());
if(inputFile)
{
AWS_LOGSTREAM_DEBUG(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Reading content from token file: " << ssoAccessTokenPath);
Aws::Utils::Json::JsonValue tokenDoc(inputFile);
if (!tokenDoc.WasParseSuccessful())
{
AWS_LOGSTREAM_ERROR(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Failed to parse token file: " << ssoAccessTokenPath);
return retValue;
}
Utils::Json::JsonView tokenView(tokenDoc);
retValue.accessToken = tokenView.GetString("accessToken");
retValue.expiresAt = Aws::Utils::DateTime(tokenView.GetString("expiresAt"), Aws::Utils::DateFormat::ISO_8601);
retValue.refreshToken = tokenView.GetString("refreshToken");
retValue.clientId = tokenView.GetString("clientId");
retValue.clientSecret = tokenView.GetString("clientSecret");
retValue.registrationExpiresAt = Aws::Utils::DateTime(tokenView.GetString("registrationExpiresAt"), Aws::Utils::DateFormat::ISO_8601);
retValue.region = tokenView.GetString("region");
retValue.startUrl = tokenView.GetString("startUrl");
return retValue;
}
else
{
AWS_LOGSTREAM_INFO(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Unable to open token file on path: " << ssoAccessTokenPath);
return retValue;
}
}
bool SSOBearerTokenProvider::WriteAccessTokenFile(const CachedSsoToken& token) const
{
const Aws::Config::Profile& profile = Aws::Config::GetCachedConfigProfile(m_profileToUse);
if(!profile.IsSsoSessionSet()) {
AWS_LOGSTREAM_ERROR(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "SSOBearerTokenProvider set to use a profile "
<< m_profileToUse << " without a sso_session. Unable to write a cached token.");
return false;
}
Aws::String hashedStartUrl = Aws::Utils::HashingUtils::HexEncode(Aws::Utils::HashingUtils::CalculateSHA1(profile.GetSsoSession().GetName()));
Aws::String profileDirectory = ProfileConfigFileAWSCredentialsProvider::GetProfileDirectory();
Aws::StringStream ssToken;
ssToken << profileDirectory;
ssToken << Aws::FileSystem::PATH_DELIM << "sso" << Aws::FileSystem::PATH_DELIM << "cache" << Aws::FileSystem::PATH_DELIM << hashedStartUrl << ".json";
auto ssoAccessTokenPath = ssToken.str();
AWS_LOGSTREAM_DEBUG(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Preparing to write token to: " << ssoAccessTokenPath);
Aws::OFStream outputFileStream(ssoAccessTokenPath.c_str(), std::ios_base::out | std::ios_base::trunc);
if(outputFileStream && outputFileStream.good())
{
AWS_LOGSTREAM_DEBUG(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Writing content to token file: " << ssoAccessTokenPath);
Aws::Utils::Json::JsonValue cachedTokenDoc;
if(!token.accessToken.empty()) {
cachedTokenDoc.WithString("accessToken", token.accessToken);
}
if(token.expiresAt != 0.0) {
cachedTokenDoc.WithString("expiresAt", token.expiresAt.ToGmtString(Aws::Utils::DateFormat::ISO_8601));
}
if(!token.refreshToken.empty()) {
cachedTokenDoc.WithString("refreshToken", token.refreshToken);
}
if(!token.clientId.empty()) {
cachedTokenDoc.WithString("clientId", token.clientId);
}
if(!token.clientSecret.empty()) {
cachedTokenDoc.WithString("clientSecret", token.clientSecret);
}
if(token.registrationExpiresAt != 0.0) {
cachedTokenDoc.WithString("registrationExpiresAt", token.registrationExpiresAt.ToGmtString(Aws::Utils::DateFormat::ISO_8601));
}
if(!token.region.empty()) {
cachedTokenDoc.WithString("region", token.region);
}
if(!token.startUrl.empty()) {
cachedTokenDoc.WithString("startUrl", token.startUrl);
}
const Aws::String& resultingJsonStr = cachedTokenDoc.View().WriteReadable();;
outputFileStream << resultingJsonStr;
return outputFileStream.good();
}
else
{
AWS_LOGSTREAM_INFO(SSO_BEARER_TOKEN_PROVIDER_LOG_TAG, "Unable to open token file on path for writing: " << ssoAccessTokenPath);
return false;
}
}
|