Skip to content

Commit

Permalink
Support TLSv1.2 by default under Java 7
Browse files Browse the repository at this point in the history
Following changes in Maven Central, only TLSv1.2 is accepted.
This change turns on TLSv1, TLSv1.1 and TLSv1.2 for all connections from
Gradle when the Java version is 7.
As documented in https://docs.oracle.com/javase/7/docs/technotes/guides/security/SunProviders.html
in the Protocols section, this is safe, except for versions before 7u75
that were relying on SSLv3.
However that last protocol is really broken and no one should be using
it. And we definitely cannot turn it on here.

It also adds that property to tests that do interact with Maven Central.

Fixes #5740
  • Loading branch information
ljacomet committed Jun 20, 2018
1 parent 85a63ce commit 7f2710f
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 1 deletion.
Expand Up @@ -16,6 +16,7 @@

package org.gradle.performance.fixture

import org.gradle.api.JavaVersion
import org.gradle.api.UncheckedIOException
import org.gradle.testing.internal.util.RetryUtil
import org.gradle.util.Requires
Expand All @@ -37,6 +38,9 @@ class MavenDownloaderTest extends Specification {
def setup() {
installRoot = tmpDir.newFolder()
downloader = new MavenInstallationDownloader(installRoot)
if (JavaVersion.current().isJava7()) {
System.setProperty("https.protocols", "TLSv1.2")
}
}

@Unroll
Expand Down
Expand Up @@ -88,6 +88,9 @@ enum TestPrecondition implements org.gradle.internal.Factory<Boolean> {
NOT_UNKNOWN_OS({
!UNKNOWN_OS.fulfilled
}),
JDK7({
JavaVersion.current() == JavaVersion.VERSION_1_7
}),
JDK7_OR_EARLIER({
JavaVersion.current() <= JavaVersion.VERSION_1_7
}),
Expand Down
@@ -0,0 +1,42 @@
/*
* Copyright 2018 the original author or authors.
*
* Licensed 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.gradle.internal.resource.transport.http

import org.apache.http.conn.ssl.SSLConnectionSocketFactory
import org.apache.http.impl.client.HttpClientBuilder
import org.gradle.testing.internal.util.Specification
import org.gradle.util.Requires
import org.gradle.util.TestPrecondition

class HttpClientConfigurerIntegrationTest extends Specification {

@Requires(TestPrecondition.JDK7)
def 'configures TLSv1.2 protocol with Java 7'() {
given:
def settings = DefaultHttpSettings.builder()
.withAuthenticationSettings(Collections.emptyList())
.allowUntrustedConnections().build()
def builder = new HttpClientBuilder()

when:
new HttpClientConfigurer(settings).configure(builder)

then:
SSLConnectionSocketFactory socketFactory = builder.sslSocketFactory
socketFactory.supportedProtocols == ['TLSv1', 'TLSv1.1', 'TLSv1.2'] as String[]
}
}
Expand Up @@ -55,6 +55,7 @@
import org.apache.http.impl.cookie.RFC6265CookieSpecProvider;
import org.apache.http.protocol.HttpContext;
import org.apache.http.protocol.HttpCoreContext;
import org.gradle.api.JavaVersion;
import org.gradle.api.credentials.PasswordCredentials;
import org.gradle.api.specs.Spec;
import org.gradle.authentication.Authentication;
Expand All @@ -79,6 +80,21 @@
public class HttpClientConfigurer {
private static final Logger LOGGER = LoggerFactory.getLogger(HttpClientConfigurer.class);
private static final int MAX_HTTP_CONNECTIONS = 20;
private static final String[] SSL_PROTOCOLS;

private static final String HTTPS_PROTOCOLS = "https.protocols";

static {
String httpsProtocols = System.getProperty(HTTPS_PROTOCOLS);
if (httpsProtocols != null) {
SSL_PROTOCOLS = httpsProtocols.split(",");
} else if (JavaVersion.current().isJava7()) {
SSL_PROTOCOLS = new String[]{"TLSv1", "TLSv1.1", "TLSv1.2"};
} else {
SSL_PROTOCOLS = null;
}
}

private final HttpSettings httpSettings;

public HttpClientConfigurer(HttpSettings httpSettings) {
Expand All @@ -102,7 +118,7 @@ public void configure(HttpClientBuilder builder) {
}

private void configureSslSocketConnectionFactory(HttpClientBuilder builder, SslContextFactory sslContextFactory, HostnameVerifier hostnameVerifier) {
builder.setSSLSocketFactory(new SSLConnectionSocketFactory(sslContextFactory.createSslContext(), hostnameVerifier));
builder.setSSLSocketFactory(new SSLConnectionSocketFactory(sslContextFactory.createSslContext(), SSL_PROTOCOLS, null, hostnameVerifier));
}

private void configureAuthSchemeRegistry(HttpClientBuilder builder) {
Expand Down

0 comments on commit 7f2710f

Please sign in to comment.