From 3c7ba046d4923fbbe5a8f74ebb89c7766192f529 Mon Sep 17 00:00:00 2001 From: ssrlive <30760636+ssrlive@users.noreply.github.com> Date: Fri, 7 Apr 2023 14:50:43 +0800 Subject: [PATCH] Make overtls working. --- .../github/shadowsocks/bg/OverTlsWrapper.kt | 15 ++++++ .../github/shadowsocks/bg/ProxyInstance.kt | 50 +++++++++++++++---- .../github/shadowsocks/database/Profile.kt | 3 ++ 3 files changed, 59 insertions(+), 9 deletions(-) create mode 100644 core/src/main/java/com/github/shadowsocks/bg/OverTlsWrapper.kt diff --git a/core/src/main/java/com/github/shadowsocks/bg/OverTlsWrapper.kt b/core/src/main/java/com/github/shadowsocks/bg/OverTlsWrapper.kt new file mode 100644 index 000000000..39a3a3897 --- /dev/null +++ b/core/src/main/java/com/github/shadowsocks/bg/OverTlsWrapper.kt @@ -0,0 +1,15 @@ +package com.github.shadowsocks.bg + +import android.net.VpnService + +object OverTlsWrapper { + init { + System.loadLibrary("overtls") + } + + @JvmStatic + external fun runClient(vpnService: VpnService, cofigPath: String, statPath: String): Int + + @JvmStatic + external fun stopClient(): Int +} diff --git a/core/src/main/java/com/github/shadowsocks/bg/ProxyInstance.kt b/core/src/main/java/com/github/shadowsocks/bg/ProxyInstance.kt index c7e76adaf..10fce9365 100644 --- a/core/src/main/java/com/github/shadowsocks/bg/ProxyInstance.kt +++ b/core/src/main/java/com/github/shadowsocks/bg/ProxyInstance.kt @@ -74,7 +74,9 @@ class ProxyInstance(val profile: Profile, private val route: String = profile.ro * Sensitive shadowsocks configuration file requires extra protection. It may be stored in encrypted storage or * device storage, depending on which is currently available. */ - fun start(service: BaseService.Interface, stat: File, configFile: File, extraFlag: String? = null) { + fun start( + service: BaseService.Interface, stat: File, configFile: File, extraFlag: String? = null + ) { trafficMonitor = TrafficMonitor(stat) this.configFile = configFile @@ -83,10 +85,10 @@ class ProxyInstance(val profile: Profile, private val route: String = profile.ro configFile.writeText(config.toString()) val cmd = arrayListOf( - File((service as Context).applicationInfo.nativeLibraryDir, Executable.SSR_CLIENT).absolutePath, - "-V", - "-S", stat.absolutePath, - "-c", configFile.absolutePath) + File( + (service as Context).applicationInfo.nativeLibraryDir, Executable.SSR_CLIENT + ).absolutePath, "-V", "-S", stat.absolutePath, "-c", configFile.absolutePath + ) if (extraFlag != null) cmd.add(extraFlag) if (route != Acl.ALL) { @@ -97,7 +99,7 @@ class ProxyInstance(val profile: Profile, private val route: String = profile.ro if (DataStore.tcpFastOpen) cmd += "--fast-open" if (BuildConfig.DEBUG) cmd += "-v" - myThread = SsrClientThread(cmd) + myThread = SsrClientThread(service as VpnService, profile.isOverTLS(), cmd) myThread?.start() } @@ -117,19 +119,49 @@ class ProxyInstance(val profile: Profile, private val route: String = profile.ro configFile = null } - internal class SsrClientThread(cmd: ArrayList?) : Thread() { + internal class SsrClientThread( + vpnService: VpnService, isOverTls: Boolean, cmd: ArrayList? + ) : Thread() { private var cmd: ArrayList? = null + private var vpnService: VpnService? = null + private var isOverTls: Boolean = false + init { this.cmd = cmd + this.vpnService = vpnService + this.isOverTls = isOverTls + } + + fun configPath(): String { + val index = cmd?.indexOfFirst { it == "-c" } + return cmd?.get(index?.plus(1) ?: -1).toString() + } + + fun statPath(): String { + val v = cmd?.indexOfFirst { it == "-V" } ?: -1 + val index = cmd?.indexOf("-S") + if (v >= 0) { + return cmd?.get(index?.plus(1) ?: -1).toString() + } else { + return "" + } } override fun run() { super.run() - cmd?.let { SsrClientWrapper.runSsrClient(it) } + if (isOverTls) { + vpnService?.let { OverTlsWrapper.runClient(it, configPath(), statPath()) } + } else { + cmd?.let { SsrClientWrapper.runSsrClient(it) } + } } fun terminate() { - SsrClientWrapper.stopSsrClient() + if (isOverTls) { + OverTlsWrapper.stopClient() + } else { + SsrClientWrapper.stopSsrClient() + } } } } diff --git a/core/src/main/java/com/github/shadowsocks/database/Profile.kt b/core/src/main/java/com/github/shadowsocks/database/Profile.kt index 56ae1c9f4..03d547b65 100644 --- a/core/src/main/java/com/github/shadowsocks/database/Profile.kt +++ b/core/src/main/java/com/github/shadowsocks/database/Profile.kt @@ -446,6 +446,9 @@ data class Profile( } } + fun isOverTLS() : Boolean = + over_tls_enable && method == "none" && obfs == "plain" && protocol == "origin" + fun toJson(profiles: LongSparseArray? = null): JSONObject = JSONObject().apply { put("server", host) put("server_port", remotePort)