HADOOP-11176. KMSClientProvider authentication fails when both currentUgi and loginUgi are a proxied user. Contributed by Arun Suresh.
(cherry picked from commit 0e57aa3bf6
)
This commit is contained in:
parent
88455173e8
commit
f3132eee10
|
@ -486,6 +486,9 @@ Release 2.6.0 - UNRELEASED
|
||||||
HADOOP-11193. Fix uninitialized variables in NativeIO.c
|
HADOOP-11193. Fix uninitialized variables in NativeIO.c
|
||||||
(Xiaoyu Yao via wheat9)
|
(Xiaoyu Yao via wheat9)
|
||||||
|
|
||||||
|
HADOOP-11176. KMSClientProvider authentication fails when both currentUgi
|
||||||
|
and loginUgi are a proxied user. (Arun Suresh via atm)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HADOOP-10734. Implement high-performance secure random number sources.
|
HADOOP-10734. Implement high-performance secure random number sources.
|
||||||
|
|
|
@ -251,8 +251,8 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
||||||
private SSLFactory sslFactory;
|
private SSLFactory sslFactory;
|
||||||
private ConnectionConfigurator configurator;
|
private ConnectionConfigurator configurator;
|
||||||
private DelegationTokenAuthenticatedURL.Token authToken;
|
private DelegationTokenAuthenticatedURL.Token authToken;
|
||||||
private UserGroupInformation loginUgi;
|
|
||||||
private final int authRetry;
|
private final int authRetry;
|
||||||
|
private final UserGroupInformation actualUgi;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
@ -336,7 +336,11 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
||||||
KMS_CLIENT_ENC_KEY_CACHE_NUM_REFILL_THREADS_DEFAULT),
|
KMS_CLIENT_ENC_KEY_CACHE_NUM_REFILL_THREADS_DEFAULT),
|
||||||
new EncryptedQueueRefiller());
|
new EncryptedQueueRefiller());
|
||||||
authToken = new DelegationTokenAuthenticatedURL.Token();
|
authToken = new DelegationTokenAuthenticatedURL.Token();
|
||||||
loginUgi = UserGroupInformation.getCurrentUser();
|
actualUgi =
|
||||||
|
(UserGroupInformation.getCurrentUser().getAuthenticationMethod() ==
|
||||||
|
UserGroupInformation.AuthenticationMethod.PROXY) ? UserGroupInformation
|
||||||
|
.getCurrentUser().getRealUser() : UserGroupInformation
|
||||||
|
.getCurrentUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
private String createServiceURL(URL url) throws IOException {
|
private String createServiceURL(URL url) throws IOException {
|
||||||
|
@ -407,7 +411,7 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
||||||
? currentUgi.getShortUserName() : null;
|
? currentUgi.getShortUserName() : null;
|
||||||
|
|
||||||
// creating the HTTP connection using the current UGI at constructor time
|
// creating the HTTP connection using the current UGI at constructor time
|
||||||
conn = loginUgi.doAs(new PrivilegedExceptionAction<HttpURLConnection>() {
|
conn = actualUgi.doAs(new PrivilegedExceptionAction<HttpURLConnection>() {
|
||||||
@Override
|
@Override
|
||||||
public HttpURLConnection run() throws Exception {
|
public HttpURLConnection run() throws Exception {
|
||||||
DelegationTokenAuthenticatedURL authUrl =
|
DelegationTokenAuthenticatedURL authUrl =
|
||||||
|
@ -457,8 +461,6 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
||||||
// WWW-Authenticate header as well)..
|
// WWW-Authenticate header as well)..
|
||||||
KMSClientProvider.this.authToken =
|
KMSClientProvider.this.authToken =
|
||||||
new DelegationTokenAuthenticatedURL.Token();
|
new DelegationTokenAuthenticatedURL.Token();
|
||||||
KMSClientProvider.this.loginUgi =
|
|
||||||
UserGroupInformation.getCurrentUser();
|
|
||||||
if (authRetryCount > 0) {
|
if (authRetryCount > 0) {
|
||||||
String contentType = conn.getRequestProperty(CONTENT_TYPE);
|
String contentType = conn.getRequestProperty(CONTENT_TYPE);
|
||||||
String requestMethod = conn.getRequestMethod();
|
String requestMethod = conn.getRequestMethod();
|
||||||
|
@ -475,9 +477,6 @@ public class KMSClientProvider extends KeyProvider implements CryptoExtension,
|
||||||
// Ignore the AuthExceptions.. since we are just using the method to
|
// Ignore the AuthExceptions.. since we are just using the method to
|
||||||
// extract and set the authToken.. (Workaround till we actually fix
|
// extract and set the authToken.. (Workaround till we actually fix
|
||||||
// AuthenticatedURL properly to set authToken post initialization)
|
// AuthenticatedURL properly to set authToken post initialization)
|
||||||
} finally {
|
|
||||||
KMSClientProvider.this.loginUgi =
|
|
||||||
UserGroupInformation.getCurrentUser();
|
|
||||||
}
|
}
|
||||||
HttpExceptionUtils.validateResponse(conn, expectedResponse);
|
HttpExceptionUtils.validateResponse(conn, expectedResponse);
|
||||||
if (APPLICATION_JSON_MIME.equalsIgnoreCase(conn.getContentType())
|
if (APPLICATION_JSON_MIME.equalsIgnoreCase(conn.getContentType())
|
||||||
|
|
|
@ -1585,22 +1585,34 @@ public class TestKMS {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testProxyUser() throws Exception {
|
public void testProxyUserKerb() throws Exception {
|
||||||
|
doProxyUserTest(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testProxyUserSimple() throws Exception {
|
||||||
|
doProxyUserTest(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void doProxyUserTest(final boolean kerberos) throws Exception {
|
||||||
Configuration conf = new Configuration();
|
Configuration conf = new Configuration();
|
||||||
conf.set("hadoop.security.authentication", "kerberos");
|
conf.set("hadoop.security.authentication", "kerberos");
|
||||||
UserGroupInformation.setConfiguration(conf);
|
UserGroupInformation.setConfiguration(conf);
|
||||||
final File testDir = getTestDir();
|
final File testDir = getTestDir();
|
||||||
conf = createBaseKMSConf(testDir);
|
conf = createBaseKMSConf(testDir);
|
||||||
|
if (kerberos) {
|
||||||
conf.set("hadoop.kms.authentication.type", "kerberos");
|
conf.set("hadoop.kms.authentication.type", "kerberos");
|
||||||
|
}
|
||||||
conf.set("hadoop.kms.authentication.kerberos.keytab",
|
conf.set("hadoop.kms.authentication.kerberos.keytab",
|
||||||
keytab.getAbsolutePath());
|
keytab.getAbsolutePath());
|
||||||
conf.set("hadoop.kms.authentication.kerberos.principal", "HTTP/localhost");
|
conf.set("hadoop.kms.authentication.kerberos.principal", "HTTP/localhost");
|
||||||
conf.set("hadoop.kms.authentication.kerberos.name.rules", "DEFAULT");
|
conf.set("hadoop.kms.authentication.kerberos.name.rules", "DEFAULT");
|
||||||
conf.set("hadoop.kms.proxyuser.client.users", "foo");
|
conf.set("hadoop.kms.proxyuser.client.users", "foo,bar");
|
||||||
conf.set("hadoop.kms.proxyuser.client.hosts", "*");
|
conf.set("hadoop.kms.proxyuser.client.hosts", "*");
|
||||||
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kAA.ALL", "*");
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kAA.ALL", "client");
|
||||||
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kBB.ALL", "*");
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kBB.ALL", "foo");
|
||||||
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kCC.ALL", "*");
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kCC.ALL", "foo1");
|
||||||
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kDD.ALL", "bar");
|
||||||
|
|
||||||
writeConf(testDir, conf);
|
writeConf(testDir, conf);
|
||||||
|
|
||||||
|
@ -1611,9 +1623,16 @@ public class TestKMS {
|
||||||
conf.setInt(KeyProvider.DEFAULT_BITLENGTH_NAME, 64);
|
conf.setInt(KeyProvider.DEFAULT_BITLENGTH_NAME, 64);
|
||||||
final URI uri = createKMSUri(getKMSUrl());
|
final URI uri = createKMSUri(getKMSUrl());
|
||||||
|
|
||||||
|
UserGroupInformation proxyUgi = null;
|
||||||
|
if (kerberos) {
|
||||||
// proxyuser client using kerberos credentials
|
// proxyuser client using kerberos credentials
|
||||||
final UserGroupInformation clientUgi = UserGroupInformation.
|
proxyUgi = UserGroupInformation.
|
||||||
loginUserFromKeytabAndReturnUGI("client", keytab.getAbsolutePath());
|
loginUserFromKeytabAndReturnUGI("client", keytab.getAbsolutePath());
|
||||||
|
} else {
|
||||||
|
proxyUgi = UserGroupInformation.createRemoteUser("client");
|
||||||
|
}
|
||||||
|
|
||||||
|
final UserGroupInformation clientUgi = proxyUgi;
|
||||||
clientUgi.doAs(new PrivilegedExceptionAction<Void>() {
|
clientUgi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
@Override
|
@Override
|
||||||
public Void run() throws Exception {
|
public Void run() throws Exception {
|
||||||
|
@ -1649,6 +1668,123 @@ public class TestKMS {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// authorized proxyuser
|
||||||
|
UserGroupInformation barUgi =
|
||||||
|
UserGroupInformation.createProxyUser("bar", clientUgi);
|
||||||
|
barUgi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
Assert.assertNotNull(kp.createKey("kDD",
|
||||||
|
new KeyProvider.Options(conf)));
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWebHDFSProxyUserKerb() throws Exception {
|
||||||
|
doWebHDFSProxyUserTest(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWebHDFSProxyUserSimple() throws Exception {
|
||||||
|
doWebHDFSProxyUserTest(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void doWebHDFSProxyUserTest(final boolean kerberos) throws Exception {
|
||||||
|
Configuration conf = new Configuration();
|
||||||
|
conf.set("hadoop.security.authentication", "kerberos");
|
||||||
|
UserGroupInformation.setConfiguration(conf);
|
||||||
|
final File testDir = getTestDir();
|
||||||
|
conf = createBaseKMSConf(testDir);
|
||||||
|
if (kerberos) {
|
||||||
|
conf.set("hadoop.kms.authentication.type", "kerberos");
|
||||||
|
}
|
||||||
|
conf.set("hadoop.kms.authentication.kerberos.keytab",
|
||||||
|
keytab.getAbsolutePath());
|
||||||
|
conf.set("hadoop.kms.authentication.kerberos.principal", "HTTP/localhost");
|
||||||
|
conf.set("hadoop.kms.authentication.kerberos.name.rules", "DEFAULT");
|
||||||
|
conf.set("hadoop.security.kms.client.timeout", "300");
|
||||||
|
conf.set("hadoop.kms.proxyuser.client.users", "foo,bar");
|
||||||
|
conf.set("hadoop.kms.proxyuser.client.hosts", "*");
|
||||||
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kAA.ALL", "foo");
|
||||||
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kBB.ALL", "foo1");
|
||||||
|
conf.set(KeyAuthorizationKeyProvider.KEY_ACL + "kCC.ALL", "bar");
|
||||||
|
|
||||||
|
writeConf(testDir, conf);
|
||||||
|
|
||||||
|
runServer(null, null, testDir, new KMSCallable<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void call() throws Exception {
|
||||||
|
final Configuration conf = new Configuration();
|
||||||
|
conf.setInt(KeyProvider.DEFAULT_BITLENGTH_NAME, 64);
|
||||||
|
final URI uri = createKMSUri(getKMSUrl());
|
||||||
|
|
||||||
|
UserGroupInformation proxyUgi = null;
|
||||||
|
if (kerberos) {
|
||||||
|
// proxyuser client using kerberos credentials
|
||||||
|
proxyUgi = UserGroupInformation.
|
||||||
|
loginUserFromKeytabAndReturnUGI("client", keytab.getAbsolutePath());
|
||||||
|
} else {
|
||||||
|
proxyUgi = UserGroupInformation.createRemoteUser("client");
|
||||||
|
}
|
||||||
|
|
||||||
|
final UserGroupInformation clientUgi = proxyUgi;
|
||||||
|
clientUgi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
|
||||||
|
// authorized proxyuser
|
||||||
|
UserGroupInformation fooUgi =
|
||||||
|
UserGroupInformation.createProxyUser("foo", clientUgi);
|
||||||
|
fooUgi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
KeyProvider kp = new KMSClientProvider(uri, conf);
|
||||||
|
Assert.assertNotNull(kp.createKey("kAA",
|
||||||
|
new KeyProvider.Options(conf)));
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// unauthorized proxyuser
|
||||||
|
UserGroupInformation foo1Ugi =
|
||||||
|
UserGroupInformation.createProxyUser("foo1", clientUgi);
|
||||||
|
foo1Ugi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
try {
|
||||||
|
KeyProvider kp = new KMSClientProvider(uri, conf);
|
||||||
|
kp.createKey("kBB", new KeyProvider.Options(conf));
|
||||||
|
Assert.fail();
|
||||||
|
} catch (Exception ex) {
|
||||||
|
Assert.assertTrue(ex.getMessage(), ex.getMessage().contains("Forbidden"));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// authorized proxyuser
|
||||||
|
UserGroupInformation barUgi =
|
||||||
|
UserGroupInformation.createProxyUser("bar", clientUgi);
|
||||||
|
barUgi.doAs(new PrivilegedExceptionAction<Void>() {
|
||||||
|
@Override
|
||||||
|
public Void run() throws Exception {
|
||||||
|
KeyProvider kp = new KMSClientProvider(uri, conf);
|
||||||
|
Assert.assertNotNull(kp.createKey("kCC",
|
||||||
|
new KeyProvider.Options(conf)));
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue