2015-10-19 13:09:42 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2013 – 2015 Ricki Hirner (bitfire web engineering).
|
|
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
|
* are made available under the terms of the GNU Public License v3.0
|
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package at.bitfire.davdroid;
|
|
|
|
|
|
|
|
|
|
import android.os.Build;
|
2016-02-24 14:56:30 +00:00
|
|
|
|
import android.support.annotation.NonNull;
|
2015-10-19 13:09:42 +00:00
|
|
|
|
import android.text.TextUtils;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.net.InetAddress;
|
|
|
|
|
import java.net.Socket;
|
|
|
|
|
import java.security.GeneralSecurityException;
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
|
import java.util.HashSet;
|
|
|
|
|
import java.util.LinkedList;
|
|
|
|
|
import java.util.List;
|
2015-10-20 10:56:48 +00:00
|
|
|
|
import java.util.Locale;
|
2015-10-19 13:09:42 +00:00
|
|
|
|
|
|
|
|
|
import javax.net.ssl.SSLContext;
|
|
|
|
|
import javax.net.ssl.SSLSocket;
|
|
|
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
|
import javax.net.ssl.X509TrustManager;
|
|
|
|
|
|
|
|
|
|
import de.duenndns.ssl.MemorizingTrustManager;
|
|
|
|
|
import lombok.Cleanup;
|
|
|
|
|
|
|
|
|
|
public class SSLSocketFactoryCompat extends SSLSocketFactory {
|
|
|
|
|
|
2016-02-19 12:16:34 +00:00
|
|
|
|
private SSLSocketFactory delegate;
|
2015-10-19 13:09:42 +00:00
|
|
|
|
|
|
|
|
|
// Android 5.0+ (API level21) provides reasonable default settings
|
|
|
|
|
// but it still allows SSLv3
|
2015-10-19 14:55:01 +00:00
|
|
|
|
// https://developer.android.com/reference/javax/net/ssl/SSLSocket.html
|
2015-10-19 13:09:42 +00:00
|
|
|
|
static String protocols[] = null, cipherSuites[] = null;
|
|
|
|
|
static {
|
|
|
|
|
try {
|
|
|
|
|
@Cleanup SSLSocket socket = (SSLSocket)SSLSocketFactory.getDefault().createSocket();
|
|
|
|
|
if (socket != null) {
|
|
|
|
|
/* set reasonable protocol versions */
|
|
|
|
|
// - enable all supported protocols (enables TLSv1.1 and TLSv1.2 on Android <5.0)
|
|
|
|
|
// - remove all SSL versions (especially SSLv3) because they're insecure now
|
|
|
|
|
List<String> protocols = new LinkedList<>();
|
|
|
|
|
for (String protocol : socket.getSupportedProtocols())
|
2015-10-20 10:56:48 +00:00
|
|
|
|
if (!protocol.toUpperCase(Locale.US).contains("SSL"))
|
2015-10-19 13:09:42 +00:00
|
|
|
|
protocols.add(protocol);
|
2016-02-24 22:08:19 +00:00
|
|
|
|
App.log.info("Setting allowed TLS protocols: " + TextUtils.join(", ", protocols));
|
2015-10-19 13:09:42 +00:00
|
|
|
|
SSLSocketFactoryCompat.protocols = protocols.toArray(new String[protocols.size()]);
|
|
|
|
|
|
|
|
|
|
/* set up reasonable cipher suites */
|
|
|
|
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
|
// choose known secure cipher suites
|
|
|
|
|
List<String> allowedCiphers = Arrays.asList(
|
|
|
|
|
// TLS 1.2
|
|
|
|
|
"TLS_RSA_WITH_AES_256_GCM_SHA384",
|
|
|
|
|
"TLS_RSA_WITH_AES_128_GCM_SHA256",
|
|
|
|
|
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256",
|
|
|
|
|
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
|
|
|
|
|
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
|
|
|
|
|
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256",
|
2016-03-23 10:30:42 +00:00
|
|
|
|
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
2015-10-19 13:09:42 +00:00
|
|
|
|
// maximum interoperability
|
|
|
|
|
"TLS_RSA_WITH_3DES_EDE_CBC_SHA",
|
|
|
|
|
"TLS_RSA_WITH_AES_128_CBC_SHA",
|
|
|
|
|
// additionally
|
|
|
|
|
"TLS_RSA_WITH_AES_256_CBC_SHA",
|
|
|
|
|
"TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA",
|
|
|
|
|
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA",
|
|
|
|
|
"TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA",
|
|
|
|
|
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA");
|
|
|
|
|
List<String> availableCiphers = Arrays.asList(socket.getSupportedCipherSuites());
|
2016-05-23 12:28:27 +00:00
|
|
|
|
App.log.info("Available cipher suites: " + TextUtils.join(", ", availableCiphers));
|
|
|
|
|
App.log.info("Cipher suites enabled by default: " + TextUtils.join(", ", socket.getEnabledCipherSuites()));
|
2015-10-19 13:09:42 +00:00
|
|
|
|
|
|
|
|
|
// take all allowed ciphers that are available and put them into preferredCiphers
|
|
|
|
|
HashSet<String> preferredCiphers = new HashSet<>(allowedCiphers);
|
|
|
|
|
preferredCiphers.retainAll(availableCiphers);
|
|
|
|
|
|
|
|
|
|
/* For maximum security, preferredCiphers should *replace* enabled ciphers (thus disabling
|
|
|
|
|
* ciphers which are enabled by default, but have become unsecure), but I guess for
|
|
|
|
|
* the security level of DAVdroid and maximum compatibility, disabling of insecure
|
|
|
|
|
* ciphers should be a server-side task */
|
|
|
|
|
|
|
|
|
|
// add preferred ciphers to enabled ciphers
|
|
|
|
|
HashSet<String> enabledCiphers = preferredCiphers;
|
|
|
|
|
enabledCiphers.addAll(new HashSet<>(Arrays.asList(socket.getEnabledCipherSuites())));
|
|
|
|
|
|
2016-02-24 22:08:19 +00:00
|
|
|
|
App.log.info("Enabling (only) those TLS ciphers: " + TextUtils.join(", ", enabledCiphers));
|
2015-10-19 13:09:42 +00:00
|
|
|
|
SSLSocketFactoryCompat.cipherSuites = enabledCiphers.toArray(new String[enabledCiphers.size()]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (IOException e) {
|
2016-02-24 22:08:19 +00:00
|
|
|
|
App.log.severe("Couldn't determine default TLS settings");
|
2015-10-19 13:09:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-19 12:16:34 +00:00
|
|
|
|
public SSLSocketFactoryCompat(@NonNull MemorizingTrustManager mtm) {
|
2015-10-19 13:09:42 +00:00
|
|
|
|
try {
|
|
|
|
|
SSLContext sslContext = SSLContext.getInstance("TLS");
|
2016-02-19 12:16:34 +00:00
|
|
|
|
sslContext.init(null, new X509TrustManager[] { mtm }, null);
|
|
|
|
|
delegate = sslContext.getSocketFactory();
|
2015-10-19 13:09:42 +00:00
|
|
|
|
} catch (GeneralSecurityException e) {
|
|
|
|
|
throw new AssertionError(); // The system has no TLS. Just give up.
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void upgradeTLS(SSLSocket ssl) {
|
2016-02-24 14:56:30 +00:00
|
|
|
|
if (protocols != null)
|
2015-10-19 13:09:42 +00:00
|
|
|
|
ssl.setEnabledProtocols(protocols);
|
|
|
|
|
|
2016-02-24 14:56:30 +00:00
|
|
|
|
if (cipherSuites != null)
|
2015-10-19 13:09:42 +00:00
|
|
|
|
ssl.setEnabledCipherSuites(cipherSuites);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String[] getDefaultCipherSuites() {
|
|
|
|
|
return cipherSuites;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String[] getSupportedCipherSuites() {
|
|
|
|
|
return cipherSuites;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Socket createSocket(Socket s, String host, int port, boolean autoClose) throws IOException {
|
2016-02-19 12:16:34 +00:00
|
|
|
|
Socket ssl = delegate.createSocket(s, host, port, autoClose);
|
2015-10-19 13:09:42 +00:00
|
|
|
|
if (ssl instanceof SSLSocket)
|
|
|
|
|
upgradeTLS((SSLSocket)ssl);
|
|
|
|
|
return ssl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2016-02-24 22:21:25 +00:00
|
|
|
|
public Socket createSocket(String host, int port) throws IOException {
|
2016-02-19 12:16:34 +00:00
|
|
|
|
Socket ssl = delegate.createSocket(host, port);
|
2015-10-19 13:09:42 +00:00
|
|
|
|
if (ssl instanceof SSLSocket)
|
|
|
|
|
upgradeTLS((SSLSocket)ssl);
|
|
|
|
|
return ssl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2016-02-24 22:21:25 +00:00
|
|
|
|
public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException {
|
2016-02-19 12:16:34 +00:00
|
|
|
|
Socket ssl = delegate.createSocket(host, port, localHost, localPort);
|
2015-10-19 13:09:42 +00:00
|
|
|
|
if (ssl instanceof SSLSocket)
|
|
|
|
|
upgradeTLS((SSLSocket)ssl);
|
|
|
|
|
return ssl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Socket createSocket(InetAddress host, int port) throws IOException {
|
2016-02-19 12:16:34 +00:00
|
|
|
|
Socket ssl = delegate.createSocket(host, port);
|
2015-10-19 13:09:42 +00:00
|
|
|
|
if (ssl instanceof SSLSocket)
|
|
|
|
|
upgradeTLS((SSLSocket)ssl);
|
|
|
|
|
return ssl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) throws IOException {
|
2016-02-19 12:16:34 +00:00
|
|
|
|
Socket ssl = delegate.createSocket(address, port, localAddress, localPort);
|
2015-10-19 13:09:42 +00:00
|
|
|
|
if (ssl instanceof SSLSocket)
|
|
|
|
|
upgradeTLS((SSLSocket)ssl);
|
|
|
|
|
return ssl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|