123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- From edf4337158df11da3b6ef6d30050e2441cfeafeb Mon Sep 17 00:00:00 2001
- From: Cecylia Bocovich <cohosh@torproject.org>
- Date: Thu, 13 Oct 2022 10:20:59 -0400
- Subject: [PATCH] Bug 41361: Add conjure support
- ---
- android/build.gradle | 3 +++
- .../thali/toronionproxy/TorConfigBuilder.java | 18 ++++++++++++++----
- 2 files changed, 17 insertions(+), 4 deletions(-)
- diff --git a/android/build.gradle b/android/build.gradle
- index 2392731..b1aca0a 100644
- --- a/android/build.gradle
- +++ b/android/build.gradle
- @@ -96,6 +96,9 @@ task copyPluggableTransports(type: Copy) {
- rename { filename ->
- filename.replace 'snowflake-client', 'libSnowflake.so'
- }
- + rename { filename ->
- + filename.replace 'conjure-client', 'libConjure.so'
- + }
- }
-
- gradle.projectsEvaluated {
- diff --git a/universal/src/main/java/com/msopentech/thali/toronionproxy/TorConfigBuilder.java b/universal/src/main/java/com/msopentech/thali/toronionproxy/TorConfigBuilder.java
- index cc10783..c7e20c0 100644
- --- a/universal/src/main/java/com/msopentech/thali/toronionproxy/TorConfigBuilder.java
- +++ b/universal/src/main/java/com/msopentech/thali/toronionproxy/TorConfigBuilder.java
- @@ -109,8 +109,8 @@ public final class TorConfigBuilder {
- return this;
- }
-
- - public TorConfigBuilder configurePluggableTransportsFromSettings(File pluggableTransportObfs, File pluggableTransportSnow) throws IOException {
- - if (pluggableTransportObfs == null || pluggableTransportSnow == null) {
- + public TorConfigBuilder configurePluggableTransportsFromSettings(File pluggableTransportObfs, File pluggableTransportSnow, File pluggableTransportConjure) throws IOException {
- + if (pluggableTransportObfs == null || pluggableTransportSnow == null || pluggableTransportConjure == null) {
- return this;
- }
-
- @@ -124,6 +124,11 @@ public final class TorConfigBuilder {
- .getCanonicalPath());
- }
-
- + if (!pluggableTransportConjure.exists()) {
- + throw new IOException("Conjure binary does not exist: " + pluggableTransportConjure
- + .getCanonicalPath());
- + }
- +
- if (!pluggableTransportObfs.canExecute()) {
- throw new IOException("Obfs4proxy binary is not executable: " + pluggableTransportObfs
- .getCanonicalPath());
- @@ -134,8 +139,12 @@ public final class TorConfigBuilder {
- .getCanonicalPath());
- }
-
- + if (!pluggableTransportConjure.canExecute()) {
- + throw new IOException("Conjure binary is not executable: " + pluggableTransportConjure
- + .getCanonicalPath());
- + }
-
- - transportPlugin(pluggableTransportObfs.getCanonicalPath(), pluggableTransportSnow.getCanonicalPath());
- + transportPlugin(pluggableTransportObfs.getCanonicalPath(), pluggableTransportSnow.getCanonicalPath(), pluggableTransportConjure.getCanonicalPath());
- return this;
- }
-
- @@ -502,9 +511,10 @@ public final class TorConfigBuilder {
- return transPort(settings.transPort());
- }
-
- - public TorConfigBuilder transportPlugin(String obfsPath, String snowPath) {
- + public TorConfigBuilder transportPlugin(String obfsPath, String snowPath, String conjurePath) {
- buffer.append("ClientTransportPlugin meek_lite,obfs3,obfs4 exec ").append(obfsPath).append('\n');
- buffer.append("ClientTransportPlugin snowflake exec ").append(snowPath).append(" -url https://snowflake-broker.torproject.net.global.prod.fastly.net/ -front cdn.sstatic.net -ice stun:stun.l.google.com:19302,stun:stun.voip.blackberry.com:3478,stun:stun.altar.com.pl:3478,stun:stun.antisip.com:3478,stun:stun.bluesip.net:3478,stun:stun.dus.net:3478,stun:stun.epygi.com:3478,stun:stun.sonetel.com:3478,stun:stun.sonetel.net:3478,stun:stun.stunprotocol.org:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.voys.nl:3478\n");
- + buffer.append("ClientTransportPlugin conjure exec ").append(conjurePath).append(" -registerURL https://registration.refraction.network/api\n");
- return this;
- }
-
- --
- 2.37.2
|