-
Notifications
You must be signed in to change notification settings - Fork 25.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These tests were removed when backporting a PR to 6.x. The PR itself was regarding moving security tests from plugin/scr and did not originally touch these files.
- Loading branch information
Showing
3 changed files
with
572 additions
and
0 deletions.
There are no files selected for viewing
132 changes: 132 additions & 0 deletions
132
x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/ssl/SSLClientAuthTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
package org.elasticsearch.xpack.ssl; | ||
|
||
import org.apache.http.conn.ssl.NoopHostnameVerifier; | ||
import org.apache.http.message.BasicHeader; | ||
import org.apache.http.nio.conn.ssl.SSLIOSessionStrategy; | ||
import org.apache.http.ssl.SSLContexts; | ||
import org.apache.http.util.EntityUtils; | ||
import org.elasticsearch.ElasticsearchException; | ||
import org.elasticsearch.ExceptionsHelper; | ||
import org.elasticsearch.client.Response; | ||
import org.elasticsearch.client.RestClient; | ||
import org.elasticsearch.client.transport.TransportClient; | ||
import org.elasticsearch.common.network.NetworkModule; | ||
import org.elasticsearch.common.settings.MockSecureSettings; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.common.transport.TransportAddress; | ||
import org.elasticsearch.test.SecurityIntegTestCase; | ||
import org.elasticsearch.transport.Transport; | ||
import org.elasticsearch.xpack.core.TestXPackTransportClient; | ||
import org.elasticsearch.xpack.core.security.SecurityField; | ||
import org.elasticsearch.xpack.core.ssl.SSLClientAuth; | ||
import org.elasticsearch.xpack.security.LocalStateSecurity; | ||
|
||
|
||
import javax.net.ssl.KeyManagerFactory; | ||
import javax.net.ssl.SSLContext; | ||
import javax.net.ssl.SSLHandshakeException; | ||
import javax.net.ssl.TrustManagerFactory; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.security.KeyStore; | ||
import java.security.SecureRandom; | ||
import java.security.cert.CertPathBuilderException; | ||
|
||
import static org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken.basicAuthHeaderValue; | ||
import static org.hamcrest.Matchers.containsString; | ||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.instanceOf; | ||
|
||
public class SSLClientAuthTests extends SecurityIntegTestCase { | ||
@Override | ||
protected Settings nodeSettings(int nodeOrdinal) { | ||
return Settings.builder() | ||
.put(super.nodeSettings(nodeOrdinal)) | ||
// invert the require auth settings | ||
.put("xpack.ssl.client_authentication", SSLClientAuth.REQUIRED) | ||
.put("xpack.security.http.ssl.enabled", true) | ||
.put("xpack.security.http.ssl.client_authentication", SSLClientAuth.REQUIRED) | ||
.put("transport.profiles.default.xpack.security.ssl.client_authentication", SSLClientAuth.NONE) | ||
.put(NetworkModule.HTTP_ENABLED.getKey(), true) | ||
.build(); | ||
} | ||
|
||
@Override | ||
protected boolean transportSSLEnabled() { | ||
return true; | ||
} | ||
|
||
public void testThatHttpFailsWithoutSslClientAuth() throws IOException { | ||
SSLIOSessionStrategy sessionStrategy = new SSLIOSessionStrategy(SSLContexts.createDefault(), NoopHostnameVerifier.INSTANCE); | ||
try (RestClient restClient = createRestClient(httpClientBuilder -> httpClientBuilder.setSSLStrategy(sessionStrategy), "https")) { | ||
restClient.performRequest("GET", "/"); | ||
fail("Expected SSLHandshakeException"); | ||
} catch (SSLHandshakeException e) { | ||
Throwable t = ExceptionsHelper.unwrap(e, CertPathBuilderException.class); | ||
assertThat(t, instanceOf(CertPathBuilderException.class)); | ||
assertThat(t.getMessage(), containsString("unable to find valid certification path to requested target")); | ||
} | ||
} | ||
|
||
public void testThatHttpWorksWithSslClientAuth() throws IOException { | ||
SSLIOSessionStrategy sessionStrategy = new SSLIOSessionStrategy(getSSLContext(), NoopHostnameVerifier.INSTANCE); | ||
try (RestClient restClient = createRestClient(httpClientBuilder -> httpClientBuilder.setSSLStrategy(sessionStrategy), "https")) { | ||
Response response = restClient.performRequest("GET", "/", | ||
new BasicHeader("Authorization", basicAuthHeaderValue(transportClientUsername(), transportClientPassword()))); | ||
assertThat(response.getStatusLine().getStatusCode(), equalTo(200)); | ||
assertThat(EntityUtils.toString(response.getEntity()), containsString("You Know, for Search")); | ||
} | ||
} | ||
|
||
public void testThatTransportWorksWithoutSslClientAuth() throws IOException { | ||
// specify an arbitrary keystore, that does not include the certs needed to connect to the transport protocol | ||
Path store = getDataPath("/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testclient-client-profile.jks"); | ||
|
||
if (Files.notExists(store)) { | ||
throw new ElasticsearchException("store path doesn't exist"); | ||
} | ||
|
||
MockSecureSettings secureSettings = new MockSecureSettings(); | ||
secureSettings.setString("xpack.ssl.keystore.secure_password", "testclient-client-profile"); | ||
Settings settings = Settings.builder() | ||
.put("xpack.security.transport.ssl.enabled", true) | ||
.put("xpack.ssl.client_authentication", SSLClientAuth.NONE) | ||
.put("xpack.ssl.keystore.path", store) | ||
.setSecureSettings(secureSettings) | ||
.put("cluster.name", internalCluster().getClusterName()) | ||
.put(SecurityField.USER_SETTING.getKey(), | ||
transportClientUsername() + ":" + new String(transportClientPassword().getChars())) | ||
.build(); | ||
try (TransportClient client = new TestXPackTransportClient(settings, LocalStateSecurity.class)) { | ||
Transport transport = internalCluster().getDataNodeInstance(Transport.class); | ||
TransportAddress transportAddress = transport.boundAddress().publishAddress(); | ||
client.addTransportAddress(transportAddress); | ||
|
||
assertGreenClusterState(client); | ||
} | ||
} | ||
|
||
private SSLContext getSSLContext() { | ||
try (InputStream in = | ||
Files.newInputStream(getDataPath("/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testclient.jks"))) { | ||
KeyStore keyStore = KeyStore.getInstance("jks"); | ||
keyStore.load(in, "testclient".toCharArray()); | ||
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); | ||
tmf.init(keyStore); | ||
KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm()); | ||
kmf.init(keyStore, "testclient".toCharArray()); | ||
SSLContext context = SSLContext.getInstance("TLSv1.2"); | ||
context.init(kmf.getKeyManagers(), tmf.getTrustManagers(), new SecureRandom()); | ||
return context; | ||
} catch (Exception e) { | ||
throw new ElasticsearchException("failed to initialize a TrustManagerFactory", e); | ||
} | ||
} | ||
} |
183 changes: 183 additions & 0 deletions
183
x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/ssl/SSLReloadIntegTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
package org.elasticsearch.xpack.ssl; | ||
|
||
import org.bouncycastle.asn1.x500.X500Name; | ||
import org.bouncycastle.asn1.x509.Extension; | ||
import org.bouncycastle.asn1.x509.Time; | ||
import org.bouncycastle.cert.X509CertificateHolder; | ||
import org.bouncycastle.cert.jcajce.JcaX509CertificateConverter; | ||
import org.bouncycastle.cert.jcajce.JcaX509ExtensionUtils; | ||
import org.bouncycastle.cert.jcajce.JcaX509v3CertificateBuilder; | ||
import org.bouncycastle.operator.ContentSigner; | ||
import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder; | ||
import org.elasticsearch.ElasticsearchException; | ||
import org.elasticsearch.common.network.InetAddressHelper; | ||
import org.elasticsearch.common.settings.MockSecureSettings; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.common.transport.TransportAddress; | ||
import org.elasticsearch.common.util.set.Sets; | ||
import org.elasticsearch.env.TestEnvironment; | ||
import org.elasticsearch.test.SecurityIntegTestCase; | ||
import org.elasticsearch.test.SecuritySettingsSource; | ||
import org.elasticsearch.test.SecuritySettingsSourceField; | ||
import org.elasticsearch.transport.Transport; | ||
import org.elasticsearch.xpack.core.ssl.CertUtils; | ||
import org.elasticsearch.xpack.core.ssl.SSLService; | ||
import org.joda.time.DateTime; | ||
import org.joda.time.DateTimeZone; | ||
|
||
import javax.net.ssl.SSLHandshakeException; | ||
import javax.net.ssl.SSLSocket; | ||
import javax.net.ssl.SSLSocketFactory; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.net.SocketException; | ||
import java.nio.file.AtomicMoveNotSupportedException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.StandardCopyOption; | ||
import java.security.KeyPair; | ||
import java.security.KeyStore; | ||
import java.security.cert.Certificate; | ||
import java.security.cert.X509Certificate; | ||
import java.util.Locale; | ||
import java.util.concurrent.CountDownLatch; | ||
|
||
import static org.hamcrest.Matchers.containsString; | ||
import static org.hamcrest.Matchers.is; | ||
|
||
/** | ||
* Integration tests for SSL reloading support | ||
*/ | ||
public class SSLReloadIntegTests extends SecurityIntegTestCase { | ||
|
||
private Path nodeStorePath; | ||
|
||
@Override | ||
public Settings nodeSettings(int nodeOrdinal) { | ||
if (nodeStorePath == null) { | ||
Path origPath = getDataPath("/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.jks"); | ||
Path tempDir = createTempDir(); | ||
nodeStorePath = tempDir.resolve("testnode.jks"); | ||
try { | ||
Files.copy(origPath, nodeStorePath); | ||
} catch (IOException e) { | ||
throw new ElasticsearchException("failed to copy keystore"); | ||
} | ||
} | ||
Settings settings = super.nodeSettings(nodeOrdinal); | ||
Settings.Builder builder = Settings.builder() | ||
.put(settings.filter((s) -> s.startsWith("xpack.ssl.") == false)); | ||
|
||
|
||
SecuritySettingsSource.addSSLSettingsForStore(builder, | ||
"/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.jks", "testnode"); | ||
builder.put("resource.reload.interval.high", "1s") | ||
.put("xpack.ssl.keystore.path", nodeStorePath); | ||
|
||
if (builder.get("xpack.ssl.truststore.path") != null) { | ||
builder.put("xpack.ssl.truststore.path", nodeStorePath); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
@Override | ||
protected boolean transportSSLEnabled() { | ||
return true; | ||
} | ||
|
||
public void testThatSSLConfigurationReloadsOnModification() throws Exception { | ||
KeyPair keyPair = CertUtils.generateKeyPair(randomFrom(1024, 2048)); | ||
X509Certificate certificate = getCertificate(keyPair); | ||
KeyStore keyStore = KeyStore.getInstance("jks"); | ||
keyStore.load(null, null); | ||
keyStore.setKeyEntry("key", keyPair.getPrivate(), SecuritySettingsSourceField.TEST_PASSWORD.toCharArray(), | ||
new Certificate[] { certificate }); | ||
Path keystorePath = createTempDir().resolve("newcert.jks"); | ||
try (OutputStream out = Files.newOutputStream(keystorePath)) { | ||
keyStore.store(out, SecuritySettingsSourceField.TEST_PASSWORD.toCharArray()); | ||
} | ||
MockSecureSettings secureSettings = new MockSecureSettings(); | ||
secureSettings.setString("xpack.ssl.keystore.secure_password", SecuritySettingsSourceField.TEST_PASSWORD); | ||
secureSettings.setString("xpack.ssl.truststore.secure_password", "testnode"); | ||
Settings settings = Settings.builder() | ||
.put("path.home", createTempDir()) | ||
.put("xpack.ssl.keystore.path", keystorePath) | ||
.put("xpack.ssl.truststore.path", nodeStorePath) | ||
.setSecureSettings(secureSettings) | ||
.build(); | ||
String node = randomFrom(internalCluster().getNodeNames()); | ||
SSLService sslService = new SSLService(settings, TestEnvironment.newEnvironment(settings)); | ||
SSLSocketFactory sslSocketFactory = sslService.sslSocketFactory(settings); | ||
TransportAddress address = internalCluster() | ||
.getInstance(Transport.class, node).boundAddress().publishAddress(); | ||
try (SSLSocket socket = (SSLSocket) sslSocketFactory.createSocket(address.getAddress(), address.getPort())) { | ||
assertThat(socket.isConnected(), is(true)); | ||
socket.startHandshake(); | ||
fail("handshake should not have been successful!"); | ||
} catch (SSLHandshakeException | SocketException expected) { | ||
logger.trace("expected exception", expected); | ||
} | ||
|
||
KeyStore nodeStore = KeyStore.getInstance("jks"); | ||
try (InputStream in = Files.newInputStream(nodeStorePath)) { | ||
nodeStore.load(in, "testnode".toCharArray()); | ||
} | ||
nodeStore.setCertificateEntry("newcert", certificate); | ||
Path path = nodeStorePath.getParent().resolve("updated.jks"); | ||
try (OutputStream out = Files.newOutputStream(path)) { | ||
nodeStore.store(out, "testnode".toCharArray()); | ||
} | ||
try { | ||
Files.move(path, nodeStorePath, StandardCopyOption.REPLACE_EXISTING, StandardCopyOption.ATOMIC_MOVE); | ||
} catch (AtomicMoveNotSupportedException e) { | ||
Files.move(path, nodeStorePath, StandardCopyOption.REPLACE_EXISTING); | ||
} | ||
|
||
CountDownLatch latch = new CountDownLatch(1); | ||
assertBusy(() -> { | ||
try (SSLSocket socket = (SSLSocket) sslSocketFactory.createSocket(address.getAddress(), address.getPort())) { | ||
logger.info("opened socket for reloading [{}]", socket); | ||
socket.addHandshakeCompletedListener(event -> { | ||
try { | ||
assertThat(event.getPeerPrincipal().getName(), containsString("Test Node")); | ||
logger.info("ssl handshake completed on port [{}]", event.getSocket().getLocalPort()); | ||
latch.countDown(); | ||
} catch (Exception e) { | ||
fail("caught exception in listener " + e.getMessage()); | ||
} | ||
}); | ||
socket.startHandshake(); | ||
|
||
} catch (Exception e) { | ||
fail("caught exception " + e.getMessage()); | ||
} | ||
}); | ||
latch.await(); | ||
} | ||
|
||
private X509Certificate getCertificate(KeyPair keyPair) throws Exception { | ||
final DateTime notBefore = new DateTime(DateTimeZone.UTC); | ||
final DateTime notAfter = notBefore.plusYears(1); | ||
X500Name subject = new X500Name("CN=random cert"); | ||
JcaX509v3CertificateBuilder builder = | ||
new JcaX509v3CertificateBuilder(subject, CertUtils.getSerial(), | ||
new Time(notBefore.toDate(), Locale.ROOT), new Time(notAfter.toDate(), Locale.ROOT), subject, keyPair.getPublic()); | ||
|
||
JcaX509ExtensionUtils extUtils = new JcaX509ExtensionUtils(); | ||
builder.addExtension(Extension.subjectKeyIdentifier, false, extUtils.createSubjectKeyIdentifier(keyPair.getPublic())); | ||
builder.addExtension(Extension.authorityKeyIdentifier, false, extUtils.createAuthorityKeyIdentifier(keyPair.getPublic())); | ||
builder.addExtension(Extension.subjectAlternativeName, false, | ||
CertUtils.getSubjectAlternativeNames(true, Sets.newHashSet(InetAddressHelper.getAllAddresses()))); | ||
|
||
ContentSigner signer = new JcaContentSignerBuilder("SHA256withRSA").build(keyPair.getPrivate()); | ||
X509CertificateHolder certificateHolder = builder.build(signer); | ||
return new JcaX509CertificateConverter().getCertificate(certificateHolder); | ||
} | ||
} |
Oops, something went wrong.