summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/eip/VoidVpnService.java
blob: f87f35e2c9f1eb6ba488d448a7280195876399f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package se.leap.bitmaskclient.eip;

import android.content.Intent;
import android.net.VpnService;
import android.os.ParcelFileDescriptor;

import java.io.IOException;

public class VoidVpnService extends VpnService  {

    static final String TAG = VoidVpnService.class.getSimpleName();
    static ParcelFileDescriptor fd;

    static Thread thread;

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
	String action = intent != null ? intent.getAction() : "";
	if (action == Constants.START_BLOCKING_VPN_PROFILE) {
	    thread = new Thread(new Runnable() {
		    public void run() {
			Builder builder = new Builder();
			builder.setSession("Blocking until running");
			builder.addAddress("10.42.0.8",16);
			builder.addRoute("0.0.0.0", 1);
			builder.addRoute("192.168.1.0", 24);
			builder.addDnsServer("10.42.0.1");
			try {
			    fd = builder.establish();

			} catch (Exception e) {
			    e.printStackTrace();
			}
            android.util.Log.d(TAG, "VoidVpnService set up: fd = " + fd.toString());
		    }
        });
        thread.run();
    }
	return 0;
    }

    @Override
    public void onRevoke() {
        super.onRevoke();
        closeFd();
    }

    public static void stop() {
        if(thread != null)
            thread.interrupt();
        closeFd();
    }

    private static void closeFd() {
        try {
            if(fd != null) {
                android.util.Log.d(TAG, "VoidVpnService closing fd = " + fd.toString());
                fd.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}