blob: 6da186f04320a329d997f836bd31a460901484d1 [file] [log] [blame]
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.connectivity;
18
Jeff Sharkey899223b2012-08-04 15:24:58 -070019import static android.Manifest.permission.BIND_VPN_SERVICE;
Paul Jensen0784eea2014-08-19 16:00:24 -040020import static android.os.UserHandle.PER_USER_RANGE;
Lorenzo Colitti50262792014-09-19 01:53:35 +090021import static android.net.RouteInfo.RTN_THROW;
Lorenzo Colitti60446162014-09-20 00:14:31 +090022import static android.net.RouteInfo.RTN_UNREACHABLE;
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -070023import static android.system.OsConstants.AF_INET;
24import static android.system.OsConstants.AF_INET6;
Jeff Sharkey899223b2012-08-04 15:24:58 -070025
Jeff Davidsonbc19c182014-11-11 13:20:01 -080026import android.Manifest;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070027import android.app.AppGlobals;
Jeff Davidson05542602014-08-11 14:07:27 -070028import android.app.AppOpsManager;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -070029import android.app.PendingIntent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070030import android.content.BroadcastReceiver;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070031import android.content.ComponentName;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070032import android.content.Context;
33import android.content.Intent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070034import android.content.IntentFilter;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070035import android.content.ServiceConnection;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070036import android.content.pm.ApplicationInfo;
37import android.content.pm.PackageManager;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040038import android.content.pm.PackageManager.NameNotFoundException;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070039import android.content.pm.ResolveInfo;
Chad Brubakerc2865192013-07-10 14:46:23 -070040import android.content.pm.UserInfo;
Jeff Sharkey899223b2012-08-04 15:24:58 -070041import android.net.ConnectivityManager;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070042import android.net.IConnectivityManager;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070043import android.net.INetworkManagementEventObserver;
Lorenzo Colitti50262792014-09-19 01:53:35 +090044import android.net.IpPrefix;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070045import android.net.LinkAddress;
Jeff Sharkey82f85212012-08-24 11:17:25 -070046import android.net.LinkProperties;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070047import android.net.LocalSocket;
48import android.net.LocalSocketAddress;
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -080049import android.net.Network;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040050import android.net.NetworkAgent;
51import android.net.NetworkCapabilities;
Jeff Sharkey899223b2012-08-04 15:24:58 -070052import android.net.NetworkInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040053import android.net.NetworkInfo.DetailedState;
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -070054import android.net.NetworkMisc;
Jeff Sharkey82f85212012-08-24 11:17:25 -070055import android.net.RouteInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040056import android.net.UidRange;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070057import android.os.Binder;
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -080058import android.os.FileUtils;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070059import android.os.IBinder;
Jeff Sharkey899223b2012-08-04 15:24:58 -070060import android.os.INetworkManagementService;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040061import android.os.Looper;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070062import android.os.Parcel;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070063import android.os.ParcelFileDescriptor;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070064import android.os.Process;
Jeff Sharkey899223b2012-08-04 15:24:58 -070065import android.os.RemoteException;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070066import android.os.SystemClock;
Jeff Sharkey088f29f2012-08-05 14:55:04 -070067import android.os.SystemService;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070068import android.os.UserHandle;
Chad Brubakerc2865192013-07-10 14:46:23 -070069import android.os.UserManager;
Jeff Sharkey82f85212012-08-24 11:17:25 -070070import android.security.Credentials;
71import android.security.KeyStore;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070072import android.util.Log;
73
Chad Brubakerc2865192013-07-10 14:46:23 -070074import com.android.internal.annotations.GuardedBy;
Chia-chi Yeh2e467642011-07-04 03:23:12 -070075import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070076import com.android.internal.net.VpnConfig;
Jeff Sharkey82f85212012-08-24 11:17:25 -070077import com.android.internal.net.VpnProfile;
Jeff Sharkey899223b2012-08-04 15:24:58 -070078import com.android.server.net.BaseNetworkObserver;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070079
Jeff Davidson05542602014-08-11 14:07:27 -070080import libcore.io.IoUtils;
81
Chia-chi Yeh97a61562011-07-14 15:05:05 -070082import java.io.File;
Jeff Davidson6bbf39c2014-07-23 10:14:53 -070083import java.io.IOException;
Chia-chi Yeh97a61562011-07-14 15:05:05 -070084import java.io.InputStream;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070085import java.io.OutputStream;
Jeff Sharkey82f85212012-08-24 11:17:25 -070086import java.net.Inet4Address;
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -070087import java.net.Inet6Address;
88import java.net.InetAddress;
Elliott Hughesd396a442013-06-28 16:24:48 -070089import java.nio.charset.StandardCharsets;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040090import java.util.ArrayList;
Chia-chi Yeh41d16852011-07-01 02:12:06 -070091import java.util.Arrays;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040092import java.util.List;
Paul Jensen0784eea2014-08-19 16:00:24 -040093import java.util.SortedSet;
94import java.util.TreeSet;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070095import java.util.concurrent.atomic.AtomicInteger;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070096
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070097/**
98 * @hide
99 */
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400100public class Vpn {
101 private static final String NETWORKTYPE = "VPN";
Jeff Sharkey899223b2012-08-04 15:24:58 -0700102 private static final String TAG = "Vpn";
103 private static final boolean LOGD = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400104
Jeff Sharkey899223b2012-08-04 15:24:58 -0700105 // TODO: create separate trackers for each unique VPN to support
106 // automated reconnection
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700107
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400108 private Context mContext;
109 private NetworkInfo mNetworkInfo;
110 private String mPackage;
111 private int mOwnerUID;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700112 private String mInterface;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700113 private Connection mConnection;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700114 private LegacyVpnRunner mLegacyVpnRunner;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700115 private PendingIntent mStatusIntent;
Jeff Sharkey57666932013-04-30 17:01:57 -0700116 private volatile boolean mEnableTeardown = true;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700117 private final IConnectivityManager mConnService;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400118 private final INetworkManagementService mNetd;
Chad Brubakerc2865192013-07-10 14:46:23 -0700119 private VpnConfig mConfig;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400120 private NetworkAgent mNetworkAgent;
121 private final Looper mLooper;
122 private final NetworkCapabilities mNetworkCapabilities;
Chad Brubakerc2865192013-07-10 14:46:23 -0700123
124 /* list of users using this VPN. */
125 @GuardedBy("this")
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400126 private List<UidRange> mVpnUsers = null;
Chad Brubakerc2865192013-07-10 14:46:23 -0700127 private BroadcastReceiver mUserIntentReceiver = null;
128
Paul Jensen0784eea2014-08-19 16:00:24 -0400129 // Handle of user initiating VPN.
130 private final int mUserHandle;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700131
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400132 public Vpn(Looper looper, Context context, INetworkManagementService netService,
Paul Jensen0784eea2014-08-19 16:00:24 -0400133 IConnectivityManager connService, int userHandle) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700134 mContext = context;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400135 mNetd = netService;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700136 mConnService = connService;
Paul Jensen0784eea2014-08-19 16:00:24 -0400137 mUserHandle = userHandle;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400138 mLooper = looper;
139
140 mPackage = VpnConfig.LEGACY_VPN;
Paul Jensen0784eea2014-08-19 16:00:24 -0400141 mOwnerUID = getAppUid(mPackage, mUserHandle);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700142
143 try {
144 netService.registerObserver(mObserver);
145 } catch (RemoteException e) {
146 Log.wtf(TAG, "Problem registering observer", e);
147 }
Paul Jensen0784eea2014-08-19 16:00:24 -0400148 if (userHandle == UserHandle.USER_OWNER) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700149 // Owner's VPN also needs to handle restricted users
150 mUserIntentReceiver = new BroadcastReceiver() {
151 @Override
152 public void onReceive(Context context, Intent intent) {
153 final String action = intent.getAction();
Paul Jensen0784eea2014-08-19 16:00:24 -0400154 final int userHandle = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
Chad Brubakerc2865192013-07-10 14:46:23 -0700155 UserHandle.USER_NULL);
Paul Jensen0784eea2014-08-19 16:00:24 -0400156 if (userHandle == UserHandle.USER_NULL) return;
Chad Brubakerc2865192013-07-10 14:46:23 -0700157
158 if (Intent.ACTION_USER_ADDED.equals(action)) {
Paul Jensen0784eea2014-08-19 16:00:24 -0400159 onUserAdded(userHandle);
Chad Brubakerc2865192013-07-10 14:46:23 -0700160 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
Paul Jensen0784eea2014-08-19 16:00:24 -0400161 onUserRemoved(userHandle);
Chad Brubakerc2865192013-07-10 14:46:23 -0700162 }
163 }
164 };
165
166 IntentFilter intentFilter = new IntentFilter();
167 intentFilter.addAction(Intent.ACTION_USER_ADDED);
168 intentFilter.addAction(Intent.ACTION_USER_REMOVED);
169 mContext.registerReceiverAsUser(
170 mUserIntentReceiver, UserHandle.ALL, intentFilter, null, null);
171 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400172
173 mNetworkInfo = new NetworkInfo(ConnectivityManager.TYPE_VPN, 0, NETWORKTYPE, "");
174 // TODO: Copy metered attribute and bandwidths from physical transport, b/16207332
175 mNetworkCapabilities = new NetworkCapabilities();
176 mNetworkCapabilities.addTransportType(NetworkCapabilities.TRANSPORT_VPN);
177 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700178 }
179
Jeff Sharkey57666932013-04-30 17:01:57 -0700180 /**
Jeff Sharkey57666932013-04-30 17:01:57 -0700181 * Set if this object is responsible for watching for {@link NetworkInfo}
182 * teardown. When {@code false}, teardown is handled externally by someone
183 * else.
184 */
185 public void setEnableTeardown(boolean enableTeardown) {
186 mEnableTeardown = enableTeardown;
187 }
188
Jeff Sharkey899223b2012-08-04 15:24:58 -0700189 /**
190 * Update current state, dispaching event to listeners.
191 */
192 private void updateState(DetailedState detailedState, String reason) {
193 if (LOGD) Log.d(TAG, "setting state=" + detailedState + ", reason=" + reason);
194 mNetworkInfo.setDetailedState(detailedState, reason, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400195 if (mNetworkAgent != null) {
196 mNetworkAgent.sendNetworkInfo(mNetworkInfo);
197 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700198 }
199
200 /**
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700201 * Prepare for a VPN application. This method is designed to solve
202 * race conditions. It first compares the current prepared package
203 * with {@code oldPackage}. If they are the same, the prepared
204 * package is revoked and replaced with {@code newPackage}. If
205 * {@code oldPackage} is {@code null}, the comparison is omitted.
206 * If {@code newPackage} is the same package or {@code null}, the
207 * revocation is omitted. This method returns {@code true} if the
208 * operation is succeeded.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700209 *
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700210 * Legacy VPN is handled specially since it is not a real package.
211 * It uses {@link VpnConfig#LEGACY_VPN} as its package name, and
212 * it can be revoked by itself.
213 *
214 * @param oldPackage The package name of the old VPN application.
215 * @param newPackage The package name of the new VPN application.
216 * @return true if the operation is succeeded.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700217 */
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700218 public synchronized boolean prepare(String oldPackage, String newPackage) {
219 // Return false if the package does not match.
Jeff Davidsonbe085872014-10-24 10:35:53 -0700220 if (oldPackage != null && getAppUid(oldPackage, mUserHandle) != mOwnerUID) {
Jeff Davidson05542602014-08-11 14:07:27 -0700221 // The package doesn't match. If this VPN was not previously authorized, return false
222 // to force user authorization. Otherwise, revoke the VPN anyway.
223 if (!oldPackage.equals(VpnConfig.LEGACY_VPN) && isVpnUserPreConsented(oldPackage)) {
224 long token = Binder.clearCallingIdentity();
225 try {
226 // This looks bizarre, but it is what ConfirmDialog in VpnDialogs is doing when
227 // the user clicks through to allow the VPN to consent. So we are emulating the
228 // action of the dialog without actually showing it.
229 prepare(null, oldPackage);
230 } finally {
231 Binder.restoreCallingIdentity(token);
232 }
233 return true;
234 }
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700235 return false;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700236 }
237
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700238 // Return true if we do not need to revoke.
Jeff Davidsonbe085872014-10-24 10:35:53 -0700239 if (newPackage == null || (!newPackage.equals(VpnConfig.LEGACY_VPN) &&
240 getAppUid(newPackage, mUserHandle) == mOwnerUID)) {
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700241 return true;
242 }
243
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700244 // Check if the caller is authorized.
245 enforceControlPermission();
Chia-chi Yehe9107902011-07-02 01:48:50 -0700246
Jeff Davidson05542602014-08-11 14:07:27 -0700247 // Reset the interface.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700248 if (mInterface != null) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700249 mStatusIntent = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400250 agentDisconnect();
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700251 jniReset(mInterface);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700252 mInterface = null;
Chad Brubakerc2865192013-07-10 14:46:23 -0700253 mVpnUsers = null;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700254 }
255
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700256 // Revoke the connection or stop LegacyVpnRunner.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700257 if (mConnection != null) {
258 try {
259 mConnection.mService.transact(IBinder.LAST_CALL_TRANSACTION,
260 Parcel.obtain(), null, IBinder.FLAG_ONEWAY);
261 } catch (Exception e) {
262 // ignore
263 }
264 mContext.unbindService(mConnection);
265 mConnection = null;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700266 } else if (mLegacyVpnRunner != null) {
267 mLegacyVpnRunner.exit();
268 mLegacyVpnRunner = null;
269 }
270
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400271 long token = Binder.clearCallingIdentity();
272 try {
273 mNetd.denyProtect(mOwnerUID);
274 } catch (Exception e) {
275 Log.wtf(TAG, "Failed to disallow UID " + mOwnerUID + " to call protect() " + e);
276 } finally {
277 Binder.restoreCallingIdentity(token);
278 }
279
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700280 Log.i(TAG, "Switched from " + mPackage + " to " + newPackage);
281 mPackage = newPackage;
Paul Jensen0784eea2014-08-19 16:00:24 -0400282 mOwnerUID = getAppUid(newPackage, mUserHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400283 token = Binder.clearCallingIdentity();
284 try {
285 mNetd.allowProtect(mOwnerUID);
286 } catch (Exception e) {
287 Log.wtf(TAG, "Failed to allow UID " + mOwnerUID + " to call protect() " + e);
288 } finally {
289 Binder.restoreCallingIdentity(token);
290 }
Chad Brubakerc2865192013-07-10 14:46:23 -0700291 mConfig = null;
Jeff Davidson05542602014-08-11 14:07:27 -0700292
Jeff Sharkey899223b2012-08-04 15:24:58 -0700293 updateState(DetailedState.IDLE, "prepare");
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700294 return true;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700295 }
296
Jeff Davidson05542602014-08-11 14:07:27 -0700297 /**
298 * Set whether the current package has the ability to launch VPNs without user intervention.
299 */
300 public void setPackageAuthorization(boolean authorized) {
301 // Check if the caller is authorized.
302 enforceControlPermission();
303
304 if (mPackage == null || VpnConfig.LEGACY_VPN.equals(mPackage)) {
305 return;
306 }
307
308 long token = Binder.clearCallingIdentity();
309 try {
310 AppOpsManager appOps =
311 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
312 appOps.setMode(AppOpsManager.OP_ACTIVATE_VPN, mOwnerUID, mPackage,
313 authorized ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED);
314 } catch (Exception e) {
315 Log.wtf(TAG, "Failed to set app ops for package " + mPackage, e);
316 } finally {
317 Binder.restoreCallingIdentity(token);
318 }
319 }
320
321 private boolean isVpnUserPreConsented(String packageName) {
322 AppOpsManager appOps =
323 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
324
325 // Verify that the caller matches the given package and has permission to activate VPNs.
326 return appOps.noteOpNoThrow(AppOpsManager.OP_ACTIVATE_VPN, Binder.getCallingUid(),
327 packageName) == AppOpsManager.MODE_ALLOWED;
328 }
329
Paul Jensen0784eea2014-08-19 16:00:24 -0400330 private int getAppUid(String app, int userHandle) {
Jeff Davidson05542602014-08-11 14:07:27 -0700331 if (VpnConfig.LEGACY_VPN.equals(app)) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400332 return Process.myUid();
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700333 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400334 PackageManager pm = mContext.getPackageManager();
335 int result;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700336 try {
Paul Jensen0784eea2014-08-19 16:00:24 -0400337 result = pm.getPackageUid(app, userHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400338 } catch (NameNotFoundException e) {
339 result = -1;
340 }
341 return result;
342 }
343
344 public NetworkInfo getNetworkInfo() {
345 return mNetworkInfo;
346 }
347
Lorenzo Colitti60446162014-09-20 00:14:31 +0900348 private LinkProperties makeLinkProperties() {
349 boolean allowIPv4 = mConfig.allowIPv4;
350 boolean allowIPv6 = mConfig.allowIPv6;
351
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400352 LinkProperties lp = new LinkProperties();
Lorenzo Colitti60446162014-09-20 00:14:31 +0900353
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400354 lp.setInterfaceName(mInterface);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700355
Lorenzo Colitti60446162014-09-20 00:14:31 +0900356 if (mConfig.addresses != null) {
357 for (LinkAddress address : mConfig.addresses) {
358 lp.addLinkAddress(address);
359 allowIPv4 |= address.getAddress() instanceof Inet4Address;
360 allowIPv6 |= address.getAddress() instanceof Inet6Address;
361 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400362 }
Lorenzo Colitti60446162014-09-20 00:14:31 +0900363
364 if (mConfig.routes != null) {
365 for (RouteInfo route : mConfig.routes) {
366 lp.addRoute(route);
367 InetAddress address = route.getDestination().getAddress();
368 allowIPv4 |= address instanceof Inet4Address;
369 allowIPv6 |= address instanceof Inet6Address;
370 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400371 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700372
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400373 if (mConfig.dnsServers != null) {
374 for (String dnsServer : mConfig.dnsServers) {
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700375 InetAddress address = InetAddress.parseNumericAddress(dnsServer);
376 lp.addDnsServer(address);
Lorenzo Colitti60446162014-09-20 00:14:31 +0900377 allowIPv4 |= address instanceof Inet4Address;
378 allowIPv6 |= address instanceof Inet6Address;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400379 }
380 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700381
Lorenzo Colitti60446162014-09-20 00:14:31 +0900382 if (!allowIPv4) {
383 lp.addRoute(new RouteInfo(new IpPrefix(Inet4Address.ANY, 0), RTN_UNREACHABLE));
384 }
385 if (!allowIPv6) {
386 lp.addRoute(new RouteInfo(new IpPrefix(Inet6Address.ANY, 0), RTN_UNREACHABLE));
387 }
388
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400389 // Concatenate search domains into a string.
390 StringBuilder buffer = new StringBuilder();
391 if (mConfig.searchDomains != null) {
392 for (String domain : mConfig.searchDomains) {
393 buffer.append(domain).append(' ');
394 }
395 }
396 lp.setDomains(buffer.toString().trim());
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700397
Lorenzo Colitti60446162014-09-20 00:14:31 +0900398 // TODO: Stop setting the MTU in jniCreate and set it here.
399
400 return lp;
401 }
402
403 private void agentConnect() {
404 LinkProperties lp = makeLinkProperties();
405
406 if (lp.hasIPv4DefaultRoute() || lp.hasIPv6DefaultRoute()) {
407 mNetworkCapabilities.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
408 } else {
409 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
410 }
411
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400412 mNetworkInfo.setIsAvailable(true);
413 mNetworkInfo.setDetailedState(DetailedState.CONNECTED, null, null);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700414
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700415 NetworkMisc networkMisc = new NetworkMisc();
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700416 networkMisc.allowBypass = mConfig.allowBypass;
417
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400418 long token = Binder.clearCallingIdentity();
419 try {
420 mNetworkAgent = new NetworkAgent(mLooper, mContext, NETWORKTYPE,
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700421 mNetworkInfo, mNetworkCapabilities, lp, 0, networkMisc) {
Jeff Davidson05542602014-08-11 14:07:27 -0700422 @Override
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400423 public void unwanted() {
424 // We are user controlled, not driven by NetworkRequest.
Jeff Davidson05542602014-08-11 14:07:27 -0700425 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400426 };
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700427 } finally {
428 Binder.restoreCallingIdentity(token);
429 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700430
Paul Jensen0784eea2014-08-19 16:00:24 -0400431 addVpnUserLocked(mUserHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400432 // If we are owner assign all Restricted Users to this VPN
Paul Jensen0784eea2014-08-19 16:00:24 -0400433 if (mUserHandle == UserHandle.USER_OWNER) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400434 token = Binder.clearCallingIdentity();
435 List<UserInfo> users;
436 try {
437 users = UserManager.get(mContext).getUsers();
438 } finally {
439 Binder.restoreCallingIdentity(token);
440 }
441 for (UserInfo user : users) {
442 if (user.isRestricted()) {
443 addVpnUserLocked(user.id);
444 }
445 }
446 }
447 mNetworkAgent.addUidRanges(mVpnUsers.toArray(new UidRange[mVpnUsers.size()]));
448 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700449
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400450 private void agentDisconnect(NetworkInfo networkInfo, NetworkAgent networkAgent) {
451 networkInfo.setIsAvailable(false);
452 networkInfo.setDetailedState(DetailedState.DISCONNECTED, null, null);
453 if (networkAgent != null) {
454 networkAgent.sendNetworkInfo(networkInfo);
455 }
456 }
457
458 private void agentDisconnect(NetworkAgent networkAgent) {
459 NetworkInfo networkInfo = new NetworkInfo(mNetworkInfo);
460 agentDisconnect(networkInfo, networkAgent);
461 }
462
463 private void agentDisconnect() {
464 if (mNetworkInfo.isConnected()) {
465 agentDisconnect(mNetworkInfo, mNetworkAgent);
466 mNetworkAgent = null;
467 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700468 }
469
470 /**
Chia-chi Yehe9107902011-07-02 01:48:50 -0700471 * Establish a VPN network and return the file descriptor of the VPN
472 * interface. This methods returns {@code null} if the application is
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700473 * revoked or not prepared.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700474 *
475 * @param config The parameters to configure the network.
476 * @return The file descriptor of the VPN interface.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700477 */
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700478 public synchronized ParcelFileDescriptor establish(VpnConfig config) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700479 // Check if the caller is already prepared.
Chad Brubakerc2865192013-07-10 14:46:23 -0700480 UserManager mgr = UserManager.get(mContext);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400481 if (Binder.getCallingUid() != mOwnerUID) {
Chia-chi Yeh7b0b8342011-06-17 14:34:11 -0700482 return null;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700483 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700484 // Check if the service is properly declared.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700485 Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
486 intent.setClassName(mPackage, config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700487 long token = Binder.clearCallingIdentity();
488 try {
Chad Brubakerc2865192013-07-10 14:46:23 -0700489 // Restricted users are not allowed to create VPNs, they are tied to Owner
Paul Jensen0784eea2014-08-19 16:00:24 -0400490 UserInfo user = mgr.getUserInfo(mUserHandle);
Julia Reynoldsf5116d02014-07-01 11:10:41 -0400491 if (user.isRestricted() || mgr.hasUserRestriction(UserManager.DISALLOW_CONFIG_VPN)) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700492 throw new SecurityException("Restricted users cannot establish VPNs");
493 }
494
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700495 ResolveInfo info = AppGlobals.getPackageManager().resolveService(intent,
Paul Jensen0784eea2014-08-19 16:00:24 -0400496 null, 0, mUserHandle);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700497 if (info == null) {
498 throw new SecurityException("Cannot find " + config.user);
499 }
500 if (!BIND_VPN_SERVICE.equals(info.serviceInfo.permission)) {
501 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
502 }
503 } catch (RemoteException e) {
504 throw new SecurityException("Cannot find " + config.user);
505 } finally {
506 Binder.restoreCallingIdentity(token);
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700507 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700508
Chad Brubaker850eb672014-03-21 21:02:47 +0000509 // Save the old config in case we need to go back.
510 VpnConfig oldConfig = mConfig;
511 String oldInterface = mInterface;
512 Connection oldConnection = mConnection;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400513 NetworkAgent oldNetworkAgent = mNetworkAgent;
514 mNetworkAgent = null;
515 List<UidRange> oldUsers = mVpnUsers;
Chad Brubaker850eb672014-03-21 21:02:47 +0000516
Chia-chi Yehe9107902011-07-02 01:48:50 -0700517 // Configure the interface. Abort if any of these steps fails.
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700518 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700519 try {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700520 updateState(DetailedState.CONNECTING, "establish");
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700521 String interfaze = jniGetName(tun.getFd());
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700522
Chad Brubakerc2865192013-07-10 14:46:23 -0700523 // TEMP use the old jni calls until there is support for netd address setting
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700524 StringBuilder builder = new StringBuilder();
525 for (LinkAddress address : config.addresses) {
526 builder.append(" " + address);
527 }
528 if (jniSetAddresses(interfaze, builder.toString()) < 1) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700529 throw new IllegalArgumentException("At least one address must be specified");
530 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700531 Connection connection = new Connection();
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700532 if (!mContext.bindServiceAsUser(intent, connection, Context.BIND_AUTO_CREATE,
Paul Jensen0784eea2014-08-19 16:00:24 -0400533 new UserHandle(mUserHandle))) {
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700534 throw new IllegalStateException("Cannot bind " + config.user);
535 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000536
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700537 mConnection = connection;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700538 mInterface = interfaze;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700539
540 // Fill more values.
541 config.user = mPackage;
542 config.interfaze = mInterface;
Chad Brubakerc2865192013-07-10 14:46:23 -0700543 config.startTime = SystemClock.elapsedRealtime();
544 mConfig = config;
Chad Brubaker850eb672014-03-21 21:02:47 +0000545
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700546 // Set up forwarding and DNS rules.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400547 mVpnUsers = new ArrayList<UidRange>();
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700548
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400549 agentConnect();
Chad Brubaker850eb672014-03-21 21:02:47 +0000550
551 if (oldConnection != null) {
552 mContext.unbindService(oldConnection);
553 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400554 // Remove the old tun's user forwarding rules
555 // The new tun's user rules have already been added so they will take over
556 // as rules are deleted. This prevents data leakage as the rules are moved over.
557 agentDisconnect(oldNetworkAgent);
Chad Brubaker850eb672014-03-21 21:02:47 +0000558 if (oldInterface != null && !oldInterface.equals(interfaze)) {
Chad Brubaker850eb672014-03-21 21:02:47 +0000559 jniReset(oldInterface);
560 }
Jeff Davidson6bbf39c2014-07-23 10:14:53 -0700561
562 try {
563 IoUtils.setBlocking(tun.getFileDescriptor(), config.blocking);
564 } catch (IOException e) {
565 throw new IllegalStateException(
566 "Cannot set tunnel's fd as blocking=" + config.blocking, e);
567 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000568 } catch (RuntimeException e) {
Chad Brubaker850eb672014-03-21 21:02:47 +0000569 IoUtils.closeQuietly(tun);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400570 agentDisconnect();
Chad Brubaker850eb672014-03-21 21:02:47 +0000571 // restore old state
572 mConfig = oldConfig;
573 mConnection = oldConnection;
574 mVpnUsers = oldUsers;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400575 mNetworkAgent = oldNetworkAgent;
Chad Brubaker850eb672014-03-21 21:02:47 +0000576 mInterface = oldInterface;
577 throw e;
Chad Brubakerc2865192013-07-10 14:46:23 -0700578 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000579 Log.i(TAG, "Established by " + config.user + " on " + mInterface);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700580 return tun;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700581 }
582
Chad Brubakerc2865192013-07-10 14:46:23 -0700583 private boolean isRunningLocked() {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800584 return mNetworkAgent != null && mInterface != null;
585 }
586
587 // Returns true if the VPN has been established and the calling UID is its owner. Used to check
588 // that a call to mutate VPN state is admissible.
589 private boolean isCallerEstablishedOwnerLocked() {
590 return isRunningLocked() && Binder.getCallingUid() == mOwnerUID;
Chad Brubakerc2865192013-07-10 14:46:23 -0700591 }
592
Paul Jensen0784eea2014-08-19 16:00:24 -0400593 // Note: Return type guarantees results are deduped and sorted, which callers require.
594 private SortedSet<Integer> getAppsUids(List<String> packageNames, int userHandle) {
595 SortedSet<Integer> uids = new TreeSet<Integer>();
596 for (String app : packageNames) {
597 int uid = getAppUid(app, userHandle);
598 if (uid != -1) uids.add(uid);
599 }
600 return uids;
601 }
602
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400603 // Note: This function adds to mVpnUsers but does not publish list to NetworkAgent.
Paul Jensen0784eea2014-08-19 16:00:24 -0400604 private void addVpnUserLocked(int userHandle) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800605 if (mVpnUsers == null) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700606 throw new IllegalStateException("VPN is not active");
607 }
Robert Greenwalt69887e82013-09-24 11:05:57 -0700608
Paul Jensen0784eea2014-08-19 16:00:24 -0400609 if (mConfig.allowedApplications != null) {
610 // Add ranges covering all UIDs for allowedApplications.
611 int start = -1, stop = -1;
612 for (int uid : getAppsUids(mConfig.allowedApplications, userHandle)) {
613 if (start == -1) {
614 start = uid;
615 } else if (uid != stop + 1) {
616 mVpnUsers.add(new UidRange(start, stop));
617 start = uid;
618 }
619 stop = uid;
620 }
621 if (start != -1) mVpnUsers.add(new UidRange(start, stop));
622 } else if (mConfig.disallowedApplications != null) {
623 // Add all ranges for user skipping UIDs for disallowedApplications.
624 final UidRange userRange = UidRange.createForUser(userHandle);
625 int start = userRange.start;
626 for (int uid : getAppsUids(mConfig.disallowedApplications, userHandle)) {
627 if (uid == start) {
628 start++;
629 } else {
630 mVpnUsers.add(new UidRange(start, uid - 1));
631 start = uid + 1;
632 }
633 }
634 if (start <= userRange.stop) mVpnUsers.add(new UidRange(start, userRange.stop));
635 } else {
636 // Add all UIDs for the user.
637 mVpnUsers.add(UidRange.createForUser(userHandle));
638 }
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700639
640 prepareStatusIntent();
Chad Brubakerc2865192013-07-10 14:46:23 -0700641 }
642
Paul Jensen0784eea2014-08-19 16:00:24 -0400643 // Returns the subset of the full list of active UID ranges the VPN applies to (mVpnUsers) that
644 // apply to userHandle.
645 private List<UidRange> uidRangesForUser(int userHandle) {
646 final UidRange userRange = UidRange.createForUser(userHandle);
647 final List<UidRange> ranges = new ArrayList<UidRange>();
648 for (UidRange range : mVpnUsers) {
649 if (range.start >= userRange.start && range.stop <= userRange.stop) {
650 ranges.add(range);
651 }
652 }
653 return ranges;
654 }
655
656 private void removeVpnUserLocked(int userHandle) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800657 if (mVpnUsers == null) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700658 throw new IllegalStateException("VPN is not active");
659 }
Paul Jensen0784eea2014-08-19 16:00:24 -0400660 final List<UidRange> ranges = uidRangesForUser(userHandle);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700661 if (mNetworkAgent != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -0400662 mNetworkAgent.removeUidRanges(ranges.toArray(new UidRange[ranges.size()]));
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700663 }
Paul Jensen0784eea2014-08-19 16:00:24 -0400664 mVpnUsers.removeAll(ranges);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700665 mStatusIntent = null;
Chad Brubakerc2865192013-07-10 14:46:23 -0700666 }
667
Paul Jensen0784eea2014-08-19 16:00:24 -0400668 private void onUserAdded(int userHandle) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700669 // If the user is restricted tie them to the owner's VPN
670 synchronized(Vpn.this) {
671 UserManager mgr = UserManager.get(mContext);
Paul Jensen0784eea2014-08-19 16:00:24 -0400672 UserInfo user = mgr.getUserInfo(userHandle);
Chad Brubakerc2865192013-07-10 14:46:23 -0700673 if (user.isRestricted()) {
674 try {
Paul Jensen0784eea2014-08-19 16:00:24 -0400675 addVpnUserLocked(userHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400676 if (mNetworkAgent != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -0400677 final List<UidRange> ranges = uidRangesForUser(userHandle);
678 mNetworkAgent.addUidRanges(ranges.toArray(new UidRange[ranges.size()]));
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400679 }
Chad Brubakerc2865192013-07-10 14:46:23 -0700680 } catch (Exception e) {
681 Log.wtf(TAG, "Failed to add restricted user to owner", e);
682 }
683 }
684 }
685 }
686
Paul Jensen0784eea2014-08-19 16:00:24 -0400687 private void onUserRemoved(int userHandle) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700688 // clean up if restricted
689 synchronized(Vpn.this) {
690 UserManager mgr = UserManager.get(mContext);
Paul Jensen0784eea2014-08-19 16:00:24 -0400691 UserInfo user = mgr.getUserInfo(userHandle);
Chad Brubakerc2865192013-07-10 14:46:23 -0700692 if (user.isRestricted()) {
693 try {
Paul Jensen0784eea2014-08-19 16:00:24 -0400694 removeVpnUserLocked(userHandle);
Chad Brubakerc2865192013-07-10 14:46:23 -0700695 } catch (Exception e) {
696 Log.wtf(TAG, "Failed to remove restricted user to owner", e);
697 }
698 }
699 }
700 }
701
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -0700702 /**
703 * Return the configuration of the currently running VPN.
704 */
705 public VpnConfig getVpnConfig() {
706 enforceControlPermission();
707 return mConfig;
708 }
709
Jeff Sharkey899223b2012-08-04 15:24:58 -0700710 @Deprecated
711 public synchronized void interfaceStatusChanged(String iface, boolean up) {
712 try {
713 mObserver.interfaceStatusChanged(iface, up);
714 } catch (RemoteException e) {
715 // ignored; target is local
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700716 }
717 }
718
Jeff Sharkey899223b2012-08-04 15:24:58 -0700719 private INetworkManagementEventObserver mObserver = new BaseNetworkObserver() {
720 @Override
721 public void interfaceStatusChanged(String interfaze, boolean up) {
722 synchronized (Vpn.this) {
723 if (!up && mLegacyVpnRunner != null) {
724 mLegacyVpnRunner.check(interfaze);
725 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700726 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700727 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700728
Jeff Sharkey899223b2012-08-04 15:24:58 -0700729 @Override
730 public void interfaceRemoved(String interfaze) {
731 synchronized (Vpn.this) {
732 if (interfaze.equals(mInterface) && jniCheck(interfaze) == 0) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700733 mStatusIntent = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400734 mVpnUsers = null;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700735 mInterface = null;
736 if (mConnection != null) {
737 mContext.unbindService(mConnection);
738 mConnection = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400739 agentDisconnect();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700740 } else if (mLegacyVpnRunner != null) {
741 mLegacyVpnRunner.exit();
742 mLegacyVpnRunner = null;
743 }
744 }
745 }
746 }
747 };
Haoyu Baidb3c8672012-06-20 14:29:57 -0700748
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700749 private void enforceControlPermission() {
Jeff Davidsonbc19c182014-11-11 13:20:01 -0800750 mContext.enforceCallingPermission(Manifest.permission.CONTROL_VPN, "Unauthorized Caller");
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700751 }
752
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700753 private class Connection implements ServiceConnection {
754 private IBinder mService;
755
756 @Override
757 public void onServiceConnected(ComponentName name, IBinder service) {
758 mService = service;
759 }
760
761 @Override
762 public void onServiceDisconnected(ComponentName name) {
763 mService = null;
764 }
765 }
766
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700767 private void prepareStatusIntent() {
768 final long token = Binder.clearCallingIdentity();
769 try {
770 mStatusIntent = VpnConfig.getIntentForStatusPanel(mContext);
771 } finally {
772 Binder.restoreCallingIdentity(token);
773 }
774 }
775
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700776 public synchronized boolean addAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800777 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700778 return false;
779 }
780 boolean success = jniAddAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800781 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700782 return success;
783 }
784
785 public synchronized boolean removeAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800786 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700787 return false;
788 }
789 boolean success = jniDelAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800790 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700791 return success;
792 }
793
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -0800794 public synchronized boolean setUnderlyingNetworks(Network[] networks) {
795 if (!isCallerEstablishedOwnerLocked()) {
796 return false;
797 }
798 if (networks == null) {
799 mConfig.underlyingNetworks = null;
800 } else {
801 mConfig.underlyingNetworks = new Network[networks.length];
802 for (int i = 0; i < networks.length; ++i) {
803 if (networks[i] == null) {
804 mConfig.underlyingNetworks[i] = null;
805 } else {
806 mConfig.underlyingNetworks[i] = new Network(networks[i].netId);
807 }
808 }
809 }
810 return true;
811 }
812
813 public synchronized Network[] getUnderlyingNetworks() {
814 if (!isRunningLocked()) {
815 return null;
816 }
817 return mConfig.underlyingNetworks;
818 }
819
820 public synchronized boolean appliesToUid(int uid) {
821 if (!isRunningLocked()) {
822 return false;
823 }
824 for (UidRange uidRange : mVpnUsers) {
825 if (uidRange.start <= uid && uid <= uidRange.stop) {
826 return true;
827 }
828 }
829 return false;
830 }
831
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700832 private native int jniCreate(int mtu);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700833 private native String jniGetName(int tun);
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700834 private native int jniSetAddresses(String interfaze, String addresses);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700835 private native void jniReset(String interfaze);
836 private native int jniCheck(String interfaze);
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700837 private native boolean jniAddAddress(String interfaze, String address, int prefixLen);
838 private native boolean jniDelAddress(String interfaze, String address, int prefixLen);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700839
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900840 private static RouteInfo findIPv4DefaultRoute(LinkProperties prop) {
841 for (RouteInfo route : prop.getAllRoutes()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -0700842 // Currently legacy VPN only works on IPv4.
843 if (route.isDefaultRoute() && route.getGateway() instanceof Inet4Address) {
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900844 return route;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700845 }
846 }
Jeff Sharkey899223b2012-08-04 15:24:58 -0700847
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900848 throw new IllegalStateException("Unable to find IPv4 default gateway");
Jeff Sharkey82f85212012-08-24 11:17:25 -0700849 }
850
851 /**
852 * Start legacy VPN, controlling native daemons as needed. Creates a
853 * secondary thread to perform connection work, returning quickly.
854 */
855 public void startLegacyVpn(VpnProfile profile, KeyStore keyStore, LinkProperties egress) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -0800856 enforceControlPermission();
Kenny Rootb9594ce2013-02-14 10:18:38 -0800857 if (!keyStore.isUnlocked()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -0700858 throw new IllegalStateException("KeyStore isn't unlocked");
859 }
Julia Reynoldsf5116d02014-07-01 11:10:41 -0400860 UserManager mgr = UserManager.get(mContext);
Paul Jensen0784eea2014-08-19 16:00:24 -0400861 UserInfo user = mgr.getUserInfo(mUserHandle);
Julia Reynoldsf5116d02014-07-01 11:10:41 -0400862 if (user.isRestricted() || mgr.hasUserRestriction(UserManager.DISALLOW_CONFIG_VPN)) {
863 throw new SecurityException("Restricted users cannot establish VPNs");
864 }
Jeff Sharkey82f85212012-08-24 11:17:25 -0700865
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900866 final RouteInfo ipv4DefaultRoute = findIPv4DefaultRoute(egress);
867 final String gateway = ipv4DefaultRoute.getGateway().getHostAddress();
868 final String iface = ipv4DefaultRoute.getInterface();
Jeff Sharkey82f85212012-08-24 11:17:25 -0700869
870 // Load certificates.
871 String privateKey = "";
872 String userCert = "";
873 String caCert = "";
874 String serverCert = "";
875 if (!profile.ipsecUserCert.isEmpty()) {
876 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
877 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecUserCert);
Elliott Hughesd396a442013-06-28 16:24:48 -0700878 userCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700879 }
880 if (!profile.ipsecCaCert.isEmpty()) {
881 byte[] value = keyStore.get(Credentials.CA_CERTIFICATE + profile.ipsecCaCert);
Elliott Hughesd396a442013-06-28 16:24:48 -0700882 caCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700883 }
884 if (!profile.ipsecServerCert.isEmpty()) {
885 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecServerCert);
Elliott Hughesd396a442013-06-28 16:24:48 -0700886 serverCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700887 }
888 if (privateKey == null || userCert == null || caCert == null || serverCert == null) {
889 throw new IllegalStateException("Cannot load credentials");
890 }
891
892 // Prepare arguments for racoon.
893 String[] racoon = null;
894 switch (profile.type) {
895 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
896 racoon = new String[] {
897 iface, profile.server, "udppsk", profile.ipsecIdentifier,
898 profile.ipsecSecret, "1701",
899 };
900 break;
901 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
902 racoon = new String[] {
903 iface, profile.server, "udprsa", privateKey, userCert,
904 caCert, serverCert, "1701",
905 };
906 break;
907 case VpnProfile.TYPE_IPSEC_XAUTH_PSK:
908 racoon = new String[] {
909 iface, profile.server, "xauthpsk", profile.ipsecIdentifier,
910 profile.ipsecSecret, profile.username, profile.password, "", gateway,
911 };
912 break;
913 case VpnProfile.TYPE_IPSEC_XAUTH_RSA:
914 racoon = new String[] {
915 iface, profile.server, "xauthrsa", privateKey, userCert,
916 caCert, serverCert, profile.username, profile.password, "", gateway,
917 };
918 break;
919 case VpnProfile.TYPE_IPSEC_HYBRID_RSA:
920 racoon = new String[] {
921 iface, profile.server, "hybridrsa",
922 caCert, serverCert, profile.username, profile.password, "", gateway,
923 };
924 break;
925 }
926
927 // Prepare arguments for mtpd.
928 String[] mtpd = null;
929 switch (profile.type) {
930 case VpnProfile.TYPE_PPTP:
931 mtpd = new String[] {
932 iface, "pptp", profile.server, "1723",
933 "name", profile.username, "password", profile.password,
934 "linkname", "vpn", "refuse-eap", "nodefaultroute",
935 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
936 (profile.mppe ? "+mppe" : "nomppe"),
937 };
938 break;
939 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
940 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
941 mtpd = new String[] {
942 iface, "l2tp", profile.server, "1701", profile.l2tpSecret,
943 "name", profile.username, "password", profile.password,
944 "linkname", "vpn", "refuse-eap", "nodefaultroute",
945 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
946 };
947 break;
948 }
949
950 VpnConfig config = new VpnConfig();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700951 config.legacy = true;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700952 config.user = profile.key;
953 config.interfaze = iface;
954 config.session = profile.name;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700955
956 config.addLegacyRoutes(profile.routes);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700957 if (!profile.dnsServers.isEmpty()) {
958 config.dnsServers = Arrays.asList(profile.dnsServers.split(" +"));
959 }
960 if (!profile.searchDomains.isEmpty()) {
961 config.searchDomains = Arrays.asList(profile.searchDomains.split(" +"));
962 }
Jeff Sharkey82f85212012-08-24 11:17:25 -0700963 startLegacyVpn(config, racoon, mtpd);
964 }
965
966 private synchronized void startLegacyVpn(VpnConfig config, String[] racoon, String[] mtpd) {
967 stopLegacyVpn();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700968
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700969 // Prepare for the new request. This also checks the caller.
970 prepare(null, VpnConfig.LEGACY_VPN);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700971 updateState(DetailedState.CONNECTING, "startLegacyVpn");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700972
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700973 // Start a new LegacyVpnRunner and we are done!
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700974 mLegacyVpnRunner = new LegacyVpnRunner(config, racoon, mtpd);
975 mLegacyVpnRunner.start();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700976 }
977
Jeff Sharkey899223b2012-08-04 15:24:58 -0700978 public synchronized void stopLegacyVpn() {
979 if (mLegacyVpnRunner != null) {
980 mLegacyVpnRunner.exit();
981 mLegacyVpnRunner = null;
982
983 synchronized (LegacyVpnRunner.TAG) {
984 // wait for old thread to completely finish before spinning up
985 // new instance, otherwise state updates can be out of order.
986 }
987 }
988 }
989
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700990 /**
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700991 * Return the information of the current ongoing legacy VPN.
992 */
993 public synchronized LegacyVpnInfo getLegacyVpnInfo() {
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700994 // Check if the caller is authorized.
995 enforceControlPermission();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700996 if (mLegacyVpnRunner == null) return null;
997
998 final LegacyVpnInfo info = new LegacyVpnInfo();
Chad Brubakerc2865192013-07-10 14:46:23 -0700999 info.key = mConfig.user;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001000 info.state = LegacyVpnInfo.stateFromNetworkInfo(mNetworkInfo);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001001 if (mNetworkInfo.isConnected()) {
1002 info.intent = mStatusIntent;
1003 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001004 return info;
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001005 }
1006
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001007 public VpnConfig getLegacyVpnConfig() {
1008 if (mLegacyVpnRunner != null) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001009 return mConfig;
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001010 } else {
1011 return null;
1012 }
1013 }
1014
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001015 /**
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001016 * Bringing up a VPN connection takes time, and that is all this thread
1017 * does. Here we have plenty of time. The only thing we need to take
1018 * care of is responding to interruptions as soon as possible. Otherwise
1019 * requests will be piled up. This can be done in a Handler as a state
1020 * machine, but it is much easier to read in the current form.
1021 */
1022 private class LegacyVpnRunner extends Thread {
1023 private static final String TAG = "LegacyVpnRunner";
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001024
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001025 private final String[] mDaemons;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001026 private final String[][] mArguments;
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001027 private final LocalSocket[] mSockets;
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001028 private final String mOuterInterface;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001029 private final AtomicInteger mOuterConnection =
1030 new AtomicInteger(ConnectivityManager.TYPE_NONE);
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001031
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001032 private long mTimer = -1;
1033
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001034 /**
1035 * Watch for the outer connection (passing in the constructor) going away.
1036 */
1037 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
1038 @Override
1039 public void onReceive(Context context, Intent intent) {
Jeff Sharkey57666932013-04-30 17:01:57 -07001040 if (!mEnableTeardown) return;
1041
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001042 if (intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
1043 if (intent.getIntExtra(ConnectivityManager.EXTRA_NETWORK_TYPE,
1044 ConnectivityManager.TYPE_NONE) == mOuterConnection.get()) {
1045 NetworkInfo info = (NetworkInfo)intent.getExtra(
1046 ConnectivityManager.EXTRA_NETWORK_INFO);
1047 if (info != null && !info.isConnectedOrConnecting()) {
1048 try {
1049 mObserver.interfaceStatusChanged(mOuterInterface, false);
1050 } catch (RemoteException e) {}
1051 }
1052 }
1053 }
1054 }
1055 };
1056
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001057 public LegacyVpnRunner(VpnConfig config, String[] racoon, String[] mtpd) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001058 super(TAG);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001059 mConfig = config;
1060 mDaemons = new String[] {"racoon", "mtpd"};
Jeff Sharkey899223b2012-08-04 15:24:58 -07001061 // TODO: clear arguments from memory once launched
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001062 mArguments = new String[][] {racoon, mtpd};
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001063 mSockets = new LocalSocket[mDaemons.length];
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001064
1065 // This is the interface which VPN is running on,
1066 // mConfig.interfaze will change to point to OUR
1067 // internal interface soon. TODO - add inner/outer to mconfig
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001068 // TODO - we have a race - if the outer iface goes away/disconnects before we hit this
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001069 // we will leave the VPN up. We should check that it's still there/connected after
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001070 // registering
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001071 mOuterInterface = mConfig.interfaze;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001072
1073 try {
1074 mOuterConnection.set(
1075 mConnService.findConnectionTypeForIface(mOuterInterface));
1076 } catch (Exception e) {
1077 mOuterConnection.set(ConnectivityManager.TYPE_NONE);
1078 }
1079
1080 IntentFilter filter = new IntentFilter();
1081 filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
1082 mContext.registerReceiver(mBroadcastReceiver, filter);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001083 }
1084
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001085 public void check(String interfaze) {
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001086 if (interfaze.equals(mOuterInterface)) {
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001087 Log.i(TAG, "Legacy VPN is going down with " + interfaze);
1088 exit();
1089 }
1090 }
1091
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001092 public void exit() {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001093 // We assume that everything is reset after stopping the daemons.
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001094 interrupt();
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001095 for (LocalSocket socket : mSockets) {
Jeff Sharkey065b2992012-08-05 14:16:48 -07001096 IoUtils.closeQuietly(socket);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001097 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001098 agentDisconnect();
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001099 try {
1100 mContext.unregisterReceiver(mBroadcastReceiver);
1101 } catch (IllegalArgumentException e) {}
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001102 }
1103
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001104 @Override
1105 public void run() {
1106 // Wait for the previous thread since it has been interrupted.
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001107 Log.v(TAG, "Waiting");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001108 synchronized (TAG) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001109 Log.v(TAG, "Executing");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001110 execute();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001111 monitorDaemons();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001112 }
1113 }
1114
1115 private void checkpoint(boolean yield) throws InterruptedException {
1116 long now = SystemClock.elapsedRealtime();
1117 if (mTimer == -1) {
1118 mTimer = now;
1119 Thread.sleep(1);
Chia-chi Yeh7ef86112011-07-22 15:46:52 -07001120 } else if (now - mTimer <= 60000) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001121 Thread.sleep(yield ? 200 : 1);
1122 } else {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001123 updateState(DetailedState.FAILED, "checkpoint");
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001124 throw new IllegalStateException("Time is up");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001125 }
1126 }
1127
1128 private void execute() {
1129 // Catch all exceptions so we can clean up few things.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001130 boolean initFinished = false;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001131 try {
1132 // Initialize the timer.
1133 checkpoint(false);
1134
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001135 // Wait for the daemons to stop.
1136 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001137 while (!SystemService.isStopped(daemon)) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001138 checkpoint(true);
1139 }
1140 }
1141
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001142 // Clear the previous state.
1143 File state = new File("/data/misc/vpn/state");
1144 state.delete();
1145 if (state.exists()) {
1146 throw new IllegalStateException("Cannot delete the state");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001147 }
Chia-chi Yehc1872732011-12-08 16:51:41 -08001148 new File("/data/misc/vpn/abort").delete();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001149 initFinished = true;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001150
Chia-chi Yehe9107902011-07-02 01:48:50 -07001151 // Check if we need to restart any of the daemons.
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001152 boolean restart = false;
1153 for (String[] arguments : mArguments) {
1154 restart = restart || (arguments != null);
1155 }
1156 if (!restart) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001157 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001158 return;
1159 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001160 updateState(DetailedState.CONNECTING, "execute");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001161
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001162 // Start the daemon with arguments.
1163 for (int i = 0; i < mDaemons.length; ++i) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001164 String[] arguments = mArguments[i];
1165 if (arguments == null) {
1166 continue;
1167 }
1168
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001169 // Start the daemon.
1170 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001171 SystemService.start(daemon);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001172
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001173 // Wait for the daemon to start.
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001174 while (!SystemService.isRunning(daemon)) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001175 checkpoint(true);
1176 }
1177
1178 // Create the control socket.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001179 mSockets[i] = new LocalSocket();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001180 LocalSocketAddress address = new LocalSocketAddress(
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001181 daemon, LocalSocketAddress.Namespace.RESERVED);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001182
1183 // Wait for the socket to connect.
1184 while (true) {
1185 try {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001186 mSockets[i].connect(address);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001187 break;
1188 } catch (Exception e) {
1189 // ignore
1190 }
1191 checkpoint(true);
1192 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001193 mSockets[i].setSoTimeout(500);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001194
1195 // Send over the arguments.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001196 OutputStream out = mSockets[i].getOutputStream();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001197 for (String argument : arguments) {
Elliott Hughesd396a442013-06-28 16:24:48 -07001198 byte[] bytes = argument.getBytes(StandardCharsets.UTF_8);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001199 if (bytes.length >= 0xFFFF) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001200 throw new IllegalArgumentException("Argument is too large");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001201 }
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001202 out.write(bytes.length >> 8);
1203 out.write(bytes.length);
1204 out.write(bytes);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001205 checkpoint(false);
1206 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001207 out.write(0xFF);
1208 out.write(0xFF);
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001209 out.flush();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001210
1211 // Wait for End-of-File.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001212 InputStream in = mSockets[i].getInputStream();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001213 while (true) {
1214 try {
1215 if (in.read() == -1) {
1216 break;
1217 }
1218 } catch (Exception e) {
1219 // ignore
1220 }
1221 checkpoint(true);
1222 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001223 }
1224
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001225 // Wait for the daemons to create the new state.
1226 while (!state.exists()) {
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001227 // Check if a running daemon is dead.
1228 for (int i = 0; i < mDaemons.length; ++i) {
1229 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001230 if (mArguments[i] != null && !SystemService.isRunning(daemon)) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001231 throw new IllegalStateException(daemon + " is dead");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001232 }
1233 }
1234 checkpoint(true);
1235 }
1236
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001237 // Now we are connected. Read and parse the new state.
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -08001238 String[] parameters = FileUtils.readTextFile(state, 0, null).split("\n", -1);
Lorenzo Colitti50262792014-09-19 01:53:35 +09001239 if (parameters.length != 7) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001240 throw new IllegalStateException("Cannot parse the state");
1241 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001242
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001243 // Set the interface and the addresses in the config.
1244 mConfig.interfaze = parameters[0].trim();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001245
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001246 mConfig.addLegacyAddresses(parameters[1]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001247 // Set the routes if they are not set in the config.
1248 if (mConfig.routes == null || mConfig.routes.isEmpty()) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001249 mConfig.addLegacyRoutes(parameters[2]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001250 }
1251
1252 // Set the DNS servers if they are not set in the config.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001253 if (mConfig.dnsServers == null || mConfig.dnsServers.size() == 0) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001254 String dnsServers = parameters[3].trim();
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001255 if (!dnsServers.isEmpty()) {
1256 mConfig.dnsServers = Arrays.asList(dnsServers.split(" "));
1257 }
1258 }
1259
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001260 // Set the search domains if they are not set in the config.
1261 if (mConfig.searchDomains == null || mConfig.searchDomains.size() == 0) {
1262 String searchDomains = parameters[4].trim();
1263 if (!searchDomains.isEmpty()) {
1264 mConfig.searchDomains = Arrays.asList(searchDomains.split(" "));
1265 }
1266 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07001267
Lorenzo Colitti50262792014-09-19 01:53:35 +09001268 // Add a throw route for the VPN server endpoint, if one was specified.
1269 String endpoint = parameters[5];
1270 if (!endpoint.isEmpty()) {
1271 try {
1272 InetAddress addr = InetAddress.parseNumericAddress(endpoint);
1273 if (addr instanceof Inet4Address) {
1274 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 32), RTN_THROW));
1275 } else if (addr instanceof Inet6Address) {
1276 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 128), RTN_THROW));
1277 } else {
1278 Log.e(TAG, "Unknown IP address family for VPN endpoint: " + endpoint);
1279 }
1280 } catch (IllegalArgumentException e) {
1281 Log.e(TAG, "Exception constructing throw route to " + endpoint + ": " + e);
1282 }
1283 }
1284
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001285 // Here is the last step and it must be done synchronously.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001286 synchronized (Vpn.this) {
Vinit Deshapnde2b862e52013-10-02 11:50:39 -07001287 // Set the start time
1288 mConfig.startTime = SystemClock.elapsedRealtime();
1289
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001290 // Check if the thread is interrupted while we are waiting.
1291 checkpoint(false);
1292
Chia-chi Yehe9107902011-07-02 01:48:50 -07001293 // Check if the interface is gone while we are waiting.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001294 if (jniCheck(mConfig.interfaze) == 0) {
Chia-chi Yeh34e78132011-07-03 03:07:07 -07001295 throw new IllegalStateException(mConfig.interfaze + " is gone");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001296 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07001297
1298 // Now INetworkManagementEventObserver is watching our back.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001299 mInterface = mConfig.interfaze;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001300 mVpnUsers = new ArrayList<UidRange>();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001301
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001302 agentConnect();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001303
1304 Log.i(TAG, "Connected!");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001305 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001306 } catch (Exception e) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001307 Log.i(TAG, "Aborting", e);
Lorenzo Colitti43840602014-08-20 16:01:44 -07001308 updateState(DetailedState.FAILED, e.getMessage());
Chia-chi Yehe9107902011-07-02 01:48:50 -07001309 exit();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001310 } finally {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001311 // Kill the daemons if they fail to stop.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001312 if (!initFinished) {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001313 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001314 SystemService.stop(daemon);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001315 }
1316 }
1317
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001318 // Do not leave an unstable state.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001319 if (!initFinished || mNetworkInfo.getDetailedState() == DetailedState.CONNECTING) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001320 agentDisconnect();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001321 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001322 }
1323 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001324
1325 /**
1326 * Monitor the daemons we started, moving to disconnected state if the
1327 * underlying services fail.
1328 */
1329 private void monitorDaemons() {
1330 if (!mNetworkInfo.isConnected()) {
1331 return;
1332 }
1333
1334 try {
1335 while (true) {
1336 Thread.sleep(2000);
1337 for (int i = 0; i < mDaemons.length; i++) {
1338 if (mArguments[i] != null && SystemService.isStopped(mDaemons[i])) {
1339 return;
1340 }
1341 }
1342 }
1343 } catch (InterruptedException e) {
1344 Log.d(TAG, "interrupted during monitorDaemons(); stopping services");
1345 } finally {
1346 for (String daemon : mDaemons) {
1347 SystemService.stop(daemon);
1348 }
1349
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001350 agentDisconnect();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001351 }
1352 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001353 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07001354}