2017-05-05 08:55:34 +10:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is part of Tusky.
|
|
|
|
*
|
|
|
|
* Tusky is free software: you can redistribute it and/or modify it under the terms of the GNU
|
|
|
|
* Lesser General Public License as published by the Free Software Foundation, either version 3 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License along with Tusky. If
|
|
|
|
* not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.util;
|
|
|
|
|
2018-04-23 01:20:01 +10:00
|
|
|
import android.content.Context;
|
2017-12-27 07:45:08 +11:00
|
|
|
import android.content.SharedPreferences;
|
2017-05-05 08:55:34 +10:00
|
|
|
import android.os.Build;
|
2018-04-23 01:20:01 +10:00
|
|
|
import android.preference.PreferenceManager;
|
2017-05-05 08:55:34 +10:00
|
|
|
import android.support.annotation.NonNull;
|
2017-05-24 05:34:31 +10:00
|
|
|
import android.util.Log;
|
2017-05-05 08:55:34 +10:00
|
|
|
|
|
|
|
import com.keylesspalace.tusky.BuildConfig;
|
|
|
|
|
2017-12-27 07:45:08 +11:00
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
import java.net.Proxy;
|
2017-05-05 08:55:34 +10:00
|
|
|
import java.security.KeyManagementException;
|
|
|
|
import java.security.KeyStore;
|
|
|
|
import java.security.KeyStoreException;
|
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
2017-11-07 23:27:35 +11:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2017-05-05 08:55:34 +10:00
|
|
|
|
|
|
|
import javax.net.ssl.SSLContext;
|
|
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
import javax.net.ssl.TrustManager;
|
|
|
|
import javax.net.ssl.TrustManagerFactory;
|
|
|
|
import javax.net.ssl.X509TrustManager;
|
|
|
|
|
2018-04-23 01:20:01 +10:00
|
|
|
import okhttp3.Cache;
|
2017-05-05 08:55:34 +10:00
|
|
|
import okhttp3.ConnectionSpec;
|
|
|
|
import okhttp3.Interceptor;
|
|
|
|
import okhttp3.OkHttpClient;
|
|
|
|
import okhttp3.Request;
|
|
|
|
|
|
|
|
public class OkHttpUtils {
|
2017-07-28 12:03:45 +10:00
|
|
|
private static final String TAG = "OkHttpUtils"; // logging tag
|
2017-05-05 08:55:34 +10:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes a Builder with the maximum range of TLS versions and cipher suites enabled.
|
2017-07-28 12:03:45 +10:00
|
|
|
* <p>
|
2017-05-05 08:55:34 +10:00
|
|
|
* It first tries the "approved" list of cipher suites given in OkHttp (the default in
|
|
|
|
* ConnectionSpec.MODERN_TLS) and if that doesn't work falls back to the set of ALL enabled,
|
|
|
|
* then falls back to plain http.
|
2017-07-28 12:03:45 +10:00
|
|
|
* <p>
|
2017-05-05 08:55:34 +10:00
|
|
|
* API level 24 has a regression in elliptic curves where it only supports secp256r1, so this
|
|
|
|
* first tries a fallback without elliptic curves at all, and then tries them after.
|
2017-07-28 12:03:45 +10:00
|
|
|
* <p>
|
2017-05-05 08:55:34 +10:00
|
|
|
* TLS 1.1 and 1.2 have to be manually enabled on API levels 16-20.
|
|
|
|
*/
|
|
|
|
@NonNull
|
2018-04-23 01:20:01 +10:00
|
|
|
public static OkHttpClient.Builder getCompatibleClientBuilder(@NonNull Context context) {
|
|
|
|
|
|
|
|
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
|
|
|
|
|
2017-12-27 07:45:08 +11:00
|
|
|
boolean httpProxyEnabled = preferences.getBoolean("httpProxyEnabled", false);
|
|
|
|
String httpServer = preferences.getString("httpProxyServer", "");
|
2018-04-30 16:32:43 +10:00
|
|
|
int httpPort;
|
|
|
|
try {
|
|
|
|
httpPort = Integer.parseInt(preferences.getString("httpProxyPort", "-1"));
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
// user has entered wrong port, fall back to no proxy
|
|
|
|
httpPort = -1;
|
|
|
|
}
|
2017-12-27 07:45:08 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
ConnectionSpec fallback = new ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
|
|
|
|
.allEnabledCipherSuites()
|
|
|
|
.supportsTlsExtensions(true)
|
|
|
|
.build();
|
|
|
|
|
|
|
|
List<ConnectionSpec> specList = new ArrayList<>();
|
|
|
|
specList.add(ConnectionSpec.MODERN_TLS);
|
|
|
|
addNougatFixConnectionSpec(specList);
|
|
|
|
specList.add(fallback);
|
|
|
|
specList.add(ConnectionSpec.CLEARTEXT);
|
|
|
|
|
2018-07-15 01:12:57 +10:00
|
|
|
int cacheSize = 25*1024*1024; // 25 MiB
|
2018-04-23 01:20:01 +10:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
OkHttpClient.Builder builder = new OkHttpClient.Builder()
|
|
|
|
.addInterceptor(getUserAgentInterceptor())
|
2017-11-07 23:27:35 +11:00
|
|
|
.readTimeout(30, TimeUnit.SECONDS)
|
|
|
|
.writeTimeout(30, TimeUnit.SECONDS)
|
2018-04-23 01:20:01 +10:00
|
|
|
.cache(new Cache(context.getCacheDir(), cacheSize))
|
2017-05-05 08:55:34 +10:00
|
|
|
.connectionSpecs(specList);
|
|
|
|
|
2017-12-27 07:45:08 +11:00
|
|
|
if (httpProxyEnabled && !httpServer.isEmpty() && (httpPort > 0) && (httpPort < 65535)) {
|
|
|
|
InetSocketAddress address = InetSocketAddress.createUnresolved(httpServer, httpPort);
|
|
|
|
builder.proxy(new Proxy(Proxy.Type.HTTP, address));
|
|
|
|
}
|
|
|
|
|
2018-09-17 02:54:12 +10:00
|
|
|
return builder;
|
2017-05-05 08:55:34 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a custom User-Agent that contains Tusky & Android Version to all requests
|
|
|
|
* Example:
|
|
|
|
* User-Agent: Tusky/1.1.2 Android/5.0.2
|
|
|
|
*/
|
|
|
|
@NonNull
|
|
|
|
private static Interceptor getUserAgentInterceptor() {
|
2018-02-01 07:57:50 +11:00
|
|
|
return chain -> {
|
|
|
|
Request originalRequest = chain.request();
|
|
|
|
Request requestWithUserAgent = originalRequest.newBuilder()
|
|
|
|
.header("User-Agent", "Tusky/"+ BuildConfig.VERSION_NAME+" Android/"+Build.VERSION.RELEASE)
|
|
|
|
.build();
|
|
|
|
return chain.proceed(requestWithUserAgent);
|
2017-05-05 08:55:34 +10:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Android version Nougat has a regression where elliptic curve cipher suites are supported, but
|
|
|
|
* only the curve secp256r1 is allowed. So, first it's best to just disable all elliptic
|
|
|
|
* ciphers, try the connection, and fall back to the all cipher suites enabled list after.
|
|
|
|
*/
|
|
|
|
private static void addNougatFixConnectionSpec(List<ConnectionSpec> specList) {
|
|
|
|
if (Build.VERSION.SDK_INT != Build.VERSION_CODES.N) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SSLSocketFactory socketFactory;
|
|
|
|
try {
|
|
|
|
TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(
|
|
|
|
TrustManagerFactory.getDefaultAlgorithm());
|
|
|
|
trustManagerFactory.init((KeyStore) null);
|
|
|
|
TrustManager[] trustManagers = trustManagerFactory.getTrustManagers();
|
|
|
|
if (trustManagers.length != 1 || !(trustManagers[0] instanceof X509TrustManager)) {
|
|
|
|
throw new IllegalStateException("Unexpected default trust managers:"
|
|
|
|
+ Arrays.toString(trustManagers));
|
|
|
|
}
|
|
|
|
|
|
|
|
X509TrustManager trustManager = (X509TrustManager) trustManagers[0];
|
|
|
|
|
|
|
|
SSLContext sslContext = SSLContext.getInstance("TLS");
|
|
|
|
sslContext.init(null, new TrustManager[] { trustManager }, null);
|
|
|
|
socketFactory = sslContext.getSocketFactory();
|
|
|
|
} catch (NoSuchAlgorithmException|KeyStoreException|KeyManagementException e) {
|
|
|
|
Log.e(TAG, "Failed obtaining the SSL socket factory.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
String[] cipherSuites = socketFactory.getDefaultCipherSuites();
|
|
|
|
ArrayList<String> allowedList = new ArrayList<>();
|
|
|
|
for (String suite : cipherSuites) {
|
|
|
|
if (!suite.contains("ECDH")) {
|
|
|
|
allowedList.add(suite);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ConnectionSpec spec = new ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
|
|
|
|
.cipherSuites(allowedList.toArray(new String[0]))
|
|
|
|
.supportsTlsExtensions(true)
|
|
|
|
.build();
|
|
|
|
specList.add(spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|