Address issues related to onionoo relay/node info lookup
-Ensure streams, files are closed -Add timeout values to socket, streams -Change torrc CircuitStreamTimeout to 120
This commit is contained in:
parent
0c239b434e
commit
31cf9816fb
|
@ -17,6 +17,7 @@ import java.io.FileNotFoundException;
|
||||||
import java.io.FileReader;
|
import java.io.FileReader;
|
||||||
import java.io.FileWriter;
|
import java.io.FileWriter;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.io.PrintStream;
|
import java.io.PrintStream;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
|
@ -33,6 +34,8 @@ import java.util.List;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.StringTokenizer;
|
import java.util.StringTokenizer;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.TimeoutException;
|
import java.util.concurrent.TimeoutException;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
@ -62,10 +65,8 @@ import android.content.Intent;
|
||||||
import android.content.IntentFilter;
|
import android.content.IntentFilter;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.SharedPreferences.Editor;
|
import android.content.SharedPreferences.Editor;
|
||||||
import android.graphics.Color;
|
|
||||||
import android.net.ConnectivityManager;
|
import android.net.ConnectivityManager;
|
||||||
import android.net.NetworkInfo;
|
import android.net.NetworkInfo;
|
||||||
import android.os.AsyncTask;
|
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.os.RemoteException;
|
import android.os.RemoteException;
|
||||||
|
@ -132,6 +133,8 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
private boolean mTransProxyAll = false;
|
private boolean mTransProxyAll = false;
|
||||||
private boolean mTransProxyTethering = false;
|
private boolean mTransProxyTethering = false;
|
||||||
|
|
||||||
|
private ExecutorService mExecutor = Executors.newCachedThreadPool();
|
||||||
|
|
||||||
public void debug(String msg)
|
public void debug(String msg)
|
||||||
{
|
{
|
||||||
if (ENABLE_DEBUG_LOG)
|
if (ENABLE_DEBUG_LOG)
|
||||||
|
@ -251,7 +254,8 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
if (hmBuiltNodes.size() > 0)
|
if (hmBuiltNodes.size() > 0)
|
||||||
{
|
{
|
||||||
sbInfo.append("Your Tor Public IPs:\n");
|
//sbInfo.append(getString(R.string.your_tor_public_ips_) + '\n');
|
||||||
|
|
||||||
Set<String> itBuiltNodes = hmBuiltNodes.keySet();
|
Set<String> itBuiltNodes = hmBuiltNodes.keySet();
|
||||||
for (String key : itBuiltNodes)
|
for (String key : itBuiltNodes)
|
||||||
{
|
{
|
||||||
|
@ -303,7 +307,11 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
if (notifyType != NOTIFY_ID)
|
if (notifyType != NOTIFY_ID)
|
||||||
{
|
{
|
||||||
mNotifyBuilder.setTicker(notifyMsg);
|
mNotifyBuilder.setTicker(notifyMsg);
|
||||||
mNotifyBuilder.setLights(Color.GREEN, 1000, 1000);
|
// mNotifyBuilder.setLights(Color.GREEN, 1000, 1000);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
mNotifyBuilder.setTicker(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
mNotifyBuilder.setOngoing(prefPersistNotifications);
|
mNotifyBuilder.setOngoing(prefPersistNotifications);
|
||||||
|
@ -330,7 +338,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
new startTorOperation().execute(intent);
|
mExecutor.execute (new TorStarter(intent));
|
||||||
|
|
||||||
return Service.START_STICKY;
|
return Service.START_STICKY;
|
||||||
|
|
||||||
|
@ -343,18 +351,19 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
private class TorStarter implements Runnable
|
||||||
public void onTaskRemoved(Intent rootIntent) {
|
{
|
||||||
logNotice("Orbot was swiped away... background service will keep running");
|
Intent mIntent;
|
||||||
|
|
||||||
|
public TorStarter (Intent intent)
|
||||||
|
{
|
||||||
|
mIntent = intent;
|
||||||
}
|
}
|
||||||
|
|
||||||
private class startTorOperation extends AsyncTask<Intent, Void, Boolean> {
|
public void run ()
|
||||||
@Override
|
{
|
||||||
protected Boolean doInBackground(Intent... params) {
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Intent intent = params[0];
|
|
||||||
|
|
||||||
if (mNotificationManager == null)
|
if (mNotificationManager == null)
|
||||||
{
|
{
|
||||||
|
@ -364,7 +373,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
|
|
||||||
if (intent != null && intent.getAction()!=null && intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED))
|
if (mIntent != null && mIntent.getAction()!=null && mIntent.getAction().equals(Intent.ACTION_BOOT_COMPLETED))
|
||||||
{
|
{
|
||||||
setTorProfile(PROFILE_ON);
|
setTorProfile(PROFILE_ON);
|
||||||
}
|
}
|
||||||
|
@ -374,17 +383,17 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
{
|
{
|
||||||
Log.e(TAG,"error onBind",e);
|
Log.e(TAG,"error onBind",e);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onTaskRemoved(Intent rootIntent) {
|
||||||
|
logNotice("Orbot was swiped away... background service will keep running");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void onDestroy ()
|
public void onDestroy ()
|
||||||
{
|
{
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
|
@ -561,6 +570,8 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
public void onCreate() {
|
public void onCreate() {
|
||||||
super.onCreate();
|
super.onCreate();
|
||||||
|
|
||||||
|
// android.os.Debug.waitForDebugger();
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
initBinariesAndDirectories();
|
initBinariesAndDirectories();
|
||||||
|
@ -635,6 +646,7 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
extraLines.append("AvoidDiskWrites 1").append('\n');
|
extraLines.append("AvoidDiskWrites 1").append('\n');
|
||||||
|
|
||||||
|
extraLines.append("CircuitStreamTimeout 120").append('\n');
|
||||||
|
|
||||||
extraLines.append("SOCKSPort ").append(socksPort).append('\n');
|
extraLines.append("SOCKSPort ").append(socksPort).append('\n');
|
||||||
extraLines.append("SafeSocks 0").append('\n');
|
extraLines.append("SafeSocks 0").append('\n');
|
||||||
|
@ -909,7 +921,6 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
props.store(new FileWriter(file), "updated");
|
props.store(new FileWriter(file), "updated");
|
||||||
|
|
||||||
props.list(System.out);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1371,7 +1382,9 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
//get IP from last nodename
|
//get IP from last nodename
|
||||||
if(status.equals("BUILT")){
|
if(status.equals("BUILT")){
|
||||||
new getExternalIP().execute(node);
|
|
||||||
|
if (node.ipAddress == null)
|
||||||
|
mExecutor.execute(new ExternalIPFetcher(node));
|
||||||
|
|
||||||
hmBuiltNodes.put(node.id, node);
|
hmBuiltNodes.put(node.id, node);
|
||||||
}
|
}
|
||||||
|
@ -1380,6 +1393,16 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
{
|
{
|
||||||
hmBuiltNodes.remove(node.id);
|
hmBuiltNodes.remove(node.id);
|
||||||
|
|
||||||
|
//how check the IP's of any other nodes we have
|
||||||
|
for (String nodeId : hmBuiltNodes.keySet())
|
||||||
|
{
|
||||||
|
node = hmBuiltNodes.get(nodeId);
|
||||||
|
|
||||||
|
if (node.ipAddress == null)
|
||||||
|
mExecutor.execute(new ExternalIPFetcher(node));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1397,24 +1420,44 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
String organization;
|
String organization;
|
||||||
}
|
}
|
||||||
|
|
||||||
private class getExternalIP extends AsyncTask<Node, Void, Void>{
|
private class ExternalIPFetcher implements Runnable {
|
||||||
|
|
||||||
|
private Node mNode;
|
||||||
|
private int MAX_ATTEMPTS = 3;
|
||||||
|
|
||||||
@Override
|
public ExternalIPFetcher (Node node)
|
||||||
protected Void doInBackground(Node... nodes) {
|
{
|
||||||
|
mNode = node;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void run ()
|
||||||
|
{
|
||||||
|
|
||||||
|
if (mNode.ipAddress != null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
for (int i = 0; i < MAX_ATTEMPTS; i++)
|
||||||
|
{
|
||||||
if (conn != null)
|
if (conn != null)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
//String nodeDetails = conn.getInfo("ns/id/"+nodes[0].id);
|
//String nodeDetails = conn.getInfo("ns/id/"+nodes[0].id);
|
||||||
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("127.0.0.1", 8118));
|
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("127.0.0.1", 8118));
|
||||||
|
|
||||||
URLConnection conn = new URL("https://onionoo.torproject.org/details?lookup=" + nodes[0].id).openConnection(proxy);
|
URLConnection conn = new URL("https://onionoo.torproject.org/details?lookup=" + mNode.id).openConnection(proxy);
|
||||||
|
conn.setRequestProperty("Connection","Close");
|
||||||
|
conn.setConnectTimeout(60000);
|
||||||
|
conn.setReadTimeout(60000);
|
||||||
|
|
||||||
|
InputStream is = conn.getInputStream();
|
||||||
|
|
||||||
|
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
|
||||||
|
|
||||||
// getting JSON string from URL
|
// getting JSON string from URL
|
||||||
|
|
||||||
StringBuffer json = new StringBuffer();
|
StringBuffer json = new StringBuffer();
|
||||||
String line = null;
|
String line = null;
|
||||||
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
|
|
||||||
while ((line = reader.readLine())!=null)
|
while ((line = reader.readLine())!=null)
|
||||||
json.append(line);
|
json.append(line);
|
||||||
|
|
||||||
|
@ -1423,23 +1466,28 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
JSONArray jsonRelays = jsonNodeInfo.getJSONArray("relays");
|
JSONArray jsonRelays = jsonNodeInfo.getJSONArray("relays");
|
||||||
if (jsonRelays.length() > 0)
|
if (jsonRelays.length() > 0)
|
||||||
{
|
{
|
||||||
nodes[0].ipAddress = jsonRelays.getJSONObject(0).getJSONArray("or_addresses").getString(0).split(":")[0];
|
mNode.ipAddress = jsonRelays.getJSONObject(0).getJSONArray("or_addresses").getString(0).split(":")[0];
|
||||||
|
|
||||||
nodes[0].country = jsonRelays.getJSONObject(0).getString("country_name");
|
mNode.country = jsonRelays.getJSONObject(0).getString("country_name");
|
||||||
nodes[0].organization = jsonRelays.getJSONObject(0).getString("as_name");
|
mNode.organization = jsonRelays.getJSONObject(0).getString("as_name");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
reader.close();
|
||||||
|
is.close();
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
||||||
logException ("Error getting node details from onionoo",e);
|
debug ("Error getting node details from onionoo: " + e.getMessage());
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1461,15 +1509,10 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
|
|
||||||
public IBinder onBind(Intent intent) {
|
public IBinder onBind(Intent intent) {
|
||||||
|
|
||||||
new initTorOperation().execute(true);
|
mExecutor.execute(new Runnable ()
|
||||||
|
{
|
||||||
return mBinder;
|
public void run ()
|
||||||
}
|
{
|
||||||
|
|
||||||
private class initTorOperation extends AsyncTask<Boolean, Void, Boolean> {
|
|
||||||
@Override
|
|
||||||
protected Boolean doInBackground(Boolean... params) {
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
findExistingProc ();
|
findExistingProc ();
|
||||||
|
@ -1479,11 +1522,12 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
Log.e(TAG,"error onBind",e);
|
Log.e(TAG,"error onBind",e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return true;
|
return mBinder;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1495,29 +1539,20 @@ public class TorService extends Service implements TorServiceConstants, TorConst
|
||||||
return getTorStatus();
|
return getTorStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProfile (int profile)
|
|
||||||
|
public void setProfile (final int profileNew)
|
||||||
|
{
|
||||||
|
|
||||||
|
mExecutor.execute(new Runnable()
|
||||||
{
|
{
|
||||||
|
|
||||||
new AsyncTask<Integer, Void, Boolean>() {
|
|
||||||
@Override
|
@Override
|
||||||
protected Boolean doInBackground(Integer... params) {
|
public void run() {
|
||||||
|
setTorProfile(profileNew);
|
||||||
try
|
|
||||||
{
|
|
||||||
|
|
||||||
setTorProfile(params[0].intValue());
|
|
||||||
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
Log.e(TAG,"error onBind",e);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
}.execute(profile);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ public class TorServiceUtils implements TorServiceConstants {
|
||||||
if (line.contains("PID"))
|
if (line.contains("PID"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (line.contains(processKey))
|
if (line.contains('/' + processKey))
|
||||||
{
|
{
|
||||||
|
|
||||||
String[] lineParts = line.split("\\s+");
|
String[] lineParts = line.split("\\s+");
|
||||||
|
|
Loading…
Reference in New Issue