aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/fil/libre/repwifiapp/helpers/OpenVpnManager.java
blob: 5de2501cc0b14ac39945bb088f30d4fe341e3d50 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
//
// Copyright 2017 Filippo "Fil" Bergamo <fil.bergamo@riseup.net>
// 
// This file is part of RepWifiApp.
// This file is based upon the example file included in 
// de.blinkt.openvpn package by Arne Schwabe.
//
// RepWifiApp 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.
// 
// RepWifiApp 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 RepWifiApp.  If not, see <http://www.gnu.org/licenses/>.
// 
// ********************************************************************

package fil.libre.repwifiapp.helpers;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager.NameNotFoundException;
import android.os.IBinder;
import android.os.RemoteException;
import java.util.ArrayList;
import java.util.List;
import de.blinkt.openvpn.api.APIVpnProfile;
import de.blinkt.openvpn.api.IOpenVPNAPIService;

public class OpenVpnManager {

    public static final String SERVICE_PACKAGE_NAME = "de.blinkt.openvpn";
    public static final String APP_COMMON_NAME = "OpenVPN for Android";
    public static final String PLACEHOLDER_APPNAME = "[VPN_EXT_APP]";

    private static boolean VpnIsConnected;
    private static OpenVpnManager _currentInstance;
    
    protected IOpenVPNAPIService _vpnSvc;

    private Activity _caller;
    private ServiceConnection _svcConnection = new ServiceConnection() {
        public void onServiceConnected(ComponentName className, IBinder service) {
            _vpnSvc = IOpenVPNAPIService.Stub.asInterface(service);
        }

        public void onServiceDisconnected(ComponentName className) {
            _vpnSvc = null;
        }
    };

    private OpenVpnManager(Activity c) throws Exception {
        this._caller = c;
        bindService();
    }

    private void bindService() throws Exception {

        Intent intentGetService = new Intent(IOpenVPNAPIService.class.getName());
        intentGetService.setPackage(SERVICE_PACKAGE_NAME);
        if (!_caller.bindService(intentGetService, _svcConnection, Context.BIND_AUTO_CREATE)) {
            throw new Exception("FAILED to bind to OpenVPN service!");
        }

    }

    private void unbindService() {
        _caller.unbindService(_svcConnection);
    }

    private Intent askApiPermissionsGetIntentInternal() throws RemoteException {
        return _vpnSvc.prepare(_caller.getPackageName());
    }

    private boolean startVpnInternal(String profileUuid) {

        if (profileUuid == null) {
            Utils.logError("Invoked startVpn with null uuid");
            return false;
        }

        if (_vpnSvc == null) {
            Utils.logError("Invoked startVpn but inner service is null.");
            return false;
        }

        try {

            _vpnSvc.startProfile(profileUuid);
            VpnIsConnected = true;
            return true;

        } catch (RemoteException e) {
            Utils.logError("Exception while starting vpn.", e);
            return false;
        }
    }

    private boolean disconnectInternal() {

        if (_vpnSvc == null) {
            Utils.logDebug("Attempted to disconnect from VPN, but inner service is null");
            VpnIsConnected = false;
            return true;
        }

        try {
            _vpnSvc.disconnect();
            VpnIsConnected = false;
            return true;
        } catch (RemoteException e) {
            Utils.logError("Exception while disconnecting from vpn.", e);
            return false;
        }
    }

    private List<String> getExistingProfilesInternal(){
        
        try {
            List<APIVpnProfile> list = _vpnSvc.getProfiles();

            List<String> ret = new ArrayList<String>();
            for (APIVpnProfile vp : list) {
                ret.add(vp.mName);
            }

            return ret;

        } catch (RemoteException e) {
            Utils.logError("Exception while retrieving profiles from vpn service.", e);
            return null;
        }
        
    }
    
    private String getUuidFromNameInternal(String profileName) {

        if (_vpnSvc == null) {
            Utils.logError("Called getUuidFromName but inner service is null!");
            return null;
        }

        try {
            List<APIVpnProfile> list = _vpnSvc.getProfiles();

            for (APIVpnProfile vp : list) {
                if (vp.mName.equals(profileName)) {
                    return vp.mUUID;
                }
            }

            return null;

        } catch (RemoteException e) {
            Utils.logError("Exception while retrieving profiles from vpn service.", e);
            return null;
        }
    }

    public void close() {
        if (_vpnSvc != null) {
            unbindService();

        }

    }

    public static void initialize(Activity caller){
        
        if (_currentInstance != null){
            return;
        }
        
        try {
            _currentInstance = new OpenVpnManager(caller);
        } catch (Exception e) {
            Utils.logError("Exception while initializing vpn manager.",e);
        }
    }
    
    public static boolean isExternalAppInstalled(Activity caller) {

        try {

            ApplicationInfo i;
            i = caller.getPackageManager().getApplicationInfo(SERVICE_PACKAGE_NAME, 0);
            return (i != null);

        } catch (NameNotFoundException e) {
            return false;
        }

    }

    public static boolean startVpn(String profileUuid){
        if (_currentInstance == null){
            return false;
        }
        return _currentInstance.startVpnInternal(profileUuid);
    }
    
    public static boolean disconnect(){
        if (_currentInstance == null){
            return false;
        }
        return _currentInstance.disconnectInternal();
    }

    public static boolean isVpnConnected(){
        return VpnIsConnected;
    }
    
    public static String getUuidFromName(String profileName){
        if (_currentInstance == null){
            return null;
        }
        return _currentInstance.getUuidFromNameInternal(profileName);
    }
    
    public static List<String> getExistingProfiles(){
        return _currentInstance.getExistingProfilesInternal();        
    }
    
    public static Intent askApiPermissionsGetIntent() throws RemoteException{
        return _currentInstance.askApiPermissionsGetIntentInternal();
    }

}