package be.mygod.vpnhotspot.net import android.annotation.TargetApi import android.net.LinkProperties import android.os.Build import androidx.annotation.RequiresApi import be.mygod.vpnhotspot.App.Companion.app import be.mygod.vpnhotspot.R import be.mygod.vpnhotspot.net.monitor.FallbackUpstreamMonitor import be.mygod.vpnhotspot.net.monitor.IpNeighbourMonitor import be.mygod.vpnhotspot.net.monitor.TrafficRecorder import be.mygod.vpnhotspot.net.monitor.UpstreamMonitor import be.mygod.vpnhotspot.room.AppDatabase import be.mygod.vpnhotspot.util.RootSession import be.mygod.vpnhotspot.widget.SmartSnackbar import timber.log.Timber import java.io.IOException import java.net.Inet4Address import java.net.InetAddress import java.net.NetworkInterface import java.net.SocketException /** * A transaction wrapper that helps set up routing environment. * * Once revert is called, this object no longer serves any purpose. */ class Routing(private val caller: Any, private val downstream: String, ifaceHandler: (NetworkInterface) -> Unit) : IpNeighbourMonitor.Callback { companion object { /** * Since Android 5.0, RULE_PRIORITY_TETHERING = 18000. * This also works for Wi-Fi direct where there's no rule at 18000. * * We override system tethering rules by adding our own rules at higher priority. * * Source: https://android.googlesource.com/platform/system/netd/+/b9baf26/server/RouteController.cpp#65 */ private const val RULE_PRIORITY_DNS = 17700 private const val RULE_PRIORITY_UPSTREAM = 17800 private const val RULE_PRIORITY_UPSTREAM_FALLBACK = 17900 private const val RULE_PRIORITY_UPSTREAM_DISABLE_SYSTEM = 17980 /** * -w is not supported on 7.1-. * Fortunately there also isn't a time limit for starting a foreground service back in 7.1-. * * Source: https://android.googlesource.com/platform/external/iptables/+/android-5.0.0_r1/iptables/iptables.c#1574 */ val IPTABLES = if (Build.VERSION.SDK_INT >= 26) "iptables -w 1" else "iptables -w" val IP6TABLES = if (Build.VERSION.SDK_INT >= 26) "ip6tables -w 1" else "ip6tables -w" fun clean() { TrafficRecorder.clean() RootSession.use { it.execQuiet("$IPTABLES -t nat -F PREROUTING") it.execQuiet("while $IPTABLES -D FORWARD -j vpnhotspot_fwd; do done") it.execQuiet("$IPTABLES -F vpnhotspot_fwd") it.execQuiet("$IPTABLES -X vpnhotspot_fwd") it.execQuiet("$IPTABLES -F vpnhotspot_acl") it.execQuiet("$IPTABLES -X vpnhotspot_acl") it.execQuiet("while $IPTABLES -t nat -D POSTROUTING -j vpnhotspot_masquerade; do done") it.execQuiet("$IPTABLES -t nat -F vpnhotspot_masquerade") it.execQuiet("$IPTABLES -t nat -X vpnhotspot_masquerade") it.execQuiet("while $IP6TABLES -D INPUT -j vpnhotspot_filter; do done") it.execQuiet("while $IP6TABLES -D FORWARD -j vpnhotspot_filter; do done") it.execQuiet("while $IP6TABLES -D OUTPUT -j vpnhotspot_filter; do done") it.execQuiet("$IP6TABLES -F vpnhotspot_filter") it.execQuiet("$IP6TABLES -X vpnhotspot_filter") it.execQuiet("while ip rule del priority $RULE_PRIORITY_DNS; do done") it.execQuiet("while ip rule del priority $RULE_PRIORITY_UPSTREAM; do done") it.execQuiet("while ip rule del priority $RULE_PRIORITY_UPSTREAM_FALLBACK; do done") it.execQuiet("while ip rule del priority $RULE_PRIORITY_UPSTREAM_DISABLE_SYSTEM; do done") } } private fun RootSession.Transaction.iptables(command: String, revert: String) { val result = execQuiet(command, revert) val message = RootSession.checkOutput(command, result, err = false) if (result.err.isNotEmpty()) Timber.i(message) // busy wait message } private fun RootSession.Transaction.iptablesAdd(content: String, table: String = "filter") = iptables("$IPTABLES -t $table -A $content", "$IPTABLES -t $table -D $content") private fun RootSession.Transaction.iptablesInsert(content: String, table: String = "filter") = iptables("$IPTABLES -t $table -I $content", "$IPTABLES -t $table -D $content") private fun RootSession.Transaction.ip6tablesInsert(content: String) = iptables("$IP6TABLES -I $content", "$IP6TABLES -D $content") private fun RootSession.Transaction.ndc(name: String, command: String, revert: String? = null) { val result = execQuiet(command, revert) val log = RootSession.checkOutput(command, result, result.out.lastOrNull() != "200 0 $name operation succeeded") if (result.out.size > 1) Timber.i(log) } } private fun RootSession.Transaction.ipRule(add: String, priority: Int, rule: String = "", del: String = add) = exec("ip rule add $rule iif $downstream $add priority $priority", "ip rule del $rule iif $downstream $del priority $priority") private fun RootSession.Transaction.ipRuleLookup(upstream: String, priority: Int, rule: String = "") = // by the time stopScript is called, table entry for upstream may already get removed ipRule("lookup $upstream", priority, rule, "") enum class MasqueradeMode { None, Simple, /** * Netd does not support multiple tethering upstream below Android 9, which we heavily depend on. * * Source: https://android.googlesource.com/platform/system/netd/+/3b47c793ff7ade843b1d85a9be8461c3b4dc693e */ @RequiresApi(28) Netd, } class InterfaceNotFoundException(override val cause: Throwable) : SocketException() { override val message: String get() = app.getString(R.string.exception_interface_not_found) } private val hostAddress = try { val iface = NetworkInterface.getByName(downstream) ?: error("iface not found") ifaceHandler(iface) val addresses = iface.interfaceAddresses!!.filter { it.address is Inet4Address } if (addresses.size > 1) error("More than one addresses was found: $addresses") addresses.first() } catch (e: Exception) { throw InterfaceNotFoundException(e) } private val hostSubnet = "${hostAddress.address.hostAddress}/${hostAddress.networkPrefixLength}" private val transaction = RootSession.beginTransaction() @Volatile private var stopped = false private var masqueradeMode = MasqueradeMode.None private val upstreams = HashSet() private open inner class Upstream(val priority: Int) : UpstreamMonitor.Callback { /** * The only case when upstream is null is on API 23- and we are using system default rules. */ inner class Subrouting(priority: Int, val upstream: String? = null) { val transaction = RootSession.beginTransaction().safeguard { if (upstream != null) ipRuleLookup(upstream, priority) @TargetApi(28) when (masqueradeMode) { MasqueradeMode.None -> { } // nothing to be done here MasqueradeMode.Simple -> { // note: specifying -i wouldn't work for POSTROUTING iptablesAdd(if (upstream == null) "vpnhotspot_masquerade -s $hostSubnet -j MASQUERADE" else "vpnhotspot_masquerade -s $hostSubnet -o $upstream -j MASQUERADE", "nat") } MasqueradeMode.Netd -> { check(upstream != null) // fallback is only needed for repeater on API 23 < 28 /** * 0 means that there are no interface addresses coming after, which is unused anyway. * * https://android.googlesource.com/platform/frameworks/base/+/android-5.0.0_r1/services/core/java/com/android/server/NetworkManagementService.java#1251 * https://android.googlesource.com/platform/system/netd/+/android-5.0.0_r1/server/CommandListener.cpp#638 */ ndc("Nat", "ndc nat enable $downstream $upstream 0") } } } } var subrouting: Subrouting? = null var dns: List = emptyList() override fun onAvailable(ifname: String, properties: LinkProperties) = synchronized(this@Routing) { if (stopped) return val subrouting = subrouting when { subrouting != null -> check(subrouting.upstream == ifname) { "${subrouting.upstream} != $ifname" } !upstreams.add(ifname) -> return else -> this.subrouting = try { Subrouting(priority, ifname) } catch (e: Exception) { SmartSnackbar.make(e).show() Timber.w(e) null } } dns = properties.dnsServers updateDnsRoute() } override fun onLost() = synchronized(this@Routing) { if (stopped) return val subrouting = subrouting ?: return // we could be removing fallback subrouting which no collision could ever happen, check before removing subrouting.upstream?.let { check(upstreams.remove(it)) } subrouting.transaction.revert() this.subrouting = null dns = emptyList() updateDnsRoute() } } private val fallbackUpstream = object : Upstream(RULE_PRIORITY_UPSTREAM_FALLBACK) { var fallbackInactive = true override fun onFallback() = synchronized(this@Routing) { if (stopped) return fallbackInactive = false check(subrouting == null) subrouting = try { Subrouting(priority) } catch (e: Exception) { SmartSnackbar.make(e).show() Timber.w(e) null } updateDnsRoute() } } private val upstream = Upstream(RULE_PRIORITY_UPSTREAM) private var disableSystem: RootSession.Transaction? = null private inner class Client(private val ip: Inet4Address, mac: Long) : AutoCloseable { private val transaction = RootSession.beginTransaction().safeguard { val address = ip.hostAddress iptablesInsert("vpnhotspot_acl -i $downstream -s $address -j ACCEPT") iptablesInsert("vpnhotspot_acl -o $downstream -d $address -j ACCEPT") } init { try { TrafficRecorder.register(ip, downstream, mac) } catch (e: Exception) { close() throw e } } override fun close() { TrafficRecorder.unregister(ip, downstream) transaction.revert() } } private val clients = mutableMapOf() override fun onIpNeighbourAvailable(neighbours: Collection) = synchronized(this) { if (stopped) return val toRemove = HashSet(clients.keys) for (neighbour in neighbours) { if (neighbour.dev != downstream || neighbour.ip !is Inet4Address || AppDatabase.instance.clientRecordDao.lookupOrDefaultBlocking(neighbour.lladdr).blocked) continue toRemove.remove(neighbour.ip) try { clients.computeIfAbsent(neighbour.ip) { Client(neighbour.ip, neighbour.lladdr) } } catch (e: Exception) { Timber.w(e) SmartSnackbar.make(e).show() } } if (toRemove.isNotEmpty()) { TrafficRecorder.update() // record stats before removing rules to prevent stats losing for (address in toRemove) clients.remove(address)!!.close() } } /** * This command is available since API 23 and also handles IPv6 forwarding. * https://android.googlesource.com/platform/system/netd/+/android-6.0.0_r1/server/CommandListener.cpp#527 * * `requester` set by system service is assumed to be `tethering`. * https://android.googlesource.com/platform/frameworks/base/+/bd249a19bba38a29e617aa849b2f42c3c281eff5/services/core/java/com/android/server/NetworkManagementService.java#1241 * * The fallback approach is consistent with legacy system's IP forwarding approach, * but may be broken when system tethering shutdown before local-only interfaces. */ fun ipForward() { if (Build.VERSION.SDK_INT >= 23) try { transaction.ndc("ipfwd", "ndc ipfwd enable vpnhotspot_$downstream", "ndc ipfwd disable vpnhotspot_$downstream") return } catch (e: RootSession.UnexpectedOutputException) { Timber.w(IOException("ndc ipfwd enable failure", e)) } transaction.exec("echo 1 >/proc/sys/net/ipv4/ip_forward") } fun disableIpv6() { transaction.execQuiet("$IP6TABLES -N vpnhotspot_filter") transaction.ip6tablesInsert("INPUT -j vpnhotspot_filter") transaction.ip6tablesInsert("FORWARD -j vpnhotspot_filter") transaction.ip6tablesInsert("OUTPUT -j vpnhotspot_filter") transaction.ip6tablesInsert("vpnhotspot_filter -i $downstream -j REJECT") transaction.ip6tablesInsert("vpnhotspot_filter -o $downstream -j REJECT") } fun forward() { transaction.execQuiet("$IPTABLES -N vpnhotspot_fwd") transaction.execQuiet("$IPTABLES -N vpnhotspot_acl") transaction.iptablesInsert("FORWARD -j vpnhotspot_fwd") transaction.iptablesInsert("vpnhotspot_fwd -i $downstream -j vpnhotspot_acl") transaction.iptablesInsert("vpnhotspot_fwd -o $downstream -m state --state ESTABLISHED,RELATED -j vpnhotspot_acl") transaction.iptablesAdd("vpnhotspot_fwd -i $downstream ! -o $downstream -j REJECT") // ensure blocking works // the real forwarding filters will be added in Subrouting when clients are connected } fun masquerade(mode: MasqueradeMode) { masqueradeMode = mode if (mode == MasqueradeMode.Simple) { transaction.execQuiet("$IPTABLES -t nat -N vpnhotspot_masquerade") transaction.iptablesInsert("POSTROUTING -j vpnhotspot_masquerade", "nat") // further rules are added when upstreams are found } } private inner class DnsRoute(val upstream: String, val dns: String) { val transaction = RootSession.beginTransaction().safeguard { val hostAddress = hostAddress.address.hostAddress ipRuleLookup(upstream, RULE_PRIORITY_DNS, "to $dns") iptablesAdd("PREROUTING -i $downstream -p tcp -d $hostAddress --dport 53 -j DNAT --to-destination $dns", "nat") iptablesAdd("PREROUTING -i $downstream -p udp -d $hostAddress --dport 53 -j DNAT --to-destination $dns", "nat") } } private var currentDns: DnsRoute? = null private fun updateDnsRoute() { val selected = sequenceOf(upstream, fallbackUpstream).flatMap { upstream -> val ifname = upstream.subrouting?.upstream if (ifname == null) emptySequence() else upstream.dns.asSequence().map { ifname to it } }.firstOrNull { it.second is Inet4Address } val upstream = selected?.first var dns = selected?.second?.hostAddress if (dns.isNullOrBlank()) dns = null if (upstream != currentDns?.upstream || dns != currentDns?.dns) { currentDns?.transaction?.revert() currentDns = if (upstream == null || dns == null) null else try { DnsRoute(upstream, dns) } catch (e: RuntimeException) { Timber.w(e) SmartSnackbar.make(e).show() null } } } fun stop() { stopped = true IpNeighbourMonitor.unregisterCallback(this) FallbackUpstreamMonitor.unregisterCallback(fallbackUpstream) UpstreamMonitor.unregisterCallback(upstream) Timber.i("Stopped routing for $downstream by $caller") } fun commit() { transaction.commit() Timber.i("Started routing for $downstream by $caller") FallbackUpstreamMonitor.registerCallback(fallbackUpstream) if (fallbackUpstream.fallbackInactive) disableSystem = RootSession.beginTransaction().safeguard { ipRule("unreachable", RULE_PRIORITY_UPSTREAM_DISABLE_SYSTEM) } UpstreamMonitor.registerCallback(upstream) IpNeighbourMonitor.registerCallback(this) } fun revert() { stop() TrafficRecorder.update() // record stats before exiting to prevent stats losing synchronized(this) { clients.values.forEach { it.close() } } currentDns?.transaction?.revert() disableSystem?.revert() fallbackUpstream.subrouting?.transaction?.revert() upstream.subrouting?.transaction?.revert() transaction.revert() } }