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
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! Profile File Based Credential Providers
//!
//! Profile file based providers combine two pieces:
//!
//! 1. Parsing and resolution of the assume role chain
//! 2. A user-modifiable hashmap of provider name to provider.
//!
//! Profile file based providers first determine the chain of providers that will be used to load
//! credentials. After determining and validating this chain, a `Vec` of providers will be created.
//!
//! Each subsequent provider will provide boostrap providers to the next provider in order to load
//! the final credentials.
//!
//! This module contains two sub modules:
//! - `repr` which contains an abstract representation of a provider chain and the logic to
//! build it from `~/.aws/credentials` and `~/.aws/config`.
//! - `exec` which contains a chain representation of providers to implement passing bootstrapped credentials
//! through a series of providers.
use std::borrow::Cow;
use std::collections::HashMap;
use std::error::Error;
use std::fmt::{Display, Formatter};
use std::sync::Arc;
use aws_types::credentials::{self, future, CredentialsError, ProvideCredentials};
use tracing::Instrument;
use crate::profile::credentials::exec::named::NamedProviderFactory;
use crate::profile::credentials::exec::{ClientConfiguration, ProviderChain};
use crate::profile::parser::ProfileParseError;
use crate::profile::Profile;
use crate::provider_config::ProviderConfig;
mod exec;
mod repr;
impl ProvideCredentials for ProfileFileCredentialsProvider {
fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>
where
Self: 'a,
{
future::ProvideCredentials::new(self.load_credentials().instrument(tracing::debug_span!(
"load_credentials",
provider = %"Profile"
)))
}
}
/// AWS Profile based credentials provider
///
/// This credentials provider will load credentials from `~/.aws/config` and `~/.aws/credentials`.
/// The locations of these files are configurable via environment variables, see [below](#location-of-profile-files).
///
/// Generally, this will be constructed via the default provider chain, however, it can be manually
/// constructed with the builder:
/// ```rust,no_run
/// use aws_config::profile::ProfileFileCredentialsProvider;
/// let provider = ProfileFileCredentialsProvider::builder().build();
/// ```
///
/// _Note: Profile providers to not implement any caching. They will reload and reparse the profile
/// from the file system when called. See [lazy_caching](crate::meta::credentials::LazyCachingCredentialsProvider) for
/// more information about caching._
///
/// This provider supports several different credentials formats:
/// ### Credentials defined explicitly within the file
/// ```ini
/// [default]
/// aws_access_key_id = 123
/// aws_secret_access_key = 456
/// ```
///
/// ### Assume Role Credentials loaded from a credential source
/// ```ini
/// [default]
/// role_arn = arn:aws:iam::123456789:role/RoleA
/// credential_source = Environment
/// ```
///
/// NOTE: Currently only the `Environment` credential source is supported although it is possible to
/// provide custom sources:
/// ```no_run
/// use aws_types::credentials::{self, ProvideCredentials, future};
/// use aws_config::profile::ProfileFileCredentialsProvider;
/// #[derive(Debug)]
/// struct MyCustomProvider;
/// impl MyCustomProvider {
/// async fn load_credentials(&self) -> credentials::Result {
/// todo!()
/// }
/// }
///
/// impl ProvideCredentials for MyCustomProvider {
/// fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials where Self: 'a {
/// future::ProvideCredentials::new(self.load_credentials())
/// }
/// }
/// # if cfg!(any(feature = "rustls", feature = "native-tls")) {
/// let provider = ProfileFileCredentialsProvider::builder()
/// .with_custom_provider("Custom", MyCustomProvider)
/// .build();
/// }
/// ```
///
/// ### Assume role credentials from a source profile
/// ```ini
/// [default]
/// role_arn = arn:aws:iam::123456789:role/RoleA
/// source_profile = base
///
/// [profile base]
/// aws_access_key_id = 123
/// aws_secret_access_key = 456
/// ```
///
/// Other more complex configurations are possible, consult `test-data/assume-role-tests.json`.
///
/// ### Credentials loaded from an external process
/// ```ini
/// [default]
/// credential_process = /opt/bin/awscreds-custom --username helen
/// ```
///
/// An external process can be used to provide credentials.
///
/// ### Loading Credentials from SSO
/// ```ini
/// [default]
/// sso_start_url = https://example.com/start
/// sso_region = us-east-2
/// sso_account_id = 123456789011
/// sso_role_name = readOnly
/// region = us-west-2
/// ```
///
/// SSO can also be used as a source profile for assume role chains.
///
/// ## Location of Profile Files
/// * The location of the config file will be loaded from the `AWS_CONFIG_FILE` environment variable
/// with a fallback to `~/.aws/config`
/// * The location of the credentials file will be loaded from the `AWS_SHARED_CREDENTIALS_FILE`
/// environment variable with a fallback to `~/.aws/credentials`
///
/// ## Home directory resolution
/// Home directory resolution is implemented to match the behavior of the CLI & Python. `~` is only
/// used for home directory resolution when it:
/// - Starts the path
/// - Is followed immediately by `/` or a platform specific separator. (On windows, `~/` and `~\` both
/// resolve to the home directory.
///
/// When determining the home directory, the following environment variables are checked:
/// - `HOME` on all platforms
/// - `USERPROFILE` on Windows
/// - The concatenation of `HOMEDRIVE` and `HOMEPATH` on Windows (`$HOMEDRIVE$HOMEPATH`)
#[derive(Debug)]
pub struct ProfileFileCredentialsProvider {
factory: NamedProviderFactory,
client_config: ClientConfiguration,
provider_config: ProviderConfig,
profile_override: Option<String>,
}
impl ProfileFileCredentialsProvider {
/// Builder for this credentials provider
pub fn builder() -> Builder {
Builder::default()
}
async fn load_credentials(&self) -> credentials::Result {
let inner_provider = build_provider_chain(
&self.provider_config,
&self.factory,
self.profile_override.as_deref(),
)
.await
.map_err(|err| match err {
ProfileFileError::NoProfilesDefined
| ProfileFileError::ProfileDidNotContainCredentials { .. } => {
CredentialsError::not_loaded(err)
}
_ => CredentialsError::invalid_configuration(format!(
"ProfileFile provider could not be built: {}",
&err
)),
})?;
let mut creds = match inner_provider
.base()
.provide_credentials()
.instrument(tracing::debug_span!("load_base_credentials"))
.await
{
Ok(creds) => {
tracing::info!(creds = ?creds, "loaded base credentials");
creds
}
Err(e) => {
tracing::warn!(error = %e, "failed to load base credentials");
return Err(CredentialsError::provider_error(e));
}
};
for provider in inner_provider.chain().iter() {
let next_creds = provider
.credentials(creds, &self.client_config)
.instrument(tracing::debug_span!("load_assume_role", provider = ?provider))
.await;
match next_creds {
Ok(next_creds) => {
tracing::info!(creds = ?next_creds, "loaded assume role credentials");
creds = next_creds
}
Err(e) => {
tracing::warn!(provider = ?provider, "failed to load assume role credentials");
return Err(CredentialsError::provider_error(e));
}
}
}
Ok(creds)
}
}
/// An Error building a Credential source from an AWS Profile
#[derive(Debug)]
#[non_exhaustive]
pub enum ProfileFileError {
/// The profile was not a valid AWS profile
#[non_exhaustive]
CouldNotParseProfile(ProfileParseError),
/// No profiles existed (the profile was empty)
#[non_exhaustive]
NoProfilesDefined,
/// The profile did not contain any credential information
#[non_exhaustive]
ProfileDidNotContainCredentials {
/// The name of the profile
profile: String,
},
/// The profile contained an infinite loop of `source_profile` references
#[non_exhaustive]
CredentialLoop {
/// Vec of profiles leading to the loop
profiles: Vec<String>,
/// The next profile that caused the loop
next: String,
},
/// The profile was missing a credential source
#[non_exhaustive]
MissingCredentialSource {
/// The name of the profile
profile: String,
/// Error message
message: Cow<'static, str>,
},
/// The profile contained an invalid credential source
#[non_exhaustive]
InvalidCredentialSource {
/// The name of the profile
profile: String,
/// Error message
message: Cow<'static, str>,
},
/// The profile referred to a another profile by name that was not defined
#[non_exhaustive]
MissingProfile {
/// The name of the profile
profile: String,
/// Error message
message: Cow<'static, str>,
},
/// The profile referred to `credential_source` that was not defined
#[non_exhaustive]
UnknownProvider {
/// The name of the provider
name: String,
},
}
impl ProfileFileError {
fn missing_field(profile: &Profile, field: &'static str) -> Self {
ProfileFileError::MissingProfile {
profile: profile.name().to_string(),
message: format!("`{}` was missing", field).into(),
}
}
}
impl Display for ProfileFileError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
ProfileFileError::CouldNotParseProfile(err) => {
write!(f, "could not parse profile file: {}", err)
}
ProfileFileError::CredentialLoop { profiles, next } => write!(
f,
"profile formed an infinite loop. first we loaded {:?}, \
then attempted to reload {}",
profiles, next
),
ProfileFileError::MissingCredentialSource { profile, message } => {
write!(f, "missing credential source in `{}`: {}", profile, message)
}
ProfileFileError::InvalidCredentialSource { profile, message } => {
write!(f, "invalid credential source in `{}`: {}", profile, message)
}
ProfileFileError::MissingProfile { profile, message } => {
write!(f, "profile `{}` was not defined: {}", profile, message)
}
ProfileFileError::UnknownProvider { name } => write!(
f,
"profile referenced `{}` provider but that provider is not supported",
name
),
ProfileFileError::NoProfilesDefined => write!(f, "No profiles were defined"),
ProfileFileError::ProfileDidNotContainCredentials { profile } => write!(
f,
"profile `{}` did not contain credential information",
profile
),
}
}
}
impl Error for ProfileFileError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {
ProfileFileError::CouldNotParseProfile(err) => Some(err),
_ => None,
}
}
}
/// Builder for [`ProfileFileCredentialsProvider`]
#[derive(Default)]
pub struct Builder {
provider_config: Option<ProviderConfig>,
profile_override: Option<String>,
custom_providers: HashMap<Cow<'static, str>, Arc<dyn ProvideCredentials>>,
}
impl Builder {
/// Override the configuration for the [`ProfileFileCredentialsProvider`]
///
/// # Examples
///
/// ```no_run
/// # async fn test() {
/// use aws_config::profile::ProfileFileCredentialsProvider;
/// use aws_config::provider_config::ProviderConfig;
/// let provider = ProfileFileCredentialsProvider::builder()
/// .configure(&ProviderConfig::with_default_region().await)
/// .build();
/// # }
/// ```
pub fn configure(mut self, provider_config: &ProviderConfig) -> Self {
self.provider_config = Some(provider_config.clone());
self
}
/// Adds a custom credential source
///
/// # Examples
///
/// ```no_run
/// use aws_types::credentials::{self, ProvideCredentials, future};
/// use aws_config::profile::ProfileFileCredentialsProvider;
/// #[derive(Debug)]
/// struct MyCustomProvider;
/// impl MyCustomProvider {
/// async fn load_credentials(&self) -> credentials::Result {
/// todo!()
/// }
/// }
///
/// impl ProvideCredentials for MyCustomProvider {
/// fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials where Self: 'a {
/// future::ProvideCredentials::new(self.load_credentials())
/// }
/// }
///
/// # if cfg!(any(feature = "rustls", feature = "native-tls")) {
/// let provider = ProfileFileCredentialsProvider::builder()
/// .with_custom_provider("Custom", MyCustomProvider)
/// .build();
/// # }
/// ```
pub fn with_custom_provider(
mut self,
name: impl Into<Cow<'static, str>>,
provider: impl ProvideCredentials + 'static,
) -> Self {
self.custom_providers
.insert(name.into(), Arc::new(provider));
self
}
/// Override the profile name used by the [`ProfileFileCredentialsProvider`]
pub fn profile_name(mut self, profile_name: impl Into<String>) -> Self {
self.profile_override = Some(profile_name.into());
self
}
/// Builds a [`ProfileFileCredentialsProvider`]
pub fn build(self) -> ProfileFileCredentialsProvider {
let build_span = tracing::debug_span!("build_profile_provider");
let _enter = build_span.enter();
let conf = self.provider_config.unwrap_or_default();
let mut named_providers = self.custom_providers.clone();
named_providers
.entry("Environment".into())
.or_insert_with(|| {
Arc::new(crate::environment::credentials::EnvironmentVariableCredentialsProvider::new_with_env(
conf.env(),
))
});
named_providers
.entry("Ec2InstanceMetadata".into())
.or_insert_with(|| {
Arc::new(
crate::imds::credentials::ImdsCredentialsProvider::builder()
.configure(&conf)
.build(),
)
});
named_providers
.entry("EcsContainer".into())
.or_insert_with(|| {
Arc::new(
crate::ecs::EcsCredentialsProvider::builder()
.configure(&conf)
.build(),
)
});
let factory = exec::named::NamedProviderFactory::new(named_providers);
let core_client = conf.sts_client();
ProfileFileCredentialsProvider {
factory,
client_config: ClientConfiguration {
sts_client: core_client,
region: conf.region(),
},
provider_config: conf,
profile_override: self.profile_override,
}
}
}
async fn build_provider_chain(
provider_config: &ProviderConfig,
factory: &NamedProviderFactory,
profile_override: Option<&str>,
) -> Result<ProviderChain, ProfileFileError> {
let profile_set = super::parser::load(&provider_config.fs(), &provider_config.env())
.await
.map_err(|err| {
tracing::warn!(err = %err, "failed to parse profile");
ProfileFileError::CouldNotParseProfile(err)
})?;
let repr = repr::resolve_chain(&profile_set, profile_override)?;
tracing::info!(chain = ?repr, "constructed abstract provider from config file");
exec::ProviderChain::from_repr(provider_config, repr, factory)
}
#[cfg(test)]
mod test {
use tracing_test::traced_test;
use crate::profile::credentials::Builder;
use crate::test_case::TestEnvironment;
macro_rules! make_test {
($name: ident) => {
#[traced_test]
#[tokio::test]
async fn $name() {
TestEnvironment::from_dir(concat!(
"./test-data/profile-provider/",
stringify!($name)
))
.unwrap()
.execute(|conf| async move { Builder::default().configure(&conf).build() })
.await
}
};
}
make_test!(e2e_assume_role);
make_test!(empty_config);
make_test!(retry_on_error);
make_test!(invalid_config);
make_test!(region_override);
make_test!(credential_process);
make_test!(credential_process_failure);
make_test!(credential_process_invalid);
}