aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/fil/libre/repwifiapp/activities/VpnAndConnectionBoundActivity.java
blob: 4acf28af40c797bdf620bf19e857830da40eb512 (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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
//
// Copyright 2017, 2018 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.activities;

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.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.widget.Toast;
import de.blinkt.openvpn.api.APIVpnProfile;
import de.blinkt.openvpn.api.IOpenVPNAPIService;
import fil.libre.repwifiapp.ActivityLauncher;
import fil.libre.repwifiapp.R;
import fil.libre.repwifiapp.Utils;
import fil.libre.repwifiapp.helpers.Logger;
import fil.libre.repwifiapp.network.AccessPointInfo;
import java.util.ArrayList;
import java.util.List;

public abstract class VpnAndConnectionBoundActivity extends ConnectionBoundActivity {

    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 final int ACTION_NONE = 0;
    private static final int ACTION_GET_PROFILES = 1;
    private static final int ACTION_CONNECT = 2;

    protected IOpenVPNAPIService _vpnSvc;

    private AccessPointInfo _lastInfo;
    private int _lastAction = ACTION_NONE;

    private int lastRequestCode = ActivityLauncher.RequestCode.NONE;
    private boolean permissionAsked = false;

    private ServiceConnection _svcConnection;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        bindVpnService(ACTION_NONE);
    }

    private void bindVpnService(int action) {

        if (!isExternalAppInstalled()) {
            Logger.logDebug("External VPN app is not installed. Skipping vpn service binding.");
            return;
        }

        _lastAction = action;

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

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

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

    }

    private void unbindVpnService() {
        if (_svcConnection != null && _vpnSvc != null) {
            unbindService(_svcConnection);
        }
    }

    protected void onVpnServiceConnected() {

        switch (_lastAction) {
        case ACTION_NONE:
            return;

        case ACTION_GET_PROFILES:
            beginGetExistingVpnProfiles();
            break;

        case ACTION_CONNECT:
            beginConnectVpn(_lastInfo);
            break;

        default:
            break;
        }

    }

    protected void onVpnServiceDisconnected() {
    }
    
    protected void onVpnProfilesAvailable(List<String> vpnProfiles) {
    }
    
    protected void onVpnPermissionDenied(){
    }
    
    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent intent) {
        
        if (requestCode != ActivityLauncher.RequestCode.VPN_PERMISSION_CONN
                        && requestCode != ActivityLauncher.RequestCode.VPN_PERMISSION_LIST) {
            // activity result is unrelated to our code.
            return;

        } else if (resultCode != Activity.RESULT_OK) {
            // warn user that permission is needed to manage VPN
            
            Logger.logDebug("User rejected vpn permission.");

            String msg = getString(R.string.msg_vpn_no_permission).replace(
                            VpnAndConnectionBoundActivity.PLACEHOLDER_APPNAME,
                            VpnAndConnectionBoundActivity.APP_COMMON_NAME);
            Utils.showMessage(msg, this);
            
            onVpnPermissionDenied();
            return;
        }

        switch (lastRequestCode) {

        case ActivityLauncher.RequestCode.VPN_PERMISSION_CONN:

            endConnectVpn();
            break;

        case ActivityLauncher.RequestCode.VPN_PERMISSION_LIST:

            endGetExistingVpnProfiles();
            break;

        default:
            break;
        }

    }

    protected void close() {
        unbindVpnService();
    }

    protected boolean isExternalAppInstalled() {

        try {

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

        } catch (NameNotFoundException e) {
            return false;
        }

    }

    private boolean doStartVpn(String profileUuid) {

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

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

        try {

            _vpnSvc.startProfile(profileUuid);
            return true;

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

    }

    private String getUuidFromName(String profileName) {
        if (_vpnSvc == null) {
            Logger.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) {
            Logger.logError("Exception while retrieving profiles from vpn service.", e);
            return null;
        }
    }

    /***
     * 
     * @return Returns 0 if no permission is needed,
     *         1 if permission is needed and it was asked successfully,
     *         a negative number on error.
     */
    private int askPermissionIfNeeded(int requestCode) {

        Logger.logDebug("Called OpenVpnManager.askPermissionIfNeeded()");

        if (_vpnSvc == null) {
            Logger.logError("Internal vpn service is null, but not supposed to be. Aborting.");
            return -1;
        }

        Intent pi;

        try {
            pi = _vpnSvc.prepare(getPackageName());
        } catch (RemoteException e) {
            Logger.logError("Exception while asking for VPN permission", e);
            Toast t = Toast.makeText(getApplicationContext(),
                            getString(R.string.msg_vpn_service_error), Toast.LENGTH_LONG);

            t.show();

            String msgerr = getString(R.string.msg_vpn_error_manual_open).replace(
                            PLACEHOLDER_APPNAME, APP_COMMON_NAME);
            Utils.showMessage(msgerr, getApplicationContext());

            return -1;

        }

        if (pi == null) {
            // no need to ask for permission
            Logger.logDebug("No need for vpn permission.");
            return 0;

        } else if (!permissionAsked) {
            // launch the intent to ask permission
            Logger.logDebug("Need to ask for vpn permission. Starting intent..");
            permissionAsked = true;
            startActivityForResult(pi, requestCode);
            return 1;

        } else {
            return 1;

        }

    }

    private String getVpnNameIfAny(AccessPointInfo i) {

        if (i == null) {
            return null;
        }

        String profname = i.getVpnProfileName();
        if (profname == null || profname.isEmpty()) {
            return null;
        } else {
            return profname;
        }

    }

    protected void beginConnectVpn(AccessPointInfo info) {

        if (!isExternalAppInstalled()) {
            return;
        }

        if (getVpnNameIfAny(info) == null) {
            Logger.logDebug("No vpn profile set. Exiting beginConnectVpn()");
            return;
        }

        _lastInfo = info;

        if (_vpnSvc == null) {
            bindVpnService(ACTION_CONNECT);
            return;
        }

        // make sure we have permission to use the vpn service.
        if (askPermissionIfNeeded(ActivityLauncher.RequestCode.VPN_PERMISSION_CONN) == 0) {
            // no need for permission
            Logger.logDebug("Going to endConnectVpn.");
            endConnectVpn();
        }

    }

    private void endConnectVpn() {

        try {

            if (_lastInfo == null) {
                Logger.logError("Called endConnectVpn, but last AccessPointInfo is null.");
                return;
            }

            String profname = getVpnNameIfAny(_lastInfo);

            // check if profile exists
            String profUuid = getUuidFromName(profname);
            if (profUuid == null) {
                // warn user that selected profile doesn't exist
                Utils.showMessage(getString(R.string.msg_vpn_wrong_profile),
                                getApplicationContext());
                return;
            }

            if (doStartVpn(profUuid)) {
                Toast t = Toast.makeText(getApplicationContext(),
                                getString(R.string.msg_vpn_launched), Toast.LENGTH_LONG);
                t.show();
            } else {
                Utils.showMessage(getString(R.string.msg_vpn_connect_error),
                                getApplicationContext());
            }

        } catch (Exception e) {
            Logger.logError("Exception while endConnectVpn", e);

        }

    }

    protected void beginGetExistingVpnProfiles() {

        if (!isExternalAppInstalled()) {
            return;
        }

        if (_vpnSvc == null) {
            bindVpnService(ACTION_GET_PROFILES);
            return;
        }

        // we make sure we have permission to use the vpn service.
        if (askPermissionIfNeeded(ActivityLauncher.RequestCode.VPN_PERMISSION_LIST) == 0) {
            // no need for permission
            endGetExistingVpnProfiles();
        }

    }

    private void endGetExistingVpnProfiles() {

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

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

            onVpnProfilesAvailable(ret);

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

    }

    

    protected boolean disconnectVpn() {

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

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

    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        this.close();
    }

}