fixed TorBinaryInstaller issue on Android OS 2.2/Froyo. Now looks for APK file with incremented path name -1 -2 -3 etc
svn:r22498
This commit is contained in:
parent
bf437f9a58
commit
8693d624b9
|
@ -45,7 +45,20 @@ public class TorBinaryInstaller implements TorServiceConstants {
|
|||
|
||||
try
|
||||
{
|
||||
ZipFile zip = new ZipFile(APK_PATH);
|
||||
|
||||
String apkPath = APK_PATH;
|
||||
|
||||
int apkIdx = 1;
|
||||
|
||||
while (!new File(apkPath).exists())
|
||||
{
|
||||
apkPath = APK_PATH_BASE + '-' + (apkIdx++) + ".apk";
|
||||
|
||||
Log.i(TAG,"Could not find APK. Trying new path: " + apkPath);
|
||||
}
|
||||
|
||||
|
||||
ZipFile zip = new ZipFile(apkPath);
|
||||
|
||||
ZipEntry zipen = zip.getEntry(TOR_BINARY_ZIP_KEY);
|
||||
streamToFile(zip.getInputStream(zipen),TOR_BINARY_INSTALL_PATH);
|
||||
|
|
|
@ -50,7 +50,8 @@ public interface TorServiceConstants {
|
|||
|
||||
//path of the installed APK file
|
||||
public final static String APK_PATH = "/data/app/org.torproject.android.apk";
|
||||
|
||||
public final static String APK_PATH_BASE = "/data/app/org.torproject.android";
|
||||
|
||||
|
||||
|
||||
public final static int FILE_WRITE_BUFFER_SIZE = 2048;
|
||||
|
|
|
@ -16,10 +16,13 @@ public class TorTransProxy {
|
|||
|
||||
private final static String CMD_NAT_FLUSH = "iptables -t nat -F || exit\n";
|
||||
private final static String CMD_DNS_PROXYING_ADD = "iptables -t nat -A PREROUTING -p udp --dport 53 -j DNAT --to 127.0.0.1:5400 || exit\n";
|
||||
private final static String CMD_DNS_PROXYING_DELETE = "iptables -t nat -D PREROUTING -p udp --dport 53 -j DNAT --to 127.0.0.1:5400 || exit\n";
|
||||
|
||||
|
||||
//private final static String CMD_DNS_PROXYING_DELETE = "iptables -t nat -D PREROUTING -p udp --dport 53 -j DNAT --to 127.0.0.1:5400 || exit\n";
|
||||
// - just calling a system wide flush of iptables rules
|
||||
|
||||
private final static String IPTABLES_ADD = " -A ";
|
||||
private final static String IPTABLES_DELETE = " -D ";
|
||||
|
||||
//private final static String IPTABLES_DELETE = " -D "; //not deleting manually anymore - just calling a system wide flush of iptables rules
|
||||
private final static String IPTABLES_DROP_ALL = " -j DROP ";
|
||||
private static boolean hasRoot = false;
|
||||
|
||||
|
@ -121,7 +124,7 @@ public class TorTransProxy {
|
|||
script.append(command);
|
||||
script.append("OUTPUT -p udp -m owner --uid-owner ");
|
||||
script.append(apps[i].getUid());
|
||||
script.append(" -j DNAT --to 127.0.0.1:9040");
|
||||
script.append(" -j DROP"); //drop all UDP packets as Tor won't handle them
|
||||
script.append(" || exit\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue