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 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
|
#ifndef AWS_AUTH_CREDENTIALS_H
#define AWS_AUTH_CREDENTIALS_H
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/auth/auth.h>
#include <aws/common/array_list.h>
#include <aws/common/atomics.h>
#include <aws/common/linked_list.h>
#include <aws/io/io.h>
AWS_PUSH_SANE_WARNING_LEVEL
struct aws_client_bootstrap;
struct aws_auth_http_system_vtable;
struct aws_credentials;
struct aws_credentials_provider;
struct aws_ecc_key_pair;
struct aws_string;
extern const uint16_t aws_sts_assume_role_default_duration_secs;
/*
* Signature for the credentials sourcing callback
*/
typedef void(aws_on_get_credentials_callback_fn)(struct aws_credentials *credentials, int error_code, void *user_data);
typedef int(aws_credentials_provider_get_credentials_fn)(
struct aws_credentials_provider *provider,
aws_on_get_credentials_callback_fn callback,
void *user_data);
typedef void(aws_credentials_provider_destroy_fn)(struct aws_credentials_provider *provider);
/*
* Common function table that all credentials provider implementations must support
*/
struct aws_credentials_provider_vtable {
aws_credentials_provider_get_credentials_fn *get_credentials;
aws_credentials_provider_destroy_fn *destroy;
};
typedef void(aws_credentials_provider_shutdown_completed_fn)(void *user_data);
/*
* All credentials providers support an optional shutdown callback that
* gets invoked, with appropriate user data, when the resources used by the provider
* are no longer in use. For example, the imds provider uses this to
* signal when it is no longer using the client bootstrap used in its
* internal connection manager.
*/
struct aws_credentials_provider_shutdown_options {
aws_credentials_provider_shutdown_completed_fn *shutdown_callback;
void *shutdown_user_data;
};
/**
* A baseclass for credentials providers. A credentials provider is an object that has an asynchronous
* query function for retrieving AWS credentials.
*
* Ref-counted. Thread-safe.
*/
struct aws_credentials_provider {
struct aws_credentials_provider_vtable *vtable;
struct aws_allocator *allocator;
struct aws_credentials_provider_shutdown_options shutdown_options;
void *impl;
struct aws_atomic_var ref_count;
};
/*
* Config structs for creating all the different credentials providers
*/
/**
* Configuration options for a provider that returns a fixed set of credentials
*/
struct aws_credentials_provider_static_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
struct aws_byte_cursor access_key_id;
struct aws_byte_cursor secret_access_key;
struct aws_byte_cursor session_token;
};
/**
* Configuration options for a provider that returns credentials based on environment variable values
*/
struct aws_credentials_provider_environment_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
};
/**
* Configuration options for a provider that sources credentials from the aws config and credentials files
* (by default ~/.aws/config and ~/.aws/credentials)
*/
struct aws_credentials_provider_profile_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Override of what profile to use to source credentials from ('default' by default)
*/
struct aws_byte_cursor profile_name_override;
/*
* Override path to the profile config file (~/.aws/config by default)
*/
struct aws_byte_cursor config_file_name_override;
/*
* Override path to the profile credentials file (~/.aws/credentials by default)
*/
struct aws_byte_cursor credentials_file_name_override;
/**
* (Optional)
* Use a cached merged profile collection. A merge collection has both config file
* (~/.aws/config) and credentials file based profile collection (~/.aws/credentials) using
* `aws_profile_collection_new_from_merge`.
* If this option is provided, `config_file_name_override` and `credentials_file_name_override` will be ignored.
*/
struct aws_profile_collection *profile_collection_cached;
/*
* Bootstrap to use for any network connections made while sourcing credentials (for example,
* a profile that uses assume-role will need to hit STS)
*/
struct aws_client_bootstrap *bootstrap;
/*
* Client TLS context to use for any secure network connections made while sourcing credentials
* (for example, a profile that uses assume-role will need to hit STS).
*
* If a TLS context is needed, and you did not pass one in, it will be created automatically.
* However, you are encouraged to pass in a shared one since these are expensive objects.
* If using BYO_CRYPTO, you must provide the TLS context since it cannot be created automatically.
*/
struct aws_tls_ctx *tls_ctx;
/* For mocking the http layer in tests, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
};
/**
* Configuration options for a provider that functions as a caching decorator. Credentials sourced through this
* provider will be cached within it until their expiration time. When the cached credentials expire, new
* credentials will be fetched when next queried.
*/
struct aws_credentials_provider_cached_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* The provider to cache credentials query results from
*/
struct aws_credentials_provider *source;
/*
* An optional expiration time period for sourced credentials. For a given set of cached credentials,
* the refresh time period will be the minimum of this time and any expiration timestamp on the credentials
* themselves.
*/
uint64_t refresh_time_in_milliseconds;
/* For mocking, leave NULL otherwise */
aws_io_clock_fn *high_res_clock_fn;
aws_io_clock_fn *system_clock_fn;
};
/**
* Configuration options for a provider that queries, in order, a list of providers. This provider uses the
* first set of credentials successfully queried. Providers are queried one at a time; a provider is not queried
* until the preceding provider has failed to source credentials.
*/
struct aws_credentials_provider_chain_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Pointer to an array of credentials providers to use
*/
struct aws_credentials_provider **providers;
/*
* Number of elements in the array of credentials providers
*/
size_t provider_count;
};
/*
* EC2 IMDS_V1 takes one http request to get resource, while IMDS_V2 takes one more token (Http PUT) request
* to get secure token used in following request.
*/
enum aws_imds_protocol_version {
/**
* Defaults to IMDS_PROTOCOL_V2. It can be set to either one and IMDS Client
* will figure out (by looking at response code) which protocol an instance
* is using. But a more clear setting will reduce unnecessary network request.
*/
IMDS_PROTOCOL_V2,
IMDS_PROTOCOL_V1,
};
/**
* Configuration options for the provider that sources credentials from ec2 instance metadata
*/
struct aws_credentials_provider_imds_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/*
* Which version of the imds query protocol to use.
*/
enum aws_imds_protocol_version imds_version;
/*
* If true, fallback from v2 to v1 will be disabled for all cases
*/
bool ec2_metadata_v1_disabled;
/* For mocking the http layer in tests, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
};
/*
* Configuration options for the provider that sources credentials from ECS container metadata
*
* ECS creds provider can be used to access creds via either
* relative uri to a fixed endpoint http://169.254.170.2,
* or via a full uri specified by environment variables:
* AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
* AWS_CONTAINER_CREDENTIALS_FULL_URI
* AWS_CONTAINER_AUTHORIZATION_TOKEN
* If both relative uri and absolute uri are set, relative uri
* has higher priority. Token is used in auth header but only for
* absolute uri.
* While above information is used in request only, endpoint info
* is needed when creating ecs provider to initiate the connection
* manager, more specifically, host and http scheme (tls or not)
* from endpoint are needed.
*/
struct aws_credentials_provider_ecs_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/*
* Host to query credentials from
*/
struct aws_byte_cursor host;
/*
* Http path and query string for the credentials query
*/
struct aws_byte_cursor path_and_query;
/*
* Authorization token to include in the credentials query
*/
struct aws_byte_cursor auth_token;
/*
* Client TLS context to use when making query.
* If set, port 443 is used. If NULL, port 80 is used.
*/
struct aws_tls_ctx *tls_ctx;
/* For mocking the http layer in tests, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
/*
* Port to query credentials from. If zero, 80/443 will be used based on whether or not tls is enabled.
*/
uint32_t port;
};
/**
* Configuration options for the X509 credentials provider
*
* The x509 credentials provider sources temporary credentials from AWS IoT Core using TLS mutual authentication.
* See details: https://docs.aws.amazon.com/iot/latest/developerguide/authorizing-direct-aws.html
* An end to end demo with detailed steps can be found here:
* https://aws.amazon.com/blogs/security/how-to-eliminate-the-need-for-hardcoded-aws-credentials-in-devices-by-using-the-aws-iot-credentials-provider/
*/
struct aws_credentials_provider_x509_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/* TLS connection options that have been initialized with your x509 certificate and private key */
const struct aws_tls_connection_options *tls_connection_options;
/* IoT thing name you registered with AWS IOT for your device, it will be used in http request header */
struct aws_byte_cursor thing_name;
/* Iot role alias you created with AWS IoT for your IAM role, it will be used in http request path */
struct aws_byte_cursor role_alias;
/**
* Per-account X509 credentials sourcing endpoint.
*/
struct aws_byte_cursor endpoint;
/**
* (Optional) Http proxy configuration for the http request that fetches credentials
*/
const struct aws_http_proxy_options *proxy_options;
/* For mocking the http layer in tests, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
};
/**
* Configuration options for the STS web identity provider
*
* Sts with web identity credentials provider sources a set of temporary security credentials for users who have been
* authenticated in a mobile or web application with a web identity provider.
* Example providers include Amazon Cognito, Login with Amazon, Facebook, Google, or any OpenID Connect-compatible
* identity provider like Elastic Kubernetes Service
* https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html
* The required parameters used in the request (region, roleArn, sessionName, tokenFilePath) are automatically resolved
* by SDK from envrionment variables or config file if not set.
---------------------------------------------------------------------------------
| Parameter | Environment Variable Name | Config File Property Name |
----------------------------------------------------------------------------------
| region | AWS_DEFAULT_REGION | region |
| role_arn | AWS_ROLE_ARN | role_arn |
| role_session_name | AWS_ROLE_SESSION_NAME | role_session_name |
| token_file_path | AWS_WEB_IDENTITY_TOKEN_FILE | web_identity_token_file |
|--------------------------------------------------------------------------------|
* The order of resolution is the following
* 1. Parameters
* 2. Environment Variables
* 3. Config File
*/
struct aws_credentials_provider_sts_web_identity_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/**
* (Optional)
* Use a cached config profile collection. You can also pass a merged collection.
*/
struct aws_profile_collection *config_profile_collection_cached;
/*
* Client TLS context to use when querying STS web identity provider.
* Required.
*/
struct aws_tls_ctx *tls_ctx;
/* For mocking the http layer in tests, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
/*
* (Optional)
* Override of what profile to use, if not set, 'default' will be used.
*/
struct aws_byte_cursor profile_name_override;
/*
* (Optional)
* Override of region, if not set, it will be resolved from env or profile.
*/
struct aws_byte_cursor region;
/*
* (Optional)
* Override of role_arn, if not set, it will be resolved from env or profile.
*/
struct aws_byte_cursor role_arn;
/*
* (Optional)
* Override of role_session_name, if not set, it will be resolved from env or profile.
*/
struct aws_byte_cursor role_session_name;
/*
* (Optional)
* Override of token_file_path, if not set, it will be resolved from env or profile.
*/
struct aws_byte_cursor token_file_path;
};
/*
* Configuration for the SSOCredentialsProvider that sends a GetRoleCredentialsRequest to the AWS Single
* Sign-On Service to maintain short-lived sessions to use for authentication.
*
* https://docs.aws.amazon.com/sdkref/latest/guide/feature-sso-credentials.html
*/
struct aws_credentials_provider_sso_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Override of what profile to use to source credentials from ('default' by default)
*/
struct aws_byte_cursor profile_name_override;
/*
* Override path to the profile config file (~/.aws/config by default)
*/
struct aws_byte_cursor config_file_name_override;
/**
* (Optional)
* Use a cached config profile collection. You can also pass a merged collection.
* config_file_name_override will be ignored if this option is provided.
*/
struct aws_profile_collection *config_file_cached;
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
* Required.
*/
struct aws_client_bootstrap *bootstrap;
/*
* Client TLS context to use when querying SSO provider.
* Required.
*/
struct aws_tls_ctx *tls_ctx;
/* For mocking, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
aws_io_clock_fn *system_clock_fn;
};
/**
* Configuration options for the STS credentials provider
*/
struct aws_credentials_provider_sts_options {
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/*
* Client TLS context to use when querying STS.
* Required.
*/
struct aws_tls_ctx *tls_ctx;
/*
* Credentials provider to be used to sign the requests made to STS to fetch credentials.
*/
struct aws_credentials_provider *creds_provider;
/*
* Arn of the role to assume by fetching credentials for
*/
struct aws_byte_cursor role_arn;
/*
* Assumed role session identifier to be associated with the sourced credentials
*/
struct aws_byte_cursor session_name;
/*
* How long sourced credentials should remain valid for, in seconds. 900 is the minimum allowed value.
*/
uint16_t duration_seconds;
/**
* (Optional) Http proxy configuration for the AssumeRole http request that fetches credentials
*/
const struct aws_http_proxy_options *http_proxy_options;
struct aws_credentials_provider_shutdown_options shutdown_options;
/* For mocking, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
aws_io_clock_fn *system_clock_fn;
};
/**
*
* Configuration options for the process credentials provider
*
* The process credentials provider sources credentials from running a command or process.
* The command to run is sourced from a profile in the AWS config file, using the standard
* profile selection rules. The profile key the command is read from is "credential_process."
* E.g.:
* [default]
* credential_process=/opt/amazon/bin/my-credential-fetcher --argsA=abc
* On successfully running the command, the output should be a json data with the following
* format:
* {
"Version": 1,
"AccessKeyId": "accesskey",
"SecretAccessKey": "secretAccessKey"
"SessionToken": "....",
"Expiration": "2019-05-29T00:21:43Z"
}
* Version here identifies the command output format version.
*/
struct aws_credentials_provider_process_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/**
* In which profile name to look for credential_process,
* if not provided, we will try environment variable: AWS_PROFILE.
*/
struct aws_byte_cursor profile_to_use;
/**
* (Optional)
* Use a cached config profile collection. You can also pass a merged collection.
*/
struct aws_profile_collection *config_profile_collection_cached;
};
/**
* Configuration options for the default credentials provider chain.
*/
struct aws_credentials_provider_chain_default_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/*
* Connection bootstrap to use for any network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/*
* Client TLS context to use for any secure network connections made while sourcing credentials.
*
* If not provided the default chain will construct a new one, but these
* are expensive objects so you are encouraged to pass in a shared one.
*
* Must be provided if using BYO_CRYPTO.
*/
struct aws_tls_ctx *tls_ctx;
/**
* (Optional)
* Use a cached merged profile collection. A merge collection has both config file
* (~/.aws/config) and credentials file based profile collection (~/.aws/credentials) using
* `aws_profile_collection_new_from_merge`.
* If this option is provided, `config_file_name_override` and `credentials_file_name_override` will be ignored.
*/
struct aws_profile_collection *profile_collection_cached;
/*
* (Optional)
* Override of what profile to use, if not set, 'default' will be used.
*/
struct aws_byte_cursor profile_name_override;
/*
* (Optional)
* If enabled, the Environment Credentials Provider is not added to the chain.
*/
bool skip_environment_credentials_provider;
};
typedef int(aws_credentials_provider_delegate_get_credentials_fn)(
void *delegate_user_data,
aws_on_get_credentials_callback_fn callback,
void *callback_user_data);
/**
* Configuration options for the delegate credentials provider.
*/
struct aws_credentials_provider_delegate_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/**
* Delegated get_credentials() callback.
*/
aws_credentials_provider_delegate_get_credentials_fn *get_credentials;
/**
* User data for delegated callbacks.
*/
void *delegate_user_data;
};
/**
* A (string) pair defining an identity provider and a valid login token sourced from it.
*/
struct aws_cognito_identity_provider_token_pair {
/**
* Name of an identity provider
*/
struct aws_byte_cursor identity_provider_name;
/**
* Valid login token source from the identity provider
*/
struct aws_byte_cursor identity_provider_token;
};
/**
* Configuration options needed to create a Cognito-based Credentials Provider
*/
struct aws_credentials_provider_cognito_options {
struct aws_credentials_provider_shutdown_options shutdown_options;
/**
* Cognito service regional endpoint to source credentials from.
*/
struct aws_byte_cursor endpoint;
/**
* Cognito identity to fetch credentials relative to.
*/
struct aws_byte_cursor identity;
/**
* Optional set of identity provider token pairs to allow for authenticated identity access.
*/
struct aws_cognito_identity_provider_token_pair *logins;
size_t login_count;
/**
* Optional ARN of the role to be assumed when multiple roles were received in the token from the identity provider.
*/
struct aws_byte_cursor *custom_role_arn;
/*
* Connection bootstrap to use for network connections made while sourcing credentials
*/
struct aws_client_bootstrap *bootstrap;
/*
* Client TLS context to use when querying cognito credentials.
* Required.
*/
struct aws_tls_ctx *tls_ctx;
/**
* (Optional) Http proxy configuration for the http request that fetches credentials
*/
const struct aws_http_proxy_options *http_proxy_options;
/* For mocking the http layer in tests, leave NULL otherwise */
struct aws_auth_http_system_vtable *function_table;
};
AWS_EXTERN_C_BEGIN
/*
* Credentials APIs
*
* expiration_timepoint_seconds is the timepoint, in seconds since epoch, that the credentials will no longer
* be valid. For credentials that do not expire, use UINT64_MAX.
*/
/**
* Creates a new set of aws credentials
*
* @param allocator memory allocator to use
* @param access_key_id_cursor value for the aws access key id field
* @param secret_access_key_cursor value for the secret access key field
* @param session_token_cursor (optional) security token associated with the credentials
* @param expiration_timepoint_seconds timepoint, in seconds since epoch, that the credentials will no longer
* be valid past. For credentials that do not expire, use UINT64_MAX
*
* @return a valid credentials object, or NULL
*/
AWS_AUTH_API
struct aws_credentials *aws_credentials_new(
struct aws_allocator *allocator,
struct aws_byte_cursor access_key_id_cursor,
struct aws_byte_cursor secret_access_key_cursor,
struct aws_byte_cursor session_token_cursor,
uint64_t expiration_timepoint_seconds);
/**
* Creates a new set of aws anonymous credentials.
* Use Anonymous credentials, when you want to skip the signing process.
*
* @param allocator memory allocator to use
*
* @return a valid credentials object, or NULL
*/
AWS_AUTH_API
struct aws_credentials *aws_credentials_new_anonymous(struct aws_allocator *allocator);
/**
* Creates a new set of AWS credentials
*
* @param allocator memory allocator to use
* @param access_key_id value for the aws access key id field
* @param secret_access_key value for the secret access key field
* @param session_token (optional) security token associated with the credentials
* @param expiration_timepoint_seconds timepoint, in seconds since epoch, that the credentials will no longer
* be valid past. For credentials that do not expire, use UINT64_MAX
*
* @return a valid credentials object, or NULL
*/
AWS_AUTH_API
struct aws_credentials *aws_credentials_new_from_string(
struct aws_allocator *allocator,
const struct aws_string *access_key_id,
const struct aws_string *secret_access_key,
const struct aws_string *session_token,
uint64_t expiration_timepoint_seconds);
/**
* Creates a set of AWS credentials that includes an ECC key pair. These credentials do not have a value for
* the secret access key; the ecc key takes over that field's role in sigv4a signing.
*
* @param allocator memory allocator to use for all memory allocation
* @param access_key_id access key id for the credential set
* @param ecc_key ecc key to use during signing when using these credentials
* @param session_token (optional) session token associated with the credentials
* @param expiration_timepoint_in_seconds (optional) if session-based, time at which these credentials expire
* @return a new pair of AWS credentials, or NULL
*/
AWS_AUTH_API
struct aws_credentials *aws_credentials_new_ecc(
struct aws_allocator *allocator,
struct aws_byte_cursor access_key_id,
struct aws_ecc_key_pair *ecc_key,
struct aws_byte_cursor session_token,
uint64_t expiration_timepoint_in_seconds);
/*
* Takes a pair of AWS credentials and performs the sigv4a key expansion algorithm to generate a unique
* ecc P256 key pair based on the credentials. The ecc key is written to the buffer in DER format.
*
* Sigv4a signing takes the raw DER-encoded ecc key as an optional parameter in signing (if not present,
* key expansion will be done for the caller before signing).
*/
AWS_AUTH_API
struct aws_credentials *aws_credentials_new_ecc_from_aws_credentials(
struct aws_allocator *allocator,
const struct aws_credentials *credentials);
/**
* Add a reference to some credentials
*
* @param credentials credentials to increment the ref count on
*/
AWS_AUTH_API
void aws_credentials_acquire(const struct aws_credentials *credentials);
/**
* Remove a reference to some credentials
*
* @param credentials credentials to decrement the ref count on
*/
AWS_AUTH_API
void aws_credentials_release(const struct aws_credentials *credentials);
/**
* Get the AWS access key id from a set of credentials
*
* @param credentials credentials to get the access key id from
* @return a byte cursor to the access key id
*/
AWS_AUTH_API
struct aws_byte_cursor aws_credentials_get_access_key_id(const struct aws_credentials *credentials);
/**
* Get the AWS secret access key from a set of credentials
*
* @param credentials credentials to get the secret access key from
* @return a byte cursor to the secret access key
*/
AWS_AUTH_API
struct aws_byte_cursor aws_credentials_get_secret_access_key(const struct aws_credentials *credentials);
/**
* Get the AWS session token from a set of credentials
*
* @param credentials credentials to get the session token from
* @return a byte cursor to the session token or an empty byte cursor if there is no session token
*/
AWS_AUTH_API
struct aws_byte_cursor aws_credentials_get_session_token(const struct aws_credentials *credentials);
/**
* Get the expiration timepoint (in seconds since epoch) associated with a set of credentials
*
* @param credentials credentials to get the expiration timepoint for
* @return the time, in seconds since epoch, the credentials will expire; UINT64_MAX for credentials
* without a specific expiration time
*/
AWS_AUTH_API
uint64_t aws_credentials_get_expiration_timepoint_seconds(const struct aws_credentials *credentials);
/**
* Get the elliptic curve key associated with this set of credentials
* @param credentials credentials to get the the elliptic curve key for
* @return the elliptic curve key associated with the credentials, or NULL if no key is associated with
* these credentials
*/
AWS_AUTH_API
struct aws_ecc_key_pair *aws_credentials_get_ecc_key_pair(const struct aws_credentials *credentials);
/**
* If credentials are anonymous, then the signing process is skipped.
*
* @param credentials credentials to check
*
* @return true if the credentials are anonymous; false otherwise.
*/
AWS_AUTH_API
bool aws_credentials_is_anonymous(const struct aws_credentials *credentials);
/**
* Derives an ecc key pair (based on the nist P256 curve) from the access key id and secret access key components
* of a set of AWS credentials using an internal key derivation specification. Used to perform sigv4a signing in
* the hybrid mode based on AWS credentials.
*
* @param allocator memory allocator to use for all memory allocation
* @param credentials AWS credentials to derive the ECC key from using the AWS sigv4a key deriviation specification
* @return a new ecc key pair or NULL on failure
*/
AWS_AUTH_API
struct aws_ecc_key_pair *aws_ecc_key_pair_new_ecdsa_p256_key_from_aws_credentials(
struct aws_allocator *allocator,
const struct aws_credentials *credentials);
/*
* Credentials provider APIs
*/
/**
* Release a reference to a credentials provider
*
* @param provider provider to decrement the ref count on
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_release(struct aws_credentials_provider *provider);
/*
* Add a reference to a credentials provider
*
* @param provider provider to increment the ref count on
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_acquire(struct aws_credentials_provider *provider);
/*
* Async function for retrieving credentials from a provider
*
* @param provider credentials provider to source from
* @param callback completion callback to invoke when the fetch has completed or failed
* @param user_data user data to pass to the completion callback
*
* @return AWS_OP_SUCCESS if the fetch was successfully started, AWS_OP_ERR otherwise. The completion
* callback will only be invoked if-and-only-if the return value was AWS_OP_SUCCESS.
*
*/
AWS_AUTH_API
int aws_credentials_provider_get_credentials(
struct aws_credentials_provider *provider,
aws_on_get_credentials_callback_fn callback,
void *user_data);
/*
* Credentials provider variant creation
*/
/**
* Creates a simple provider that just returns a fixed set of credentials
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_static(
struct aws_allocator *allocator,
const struct aws_credentials_provider_static_options *options);
/**
* Creates a simple anonymous credentials provider
*
* @param allocator memory allocator to use for all memory allocation
* @param shutdown_options an optional shutdown callback that gets
* invoked when the resources used by the provider are no longer in use.
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_anonymous(
struct aws_allocator *allocator,
const struct aws_credentials_provider_shutdown_options *shutdown_options);
/**
* Creates a provider that returns credentials sourced from the environment variables:
*
* AWS_ACCESS_KEY_ID
* AWS_SECRET_ACCESS_KEY
* AWS_SESSION_TOKEN
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_environment(
struct aws_allocator *allocator,
const struct aws_credentials_provider_environment_options *options);
/**
* Creates a provider that functions as a caching decorating of another provider.
*
* For example, the default chain is implemented as:
*
* CachedProvider -> ProviderChain(EnvironmentProvider -> ProfileProvider -> ECS/EC2IMD etc...)
*
* A reference is taken on the target provider
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_cached(
struct aws_allocator *allocator,
const struct aws_credentials_provider_cached_options *options);
/**
* Creates a provider that sources credentials from key-value profiles loaded from the aws credentials
* file ("~/.aws/credentials" by default) and the aws config file ("~/.aws/config" by
* default)
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_profile(
struct aws_allocator *allocator,
const struct aws_credentials_provider_profile_options *options);
/**
* Creates a provider that assumes an IAM role via. STS AssumeRole() API. This provider will fetch new credentials
* upon each call to aws_credentials_provider_get_credentials().
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_sts(
struct aws_allocator *allocator,
const struct aws_credentials_provider_sts_options *options);
/**
* Creates a provider that sources credentials from an ordered sequence of providers, with the overall result
* being from the first provider to return a valid set of credentials
*
* References are taken on all supplied providers
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_chain(
struct aws_allocator *allocator,
const struct aws_credentials_provider_chain_options *options);
/**
* Creates a provider that sources credentials from the ec2 instance metadata service
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_imds(
struct aws_allocator *allocator,
const struct aws_credentials_provider_imds_options *options);
/**
* Creates a provider that sources credentials from the ecs role credentials service
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_ecs(
struct aws_allocator *allocator,
const struct aws_credentials_provider_ecs_options *options);
/**
* Creates a provider that sources credentials from IoT Core
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_x509(
struct aws_allocator *allocator,
const struct aws_credentials_provider_x509_options *options);
/**
* Creates a provider that sources credentials from STS using AssumeRoleWithWebIdentity
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_sts_web_identity(
struct aws_allocator *allocator,
const struct aws_credentials_provider_sts_web_identity_options *options);
/**
* Creates a provider that sources credentials from SSO using a SSOToken.
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_sso(
struct aws_allocator *allocator,
const struct aws_credentials_provider_sso_options *options);
/*
* Creates a provider that sources credentials from running an external command or process
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_process(
struct aws_allocator *allocator,
const struct aws_credentials_provider_process_options *options);
/**
* Create a credentials provider depends on provided vtable to fetch the credentials.
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_delegate(
struct aws_allocator *allocator,
const struct aws_credentials_provider_delegate_options *options);
/**
* Creates a provider that sources credentials from the Cognito-Identity service via an
* invocation of the GetCredentialsForIdentity API call.
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_cognito(
struct aws_allocator *allocator,
const struct aws_credentials_provider_cognito_options *options);
/**
* Creates a cognito-based provider that has a caching layer wrapped around it
*
* @param allocator memory allocator to use for all memory allocation
* @param options cognito-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_cognito_caching(
struct aws_allocator *allocator,
const struct aws_credentials_provider_cognito_options *options);
/**
* Creates the default provider chain used by most AWS SDKs.
*
* Generally:
*
* (1) Environment
* (2) Profile
* (3) STS web identity
* (4) (conditional, off by default) ECS
* (5) (conditional, on by default) EC2 Instance Metadata
*
* Support for environmental control of the default provider chain is not yet
* implemented.
*
* @param allocator memory allocator to use for all memory allocation
* @param options provider-specific configuration options
*
* @return the newly-constructed credentials provider, or NULL if an error occurred.
*/
AWS_AUTH_API
struct aws_credentials_provider *aws_credentials_provider_new_chain_default(
struct aws_allocator *allocator,
const struct aws_credentials_provider_chain_default_options *options);
AWS_AUTH_API extern const struct aws_auth_http_system_vtable *g_aws_credentials_provider_http_function_table;
AWS_EXTERN_C_END
AWS_POP_SANE_WARNING_LEVEL
#endif /* AWS_AUTH_CREDENTIALS_H */
|