HADOOP-13988. KMSClientProvider does not work with WebHDFS and Apache Knox w/ProxyUser. Contributed by Greg Senia and Xiaoyu Yao.
(cherry picked from commit a46933e8ce
)
This commit is contained in:
parent
bb46d40558
commit
9fa98cc45e
|
@ -1038,10 +1038,9 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
|||
return dtService;
|
||||
}
|
||||
|
||||
private boolean currentUgiContainsKmsDt() throws IOException {
|
||||
// Add existing credentials from current UGI, since provider is cached.
|
||||
Credentials creds = UserGroupInformation.getCurrentUser().
|
||||
getCredentials();
|
||||
private boolean containsKmsDt(UserGroupInformation ugi) throws IOException {
|
||||
// Add existing credentials from the UGI, since provider is cached.
|
||||
Credentials creds = ugi.getCredentials();
|
||||
if (!creds.getAllTokens().isEmpty()) {
|
||||
org.apache.hadoop.security.token.Token<? extends TokenIdentifier>
|
||||
dToken = creds.getToken(getDelegationTokenService());
|
||||
|
@ -1063,11 +1062,15 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
|||
if (currentUgi.getRealUser() != null) {
|
||||
// Use real user for proxy user
|
||||
actualUgi = currentUgi.getRealUser();
|
||||
} else if (!currentUgiContainsKmsDt() &&
|
||||
!currentUgi.hasKerberosCredentials()) {
|
||||
}
|
||||
|
||||
if (!containsKmsDt(actualUgi) &&
|
||||
!actualUgi.hasKerberosCredentials()) {
|
||||
// Use login user for user that does not have either
|
||||
// Kerberos credential or KMS delegation token for KMS operations
|
||||
actualUgi = currentUgi.getLoginUser();
|
||||
LOG.debug("using loginUser no KMS Delegation Token "
|
||||
+ "no Kerberos Credentials");
|
||||
actualUgi = UserGroupInformation.getLoginUser();
|
||||
}
|
||||
return actualUgi;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue