-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
auth.rs
494 lines (443 loc) · 15.4 KB
/
auth.rs
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
use std::time::Duration;
use aws_config::{
default_provider::credentials::DefaultCredentialsChain,
imds,
profile::{
profile_file::{ProfileFileKind, ProfileFiles},
ProfileFileCredentialsProvider,
},
sts::AssumeRoleProviderBuilder,
};
use aws_types::{credentials::SharedCredentialsProvider, region::Region, Credentials};
use serde_with::serde_as;
use vector_common::sensitive_string::SensitiveString;
use vector_config::configurable_component;
// matches default load timeout from the SDK as of 0.10.1, but lets us confidently document the
// default rather than relying on the SDK default to not change
const DEFAULT_LOAD_TIMEOUT: Duration = Duration::from_secs(5);
const DEFAULT_PROFILE_NAME: &str = "default";
/// IMDS Client Configuration for authenticating with AWS.
#[serde_as]
#[configurable_component]
#[derive(Copy, Clone, Debug, Derivative)]
#[derivative(Default)]
#[serde(deny_unknown_fields)]
pub struct ImdsAuthentication {
/// Number of IMDS retries for fetching tokens and metadata.
#[serde(default = "default_max_attempts")]
#[derivative(Default(value = "default_max_attempts()"))]
max_attempts: u32,
/// Connect timeout for IMDS.
#[serde(default = "default_timeout")]
#[serde(rename = "connect_timeout_seconds")]
#[serde_as(as = "serde_with::DurationSeconds<u64>")]
#[derivative(Default(value = "default_timeout()"))]
connect_timeout: Duration,
/// Read timeout for IMDS.
#[serde(default = "default_timeout")]
#[serde(rename = "read_timeout_seconds")]
#[serde_as(as = "serde_with::DurationSeconds<u64>")]
#[derivative(Default(value = "default_timeout()"))]
read_timeout: Duration,
}
const fn default_max_attempts() -> u32 {
4
}
const fn default_timeout() -> Duration {
Duration::from_secs(1)
}
/// Configuration of the authentication strategy for interacting with AWS services.
#[configurable_component]
#[derive(Clone, Debug, Derivative)]
#[derivative(Default)]
#[serde(deny_unknown_fields, untagged)]
pub enum AwsAuthentication {
/// Authenticate using a fixed access key and secret pair.
AccessKey {
/// The AWS access key ID.
#[configurable(metadata(docs::examples = "AKIAIOSFODNN7EXAMPLE"))]
access_key_id: SensitiveString,
/// The AWS secret access key.
#[configurable(metadata(docs::examples = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"))]
secret_access_key: SensitiveString,
/// The ARN of an [IAM role][iam_role] to assume.
///
/// [iam_role]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html
#[configurable(metadata(docs::examples = "arn:aws:iam::123456789098:role/my_role"))]
assume_role: Option<String>,
/// The [AWS region][aws_region] to send STS requests to.
///
/// If not set, this will default to the configured region
/// for the service itself.
///
/// [aws_region]: https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints
#[configurable(metadata(docs::examples = "us-west-2"))]
region: Option<String>,
},
/// Authenticate using credentials stored in a file.
///
/// Additionally, the specific credential profile to use can be set.
/// The file format must match the credentials file format outlined in
/// <https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html>.
File {
/// Path to the credentials file.
#[configurable(metadata(docs::examples = "/my/aws/credentials"))]
credentials_file: String,
/// The credentials profile to use.
///
/// Used to select AWS credentials from a provided credentials file.
#[configurable(metadata(docs::examples = "develop"))]
#[serde(default = "default_profile")]
profile: String,
},
/// Assume the given role ARN.
Role {
/// The ARN of an [IAM role][iam_role] to assume.
///
/// [iam_role]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html
#[configurable(metadata(docs::examples = "arn:aws:iam::123456789098:role/my_role"))]
assume_role: String,
/// Timeout for assuming the role, in seconds.
///
/// Relevant when the default credentials chain or `assume_role` is used.
#[configurable(metadata(docs::type_unit = "seconds"))]
#[configurable(metadata(docs::examples = 30))]
load_timeout_secs: Option<u64>,
/// Configuration for authenticating with AWS through IMDS.
#[serde(default)]
imds: ImdsAuthentication,
/// The [AWS region][aws_region] to send STS requests to.
///
/// If not set, this defaults to the configured region
/// for the service itself.
///
/// [aws_region]: https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints
#[configurable(metadata(docs::examples = "us-west-2"))]
region: Option<String>,
},
/// Default authentication strategy which tries a variety of substrategies in sequential order.
#[derivative(Default)]
Default {
/// Timeout for successfully loading any credentials, in seconds.
///
/// Relevant when the default credentials chain or `assume_role` is used.
#[configurable(metadata(docs::type_unit = "seconds"))]
#[configurable(metadata(docs::examples = 30))]
load_timeout_secs: Option<u64>,
/// Configuration for authenticating with AWS through IMDS.
#[serde(default)]
imds: ImdsAuthentication,
},
}
fn default_profile() -> String {
DEFAULT_PROFILE_NAME.to_string()
}
impl AwsAuthentication {
pub async fn credentials_provider(
&self,
service_region: Region,
) -> crate::Result<SharedCredentialsProvider> {
match self {
Self::AccessKey {
access_key_id,
secret_access_key,
assume_role,
region,
} => {
let provider = SharedCredentialsProvider::new(Credentials::from_keys(
access_key_id.inner(),
secret_access_key.inner(),
None,
));
if let Some(assume_role) = assume_role {
let auth_region = region.clone().map(Region::new).unwrap_or(service_region);
let provider = AssumeRoleProviderBuilder::new(assume_role)
.region(auth_region)
.build(provider);
return Ok(SharedCredentialsProvider::new(provider));
}
Ok(provider)
}
AwsAuthentication::File {
credentials_file,
profile,
} => {
// The SDK uses the default profile out of the box, but doesn't provide an optional
// type in the builder. We can just hardcode it so that everything works.
let profile_files = ProfileFiles::builder()
.with_file(ProfileFileKind::Credentials, credentials_file)
.build();
let profile_provider = ProfileFileCredentialsProvider::builder()
.profile_files(profile_files)
.profile_name(profile)
.build();
Ok(SharedCredentialsProvider::new(profile_provider))
}
AwsAuthentication::Role {
assume_role,
load_timeout_secs,
imds,
region,
} => {
let auth_region = region.clone().map(Region::new).unwrap_or(service_region);
let provider = AssumeRoleProviderBuilder::new(assume_role)
.region(auth_region.clone())
.build(
default_credentials_provider(auth_region, *load_timeout_secs, *imds)
.await?,
);
Ok(SharedCredentialsProvider::new(provider))
}
AwsAuthentication::Default {
load_timeout_secs,
imds,
} => Ok(SharedCredentialsProvider::new(
default_credentials_provider(service_region, *load_timeout_secs, *imds).await?,
)),
}
}
#[cfg(test)]
pub fn test_auth() -> AwsAuthentication {
AwsAuthentication::AccessKey {
access_key_id: "dummy".to_string().into(),
secret_access_key: "dummy".to_string().into(),
assume_role: None,
region: None,
}
}
}
async fn default_credentials_provider(
region: Region,
load_timeout_secs: Option<u64>,
imds: ImdsAuthentication,
) -> crate::Result<SharedCredentialsProvider> {
let client = imds::Client::builder()
.max_attempts(imds.max_attempts)
.connect_timeout(imds.connect_timeout)
.read_timeout(imds.read_timeout)
.build()
.await?;
let chain = DefaultCredentialsChain::builder()
.region(region)
.imds_client(client)
.load_timeout(
load_timeout_secs
.map(Duration::from_secs)
.unwrap_or(DEFAULT_LOAD_TIMEOUT),
);
Ok(SharedCredentialsProvider::new(chain.build().await))
}
#[cfg(test)]
mod tests {
use super::*;
use serde::{Deserialize, Serialize};
const CONNECT_TIMEOUT: Duration = Duration::from_secs(30);
const READ_TIMEOUT: Duration = Duration::from_secs(10);
#[derive(Serialize, Deserialize, Clone, Debug)]
struct ComponentConfig {
assume_role: Option<String>,
#[serde(default)]
auth: AwsAuthentication,
}
#[test]
fn parsing_default() {
let config = toml::from_str::<ComponentConfig>(
r#"
"#,
)
.unwrap();
assert!(matches!(config.auth, AwsAuthentication::Default { .. }));
}
#[test]
fn parsing_default_with_load_timeout() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.load_timeout_secs = 10
"#,
)
.unwrap();
assert!(matches!(
config.auth,
AwsAuthentication::Default {
load_timeout_secs: Some(10),
imds: ImdsAuthentication { .. },
}
));
}
#[test]
fn parsing_default_with_imds_client() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.imds.max_attempts = 5
auth.imds.connect_timeout_seconds = 30
auth.imds.read_timeout_seconds = 10
"#,
)
.unwrap();
assert!(matches!(
config.auth,
AwsAuthentication::Default {
load_timeout_secs: None,
imds: ImdsAuthentication {
max_attempts: 5,
connect_timeout: CONNECT_TIMEOUT,
read_timeout: READ_TIMEOUT,
},
}
));
}
#[test]
fn parsing_old_assume_role() {
let config = toml::from_str::<ComponentConfig>(
r#"
assume_role = "root"
"#,
)
.unwrap();
assert!(matches!(config.auth, AwsAuthentication::Default { .. }));
}
#[test]
fn parsing_assume_role() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.assume_role = "root"
auth.load_timeout_secs = 10
"#,
)
.unwrap();
assert!(matches!(config.auth, AwsAuthentication::Role { .. }));
}
#[test]
fn parsing_assume_role_with_imds_client() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.assume_role = "root"
auth.imds.max_attempts = 5
auth.imds.connect_timeout_seconds = 30
auth.imds.read_timeout_seconds = 10
"#,
)
.unwrap();
match config.auth {
AwsAuthentication::Role {
assume_role,
load_timeout_secs,
imds,
region,
} => {
assert_eq!(&assume_role, "root");
assert_eq!(load_timeout_secs, None);
assert!(matches!(
imds,
ImdsAuthentication {
max_attempts: 5,
connect_timeout: CONNECT_TIMEOUT,
read_timeout: READ_TIMEOUT,
}
));
assert_eq!(region, None);
}
_ => panic!(),
}
}
#[test]
fn parsing_both_assume_role() {
let config = toml::from_str::<ComponentConfig>(
r#"
assume_role = "root"
auth.assume_role = "auth.root"
auth.load_timeout_secs = 10
auth.region = "us-west-2"
"#,
)
.unwrap();
match config.auth {
AwsAuthentication::Role {
assume_role,
load_timeout_secs,
imds,
region,
} => {
assert_eq!(&assume_role, "auth.root");
assert_eq!(load_timeout_secs, Some(10));
assert!(matches!(imds, ImdsAuthentication { .. }));
assert_eq!(region.unwrap(), "us-west-2");
}
_ => panic!(),
}
}
#[test]
fn parsing_static() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.access_key_id = "key"
auth.secret_access_key = "other"
"#,
)
.unwrap();
assert!(matches!(config.auth, AwsAuthentication::AccessKey { .. }));
}
#[test]
fn parsing_static_with_assume_role() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.access_key_id = "key"
auth.secret_access_key = "other"
auth.assume_role = "root"
"#,
)
.unwrap();
match config.auth {
AwsAuthentication::AccessKey {
access_key_id,
secret_access_key,
assume_role,
..
} => {
assert_eq!(&access_key_id, &SensitiveString::from("key".to_string()));
assert_eq!(
&secret_access_key,
&SensitiveString::from("other".to_string())
);
assert_eq!(&assume_role, &Some("root".to_string()));
}
_ => panic!(),
}
}
#[test]
fn parsing_file() {
let config = toml::from_str::<ComponentConfig>(
r#"
auth.credentials_file = "/path/to/file"
auth.profile = "foo"
"#,
)
.unwrap();
match config.auth {
AwsAuthentication::File {
credentials_file,
profile,
} => {
assert_eq!(&credentials_file, "/path/to/file");
assert_eq!(&profile, "foo");
}
_ => panic!(),
}
let config = toml::from_str::<ComponentConfig>(
r#"
auth.credentials_file = "/path/to/file"
"#,
)
.unwrap();
match config.auth {
AwsAuthentication::File {
credentials_file,
profile,
} => {
assert_eq!(&credentials_file, "/path/to/file");
assert_eq!(profile, "default".to_string());
}
_ => panic!(),
}
}
}