mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
This change aims to fix our setup in CI so that we can run 7.x in FIPS 140 mode. The major issue that we have in 7.x and did not have in master is that we can't use the diagnostic trust manager in FIPS mode in Java 8 with SunJSSE in FIPS approved mode as it explicitly disallows the wrapping of X509TrustManager. Previous attempts like #56427 and #52211 focused on disabling the setting in all of our tests when creating a Settings object or on setting fips_mode.enabled accordingly (which implicitly disables the diagnostic trust manager). The attempts weren't future proof though as nothing would forbid someone to add new tests without setting the necessary setting and forcing this would be very inconvenient for any other case ( see #56427 (comment) for the full argumentation). This change introduces a runtime check in SSLService that overrides the configuration value of xpack.security.ssl.diagnose.trust and disables the diagnostic trust manager when we are running in Java 8 and the SunJSSE provider is set in FIPS mode.
154 lines
5.9 KiB
Groovy
154 lines
5.9 KiB
Groovy
import org.elasticsearch.gradle.info.BuildParams
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
esplugin {
|
|
description 'The EC2 discovery plugin allows to use AWS API for the unicast discovery mechanism.'
|
|
classname 'org.elasticsearch.discovery.ec2.Ec2DiscoveryPlugin'
|
|
}
|
|
|
|
versions << [
|
|
'aws': '1.11.749'
|
|
]
|
|
|
|
dependencies {
|
|
compile "com.amazonaws:aws-java-sdk-ec2:${versions.aws}"
|
|
compile "com.amazonaws:aws-java-sdk-core:${versions.aws}"
|
|
compile "org.apache.httpcomponents:httpclient:${versions.httpclient}"
|
|
compile "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
|
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
|
compile "org.apache.logging.log4j:log4j-1.2-api:${versions.log4j}"
|
|
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
|
compile "com.fasterxml.jackson.core:jackson-databind:${versions.jackson}"
|
|
compile "com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}"
|
|
}
|
|
|
|
restResources {
|
|
restApi {
|
|
includeCore '_common', 'cluster', 'nodes'
|
|
}
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /aws-java-sdk-.*/, to: 'aws-java-sdk'
|
|
mapping from: /jackson-.*/, to: 'jackson'
|
|
}
|
|
|
|
bundlePlugin {
|
|
from('config/discovery-ec2') {
|
|
into 'config'
|
|
}
|
|
}
|
|
|
|
task writeTestJavaPolicy {
|
|
doLast {
|
|
final File tmp = file("${buildDir}/tmp")
|
|
if (tmp.exists() == false && tmp.mkdirs() == false) {
|
|
throw new GradleException("failed to create temporary directory [${tmp}]")
|
|
}
|
|
final File javaPolicy = file("${tmp}/java.policy")
|
|
if (BuildParams.inFipsJvm) {
|
|
javaPolicy.write(
|
|
[
|
|
"grant {",
|
|
" permission java.security.SecurityPermission \"putProviderProperty.BCFIPS\";",
|
|
" permission java.security.SecurityPermission \"putProviderProperty.BCJSSE\";",
|
|
" permission java.lang.RuntimePermission \"getProtectionDomain\";",
|
|
" permission java.util.PropertyPermission \"java.runtime.name\", \"read\";",
|
|
" permission org.bouncycastle.crypto.CryptoServicesPermission \"tlsAlgorithmsEnabled\";",
|
|
" permission java.lang.RuntimePermission \"accessClassInPackage.sun.security.internal.spec\";",
|
|
" permission java.lang.RuntimePermission \"accessDeclaredMembers\";",
|
|
" permission java.util.PropertyPermission \"intellij.debug.agent\", \"read\";",
|
|
" permission java.util.PropertyPermission \"intellij.debug.agent\", \"write\";",
|
|
" permission org.bouncycastle.crypto.CryptoServicesPermission \"exportSecretKey\";",
|
|
" permission org.bouncycastle.crypto.CryptoServicesPermission \"exportPrivateKey\";",
|
|
" permission java.io.FilePermission \"\${javax.net.ssl.trustStore}\", \"read\";",
|
|
" permission java.util.PropertyPermission \"com.amazonaws.sdk.ec2MetadataServiceEndpointOverride\", \"write\";",
|
|
"};"
|
|
].join("\n")
|
|
)
|
|
} else {
|
|
javaPolicy.write(
|
|
[
|
|
"grant {",
|
|
" permission java.util.PropertyPermission \"com.amazonaws.sdk.ec2MetadataServiceEndpointOverride\", \"write\";",
|
|
"};"
|
|
].join("\n"))
|
|
}
|
|
}
|
|
}
|
|
|
|
test {
|
|
dependsOn writeTestJavaPolicy
|
|
// this is needed for insecure plugins, remove if possible!
|
|
systemProperty 'tests.artifact', project.name
|
|
|
|
// Setting a custom policy to manipulate com.amazonaws.sdk.ec2MetadataServiceEndpointOverride system property
|
|
// it is better rather disable security manager at all with `systemProperty 'tests.security.manager', 'false'`
|
|
if (BuildParams.inFipsJvm){
|
|
// Using the key==value format to override default JVM security settings and policy
|
|
// see also: https://docs.oracle.com/javase/8/docs/technotes/guides/security/PolicyFiles.html
|
|
systemProperty 'java.security.policy', "=file://${buildDir}/tmp/java.policy"
|
|
} else {
|
|
systemProperty 'java.security.policy', "file://${buildDir}/tmp/java.policy"
|
|
}
|
|
}
|
|
|
|
check {
|
|
// also execute the QA tests when testing the plugin
|
|
dependsOn 'qa:amazon-ec2:check'
|
|
}
|
|
|
|
thirdPartyAudit.ignoreMissingClasses(
|
|
// classes are missing
|
|
'com.amazonaws.jmespath.JmesPathEvaluationVisitor',
|
|
'com.amazonaws.jmespath.JmesPathExpression',
|
|
'com.amazonaws.jmespath.JmesPathField',
|
|
'com.amazonaws.jmespath.JmesPathFlatten',
|
|
'com.amazonaws.jmespath.JmesPathIdentity',
|
|
'com.amazonaws.jmespath.JmesPathLengthFunction',
|
|
'com.amazonaws.jmespath.JmesPathLiteral',
|
|
'com.amazonaws.jmespath.JmesPathProjection',
|
|
'com.amazonaws.jmespath.JmesPathSubExpression',
|
|
'com.amazonaws.jmespath.ObjectMapperSingleton',
|
|
'com.amazonaws.jmespath.OpGreaterThan',
|
|
'software.amazon.ion.IonReader',
|
|
'software.amazon.ion.IonSystem',
|
|
'software.amazon.ion.IonType',
|
|
'software.amazon.ion.IonWriter',
|
|
'software.amazon.ion.Timestamp',
|
|
'software.amazon.ion.system.IonBinaryWriterBuilder',
|
|
'software.amazon.ion.system.IonSystemBuilder',
|
|
'software.amazon.ion.system.IonTextWriterBuilder',
|
|
'software.amazon.ion.system.IonWriterBuilder',
|
|
'javax.servlet.ServletContextEvent',
|
|
'javax.servlet.ServletContextListener',
|
|
'org.apache.avalon.framework.logger.Logger',
|
|
'org.apache.log.Hierarchy',
|
|
'org.apache.log.Logger'
|
|
)
|
|
|
|
if (BuildParams.runtimeJavaVersion > JavaVersion.VERSION_1_8) {
|
|
thirdPartyAudit.ignoreMissingClasses(
|
|
'javax.xml.bind.DatatypeConverter',
|
|
'javax.xml.bind.JAXBContext'
|
|
)
|
|
}
|