mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-16 21:10:57 +08:00
705 lines
24 KiB
Java
705 lines
24 KiB
Java
/*
|
|
* This file is part of PCAPdroid.
|
|
*
|
|
* PCAPdroid is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* PCAPdroid 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with PCAPdroid. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Copyright 2020-21 - Emanuele Faranda
|
|
*/
|
|
|
|
package com.emanuelef.remote_capture;
|
|
|
|
import android.annotation.TargetApi;
|
|
import android.app.Notification;
|
|
import android.app.NotificationChannel;
|
|
import android.app.NotificationManager;
|
|
import android.app.PendingIntent;
|
|
import android.app.Service;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.SharedPreferences;
|
|
import android.content.pm.PackageManager;
|
|
import android.net.ConnectivityManager;
|
|
import android.net.Network;
|
|
import android.net.NetworkCapabilities;
|
|
import android.net.NetworkRequest;
|
|
import android.net.Uri;
|
|
import android.net.VpnService;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import android.os.ParcelFileDescriptor;
|
|
import android.util.Log;
|
|
import android.widget.Toast;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.RequiresApi;
|
|
import androidx.core.app.NotificationCompat;
|
|
import androidx.core.app.NotificationManagerCompat;
|
|
import androidx.core.content.ContextCompat;
|
|
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
|
|
import androidx.preference.PreferenceManager;
|
|
|
|
import com.emanuelef.remote_capture.activities.MainActivity;
|
|
import com.emanuelef.remote_capture.model.AppDescriptor;
|
|
import com.emanuelef.remote_capture.model.ConnectionDescriptor;
|
|
import com.emanuelef.remote_capture.model.Prefs;
|
|
import com.emanuelef.remote_capture.model.VPNStats;
|
|
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
import java.net.InetAddress;
|
|
import java.net.InetSocketAddress;
|
|
import java.net.UnknownHostException;
|
|
|
|
public class CaptureService extends VpnService implements Runnable {
|
|
private static final String TAG = "CaptureService";
|
|
private static final String VpnSessionName = "PCAPdroid VPN";
|
|
private static final String NOTIFY_CHAN_VPNSERVICE = "VPNService";
|
|
private static final int NOTIFY_ID_VPNSERVICE = 1;
|
|
private ParcelFileDescriptor mParcelFileDescriptor = null;
|
|
private Handler mHandler;
|
|
private Thread mThread;
|
|
private String vpn_ipv4;
|
|
private String vpn_dns;
|
|
private String dns_server;
|
|
private String collector_address;
|
|
private String socks5_proxy_address;
|
|
private Prefs.DumpMode dump_mode;
|
|
private boolean socks5_enabled;
|
|
private boolean ipv6_enabled;
|
|
private boolean root_capture;
|
|
private int collector_port;
|
|
private int http_server_port;
|
|
private int socks5_proxy_port;
|
|
private long last_bytes;
|
|
private int last_connections;
|
|
private static CaptureService INSTANCE;
|
|
private String app_filter;
|
|
private int app_filter_uid;
|
|
private HTTPServer mHttpServer;
|
|
private OutputStream mOutputStream;
|
|
private ConnectionsRegister conn_reg;
|
|
private Uri mPcapUri;
|
|
private boolean mFirstStreamWrite;
|
|
private NotificationCompat.Builder mNotificationBuilder;
|
|
private long mMonitoredNetwork;
|
|
private ConnectivityManager.NetworkCallback mNetworkCallback;
|
|
|
|
/* The maximum connections to log into the ConnectionsRegister. Older connections are dropped.
|
|
* Max Estimated max memory usage: less than 4 MB. */
|
|
public static final int CONNECTIONS_LOG_SIZE = 8192;
|
|
|
|
public static final String FALLBACK_DNS_SERVER = "8.8.8.8";
|
|
public static final String IPV6_DNS_SERVER = "2001:4860:4860::8888";
|
|
|
|
/* The IP address of the virtual network interface */
|
|
public static final String VPN_IP_ADDRESS = "10.215.173.1";
|
|
public static final String VPN_IP6_ADDRESS = "fd00:2:fd00:1:fd00:1:fd00:1";
|
|
|
|
/* The DNS server IP address to use to internally analyze the DNS requests.
|
|
* It must be in the same subnet of the VPN network interface.
|
|
* After the analysis, requests will be routed to the primary DNS server. */
|
|
public static final String VPN_VIRTUAL_DNS_SERVER = "10.215.173.2";
|
|
|
|
public static final String ACTION_STATS_DUMP = "stats_dump";
|
|
public static final String ACTION_SERVICE_STATUS = "service_status";
|
|
public static final String SERVICE_STATUS_KEY = "status";
|
|
public static final String SERVICE_STATUS_STARTED = "started";
|
|
public static final String SERVICE_STATUS_STOPPED = "stopped";
|
|
|
|
static {
|
|
/* Load native library */
|
|
System.loadLibrary("vpnproxy-jni");
|
|
}
|
|
|
|
@Override
|
|
protected void attachBaseContext(Context base) {
|
|
super.attachBaseContext(base.createConfigurationContext(Utils.getLocalizedConfig(base)));
|
|
}
|
|
|
|
@Override
|
|
public void onCreate() {
|
|
Log.d(CaptureService.TAG, "onCreate");
|
|
INSTANCE = this;
|
|
super.onCreate();
|
|
}
|
|
|
|
@Override
|
|
public int onStartCommand(Intent intent, int flags, int startId) {
|
|
Context app_ctx = getApplicationContext();
|
|
|
|
mHandler = new Handler(Looper.getMainLooper());
|
|
|
|
if (intent == null) {
|
|
Log.d(CaptureService.TAG, "NULL intent onStartCommand");
|
|
return super.onStartCommand(null, flags, startId);
|
|
}
|
|
|
|
Log.d(CaptureService.TAG, "onStartCommand");
|
|
|
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
|
Bundle settings = intent.getBundleExtra("settings");
|
|
|
|
if (settings == null) {
|
|
Log.e(CaptureService.TAG, "NULL settings");
|
|
return super.onStartCommand(null, flags, startId);
|
|
}
|
|
|
|
// Retrieve DNS server
|
|
dns_server = FALLBACK_DNS_SERVER;
|
|
|
|
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
|
|
ConnectivityManager cm = (ConnectivityManager) getSystemService(Service.CONNECTIVITY_SERVICE);
|
|
Network net = cm.getActiveNetwork();
|
|
|
|
if(net != null) {
|
|
dns_server = Utils.getDnsServer(cm, net);
|
|
|
|
if(dns_server == null)
|
|
dns_server = FALLBACK_DNS_SERVER;
|
|
else {
|
|
// If the network goes offline we roll back to the fallback DNS server to
|
|
// avoid possibly using a private IP DNS server not reachable anymore
|
|
mMonitoredNetwork = net.getNetworkHandle();
|
|
registerNetworkCallbacks();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Retrieve Configuration
|
|
vpn_dns = VPN_VIRTUAL_DNS_SERVER;
|
|
vpn_ipv4 = VPN_IP_ADDRESS;
|
|
|
|
app_filter = Prefs.getAppFilter(prefs);
|
|
collector_address = Prefs.getCollectorIp(prefs);
|
|
collector_port = Prefs.getCollectorPort(prefs);
|
|
http_server_port = Prefs.getHttpServerPort(prefs);
|
|
socks5_enabled = Prefs.getTlsDecryptionEnabled(prefs); // TODO rename
|
|
socks5_proxy_address = Prefs.getSocks5ProxyAddress(prefs);
|
|
socks5_proxy_port = Prefs.getSocks5ProxyPort(prefs);
|
|
dump_mode = Prefs.getDumpMode(prefs);
|
|
ipv6_enabled = Prefs.getIPv6Enabled(prefs);
|
|
last_bytes = 0;
|
|
last_connections = 0;
|
|
root_capture = Prefs.isRootCaptureEnabled(prefs);
|
|
|
|
conn_reg = new ConnectionsRegister(CONNECTIONS_LOG_SIZE);
|
|
|
|
if(dump_mode != Prefs.DumpMode.HTTP_SERVER)
|
|
mHttpServer = null;
|
|
mOutputStream = null;
|
|
mPcapUri = null;
|
|
|
|
if(dump_mode == Prefs.DumpMode.HTTP_SERVER) {
|
|
if (mHttpServer == null)
|
|
mHttpServer = new HTTPServer(app_ctx, http_server_port);
|
|
|
|
try {
|
|
mHttpServer.startConnections();
|
|
} catch (IOException e) {
|
|
Log.e(CaptureService.TAG, "Could not start the HTTP server");
|
|
e.printStackTrace();
|
|
}
|
|
} else if(dump_mode == Prefs.DumpMode.PCAP_FILE) {
|
|
String path = settings.getString(Prefs.PREF_PCAP_URI);
|
|
|
|
if(path != null) {
|
|
mPcapUri = Uri.parse(path);
|
|
|
|
try {
|
|
Log.d(TAG, "PCAP URI: " + mPcapUri);
|
|
mOutputStream = getContentResolver().openOutputStream(mPcapUri);
|
|
mFirstStreamWrite = true;
|
|
} catch (FileNotFoundException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
if(mOutputStream == null) {
|
|
Utils.showToast(this, R.string.cannot_write_pcap_file);
|
|
return super.onStartCommand(intent, flags, startId);
|
|
}
|
|
}
|
|
|
|
if ((app_filter != null) && (!app_filter.isEmpty())) {
|
|
try {
|
|
app_filter_uid = getPackageManager().getApplicationInfo(app_filter, 0).uid;
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
e.printStackTrace();
|
|
app_filter_uid = -1;
|
|
}
|
|
} else
|
|
app_filter_uid = -1;
|
|
|
|
if(!root_capture) {
|
|
Log.i(TAG, "Using DNS server " + dns_server);
|
|
|
|
// VPN
|
|
/* In order to see the DNS packets into the VPN we must set an internal address as the DNS
|
|
* server. */
|
|
Builder builder = new Builder()
|
|
.addAddress(vpn_ipv4, 30) // using a random IP as an address is needed
|
|
.addRoute("0.0.0.0", 1)
|
|
.addRoute("128.0.0.0", 1)
|
|
.addDnsServer(vpn_dns);
|
|
|
|
if (ipv6_enabled) {
|
|
builder.addAddress(VPN_IP6_ADDRESS, 128);
|
|
|
|
// Route unicast IPv6 addresses
|
|
builder.addRoute("2000::", 3);
|
|
|
|
try {
|
|
builder.addDnsServer(InetAddress.getByName(IPV6_DNS_SERVER));
|
|
} catch (UnknownHostException e) {
|
|
Log.w(TAG, "Could not set IPv6 DNS server");
|
|
}
|
|
}
|
|
|
|
if ((app_filter != null) && (!app_filter.isEmpty())) {
|
|
Log.d(TAG, "Setting app filter: " + app_filter);
|
|
|
|
try {
|
|
// NOTE: the API requires a package name, however it is converted to a UID
|
|
// (see Vpn.java addUserToRanges). This means that vpn routing happens on a UID basis,
|
|
// not on a package-name basis!
|
|
builder.addAllowedApplication(app_filter);
|
|
} catch (PackageManager.NameNotFoundException e) {
|
|
String msg = String.format(getResources().getString(R.string.app_not_found), app_filter);
|
|
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
|
|
return super.onStartCommand(intent, flags, startId);
|
|
}
|
|
}
|
|
|
|
try {
|
|
mParcelFileDescriptor = builder.setSession(CaptureService.VpnSessionName).establish();
|
|
} catch (IllegalArgumentException | IllegalStateException e) {
|
|
Utils.showToast(this, R.string.vpn_setup_failed);
|
|
return super.onStartCommand(intent, flags, startId);
|
|
}
|
|
}
|
|
|
|
// Stop the previous session by interrupting the thread.
|
|
if (mThread != null) {
|
|
mThread.interrupt();
|
|
}
|
|
|
|
// Start a new session by creating a new thread.
|
|
mThread = new Thread(this, "CaptureService Thread");
|
|
mThread.start();
|
|
|
|
setupNotifications();
|
|
startForeground(NOTIFY_ID_VPNSERVICE, getNotification());
|
|
|
|
return START_STICKY;
|
|
//return super.onStartCommand(intent, flags, startId);
|
|
}
|
|
|
|
@Override
|
|
public void onRevoke() {
|
|
Log.d(CaptureService.TAG, "onRevoke");
|
|
stop();
|
|
|
|
super.onRevoke();
|
|
}
|
|
|
|
@Override
|
|
public void onDestroy() {
|
|
Log.d(CaptureService.TAG, "onDestroy");
|
|
stop();
|
|
INSTANCE = null;
|
|
|
|
if(mThread != null) {
|
|
mThread.interrupt();
|
|
}
|
|
if(mHttpServer != null)
|
|
mHttpServer.stop();
|
|
|
|
super.onDestroy();
|
|
}
|
|
|
|
private void setupNotifications() {
|
|
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
|
|
|
NotificationChannel chan = new NotificationChannel(NOTIFY_CHAN_VPNSERVICE,
|
|
NOTIFY_CHAN_VPNSERVICE, NotificationManager.IMPORTANCE_LOW); // low: no sound
|
|
nm.createNotificationChannel(chan);
|
|
}
|
|
|
|
// Notification builder
|
|
PendingIntent pi = PendingIntent.getActivity(this, 0,
|
|
new Intent(this, MainActivity.class), PendingIntent.FLAG_UPDATE_CURRENT);
|
|
|
|
mNotificationBuilder = new NotificationCompat.Builder(this, NOTIFY_CHAN_VPNSERVICE)
|
|
.setSmallIcon(R.drawable.ic_logo)
|
|
.setColor(ContextCompat.getColor(this, R.color.colorPrimary))
|
|
.setContentIntent(pi)
|
|
.setOngoing(true)
|
|
.setAutoCancel(false)
|
|
.setContentTitle(getResources().getString(R.string.capture_running))
|
|
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
|
|
.setPriority(NotificationCompat.PRIORITY_LOW); // see IMPORTANCE_LOW
|
|
|
|
// CATEGORY_RECOMMENDATION makes the notification visible on the home screen of Android TVs.
|
|
// However this is not what CATEGORY_RECOMMENDATION is designed for, so it should be avoided.
|
|
/*
|
|
if(Utils.isTv(this)) {
|
|
// This is the icon which is visualized
|
|
Drawable banner = ContextCompat.getDrawable(this, R.drawable.banner);
|
|
BitmapDrawable largeIcon = Utils.scaleDrawable(getResources(), banner,
|
|
banner.getIntrinsicWidth(), banner.getIntrinsicHeight());
|
|
|
|
if(largeIcon != null)
|
|
mNotificationBuilder.setLargeIcon(largeIcon.getBitmap());
|
|
|
|
// On Android TV it must be shown as a recommendation
|
|
mNotificationBuilder.setCategory(NotificationCompat.CATEGORY_RECOMMENDATION);
|
|
} else*/
|
|
mNotificationBuilder.setCategory(NotificationCompat.CATEGORY_STATUS);
|
|
}
|
|
|
|
private Notification getNotification() {
|
|
String msg = String.format(getString(R.string.notification_msg),
|
|
Utils.formatBytes(last_bytes), Utils.formatNumber(this, last_connections));
|
|
|
|
mNotificationBuilder.setContentText(msg);
|
|
|
|
return mNotificationBuilder.build();
|
|
}
|
|
|
|
private void updateNotification() {
|
|
Notification notification = getNotification();
|
|
NotificationManagerCompat.from(this).notify(NOTIFY_ID_VPNSERVICE, notification);
|
|
}
|
|
|
|
@RequiresApi(api = Build.VERSION_CODES.M)
|
|
private void registerNetworkCallbacks() {
|
|
if(mNetworkCallback != null)
|
|
return;
|
|
|
|
ConnectivityManager cm = (ConnectivityManager) getSystemService(Service.CONNECTIVITY_SERVICE);
|
|
mNetworkCallback = new ConnectivityManager.NetworkCallback() {
|
|
@Override
|
|
public void onLost(@NonNull Network network) {
|
|
Log.d(TAG, "onLost " + network);
|
|
|
|
if(network.getNetworkHandle() == mMonitoredNetwork) {
|
|
Log.d(TAG, "Main network " + network + " lost, using fallback DNS " + FALLBACK_DNS_SERVER);
|
|
dns_server = FALLBACK_DNS_SERVER;
|
|
mMonitoredNetwork = 0;
|
|
unregisterNetworkCallbacks();
|
|
|
|
// change native
|
|
setDnsServer(dns_server);
|
|
}
|
|
}
|
|
};
|
|
|
|
cm.registerNetworkCallback(
|
|
new NetworkRequest.Builder()
|
|
.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET).build(),
|
|
mNetworkCallback);
|
|
}
|
|
|
|
private void unregisterNetworkCallbacks() {
|
|
if(mNetworkCallback != null) {
|
|
ConnectivityManager cm = (ConnectivityManager) getSystemService(Service.CONNECTIVITY_SERVICE);
|
|
|
|
try {
|
|
cm.unregisterNetworkCallback(mNetworkCallback);
|
|
} catch(IllegalArgumentException e) {
|
|
Log.w(TAG, "unregisterNetworkCallback failed: " + e);
|
|
}
|
|
|
|
mNetworkCallback = null;
|
|
}
|
|
}
|
|
|
|
private void stop() {
|
|
stopPacketLoop();
|
|
|
|
while((mThread != null) && (mThread.isAlive())) {
|
|
try {
|
|
Log.d(TAG, "Joining native thread...");
|
|
mThread.join();
|
|
} catch (InterruptedException e) {
|
|
Log.e(TAG, "Joining native thread failed");
|
|
}
|
|
}
|
|
|
|
mThread = null;
|
|
|
|
if(mParcelFileDescriptor != null) {
|
|
try {
|
|
mParcelFileDescriptor.close();
|
|
} catch (IOException e) {
|
|
Toast.makeText(this, "Stopping VPN failed", Toast.LENGTH_SHORT).show();
|
|
}
|
|
mParcelFileDescriptor = null;
|
|
}
|
|
|
|
if(mHttpServer != null)
|
|
mHttpServer.endConnections();
|
|
// NOTE: do not destroy the mHttpServer, let it terminate the active connections
|
|
|
|
if(mOutputStream != null) {
|
|
try {
|
|
mOutputStream.close();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
mPcapUri = null;
|
|
unregisterNetworkCallbacks();
|
|
|
|
stopForeground(true /* remove notification */);
|
|
}
|
|
|
|
private void stopThread() {
|
|
mThread = null;
|
|
stop();
|
|
}
|
|
|
|
/* Check if the VPN service was launched */
|
|
public static boolean isServiceActive() {
|
|
return((INSTANCE != null) &&
|
|
(INSTANCE.mThread != null));
|
|
}
|
|
|
|
public static String getAppFilter() {
|
|
return((INSTANCE != null) ? INSTANCE.app_filter : null);
|
|
}
|
|
|
|
public static Uri getPcapUri() {
|
|
return ((INSTANCE != null) ? INSTANCE.mPcapUri : null);
|
|
}
|
|
|
|
public static long getBytes() {
|
|
return((INSTANCE != null) ? INSTANCE.last_bytes : 0);
|
|
}
|
|
|
|
public static String getCollectorAddress() {
|
|
return((INSTANCE != null) ? INSTANCE.collector_address : "");
|
|
}
|
|
|
|
public static int getCollectorPort() {
|
|
return((INSTANCE != null) ? INSTANCE.collector_port : 0);
|
|
}
|
|
|
|
public static int getHTTPServerPort() {
|
|
return((INSTANCE != null) ? INSTANCE.http_server_port : 0);
|
|
}
|
|
|
|
public static Prefs.DumpMode getDumpMode() {
|
|
return((INSTANCE != null) ? INSTANCE.dump_mode : Prefs.DumpMode.NONE);
|
|
}
|
|
|
|
public static String getDNSServer() {
|
|
return((INSTANCE != null) ? INSTANCE.getDnsServer() : "");
|
|
}
|
|
|
|
/* Stop a running VPN service */
|
|
public static void stopService() {
|
|
if (INSTANCE != null)
|
|
INSTANCE.stop();
|
|
}
|
|
|
|
public static ConnectionsRegister getConnsRegister() {
|
|
return((INSTANCE != null) ? INSTANCE.conn_reg : null);
|
|
}
|
|
|
|
public static boolean isCapturingAsRoot() {
|
|
return((INSTANCE != null) &&
|
|
(INSTANCE.isRootCapture() == 1));
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
if(root_capture) {
|
|
runPacketLoop(-1, this, Build.VERSION.SDK_INT);
|
|
return;
|
|
}
|
|
|
|
if(mParcelFileDescriptor != null) {
|
|
int fd = mParcelFileDescriptor.getFd();
|
|
int fd_setsize = getFdSetSize();
|
|
|
|
if((fd > 0) && (fd < fd_setsize)) {
|
|
Log.d(TAG, "VPN fd: " + fd + " - FD_SETSIZE: " + fd_setsize);
|
|
runPacketLoop(fd, this, Build.VERSION.SDK_INT);
|
|
} else {
|
|
Log.e(TAG, "Invalid VPN fd: " + fd);
|
|
stopThread();
|
|
}
|
|
}
|
|
}
|
|
|
|
/* The following methods are called from native code */
|
|
|
|
public String getVpnIPv4() {
|
|
return(vpn_ipv4);
|
|
}
|
|
|
|
public String getVpnDns() {
|
|
return(vpn_dns);
|
|
}
|
|
|
|
public String getDnsServer() {
|
|
return(dns_server);
|
|
}
|
|
|
|
public String getIpv6DnsServer() { return(IPV6_DNS_SERVER); }
|
|
|
|
public String getPcapCollectorAddress() {
|
|
return(collector_address);
|
|
}
|
|
|
|
public int getPcapCollectorPort() {
|
|
return(collector_port);
|
|
}
|
|
|
|
public String getSocks5ProxyAddress() { return(socks5_proxy_address); }
|
|
|
|
public int getSocks5Enabled() { return socks5_enabled ? 1 : 0; }
|
|
|
|
public int getSocks5ProxyPort() { return(socks5_proxy_port); }
|
|
|
|
public int getIPv6Enabled() { return(ipv6_enabled ? 1 : 0); }
|
|
|
|
public int isRootCapture() { return(root_capture ? 1 : 0); }
|
|
|
|
public int getAppFilterUid() { return(app_filter_uid); }
|
|
|
|
public int getOwnAppUid() {
|
|
AppDescriptor app = AppsResolver.resolve(getPackageManager(), BuildConfig.APPLICATION_ID);
|
|
|
|
if(app != null)
|
|
return app.getUid();
|
|
|
|
return Utils.UID_NO_FILTER;
|
|
}
|
|
|
|
// returns 1 if dumpPcapData should be called
|
|
public int dumpPcapToJava() {
|
|
return(((dump_mode == Prefs.DumpMode.HTTP_SERVER) || (dump_mode == Prefs.DumpMode.PCAP_FILE)) ? 1 : 0);
|
|
}
|
|
|
|
public int dumpPcapToUdp() {
|
|
return((dump_mode == Prefs.DumpMode.UDP_EXPORTER) ? 1 : 0);
|
|
}
|
|
|
|
// from NetGuard
|
|
@TargetApi(Build.VERSION_CODES.Q)
|
|
public int getUidQ(int version, int protocol, String saddr, int sport, String daddr, int dport) {
|
|
if (protocol != 6 /* TCP */ && protocol != 17 /* UDP */)
|
|
return Utils.UID_UNKNOWN;
|
|
|
|
ConnectivityManager cm = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
|
|
if (cm == null)
|
|
return Utils.UID_UNKNOWN;
|
|
|
|
InetSocketAddress local = new InetSocketAddress(saddr, sport);
|
|
InetSocketAddress remote = new InetSocketAddress(daddr, dport);
|
|
|
|
Log.d(TAG, "Get uid local=" + local + " remote=" + remote);
|
|
return cm.getConnectionOwnerUid(protocol, local, remote);
|
|
}
|
|
|
|
public void sendConnectionsDump(ConnectionDescriptor[] new_conns, ConnectionDescriptor[] conns_updates) {
|
|
// synchronize the conn_reg to ensure that newConnections and connectionsUpdates run atomically
|
|
// thus preventing the ConnectionsAdapter from interleaving other operations
|
|
synchronized (conn_reg) {
|
|
if(new_conns.length > 0)
|
|
conn_reg.newConnections(new_conns);
|
|
|
|
if(conns_updates.length > 0)
|
|
conn_reg.connectionsUpdates(conns_updates);
|
|
}
|
|
}
|
|
|
|
public void sendStatsDump(VPNStats stats) {
|
|
//Log.d(TAG, "sendStatsDump");
|
|
|
|
Bundle bundle = new Bundle();
|
|
bundle.putSerializable("value", stats);
|
|
Intent intent = new Intent(ACTION_STATS_DUMP);
|
|
intent.putExtras(bundle);
|
|
|
|
last_bytes = stats.bytes_sent + stats.bytes_rcvd;
|
|
last_connections = stats.tot_conns;
|
|
mHandler.post(this::updateNotification);
|
|
|
|
LocalBroadcastManager.getInstance(this).sendBroadcast(intent);
|
|
}
|
|
|
|
private void sendServiceStatus(String cur_status) {
|
|
Intent intent = new Intent(ACTION_SERVICE_STATUS);
|
|
intent.putExtra(SERVICE_STATUS_KEY, cur_status);
|
|
LocalBroadcastManager.getInstance(this).sendBroadcast(intent);
|
|
}
|
|
|
|
public String getApplicationByUid(int uid) {
|
|
return(getPackageManager().getNameForUid(uid));
|
|
}
|
|
|
|
/* Exports a PCAP data chunk */
|
|
public void dumpPcapData(byte[] data) {
|
|
if(mHttpServer != null)
|
|
mHttpServer.pushData(data);
|
|
else if(mOutputStream != null) {
|
|
try {
|
|
if(mFirstStreamWrite) {
|
|
mOutputStream.write(Utils.hexStringToByteArray(Utils.PCAP_HEADER));
|
|
mFirstStreamWrite = false;
|
|
}
|
|
|
|
mOutputStream.write(data);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
reportError(e.getLocalizedMessage());
|
|
stopPacketLoop();
|
|
}
|
|
}
|
|
}
|
|
|
|
public void reportError(String msg) {
|
|
mHandler.post(() -> {
|
|
Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
|
|
});
|
|
}
|
|
|
|
public static String getPcapdWorkingDir(Context ctx) {
|
|
return ctx.getCacheDir().getAbsolutePath();
|
|
}
|
|
public String getPcapdWorkingDir() {
|
|
return getPcapdWorkingDir(this);
|
|
}
|
|
|
|
public String getLibprogPath(String prog_name) {
|
|
// executable binaries are stored into the /lib folder of the app
|
|
String dir = getApplicationInfo().nativeLibraryDir;
|
|
return(dir + "/lib" + prog_name + ".so");
|
|
}
|
|
|
|
public static native void runPacketLoop(int fd, CaptureService vpn, int sdk);
|
|
public static native void stopPacketLoop();
|
|
public static native void askStatsDump();
|
|
public static native int getFdSetSize();
|
|
public static native void setDnsServer(String server);
|
|
}
|