forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue_37107
* master: Deprecate _type from LeafDocLookup (elastic#37491) Allow system privilege to execute proxied actions (elastic#37508) Update Put Watch to allow unknown fields (elastic#37494) AwaitsFix testAddNewReplicas SQL: Add protocol tests and remove jdbc_type from drivers response (elastic#37516) SQL: [Docs] Add an ES-SQL column for data types (elastic#37529) IndexMetaData#mappingOrDefault doesn't need to take a type argument. (elastic#37480) Simplify + Cleanup Dead Code in Settings (elastic#37341) Reject all requests that have an unconsumed body (elastic#37504) [Ml] Prevent config snapshot failure blocking migration (elastic#37493) Fix line length for aliases and remove suppression (elastic#37455) Add SSL Configuration Library (elastic#37287) SQL: Remove slightly used meta commands (elastic#37506) Simplify Snapshot Create Request Handling (elastic#37464) Remove the use of AbstracLifecycleComponent constructor elastic#37488 (elastic#37488) [ML] log minimum diskspace setting if forecast fails due to insufficient d… (elastic#37486)
- Loading branch information
Showing
175 changed files
with
6,558 additions
and
1,700 deletions.
There are no files selected for viewing
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
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
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
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
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,42 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you 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. | ||
*/ | ||
|
||
dependencies { | ||
compile "org.elasticsearch:elasticsearch-core:${version}" | ||
|
||
if (isEclipse == false || project.path == ":libs:ssl-config-tests") { | ||
testCompile("org.elasticsearch.test:framework:${version}") { | ||
exclude group: 'org.elasticsearch', module: 'elasticsearch-ssl-config' | ||
} | ||
} | ||
|
||
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}" | ||
testCompile "junit:junit:${versions.junit}" | ||
testCompile "org.hamcrest:hamcrest-all:${versions.hamcrest}" | ||
} | ||
|
||
forbiddenApisMain { | ||
replaceSignatureFiles 'jdk-signatures' | ||
} | ||
forbiddenPatterns { | ||
exclude '**/*.key' | ||
exclude '**/*.pem' | ||
exclude '**/*.p12' | ||
exclude '**/*.jks' | ||
} |
128 changes: 128 additions & 0 deletions
128
libs/ssl-config/src/main/java/org/elasticsearch/common/ssl/DefaultJdkTrustConfig.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,128 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you 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 org.elasticsearch.common.ssl; | ||
|
||
import org.elasticsearch.common.Nullable; | ||
|
||
import javax.net.ssl.TrustManagerFactory; | ||
import javax.net.ssl.X509ExtendedTrustManager; | ||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import java.security.GeneralSecurityException; | ||
import java.security.KeyStore; | ||
import java.util.Arrays; | ||
import java.util.Collection; | ||
import java.util.Collections; | ||
import java.util.function.BiFunction; | ||
|
||
/** | ||
* This class represents a trust configuration that corresponds to the default trusted CAs of the JDK | ||
*/ | ||
final class DefaultJdkTrustConfig implements SslTrustConfig { | ||
|
||
private final BiFunction<String, String, String> systemProperties; | ||
private final char[] trustStorePassword; | ||
|
||
/** | ||
* Create a trust config that uses System properties to determine the TrustStore type, and the relevant password. | ||
*/ | ||
DefaultJdkTrustConfig() { | ||
this(System::getProperty); | ||
} | ||
|
||
/** | ||
* Create a trust config that uses supplied {@link BiFunction} to determine the TrustStore type, and the relevant password. | ||
*/ | ||
DefaultJdkTrustConfig(BiFunction<String, String, String> systemProperties) { | ||
this(systemProperties, isPkcs11Truststore(systemProperties) ? getSystemTrustStorePassword(systemProperties) : null); | ||
} | ||
|
||
/** | ||
* @param trustStorePassword the password for the truststore. It applies only when PKCS#11 tokens are used, is null otherwise | ||
*/ | ||
DefaultJdkTrustConfig(BiFunction<String, String, String> systemProperties, @Nullable char[] trustStorePassword) { | ||
this.systemProperties = systemProperties; | ||
this.trustStorePassword = trustStorePassword; | ||
} | ||
|
||
@Override | ||
public X509ExtendedTrustManager createTrustManager() { | ||
try { | ||
return KeyStoreUtil.createTrustManager(getSystemTrustStore(), TrustManagerFactory.getDefaultAlgorithm()); | ||
} catch (GeneralSecurityException e) { | ||
throw new SslConfigException("failed to initialize a TrustManager for the system keystore", e); | ||
} | ||
} | ||
|
||
/** | ||
* When a PKCS#11 token is used as the system default keystore/truststore, we need to pass the keystore | ||
* password when loading, even for reading certificates only ( as opposed to i.e. JKS keystores where | ||
* we only need to pass the password for reading Private Key entries ). | ||
* | ||
* @return the KeyStore used as truststore for PKCS#11 initialized with the password, null otherwise | ||
*/ | ||
private KeyStore getSystemTrustStore() { | ||
if (isPkcs11Truststore(systemProperties) && trustStorePassword != null) { | ||
try { | ||
KeyStore keyStore = KeyStore.getInstance("PKCS11"); | ||
keyStore.load(null, trustStorePassword); | ||
return keyStore; | ||
} catch (GeneralSecurityException | IOException e) { | ||
throw new SslConfigException("failed to load the system PKCS#11 truststore", e); | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
private static boolean isPkcs11Truststore(BiFunction<String, String, String> systemProperties) { | ||
return systemProperties.apply("javax.net.ssl.trustStoreType", "").equalsIgnoreCase("PKCS11"); | ||
} | ||
|
||
private static char[] getSystemTrustStorePassword(BiFunction<String, String, String> systemProperties) { | ||
return systemProperties.apply("javax.net.ssl.trustStorePassword", "").toCharArray(); | ||
} | ||
|
||
@Override | ||
public Collection<Path> getDependentFiles() { | ||
return Collections.emptyList(); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "JDK-trusted-certs"; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
final DefaultJdkTrustConfig that = (DefaultJdkTrustConfig) o; | ||
return Arrays.equals(this.trustStorePassword, that.trustStorePassword); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Arrays.hashCode(trustStorePassword); | ||
} | ||
} |
Oops, something went wrong.