-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathAWSCredentialsUtils.scala
More file actions
141 lines (124 loc) · 5.56 KB
/
Copy pathAWSCredentialsUtils.scala
File metadata and controls
141 lines (124 loc) · 5.56 KB
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
/*
* Copyright 2015 Databricks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.databricks.spark.redshift
import java.net.URI
import com.amazonaws.auth.{AWSCredentials, AWSCredentialsProvider, AWSSessionCredentials, BasicAWSCredentials, DefaultAWSCredentialsProviderChain}
import org.apache.hadoop.conf.Configuration
import com.databricks.spark.redshift.Parameters.MergedParameters
private[redshift] object AWSCredentialsUtils {
/**
* Generates a credentials string for use in Redshift COPY and UNLOAD statements.
* Favors a configured `aws_iam_role` if available in the parameters.
* Adds master symmetric key to the credential string if S3 CSE is enabled.
* NOTE: This method deals with encryption because Redshift's CREDENTIALS option
* considers master symmetric key a part of credential string.
*/
def getRedshiftCredentialsString(
params: MergedParameters,
sparkAwsCredentials: AWSCredentials,
hadoopConfiguration: Configuration
): String = {
getRedshiftAWSCredentialsSubString(params, sparkAwsCredentials) +
getRedshiftEncryptionSubString(params, hadoopConfiguration)
}
/**
* Generates a credentials string for use in Redshift COPY and UNLOAD statements.
* Favors a configured `aws_iam_role` if available in the parameters.
*/
private def getRedshiftAWSCredentialsSubString(
params: MergedParameters,
sparkAwsCredentials: AWSCredentials): String = {
def awsCredsToString(credentials: AWSCredentials): String = {
credentials match {
case creds: AWSSessionCredentials =>
s"aws_access_key_id=${creds.getAWSAccessKeyId};" +
s"aws_secret_access_key=${creds.getAWSSecretKey};token=${creds.getSessionToken}"
case creds =>
s"aws_access_key_id=${creds.getAWSAccessKeyId};" +
s"aws_secret_access_key=${creds.getAWSSecretKey}"
}
}
if (params.iamRole.isDefined) {
s"aws_iam_role=${params.iamRole.get}"
} else if (params.temporaryAWSCredentials.isDefined) {
awsCredsToString(params.temporaryAWSCredentials.get.getCredentials)
} else if (params.forwardSparkS3Credentials) {
awsCredsToString(sparkAwsCredentials)
} else {
throw new IllegalStateException("No Redshift S3 authentication mechanism was specified")
}
}
def staticCredentialsProvider(credentials: AWSCredentials): AWSCredentialsProvider = {
new AWSCredentialsProvider {
override def getCredentials: AWSCredentials = credentials
override def refresh(): Unit = {}
}
}
def load(params: MergedParameters, hadoopConfiguration: Configuration): AWSCredentialsProvider = {
params.temporaryAWSCredentials.getOrElse(loadFromURI(params.rootTempDir, hadoopConfiguration))
}
private def loadFromURI(
tempPath: String,
hadoopConfiguration: Configuration): AWSCredentialsProvider = {
// scalastyle:off
// A good reference on Hadoop's configuration loading / precedence is
// https://github.com/apache/hadoop/blob/trunk/hadoop-tools/hadoop-aws/src/site/markdown/tools/hadoop-aws/index.md
// scalastyle:on
val uri = new URI(tempPath)
val uriScheme = uri.getScheme
uriScheme match {
case "s3" | "s3n" | "s3a" =>
// This matches what S3A does, with one exception: we don't support anonymous credentials.
// First, try to parse from URI:
Option(uri.getUserInfo).flatMap { userInfo =>
if (userInfo.contains(":")) {
val Array(accessKey, secretKey) = userInfo.split(":")
Some(staticCredentialsProvider(new BasicAWSCredentials(accessKey, secretKey)))
} else {
None
}
}.orElse {
// Next, try to read from configuration
val accessKeyConfig = if (uriScheme == "s3a") "access.key" else "awsAccessKeyId"
val secretKeyConfig = if (uriScheme == "s3a") "secret.key" else "awsSecretAccessKey"
val accessKey = hadoopConfiguration.get(s"fs.$uriScheme.$accessKeyConfig", null)
val secretKey = hadoopConfiguration.get(s"fs.$uriScheme.$secretKeyConfig", null)
if (accessKey != null && secretKey != null) {
Some(staticCredentialsProvider(new BasicAWSCredentials(accessKey, secretKey)))
} else {
None
}
}.getOrElse {
// Finally, fall back on the instance profile provider
new DefaultAWSCredentialsProviderChain()
}
case other =>
throw new IllegalArgumentException(s"Unrecognized scheme $other; expected s3, s3n, or s3a")
}
}
/**
* Generates encryption string to be appended to the Redshift Credentials string
*/
private def getRedshiftEncryptionSubString(
params: MergedParameters,
hadoopConfiguration: Configuration): String = {
if (params.encryption) {
s";master_symmetric_key=${hadoopConfiguration.get("spark-redshift.master-sym-key")}"
} else {
""
}
}
}