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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/crt/auth/Credentials.h>
#include <aws/crt/http/HttpConnection.h>
#include <aws/crt/http/HttpProxyStrategy.h>
#include <aws/auth/credentials.h>
#include <aws/common/string.h>
#include <algorithm>
#include <aws/http/connection.h>
#include <aws/crt/Api.h>
namespace Aws
{
namespace Crt
{
namespace Auth
{
Credentials::Credentials(const aws_credentials *credentials) noexcept : m_credentials(credentials)
{
if (credentials != nullptr)
{
aws_credentials_acquire(credentials);
}
}
Credentials::Credentials(
ByteCursor access_key_id,
ByteCursor secret_access_key,
ByteCursor session_token,
uint64_t expiration_timepoint_in_seconds,
Allocator *allocator) noexcept
: m_credentials(aws_credentials_new(
allocator,
access_key_id,
secret_access_key,
session_token,
expiration_timepoint_in_seconds))
{
}
Credentials::Credentials(Allocator *allocator) noexcept
: m_credentials(aws_credentials_new_anonymous(allocator))
{
}
Credentials::~Credentials()
{
aws_credentials_release(m_credentials);
m_credentials = nullptr;
}
ByteCursor Credentials::GetAccessKeyId() const noexcept
{
if (m_credentials)
{
return aws_credentials_get_access_key_id(m_credentials);
}
else
{
return ByteCursor{0, nullptr};
}
}
ByteCursor Credentials::GetSecretAccessKey() const noexcept
{
if (m_credentials)
{
return aws_credentials_get_secret_access_key(m_credentials);
}
else
{
return ByteCursor{0, nullptr};
}
}
ByteCursor Credentials::GetSessionToken() const noexcept
{
if (m_credentials)
{
return aws_credentials_get_session_token(m_credentials);
}
else
{
return ByteCursor{0, nullptr};
}
}
uint64_t Credentials::GetExpirationTimepointInSeconds() const noexcept
{
if (m_credentials)
{
return aws_credentials_get_expiration_timepoint_seconds(m_credentials);
}
else
{
return 0;
}
}
Credentials::operator bool() const noexcept { return m_credentials != nullptr; }
CredentialsProvider::CredentialsProvider(aws_credentials_provider *provider, Allocator *allocator) noexcept
: m_allocator(allocator), m_provider(provider)
{
}
CredentialsProvider::~CredentialsProvider()
{
if (m_provider)
{
aws_credentials_provider_release(m_provider);
m_provider = nullptr;
}
}
struct CredentialsProviderCallbackArgs
{
CredentialsProviderCallbackArgs() = default;
OnCredentialsResolved m_onCredentialsResolved;
std::shared_ptr<const CredentialsProvider> m_provider;
};
void CredentialsProvider::s_onCredentialsResolved(
aws_credentials *credentials,
int error_code,
void *user_data)
{
CredentialsProviderCallbackArgs *callbackArgs =
static_cast<CredentialsProviderCallbackArgs *>(user_data);
auto credentialsPtr =
Aws::Crt::MakeShared<Credentials>(callbackArgs->m_provider->m_allocator, credentials);
callbackArgs->m_onCredentialsResolved(credentialsPtr, error_code);
Aws::Crt::Delete(callbackArgs, callbackArgs->m_provider->m_allocator);
}
bool CredentialsProvider::GetCredentials(const OnCredentialsResolved &onCredentialsResolved) const
{
if (m_provider == nullptr)
{
return false;
}
auto callbackArgs = Aws::Crt::New<CredentialsProviderCallbackArgs>(m_allocator);
if (callbackArgs == nullptr)
{
return false;
}
callbackArgs->m_provider = std::static_pointer_cast<const CredentialsProvider>(shared_from_this());
callbackArgs->m_onCredentialsResolved = onCredentialsResolved;
aws_credentials_provider_get_credentials(m_provider, s_onCredentialsResolved, callbackArgs);
return true;
}
static std::shared_ptr<ICredentialsProvider> s_CreateWrappedProvider(
struct aws_credentials_provider *raw_provider,
Allocator *allocator)
{
if (raw_provider == nullptr)
{
return nullptr;
}
/* Switch to some kind of make_shared/allocate_shared when allocator support improves */
auto provider = Aws::Crt::MakeShared<CredentialsProvider>(allocator, raw_provider, allocator);
return std::static_pointer_cast<ICredentialsProvider>(provider);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderStatic(
const CredentialsProviderStaticConfig &config,
Allocator *allocator)
{
aws_credentials_provider_static_options staticOptions;
AWS_ZERO_STRUCT(staticOptions);
staticOptions.access_key_id = config.AccessKeyId;
staticOptions.secret_access_key = config.SecretAccessKey;
staticOptions.session_token = config.SessionToken;
return s_CreateWrappedProvider(
aws_credentials_provider_new_static(allocator, &staticOptions), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderAnonymous(
Allocator *allocator)
{
aws_credentials_provider_shutdown_options shutdown_options;
AWS_ZERO_STRUCT(shutdown_options);
return s_CreateWrappedProvider(
aws_credentials_provider_new_anonymous(allocator, &shutdown_options), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderEnvironment(
Allocator *allocator)
{
aws_credentials_provider_environment_options environmentOptions;
AWS_ZERO_STRUCT(environmentOptions);
return s_CreateWrappedProvider(
aws_credentials_provider_new_environment(allocator, &environmentOptions), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderProfile(
const CredentialsProviderProfileConfig &config,
Allocator *allocator)
{
struct aws_credentials_provider_profile_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.config_file_name_override = config.ConfigFileNameOverride;
raw_config.credentials_file_name_override = config.CredentialsFileNameOverride;
raw_config.profile_name_override = config.ProfileNameOverride;
raw_config.bootstrap = config.Bootstrap ? config.Bootstrap->GetUnderlyingHandle() : nullptr;
raw_config.tls_ctx = config.TlsContext ? config.TlsContext->GetUnderlyingHandle() : nullptr;
return s_CreateWrappedProvider(aws_credentials_provider_new_profile(allocator, &raw_config), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderImds(
const CredentialsProviderImdsConfig &config,
Allocator *allocator)
{
struct aws_credentials_provider_imds_options raw_config;
AWS_ZERO_STRUCT(raw_config);
if (config.Bootstrap != nullptr)
{
raw_config.bootstrap = config.Bootstrap->GetUnderlyingHandle();
}
else
{
raw_config.bootstrap = ApiHandle::GetOrCreateStaticDefaultClientBootstrap()->GetUnderlyingHandle();
}
return s_CreateWrappedProvider(aws_credentials_provider_new_imds(allocator, &raw_config), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderChain(
const CredentialsProviderChainConfig &config,
Allocator *allocator)
{
Vector<aws_credentials_provider *> providers;
providers.reserve(config.Providers.size());
std::for_each(
config.Providers.begin(),
config.Providers.end(),
[&](const std::shared_ptr<ICredentialsProvider> &provider) {
providers.push_back(provider->GetUnderlyingHandle());
});
struct aws_credentials_provider_chain_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.providers = providers.data();
raw_config.provider_count = config.Providers.size();
return s_CreateWrappedProvider(aws_credentials_provider_new_chain(allocator, &raw_config), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderCached(
const CredentialsProviderCachedConfig &config,
Allocator *allocator)
{
struct aws_credentials_provider_cached_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.source = config.Provider->GetUnderlyingHandle();
raw_config.refresh_time_in_milliseconds = config.CachedCredentialTTL.count();
return s_CreateWrappedProvider(aws_credentials_provider_new_cached(allocator, &raw_config), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderChainDefault(
const CredentialsProviderChainDefaultConfig &config,
Allocator *allocator)
{
struct aws_credentials_provider_chain_default_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.bootstrap =
config.Bootstrap ? config.Bootstrap->GetUnderlyingHandle()
: ApiHandle::GetOrCreateStaticDefaultClientBootstrap()->GetUnderlyingHandle();
raw_config.tls_ctx = config.TlsContext ? config.TlsContext->GetUnderlyingHandle() : nullptr;
return s_CreateWrappedProvider(
aws_credentials_provider_new_chain_default(allocator, &raw_config), allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderX509(
const CredentialsProviderX509Config &config,
Allocator *allocator)
{
struct aws_credentials_provider_x509_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.bootstrap =
config.Bootstrap ? config.Bootstrap->GetUnderlyingHandle()
: ApiHandle::GetOrCreateStaticDefaultClientBootstrap()->GetUnderlyingHandle();
raw_config.tls_connection_options = config.TlsOptions.GetUnderlyingHandle();
raw_config.thing_name = aws_byte_cursor_from_c_str(config.ThingName.c_str());
raw_config.role_alias = aws_byte_cursor_from_c_str(config.RoleAlias.c_str());
raw_config.endpoint = aws_byte_cursor_from_c_str(config.Endpoint.c_str());
struct aws_http_proxy_options proxy_options;
AWS_ZERO_STRUCT(proxy_options);
if (config.ProxyOptions.has_value())
{
const Http::HttpClientConnectionProxyOptions &proxy_config = config.ProxyOptions.value();
proxy_config.InitializeRawProxyOptions(proxy_options);
raw_config.proxy_options = &proxy_options;
}
return s_CreateWrappedProvider(aws_credentials_provider_new_x509(allocator, &raw_config), allocator);
}
struct DelegateCredentialsProviderCallbackArgs
{
DelegateCredentialsProviderCallbackArgs() = default;
Allocator *allocator;
GetCredentialsHandler m_Handler;
};
static int s_onDelegateGetCredentials(
void *delegate_user_data,
aws_on_get_credentials_callback_fn callback,
void *callback_user_data)
{
auto args = static_cast<DelegateCredentialsProviderCallbackArgs *>(delegate_user_data);
auto creds = args->m_Handler();
struct aws_credentials *m_credentials = (struct aws_credentials *)(void *)creds->GetUnderlyingHandle();
callback(m_credentials, AWS_ERROR_SUCCESS, callback_user_data);
return AWS_OP_SUCCESS;
}
static void s_onDelegateShutdownComplete(void *user_data)
{
auto args = static_cast<DelegateCredentialsProviderCallbackArgs *>(user_data);
Aws::Crt::Delete(args, args->allocator);
}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderDelegate(
const CredentialsProviderDelegateConfig &config,
Allocator *allocator)
{
struct aws_credentials_provider_delegate_options raw_config;
AWS_ZERO_STRUCT(raw_config);
auto delegateCallbackArgs = Aws::Crt::New<DelegateCredentialsProviderCallbackArgs>(allocator);
delegateCallbackArgs->allocator = allocator;
delegateCallbackArgs->m_Handler = config.Handler;
raw_config.delegate_user_data = delegateCallbackArgs;
raw_config.get_credentials = s_onDelegateGetCredentials;
aws_credentials_provider_shutdown_options options;
options.shutdown_callback = s_onDelegateShutdownComplete;
options.shutdown_user_data = delegateCallbackArgs;
raw_config.shutdown_options = options;
return s_CreateWrappedProvider(
aws_credentials_provider_new_delegate(allocator, &raw_config), allocator);
}
CredentialsProviderCognitoConfig::CredentialsProviderCognitoConfig() : Bootstrap(nullptr) {}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderCognito(
const CredentialsProviderCognitoConfig &config,
Allocator *allocator)
{
struct aws_credentials_provider_cognito_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.endpoint = aws_byte_cursor_from_c_str(config.Endpoint.c_str());
raw_config.identity = aws_byte_cursor_from_c_str(config.Identity.c_str());
struct aws_byte_cursor custom_role_arn_cursor;
AWS_ZERO_STRUCT(custom_role_arn_cursor);
if (config.CustomRoleArn.has_value())
{
custom_role_arn_cursor = aws_byte_cursor_from_c_str(config.CustomRoleArn.value().c_str());
raw_config.custom_role_arn = &custom_role_arn_cursor;
}
Vector<struct aws_cognito_identity_provider_token_pair> logins;
if (config.Logins.has_value())
{
for (const auto &login_pair : config.Logins.value())
{
struct aws_cognito_identity_provider_token_pair cursor_login_pair;
AWS_ZERO_STRUCT(cursor_login_pair);
cursor_login_pair.identity_provider_name =
aws_byte_cursor_from_c_str(login_pair.IdentityProviderName.c_str());
cursor_login_pair.identity_provider_token =
aws_byte_cursor_from_c_str(login_pair.IdentityProviderToken.c_str());
logins.push_back(cursor_login_pair);
}
raw_config.login_count = logins.size();
raw_config.logins = logins.data();
}
raw_config.bootstrap =
config.Bootstrap ? config.Bootstrap->GetUnderlyingHandle()
: ApiHandle::GetOrCreateStaticDefaultClientBootstrap()->GetUnderlyingHandle();
raw_config.tls_ctx = config.TlsCtx.GetUnderlyingHandle();
struct aws_http_proxy_options proxy_options;
AWS_ZERO_STRUCT(proxy_options);
if (config.ProxyOptions.has_value())
{
const Http::HttpClientConnectionProxyOptions &proxy_config = config.ProxyOptions.value();
proxy_config.InitializeRawProxyOptions(proxy_options);
raw_config.http_proxy_options = &proxy_options;
}
return s_CreateWrappedProvider(
aws_credentials_provider_new_cognito_caching(allocator, &raw_config), allocator);
}
CredentialsProviderSTSConfig::CredentialsProviderSTSConfig() : Bootstrap(nullptr) {}
std::shared_ptr<ICredentialsProvider> CredentialsProvider::CreateCredentialsProviderSTS(
const CredentialsProviderSTSConfig &config,
Allocator *allocator)
{
if (config.Provider == nullptr)
{
AWS_LOGF_ERROR(
AWS_LS_AUTH_CREDENTIALS_PROVIDER,
"Failed to build STS credentials provider - missing required 'Provider' configuration "
"parameter");
return nullptr;
}
struct aws_credentials_provider_sts_options raw_config;
AWS_ZERO_STRUCT(raw_config);
raw_config.creds_provider = config.Provider->GetUnderlyingHandle();
raw_config.role_arn = aws_byte_cursor_from_c_str(config.RoleArn.c_str());
raw_config.session_name = aws_byte_cursor_from_c_str(config.SessionName.c_str());
raw_config.duration_seconds = config.DurationSeconds;
raw_config.bootstrap =
config.Bootstrap ? config.Bootstrap->GetUnderlyingHandle()
: ApiHandle::GetOrCreateStaticDefaultClientBootstrap()->GetUnderlyingHandle();
raw_config.tls_ctx = config.TlsCtx.GetUnderlyingHandle();
struct aws_http_proxy_options proxy_options;
AWS_ZERO_STRUCT(proxy_options);
if (config.ProxyOptions.has_value())
{
const Http::HttpClientConnectionProxyOptions &proxy_config = config.ProxyOptions.value();
proxy_config.InitializeRawProxyOptions(proxy_options);
raw_config.http_proxy_options = &proxy_options;
}
return s_CreateWrappedProvider(aws_credentials_provider_new_sts(allocator, &raw_config), allocator);
}
} // namespace Auth
} // namespace Crt
} // namespace Aws
|