blob: c7a43153c0aa9d7a594579ceb561c17f146a6675 [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 Jensen31a94f42015-02-13 14:18:39 -050020import static android.net.ConnectivityManager.NETID_UNSET;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060021import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_METERED;
22import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_ROAMING;
Lorenzo Colitti50262792014-09-19 01:53:35 +090023import static android.net.RouteInfo.RTN_THROW;
Lorenzo Colitti60446162014-09-20 00:14:31 +090024import static android.net.RouteInfo.RTN_UNREACHABLE;
Jeff Sharkey899223b2012-08-04 15:24:58 -070025
Jeff Davidsonbc19c182014-11-11 13:20:01 -080026import android.Manifest;
Robin Lee4d03abc2016-05-09 12:32:27 +010027import android.annotation.NonNull;
28import android.annotation.Nullable;
29import android.annotation.UserIdInt;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070030import android.app.AppGlobals;
Jeff Davidson05542602014-08-11 14:07:27 -070031import android.app.AppOpsManager;
Tony Mak1a405fe2016-06-30 11:19:20 +010032import android.app.Notification;
33import android.app.NotificationManager;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -070034import android.app.PendingIntent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070035import android.content.BroadcastReceiver;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070036import android.content.ComponentName;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070037import android.content.Context;
38import android.content.Intent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070039import android.content.IntentFilter;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070040import android.content.ServiceConnection;
Charles Hea0a87e82017-05-15 17:07:18 +010041import android.content.pm.ApplicationInfo;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070042import android.content.pm.PackageManager;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040043import android.content.pm.PackageManager.NameNotFoundException;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070044import android.content.pm.ResolveInfo;
Chad Brubakerc2865192013-07-10 14:46:23 -070045import android.content.pm.UserInfo;
Jeff Sharkey899223b2012-08-04 15:24:58 -070046import android.net.ConnectivityManager;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070047import android.net.INetworkManagementEventObserver;
Lorenzo Colitti50262792014-09-19 01:53:35 +090048import android.net.IpPrefix;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070049import android.net.LinkAddress;
Jeff Sharkey82f85212012-08-24 11:17:25 -070050import android.net.LinkProperties;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070051import android.net.LocalSocket;
52import android.net.LocalSocketAddress;
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -080053import android.net.Network;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040054import android.net.NetworkAgent;
55import android.net.NetworkCapabilities;
Jeff Sharkey899223b2012-08-04 15:24:58 -070056import android.net.NetworkInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040057import android.net.NetworkInfo.DetailedState;
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -070058import android.net.NetworkMisc;
Jeff Sharkey82f85212012-08-24 11:17:25 -070059import android.net.RouteInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040060import android.net.UidRange;
Robin Lee812800c2016-05-13 15:38:08 +010061import android.net.Uri;
Charles Hea0a87e82017-05-15 17:07:18 +010062import android.net.VpnService;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070063import android.os.Binder;
Charles Hea0a87e82017-05-15 17:07:18 +010064import android.os.Build.VERSION_CODES;
65import android.os.Bundle;
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -080066import android.os.FileUtils;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070067import android.os.IBinder;
Jeff Sharkey899223b2012-08-04 15:24:58 -070068import android.os.INetworkManagementService;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040069import android.os.Looper;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070070import android.os.Parcel;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070071import android.os.ParcelFileDescriptor;
Robin Lee812800c2016-05-13 15:38:08 +010072import android.os.PatternMatcher;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070073import android.os.Process;
Jeff Sharkey899223b2012-08-04 15:24:58 -070074import android.os.RemoteException;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070075import android.os.SystemClock;
Jeff Sharkey088f29f2012-08-05 14:55:04 -070076import android.os.SystemService;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070077import android.os.UserHandle;
Chad Brubakerc2865192013-07-10 14:46:23 -070078import android.os.UserManager;
Robin Lee812800c2016-05-13 15:38:08 +010079import android.provider.Settings;
Jeff Sharkey82f85212012-08-24 11:17:25 -070080import android.security.Credentials;
81import android.security.KeyStore;
Paul Jensene75b9e32015-04-06 11:54:53 -040082import android.text.TextUtils;
Robin Lee4d03abc2016-05-09 12:32:27 +010083import android.util.ArraySet;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070084import android.util.Log;
85
Tony Mak1a405fe2016-06-30 11:19:20 +010086import com.android.internal.R;
Chad Brubakerc2865192013-07-10 14:46:23 -070087import com.android.internal.annotations.GuardedBy;
Robin Lee4d03abc2016-05-09 12:32:27 +010088import com.android.internal.annotations.VisibleForTesting;
Chris Wren282cfef2017-03-27 15:01:44 -040089import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
Chia-chi Yeh2e467642011-07-04 03:23:12 -070090import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070091import com.android.internal.net.VpnConfig;
Wenchao Tongf5ea3402015-03-04 13:26:38 -080092import com.android.internal.net.VpnInfo;
Jeff Sharkey82f85212012-08-24 11:17:25 -070093import com.android.internal.net.VpnProfile;
Geoffrey Pitschaf759c52017-02-15 09:35:38 -050094import com.android.internal.notification.SystemNotificationChannels;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060095import com.android.internal.util.ArrayUtils;
96import com.android.server.ConnectivityService;
Christopher Tatee0be7e82017-02-08 17:38:20 -080097import com.android.server.DeviceIdleController;
98import com.android.server.LocalServices;
Jeff Sharkey899223b2012-08-04 15:24:58 -070099import com.android.server.net.BaseNetworkObserver;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700100
Jeff Davidson05542602014-08-11 14:07:27 -0700101import libcore.io.IoUtils;
102
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700103import java.io.File;
Jeff Davidson6bbf39c2014-07-23 10:14:53 -0700104import java.io.IOException;
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700105import java.io.InputStream;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700106import java.io.OutputStream;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700107import java.net.Inet4Address;
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700108import java.net.Inet6Address;
109import java.net.InetAddress;
Elliott Hughesd396a442013-06-28 16:24:48 -0700110import java.nio.charset.StandardCharsets;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400111import java.util.ArrayList;
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700112import java.util.Arrays;
Robin Lee4d03abc2016-05-09 12:32:27 +0100113import java.util.Collection;
114import java.util.Collections;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400115import java.util.List;
Robin Lee4d03abc2016-05-09 12:32:27 +0100116import java.util.Set;
Paul Jensen0784eea2014-08-19 16:00:24 -0400117import java.util.SortedSet;
118import java.util.TreeSet;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700119import java.util.concurrent.atomic.AtomicInteger;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700120
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700121/**
122 * @hide
123 */
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400124public class Vpn {
125 private static final String NETWORKTYPE = "VPN";
Jeff Sharkey899223b2012-08-04 15:24:58 -0700126 private static final String TAG = "Vpn";
127 private static final boolean LOGD = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400128
Christopher Tatee0be7e82017-02-08 17:38:20 -0800129 // Length of time (in milliseconds) that an app hosting an always-on VPN is placed on
130 // the device idle whitelist during service launch and VPN bootstrap.
131 private static final long VPN_LAUNCH_IDLE_WHITELIST_DURATION = 60 * 1000;
132
Jeff Sharkey899223b2012-08-04 15:24:58 -0700133 // TODO: create separate trackers for each unique VPN to support
134 // automated reconnection
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700135
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400136 private Context mContext;
137 private NetworkInfo mNetworkInfo;
138 private String mPackage;
139 private int mOwnerUID;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700140 private String mInterface;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700141 private Connection mConnection;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700142 private LegacyVpnRunner mLegacyVpnRunner;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700143 private PendingIntent mStatusIntent;
Jeff Sharkey57666932013-04-30 17:01:57 -0700144 private volatile boolean mEnableTeardown = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400145 private final INetworkManagementService mNetd;
Chad Brubakerc2865192013-07-10 14:46:23 -0700146 private VpnConfig mConfig;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400147 private NetworkAgent mNetworkAgent;
148 private final Looper mLooper;
149 private final NetworkCapabilities mNetworkCapabilities;
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000150 private final SystemServices mSystemServices;
Chad Brubakerc2865192013-07-10 14:46:23 -0700151
Robin Lee4d03abc2016-05-09 12:32:27 +0100152 /**
Robin Lee17e61832016-05-09 13:46:28 +0100153 * Whether to keep the connection active after rebooting, or upgrading or reinstalling. This
154 * only applies to {@link VpnService} connections.
155 */
156 private boolean mAlwaysOn = false;
157
158 /**
159 * Whether to disable traffic outside of this VPN even when the VPN is not connected. System
160 * apps can still bypass by choosing explicit networks. Has no effect if {@link mAlwaysOn} is
161 * not set.
162 */
163 private boolean mLockdown = false;
164
165 /**
Robin Lee4d03abc2016-05-09 12:32:27 +0100166 * List of UIDs that are set to use this VPN by default. Normally, every UID in the user is
167 * added to this set but that can be changed by adding allowed or disallowed applications. It
168 * is non-null iff the VPN is connected.
169 *
170 * Unless the VPN has set allowBypass=true, these UIDs are forced into the VPN.
171 *
172 * @see VpnService.Builder#addAllowedApplication(String)
173 * @see VpnService.Builder#addDisallowedApplication(String)
174 */
Chad Brubakerc2865192013-07-10 14:46:23 -0700175 @GuardedBy("this")
Robin Lee4d03abc2016-05-09 12:32:27 +0100176 private Set<UidRange> mVpnUsers = null;
Chad Brubakerc2865192013-07-10 14:46:23 -0700177
Robin Lee17e61832016-05-09 13:46:28 +0100178 /**
179 * List of UIDs for which networking should be blocked until VPN is ready, during brief periods
180 * when VPN is not running. For example, during system startup or after a crash.
181 * @see mLockdown
182 */
183 @GuardedBy("this")
184 private Set<UidRange> mBlockedUsers = new ArraySet<>();
185
Paul Jensen0784eea2014-08-19 16:00:24 -0400186 // Handle of user initiating VPN.
187 private final int mUserHandle;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700188
Robin Lee812800c2016-05-13 15:38:08 +0100189 // Listen to package remove and change event in this user
190 private final BroadcastReceiver mPackageIntentReceiver = new BroadcastReceiver() {
191 @Override
192 public void onReceive(Context context, Intent intent) {
193 final Uri data = intent.getData();
194 final String packageName = data == null ? null : data.getSchemeSpecificPart();
195 if (packageName == null) {
196 return;
197 }
198
199 synchronized (Vpn.this) {
200 // Avoid race that always-on package has been unset
201 if (!packageName.equals(getAlwaysOnPackage())) {
202 return;
203 }
204
205 final String action = intent.getAction();
206 Log.i(TAG, "Received broadcast " + action + " for always-on package " + packageName
207 + " in user " + mUserHandle);
208
209 switch(action) {
210 case Intent.ACTION_PACKAGE_REPLACED:
211 // Start vpn after app upgrade
212 startAlwaysOnVpn();
213 break;
214 case Intent.ACTION_PACKAGE_REMOVED:
215 final boolean isPackageRemoved = !intent.getBooleanExtra(
216 Intent.EXTRA_REPLACING, false);
217 if (isPackageRemoved) {
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000218 setAlwaysOnPackage(null, false);
Robin Lee812800c2016-05-13 15:38:08 +0100219 }
220 break;
221 }
222 }
223 }
224 };
225
226 private boolean mIsPackageIntentReceiverRegistered = false;
227
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400228 public Vpn(Looper looper, Context context, INetworkManagementService netService,
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000229 @UserIdInt int userHandle) {
230 this(looper, context, netService, userHandle, new SystemServices(context));
231 }
232
233 @VisibleForTesting
234 protected Vpn(Looper looper, Context context, INetworkManagementService netService,
235 int userHandle, SystemServices systemServices) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700236 mContext = context;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400237 mNetd = netService;
Paul Jensen0784eea2014-08-19 16:00:24 -0400238 mUserHandle = userHandle;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400239 mLooper = looper;
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000240 mSystemServices = systemServices;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400241
242 mPackage = VpnConfig.LEGACY_VPN;
Paul Jensen0784eea2014-08-19 16:00:24 -0400243 mOwnerUID = getAppUid(mPackage, mUserHandle);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700244
245 try {
246 netService.registerObserver(mObserver);
247 } catch (RemoteException e) {
248 Log.wtf(TAG, "Problem registering observer", e);
249 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400250
251 mNetworkInfo = new NetworkInfo(ConnectivityManager.TYPE_VPN, 0, NETWORKTYPE, "");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400252 mNetworkCapabilities = new NetworkCapabilities();
253 mNetworkCapabilities.addTransportType(NetworkCapabilities.TRANSPORT_VPN);
254 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600255 updateCapabilities();
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000256
257 loadAlwaysOnPackage();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700258 }
259
Jeff Sharkey57666932013-04-30 17:01:57 -0700260 /**
Jeff Sharkey57666932013-04-30 17:01:57 -0700261 * Set if this object is responsible for watching for {@link NetworkInfo}
262 * teardown. When {@code false}, teardown is handled externally by someone
263 * else.
264 */
265 public void setEnableTeardown(boolean enableTeardown) {
266 mEnableTeardown = enableTeardown;
267 }
268
Jeff Sharkey899223b2012-08-04 15:24:58 -0700269 /**
270 * Update current state, dispaching event to listeners.
271 */
Tony Mak1a405fe2016-06-30 11:19:20 +0100272 @VisibleForTesting
273 protected void updateState(DetailedState detailedState, String reason) {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700274 if (LOGD) Log.d(TAG, "setting state=" + detailedState + ", reason=" + reason);
275 mNetworkInfo.setDetailedState(detailedState, reason, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400276 if (mNetworkAgent != null) {
277 mNetworkAgent.sendNetworkInfo(mNetworkInfo);
278 }
Tony Mak1a405fe2016-06-30 11:19:20 +0100279 updateAlwaysOnNotification(detailedState);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700280 }
281
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600282 public void updateCapabilities() {
283 final Network[] underlyingNetworks = (mConfig != null) ? mConfig.underlyingNetworks : null;
284 updateCapabilities(mContext.getSystemService(ConnectivityManager.class), underlyingNetworks,
285 mNetworkCapabilities);
286
287 if (mNetworkAgent != null) {
288 mNetworkAgent.sendNetworkCapabilities(mNetworkCapabilities);
289 }
290 }
291
292 @VisibleForTesting
293 public static void updateCapabilities(ConnectivityManager cm, Network[] underlyingNetworks,
294 NetworkCapabilities caps) {
295 int[] transportTypes = new int[] { NetworkCapabilities.TRANSPORT_VPN };
296 int downKbps = NetworkCapabilities.LINK_BANDWIDTH_UNSPECIFIED;
297 int upKbps = NetworkCapabilities.LINK_BANDWIDTH_UNSPECIFIED;
298 boolean metered = false;
299 boolean roaming = false;
300
301 if (ArrayUtils.isEmpty(underlyingNetworks)) {
302 // No idea what the underlying networks are; assume sane defaults
303 metered = true;
304 roaming = false;
305 } else {
306 for (Network underlying : underlyingNetworks) {
307 final NetworkCapabilities underlyingCaps = cm.getNetworkCapabilities(underlying);
Jeff Sharkey4f5e6262018-01-02 11:46:32 -0700308 if (underlyingCaps == null) continue;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600309 for (int underlyingType : underlyingCaps.getTransportTypes()) {
310 transportTypes = ArrayUtils.appendInt(transportTypes, underlyingType);
311 }
312
313 // When we have multiple networks, we have to assume the
314 // worst-case link speed and restrictions.
315 downKbps = NetworkCapabilities.minBandwidth(downKbps,
316 underlyingCaps.getLinkDownstreamBandwidthKbps());
317 upKbps = NetworkCapabilities.minBandwidth(upKbps,
318 underlyingCaps.getLinkUpstreamBandwidthKbps());
319 metered |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_METERED);
320 roaming |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_ROAMING);
321 }
322 }
323
324 caps.setTransportTypes(transportTypes);
325 caps.setLinkDownstreamBandwidthKbps(downKbps);
326 caps.setLinkUpstreamBandwidthKbps(upKbps);
327 if (metered) {
328 caps.removeCapability(NET_CAPABILITY_NOT_METERED);
329 } else {
330 caps.addCapability(NET_CAPABILITY_NOT_METERED);
331 }
332 if (roaming) {
333 caps.removeCapability(NET_CAPABILITY_NOT_ROAMING);
334 } else {
335 caps.addCapability(NET_CAPABILITY_NOT_ROAMING);
336 }
337 }
338
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700339 /**
Robin Leec3736bc2017-03-10 16:19:54 +0000340 * Chooses whether to force all connections to go though VPN.
341 *
342 * Used to enable/disable legacy VPN lockdown.
343 *
344 * This uses the same ip rule mechanism as {@link #setAlwaysOnPackage(String, boolean)};
345 * previous settings from calling that function will be replaced and saved with the
346 * always-on state.
347 *
348 * @param lockdown whether to prevent all traffic outside of a VPN.
349 */
350 public synchronized void setLockdown(boolean lockdown) {
351 enforceControlPermissionOrInternalCaller();
352
353 setVpnForcedLocked(lockdown);
354 mLockdown = lockdown;
355
356 // Update app lockdown setting if it changed. Legacy VPN lockdown status is controlled by
357 // LockdownVpnTracker.isEnabled() which keeps track of its own state.
358 if (mAlwaysOn) {
359 saveAlwaysOnPackage();
360 }
361 }
362
363 /**
Charles Hea0a87e82017-05-15 17:07:18 +0100364 * Checks if a VPN app supports always-on mode.
365 *
366 * In order to support the always-on feature, an app has to
367 * <ul>
368 * <li>target {@link VERSION_CODES#N API 24} or above, and
Charles He5da5ae32017-08-15 15:30:22 +0100369 * <li>not opt out through the {@link VpnService#SERVICE_META_DATA_SUPPORTS_ALWAYS_ON}
370 * meta-data field.
Charles Hea0a87e82017-05-15 17:07:18 +0100371 * </ul>
372 *
373 * @param packageName the canonical package name of the VPN app
374 * @return {@code true} if and only if the VPN app exists and supports always-on mode
375 */
376 public boolean isAlwaysOnPackageSupported(String packageName) {
377 enforceSettingsPermission();
378
379 if (packageName == null) {
380 return false;
381 }
382
383 PackageManager pm = mContext.getPackageManager();
384 ApplicationInfo appInfo = null;
385 try {
386 appInfo = pm.getApplicationInfoAsUser(packageName, 0 /*flags*/, mUserHandle);
387 } catch (NameNotFoundException unused) {
388 Log.w(TAG, "Can't find \"" + packageName + "\" when checking always-on support");
389 }
390 if (appInfo == null || appInfo.targetSdkVersion < VERSION_CODES.N) {
391 return false;
392 }
393
394 final Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
395 intent.setPackage(packageName);
396 List<ResolveInfo> services =
397 pm.queryIntentServicesAsUser(intent, PackageManager.GET_META_DATA, mUserHandle);
398 if (services == null || services.size() == 0) {
399 return false;
400 }
401
402 for (ResolveInfo rInfo : services) {
403 final Bundle metaData = rInfo.serviceInfo.metaData;
Charles He5da5ae32017-08-15 15:30:22 +0100404 if (metaData != null &&
405 !metaData.getBoolean(VpnService.SERVICE_META_DATA_SUPPORTS_ALWAYS_ON, true)) {
Charles Hea0a87e82017-05-15 17:07:18 +0100406 return false;
407 }
408 }
409
410 return true;
411 }
412
413 /**
Robin Lee244ce8e2016-01-05 18:03:46 +0000414 * Configures an always-on VPN connection through a specific application.
415 * This connection is automatically granted and persisted after a reboot.
416 *
417 * <p>The designated package should exist and declare a {@link VpnService} in its
418 * manifest guarded by {@link android.Manifest.permission.BIND_VPN_SERVICE},
419 * otherwise the call will fail.
420 *
Charles Hea0a87e82017-05-15 17:07:18 +0100421 * <p>Note that this method does not check if the VPN app supports always-on mode. The check is
422 * delayed to {@link #startAlwaysOnVpn()}, which is always called immediately after this
423 * method in {@link android.net.IConnectivityManager#setAlwaysOnVpnPackage}.
424 *
Robin Lee17e61832016-05-09 13:46:28 +0100425 * @param packageName the package to designate as always-on VPN supplier.
426 * @param lockdown whether to prevent traffic outside of a VPN, for example while connecting.
Robin Lee9ff1a582016-06-10 16:41:10 +0100427 * @return {@code true} if the package has been set as always-on, {@code false} otherwise.
Robin Lee244ce8e2016-01-05 18:03:46 +0000428 */
Robin Lee17e61832016-05-09 13:46:28 +0100429 public synchronized boolean setAlwaysOnPackage(String packageName, boolean lockdown) {
Robin Lee244ce8e2016-01-05 18:03:46 +0000430 enforceControlPermissionOrInternalCaller();
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000431
432 if (setAlwaysOnPackageInternal(packageName, lockdown)) {
433 saveAlwaysOnPackage();
434 return true;
435 }
436 return false;
437 }
438
439 /**
440 * Configures an always-on VPN connection through a specific application, the same as
441 * {@link #setAlwaysOnPackage}.
442 *
443 * Does not perform permission checks. Does not persist any of the changes to storage.
444 *
445 * @param packageName the package to designate as always-on VPN supplier.
446 * @param lockdown whether to prevent traffic outside of a VPN, for example while connecting.
447 * @return {@code true} if the package has been set as always-on, {@code false} otherwise.
448 */
449 @GuardedBy("this")
450 private boolean setAlwaysOnPackageInternal(String packageName, boolean lockdown) {
Robin Lee9ff1a582016-06-10 16:41:10 +0100451 if (VpnConfig.LEGACY_VPN.equals(packageName)) {
452 Log.w(TAG, "Not setting legacy VPN \"" + packageName + "\" as always-on.");
453 return false;
454 }
Robin Lee244ce8e2016-01-05 18:03:46 +0000455
Robin Lee244ce8e2016-01-05 18:03:46 +0000456 if (packageName != null) {
Robin Lee9ff1a582016-06-10 16:41:10 +0100457 // Pre-authorize new always-on VPN package.
Robin Lee244ce8e2016-01-05 18:03:46 +0000458 if (!setPackageAuthorization(packageName, true)) {
459 return false;
460 }
Robin Lee9ff1a582016-06-10 16:41:10 +0100461 mAlwaysOn = true;
462 } else {
463 packageName = VpnConfig.LEGACY_VPN;
464 mAlwaysOn = false;
Robin Lee244ce8e2016-01-05 18:03:46 +0000465 }
466
Robin Lee17e61832016-05-09 13:46:28 +0100467 mLockdown = (mAlwaysOn && lockdown);
Tony Mak1a405fe2016-06-30 11:19:20 +0100468 if (isCurrentPreparedPackage(packageName)) {
469 updateAlwaysOnNotification(mNetworkInfo.getDetailedState());
470 } else {
471 // Prepare this app. The notification will update as a side-effect of updateState().
Robin Lee9ff1a582016-06-10 16:41:10 +0100472 prepareInternal(packageName);
473 }
Robin Lee812800c2016-05-13 15:38:08 +0100474 maybeRegisterPackageChangeReceiverLocked(packageName);
Robin Lee17e61832016-05-09 13:46:28 +0100475 setVpnForcedLocked(mLockdown);
Robin Lee244ce8e2016-01-05 18:03:46 +0000476 return true;
477 }
478
Robin Lee9ff1a582016-06-10 16:41:10 +0100479 private static boolean isNullOrLegacyVpn(String packageName) {
480 return packageName == null || VpnConfig.LEGACY_VPN.equals(packageName);
481 }
482
Robin Lee812800c2016-05-13 15:38:08 +0100483 private void unregisterPackageChangeReceiverLocked() {
484 // register previous intent filter
485 if (mIsPackageIntentReceiverRegistered) {
486 mContext.unregisterReceiver(mPackageIntentReceiver);
487 mIsPackageIntentReceiverRegistered = false;
488 }
489 }
490
491 private void maybeRegisterPackageChangeReceiverLocked(String packageName) {
492 // Unregister IntentFilter listening for previous always-on package change
493 unregisterPackageChangeReceiverLocked();
494
Robin Lee9ff1a582016-06-10 16:41:10 +0100495 if (!isNullOrLegacyVpn(packageName)) {
Robin Lee812800c2016-05-13 15:38:08 +0100496 mIsPackageIntentReceiverRegistered = true;
497
498 IntentFilter intentFilter = new IntentFilter();
499 // Protected intent can only be sent by system. No permission required in register.
500 intentFilter.addAction(Intent.ACTION_PACKAGE_REPLACED);
501 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
502 intentFilter.addDataScheme("package");
503 intentFilter.addDataSchemeSpecificPart(packageName, PatternMatcher.PATTERN_LITERAL);
504 mContext.registerReceiverAsUser(
505 mPackageIntentReceiver, UserHandle.of(mUserHandle), intentFilter, null, null);
506 }
507 }
508
Robin Lee244ce8e2016-01-05 18:03:46 +0000509 /**
510 * @return the package name of the VPN controller responsible for always-on VPN,
511 * or {@code null} if none is set or always-on VPN is controlled through
512 * lockdown instead.
513 * @hide
514 */
515 public synchronized String getAlwaysOnPackage() {
516 enforceControlPermissionOrInternalCaller();
Robin Lee17e61832016-05-09 13:46:28 +0100517 return (mAlwaysOn ? mPackage : null);
Robin Lee244ce8e2016-01-05 18:03:46 +0000518 }
519
520 /**
Robin Lee812800c2016-05-13 15:38:08 +0100521 * Save the always-on package and lockdown config into Settings.Secure
522 */
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000523 @GuardedBy("this")
524 private void saveAlwaysOnPackage() {
Robin Lee812800c2016-05-13 15:38:08 +0100525 final long token = Binder.clearCallingIdentity();
526 try {
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000527 mSystemServices.settingsSecurePutStringForUser(Settings.Secure.ALWAYS_ON_VPN_APP,
Robin Lee812800c2016-05-13 15:38:08 +0100528 getAlwaysOnPackage(), mUserHandle);
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000529 mSystemServices.settingsSecurePutIntForUser(Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN,
Robin Leec3736bc2017-03-10 16:19:54 +0000530 (mAlwaysOn && mLockdown ? 1 : 0), mUserHandle);
Robin Lee812800c2016-05-13 15:38:08 +0100531 } finally {
532 Binder.restoreCallingIdentity(token);
533 }
534 }
535
536 /**
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000537 * Load the always-on package and lockdown config from Settings.Secure
Robin Lee812800c2016-05-13 15:38:08 +0100538 */
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000539 @GuardedBy("this")
540 private void loadAlwaysOnPackage() {
541 final long token = Binder.clearCallingIdentity();
542 try {
543 final String alwaysOnPackage = mSystemServices.settingsSecureGetStringForUser(
544 Settings.Secure.ALWAYS_ON_VPN_APP, mUserHandle);
545 final boolean alwaysOnLockdown = mSystemServices.settingsSecureGetIntForUser(
546 Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN, 0 /*default*/, mUserHandle) != 0;
547 setAlwaysOnPackageInternal(alwaysOnPackage, alwaysOnLockdown);
548 } finally {
549 Binder.restoreCallingIdentity(token);
Robin Lee812800c2016-05-13 15:38:08 +0100550 }
551 }
552
553 /**
554 * @return {@code true} if the service was started, the service was already connected, or there
555 * was no always-on VPN to start. {@code false} otherwise.
556 */
557 public boolean startAlwaysOnVpn() {
558 final String alwaysOnPackage;
559 synchronized (this) {
560 alwaysOnPackage = getAlwaysOnPackage();
561 // Skip if there is no service to start.
562 if (alwaysOnPackage == null) {
563 return true;
564 }
Charles Hea0a87e82017-05-15 17:07:18 +0100565 // Remove always-on VPN if it's not supported.
566 if (!isAlwaysOnPackageSupported(alwaysOnPackage)) {
567 setAlwaysOnPackage(null, false);
568 return false;
569 }
Robin Lee812800c2016-05-13 15:38:08 +0100570 // Skip if the service is already established. This isn't bulletproof: it's not bound
571 // until after establish(), so if it's mid-setup onStartCommand will be sent twice,
572 // which may restart the connection.
573 if (getNetworkInfo().isConnected()) {
574 return true;
575 }
576 }
577
Christopher Tatee0be7e82017-02-08 17:38:20 -0800578 // Tell the OS that background services in this app need to be allowed for
579 // a short time, so we can bootstrap the VPN service.
580 final long oldId = Binder.clearCallingIdentity();
Robin Lee812800c2016-05-13 15:38:08 +0100581 try {
Christopher Tatee0be7e82017-02-08 17:38:20 -0800582 DeviceIdleController.LocalService idleController =
583 LocalServices.getService(DeviceIdleController.LocalService.class);
584 idleController.addPowerSaveTempWhitelistApp(Process.myUid(), alwaysOnPackage,
585 VPN_LAUNCH_IDLE_WHITELIST_DURATION, mUserHandle, false, "vpn");
586
587 // Start the VPN service declared in the app's manifest.
588 Intent serviceIntent = new Intent(VpnConfig.SERVICE_INTERFACE);
589 serviceIntent.setPackage(alwaysOnPackage);
590 try {
591 return mContext.startServiceAsUser(serviceIntent, UserHandle.of(mUserHandle)) != null;
592 } catch (RuntimeException e) {
593 Log.e(TAG, "VpnService " + serviceIntent + " failed to start", e);
594 return false;
595 }
596 } finally {
597 Binder.restoreCallingIdentity(oldId);
Robin Lee812800c2016-05-13 15:38:08 +0100598 }
599 }
600
601 /**
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700602 * Prepare for a VPN application. This method is designed to solve
603 * race conditions. It first compares the current prepared package
604 * with {@code oldPackage}. If they are the same, the prepared
605 * package is revoked and replaced with {@code newPackage}. If
606 * {@code oldPackage} is {@code null}, the comparison is omitted.
607 * If {@code newPackage} is the same package or {@code null}, the
608 * revocation is omitted. This method returns {@code true} if the
609 * operation is succeeded.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700610 *
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700611 * Legacy VPN is handled specially since it is not a real package.
612 * It uses {@link VpnConfig#LEGACY_VPN} as its package name, and
613 * it can be revoked by itself.
614 *
Victor Chang98a633a2016-05-27 17:30:49 +0100615 * Note: when we added VPN pre-consent in http://ag/522961 the names oldPackage
616 * and newPackage become misleading, because when an app is pre-consented, we
617 * actually prepare oldPackage, not newPackage.
618 *
619 * Their meanings actually are:
620 *
621 * - oldPackage non-null, newPackage null: App calling VpnService#prepare().
622 * - oldPackage null, newPackage non-null: ConfirmDialog calling prepareVpn().
Robin Lee812800c2016-05-13 15:38:08 +0100623 * - oldPackage null, newPackage=LEGACY_VPN: Used internally to disconnect
Victor Chang98a633a2016-05-27 17:30:49 +0100624 * and revoke any current app VPN and re-prepare legacy vpn.
625 *
Robin Lee812800c2016-05-13 15:38:08 +0100626 * TODO: Rename the variables - or split this method into two - and end this confusion.
627 * TODO: b/29032008 Migrate code from prepare(oldPackage=non-null, newPackage=LEGACY_VPN)
628 * to prepare(oldPackage=null, newPackage=LEGACY_VPN)
Victor Chang98a633a2016-05-27 17:30:49 +0100629 *
630 * @param oldPackage The package name of the old VPN application
631 * @param newPackage The package name of the new VPN application
632 *
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700633 * @return true if the operation is succeeded.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700634 */
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700635 public synchronized boolean prepare(String oldPackage, String newPackage) {
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700636 if (oldPackage != null) {
Victor Chang98a633a2016-05-27 17:30:49 +0100637 // Stop an existing always-on VPN from being dethroned by other apps.
Robin Lee812800c2016-05-13 15:38:08 +0100638 if (mAlwaysOn && !isCurrentPreparedPackage(oldPackage)) {
Victor Chang98a633a2016-05-27 17:30:49 +0100639 return false;
640 }
641
642 // Package is not same or old package was reinstalled.
643 if (!isCurrentPreparedPackage(oldPackage)) {
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700644 // The package doesn't match. We return false (to obtain user consent) unless the
645 // user has already consented to that VPN package.
646 if (!oldPackage.equals(VpnConfig.LEGACY_VPN) && isVpnUserPreConsented(oldPackage)) {
647 prepareInternal(oldPackage);
648 return true;
649 }
650 return false;
651 } else if (!oldPackage.equals(VpnConfig.LEGACY_VPN)
652 && !isVpnUserPreConsented(oldPackage)) {
653 // Currently prepared VPN is revoked, so unprepare it and return false.
654 prepareInternal(VpnConfig.LEGACY_VPN);
655 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700656 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700657 }
658
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700659 // Return true if we do not need to revoke.
Jeff Davidsonbe085872014-10-24 10:35:53 -0700660 if (newPackage == null || (!newPackage.equals(VpnConfig.LEGACY_VPN) &&
Victor Chang98a633a2016-05-27 17:30:49 +0100661 isCurrentPreparedPackage(newPackage))) {
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700662 return true;
663 }
664
Robin Lee1b1bcd72016-02-12 18:11:30 +0000665 // Check that the caller is authorized.
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700666 enforceControlPermission();
Chia-chi Yehe9107902011-07-02 01:48:50 -0700667
Victor Chang98a633a2016-05-27 17:30:49 +0100668 // Stop an existing always-on VPN from being dethroned by other apps.
Robin Lee812800c2016-05-13 15:38:08 +0100669 if (mAlwaysOn && !isCurrentPreparedPackage(newPackage)) {
Victor Chang98a633a2016-05-27 17:30:49 +0100670 return false;
671 }
672
Jeff Davidson11008a72014-11-20 13:12:46 -0800673 prepareInternal(newPackage);
674 return true;
675 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700676
Victor Chang98a633a2016-05-27 17:30:49 +0100677 private boolean isCurrentPreparedPackage(String packageName) {
678 // We can't just check that packageName matches mPackage, because if the app was uninstalled
679 // and reinstalled it will no longer be prepared. Instead check the UID.
680 return getAppUid(packageName, mUserHandle) == mOwnerUID;
681 }
682
Jeff Davidson11008a72014-11-20 13:12:46 -0800683 /** Prepare the VPN for the given package. Does not perform permission checks. */
684 private void prepareInternal(String newPackage) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400685 long token = Binder.clearCallingIdentity();
686 try {
Jeff Davidson11008a72014-11-20 13:12:46 -0800687 // Reset the interface.
688 if (mInterface != null) {
689 mStatusIntent = null;
690 agentDisconnect();
691 jniReset(mInterface);
692 mInterface = null;
693 mVpnUsers = null;
694 }
695
696 // Revoke the connection or stop LegacyVpnRunner.
697 if (mConnection != null) {
698 try {
699 mConnection.mService.transact(IBinder.LAST_CALL_TRANSACTION,
700 Parcel.obtain(), null, IBinder.FLAG_ONEWAY);
701 } catch (Exception e) {
702 // ignore
703 }
704 mContext.unbindService(mConnection);
705 mConnection = null;
706 } else if (mLegacyVpnRunner != null) {
707 mLegacyVpnRunner.exit();
708 mLegacyVpnRunner = null;
709 }
710
711 try {
712 mNetd.denyProtect(mOwnerUID);
713 } catch (Exception e) {
714 Log.wtf(TAG, "Failed to disallow UID " + mOwnerUID + " to call protect() " + e);
715 }
716
717 Log.i(TAG, "Switched from " + mPackage + " to " + newPackage);
718 mPackage = newPackage;
719 mOwnerUID = getAppUid(newPackage, mUserHandle);
720 try {
721 mNetd.allowProtect(mOwnerUID);
722 } catch (Exception e) {
723 Log.wtf(TAG, "Failed to allow UID " + mOwnerUID + " to call protect() " + e);
724 }
725 mConfig = null;
726
727 updateState(DetailedState.IDLE, "prepare");
Robin Leec3736bc2017-03-10 16:19:54 +0000728 setVpnForcedLocked(mLockdown);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400729 } finally {
730 Binder.restoreCallingIdentity(token);
731 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700732 }
733
Jeff Davidson05542602014-08-11 14:07:27 -0700734 /**
Robin Lee3b3dd942015-05-12 18:14:58 +0100735 * Set whether a package has the ability to launch VPNs without user intervention.
Jeff Davidson05542602014-08-11 14:07:27 -0700736 */
Robin Lee244ce8e2016-01-05 18:03:46 +0000737 public boolean setPackageAuthorization(String packageName, boolean authorized) {
Jeff Davidson05542602014-08-11 14:07:27 -0700738 // Check if the caller is authorized.
Robin Lee244ce8e2016-01-05 18:03:46 +0000739 enforceControlPermissionOrInternalCaller();
Jeff Davidson05542602014-08-11 14:07:27 -0700740
Robin Lee3b3dd942015-05-12 18:14:58 +0100741 int uid = getAppUid(packageName, mUserHandle);
742 if (uid == -1 || VpnConfig.LEGACY_VPN.equals(packageName)) {
743 // Authorization for nonexistent packages (or fake ones) can't be updated.
Robin Lee244ce8e2016-01-05 18:03:46 +0000744 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700745 }
746
747 long token = Binder.clearCallingIdentity();
748 try {
749 AppOpsManager appOps =
750 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Robin Lee3b3dd942015-05-12 18:14:58 +0100751 appOps.setMode(AppOpsManager.OP_ACTIVATE_VPN, uid, packageName,
Jeff Davidson05542602014-08-11 14:07:27 -0700752 authorized ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED);
Robin Lee244ce8e2016-01-05 18:03:46 +0000753 return true;
Jeff Davidson05542602014-08-11 14:07:27 -0700754 } catch (Exception e) {
Robin Lee3b3dd942015-05-12 18:14:58 +0100755 Log.wtf(TAG, "Failed to set app ops for package " + packageName + ", uid " + uid, e);
Jeff Davidson05542602014-08-11 14:07:27 -0700756 } finally {
757 Binder.restoreCallingIdentity(token);
758 }
Robin Lee244ce8e2016-01-05 18:03:46 +0000759 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700760 }
761
762 private boolean isVpnUserPreConsented(String packageName) {
763 AppOpsManager appOps =
764 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
765
766 // Verify that the caller matches the given package and has permission to activate VPNs.
767 return appOps.noteOpNoThrow(AppOpsManager.OP_ACTIVATE_VPN, Binder.getCallingUid(),
768 packageName) == AppOpsManager.MODE_ALLOWED;
769 }
770
Paul Jensen0784eea2014-08-19 16:00:24 -0400771 private int getAppUid(String app, int userHandle) {
Jeff Davidson05542602014-08-11 14:07:27 -0700772 if (VpnConfig.LEGACY_VPN.equals(app)) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400773 return Process.myUid();
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700774 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400775 PackageManager pm = mContext.getPackageManager();
776 int result;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700777 try {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -0700778 result = pm.getPackageUidAsUser(app, userHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400779 } catch (NameNotFoundException e) {
780 result = -1;
781 }
782 return result;
783 }
784
785 public NetworkInfo getNetworkInfo() {
786 return mNetworkInfo;
787 }
788
Paul Jensen31a94f42015-02-13 14:18:39 -0500789 public int getNetId() {
790 return mNetworkAgent != null ? mNetworkAgent.netId : NETID_UNSET;
791 }
792
Lorenzo Colitti60446162014-09-20 00:14:31 +0900793 private LinkProperties makeLinkProperties() {
794 boolean allowIPv4 = mConfig.allowIPv4;
795 boolean allowIPv6 = mConfig.allowIPv6;
796
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400797 LinkProperties lp = new LinkProperties();
Lorenzo Colitti60446162014-09-20 00:14:31 +0900798
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400799 lp.setInterfaceName(mInterface);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700800
Lorenzo Colitti60446162014-09-20 00:14:31 +0900801 if (mConfig.addresses != null) {
802 for (LinkAddress address : mConfig.addresses) {
803 lp.addLinkAddress(address);
804 allowIPv4 |= address.getAddress() instanceof Inet4Address;
805 allowIPv6 |= address.getAddress() instanceof Inet6Address;
806 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400807 }
Lorenzo Colitti60446162014-09-20 00:14:31 +0900808
809 if (mConfig.routes != null) {
810 for (RouteInfo route : mConfig.routes) {
811 lp.addRoute(route);
812 InetAddress address = route.getDestination().getAddress();
813 allowIPv4 |= address instanceof Inet4Address;
814 allowIPv6 |= address instanceof Inet6Address;
815 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400816 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700817
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400818 if (mConfig.dnsServers != null) {
819 for (String dnsServer : mConfig.dnsServers) {
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700820 InetAddress address = InetAddress.parseNumericAddress(dnsServer);
821 lp.addDnsServer(address);
Lorenzo Colitti60446162014-09-20 00:14:31 +0900822 allowIPv4 |= address instanceof Inet4Address;
823 allowIPv6 |= address instanceof Inet6Address;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400824 }
825 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700826
Lorenzo Colitti60446162014-09-20 00:14:31 +0900827 if (!allowIPv4) {
828 lp.addRoute(new RouteInfo(new IpPrefix(Inet4Address.ANY, 0), RTN_UNREACHABLE));
829 }
830 if (!allowIPv6) {
831 lp.addRoute(new RouteInfo(new IpPrefix(Inet6Address.ANY, 0), RTN_UNREACHABLE));
832 }
833
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400834 // Concatenate search domains into a string.
835 StringBuilder buffer = new StringBuilder();
836 if (mConfig.searchDomains != null) {
837 for (String domain : mConfig.searchDomains) {
838 buffer.append(domain).append(' ');
839 }
840 }
841 lp.setDomains(buffer.toString().trim());
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700842
Lorenzo Colitti60446162014-09-20 00:14:31 +0900843 // TODO: Stop setting the MTU in jniCreate and set it here.
844
845 return lp;
846 }
847
848 private void agentConnect() {
849 LinkProperties lp = makeLinkProperties();
850
851 if (lp.hasIPv4DefaultRoute() || lp.hasIPv6DefaultRoute()) {
852 mNetworkCapabilities.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
853 } else {
854 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
855 }
856
Robin Lee323f29d2016-05-04 16:38:06 +0100857 mNetworkInfo.setDetailedState(DetailedState.CONNECTING, null, null);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700858
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700859 NetworkMisc networkMisc = new NetworkMisc();
Robin Lee17e61832016-05-09 13:46:28 +0100860 networkMisc.allowBypass = mConfig.allowBypass && !mLockdown;
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700861
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400862 long token = Binder.clearCallingIdentity();
863 try {
864 mNetworkAgent = new NetworkAgent(mLooper, mContext, NETWORKTYPE,
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700865 mNetworkInfo, mNetworkCapabilities, lp, 0, networkMisc) {
Jeff Davidson05542602014-08-11 14:07:27 -0700866 @Override
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400867 public void unwanted() {
868 // We are user controlled, not driven by NetworkRequest.
Jeff Davidson05542602014-08-11 14:07:27 -0700869 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400870 };
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700871 } finally {
872 Binder.restoreCallingIdentity(token);
873 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700874
Robin Lee4d03abc2016-05-09 12:32:27 +0100875 mVpnUsers = createUserAndRestrictedProfilesRanges(mUserHandle,
876 mConfig.allowedApplications, mConfig.disallowedApplications);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400877 mNetworkAgent.addUidRanges(mVpnUsers.toArray(new UidRange[mVpnUsers.size()]));
Robin Lee323f29d2016-05-04 16:38:06 +0100878
879 mNetworkInfo.setIsAvailable(true);
880 updateState(DetailedState.CONNECTED, "agentConnect");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400881 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700882
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700883 private boolean canHaveRestrictedProfile(int userId) {
884 long token = Binder.clearCallingIdentity();
885 try {
886 return UserManager.get(mContext).canHaveRestrictedProfile(userId);
887 } finally {
888 Binder.restoreCallingIdentity(token);
889 }
890 }
891
Tony Mak1a405fe2016-06-30 11:19:20 +0100892 private void agentDisconnect(NetworkAgent networkAgent) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400893 if (networkAgent != null) {
Tony Mak1a405fe2016-06-30 11:19:20 +0100894 NetworkInfo networkInfo = new NetworkInfo(mNetworkInfo);
895 networkInfo.setIsAvailable(false);
896 networkInfo.setDetailedState(DetailedState.DISCONNECTED, null, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400897 networkAgent.sendNetworkInfo(networkInfo);
898 }
899 }
900
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400901 private void agentDisconnect() {
902 if (mNetworkInfo.isConnected()) {
Tony Mak1a405fe2016-06-30 11:19:20 +0100903 mNetworkInfo.setIsAvailable(false);
904 updateState(DetailedState.DISCONNECTED, "agentDisconnect");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400905 mNetworkAgent = null;
906 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700907 }
908
909 /**
Chia-chi Yehe9107902011-07-02 01:48:50 -0700910 * Establish a VPN network and return the file descriptor of the VPN
911 * interface. This methods returns {@code null} if the application is
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700912 * revoked or not prepared.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700913 *
914 * @param config The parameters to configure the network.
915 * @return The file descriptor of the VPN interface.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700916 */
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700917 public synchronized ParcelFileDescriptor establish(VpnConfig config) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700918 // Check if the caller is already prepared.
Chad Brubakerc2865192013-07-10 14:46:23 -0700919 UserManager mgr = UserManager.get(mContext);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400920 if (Binder.getCallingUid() != mOwnerUID) {
Chia-chi Yeh7b0b8342011-06-17 14:34:11 -0700921 return null;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700922 }
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700923 // Check to ensure consent hasn't been revoked since we were prepared.
924 if (!isVpnUserPreConsented(mPackage)) {
925 return null;
926 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700927 // Check if the service is properly declared.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700928 Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
929 intent.setClassName(mPackage, config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700930 long token = Binder.clearCallingIdentity();
931 try {
Chad Brubakerc2865192013-07-10 14:46:23 -0700932 // Restricted users are not allowed to create VPNs, they are tied to Owner
Paul Jensen0784eea2014-08-19 16:00:24 -0400933 UserInfo user = mgr.getUserInfo(mUserHandle);
Robin Lee628ae0d2016-05-20 14:53:48 +0100934 if (user.isRestricted()) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700935 throw new SecurityException("Restricted users cannot establish VPNs");
936 }
937
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700938 ResolveInfo info = AppGlobals.getPackageManager().resolveService(intent,
Paul Jensen0784eea2014-08-19 16:00:24 -0400939 null, 0, mUserHandle);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700940 if (info == null) {
941 throw new SecurityException("Cannot find " + config.user);
942 }
943 if (!BIND_VPN_SERVICE.equals(info.serviceInfo.permission)) {
944 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
945 }
946 } catch (RemoteException e) {
947 throw new SecurityException("Cannot find " + config.user);
948 } finally {
949 Binder.restoreCallingIdentity(token);
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700950 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700951
Chad Brubaker850eb672014-03-21 21:02:47 +0000952 // Save the old config in case we need to go back.
953 VpnConfig oldConfig = mConfig;
954 String oldInterface = mInterface;
955 Connection oldConnection = mConnection;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400956 NetworkAgent oldNetworkAgent = mNetworkAgent;
957 mNetworkAgent = null;
Robin Lee4d03abc2016-05-09 12:32:27 +0100958 Set<UidRange> oldUsers = mVpnUsers;
Chad Brubaker850eb672014-03-21 21:02:47 +0000959
Chia-chi Yehe9107902011-07-02 01:48:50 -0700960 // Configure the interface. Abort if any of these steps fails.
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700961 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700962 try {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700963 updateState(DetailedState.CONNECTING, "establish");
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700964 String interfaze = jniGetName(tun.getFd());
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700965
Chad Brubakerc2865192013-07-10 14:46:23 -0700966 // TEMP use the old jni calls until there is support for netd address setting
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700967 StringBuilder builder = new StringBuilder();
968 for (LinkAddress address : config.addresses) {
969 builder.append(" " + address);
970 }
971 if (jniSetAddresses(interfaze, builder.toString()) < 1) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700972 throw new IllegalArgumentException("At least one address must be specified");
973 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700974 Connection connection = new Connection();
Dianne Hackbornd69e4c12015-04-24 09:54:54 -0700975 if (!mContext.bindServiceAsUser(intent, connection,
976 Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE,
977 new UserHandle(mUserHandle))) {
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700978 throw new IllegalStateException("Cannot bind " + config.user);
979 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000980
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700981 mConnection = connection;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700982 mInterface = interfaze;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700983
984 // Fill more values.
985 config.user = mPackage;
986 config.interfaze = mInterface;
Chad Brubakerc2865192013-07-10 14:46:23 -0700987 config.startTime = SystemClock.elapsedRealtime();
988 mConfig = config;
Chad Brubaker850eb672014-03-21 21:02:47 +0000989
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700990 // Set up forwarding and DNS rules.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400991 agentConnect();
Chad Brubaker850eb672014-03-21 21:02:47 +0000992
993 if (oldConnection != null) {
994 mContext.unbindService(oldConnection);
995 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400996 // Remove the old tun's user forwarding rules
997 // The new tun's user rules have already been added so they will take over
998 // as rules are deleted. This prevents data leakage as the rules are moved over.
999 agentDisconnect(oldNetworkAgent);
Chad Brubaker850eb672014-03-21 21:02:47 +00001000 if (oldInterface != null && !oldInterface.equals(interfaze)) {
Chad Brubaker850eb672014-03-21 21:02:47 +00001001 jniReset(oldInterface);
1002 }
Jeff Davidson6bbf39c2014-07-23 10:14:53 -07001003
1004 try {
1005 IoUtils.setBlocking(tun.getFileDescriptor(), config.blocking);
1006 } catch (IOException e) {
1007 throw new IllegalStateException(
1008 "Cannot set tunnel's fd as blocking=" + config.blocking, e);
1009 }
Chad Brubaker850eb672014-03-21 21:02:47 +00001010 } catch (RuntimeException e) {
Chad Brubaker850eb672014-03-21 21:02:47 +00001011 IoUtils.closeQuietly(tun);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001012 agentDisconnect();
Chad Brubaker850eb672014-03-21 21:02:47 +00001013 // restore old state
1014 mConfig = oldConfig;
1015 mConnection = oldConnection;
1016 mVpnUsers = oldUsers;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001017 mNetworkAgent = oldNetworkAgent;
Chad Brubaker850eb672014-03-21 21:02:47 +00001018 mInterface = oldInterface;
1019 throw e;
Chad Brubakerc2865192013-07-10 14:46:23 -07001020 }
Chad Brubaker850eb672014-03-21 21:02:47 +00001021 Log.i(TAG, "Established by " + config.user + " on " + mInterface);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001022 return tun;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07001023 }
1024
Chad Brubakerc2865192013-07-10 14:46:23 -07001025 private boolean isRunningLocked() {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001026 return mNetworkAgent != null && mInterface != null;
1027 }
1028
1029 // Returns true if the VPN has been established and the calling UID is its owner. Used to check
1030 // that a call to mutate VPN state is admissible.
1031 private boolean isCallerEstablishedOwnerLocked() {
1032 return isRunningLocked() && Binder.getCallingUid() == mOwnerUID;
Chad Brubakerc2865192013-07-10 14:46:23 -07001033 }
1034
Paul Jensen0784eea2014-08-19 16:00:24 -04001035 // Note: Return type guarantees results are deduped and sorted, which callers require.
1036 private SortedSet<Integer> getAppsUids(List<String> packageNames, int userHandle) {
1037 SortedSet<Integer> uids = new TreeSet<Integer>();
1038 for (String app : packageNames) {
1039 int uid = getAppUid(app, userHandle);
1040 if (uid != -1) uids.add(uid);
1041 }
1042 return uids;
1043 }
1044
Robin Lee4d03abc2016-05-09 12:32:27 +01001045 /**
1046 * Creates a {@link Set} of non-intersecting {@link UidRange} objects including all UIDs
1047 * associated with one user, and any restricted profiles attached to that user.
1048 *
1049 * <p>If one of {@param allowedApplications} or {@param disallowedApplications} is provided,
1050 * the UID ranges will match the app whitelist or blacklist specified there. Otherwise, all UIDs
1051 * in each user and profile will be included.
1052 *
1053 * @param userHandle The userId to create UID ranges for along with any of its restricted
1054 * profiles.
1055 * @param allowedApplications (optional) whitelist of applications to include.
1056 * @param disallowedApplications (optional) blacklist of applications to exclude.
1057 */
1058 @VisibleForTesting
1059 Set<UidRange> createUserAndRestrictedProfilesRanges(@UserIdInt int userHandle,
1060 @Nullable List<String> allowedApplications,
1061 @Nullable List<String> disallowedApplications) {
1062 final Set<UidRange> ranges = new ArraySet<>();
Robert Greenwalt69887e82013-09-24 11:05:57 -07001063
Robin Lee4d03abc2016-05-09 12:32:27 +01001064 // Assign the top-level user to the set of ranges
1065 addUserToRanges(ranges, userHandle, allowedApplications, disallowedApplications);
1066
1067 // If the user can have restricted profiles, assign all its restricted profiles too
1068 if (canHaveRestrictedProfile(userHandle)) {
1069 final long token = Binder.clearCallingIdentity();
1070 List<UserInfo> users;
1071 try {
Robin Lee17e61832016-05-09 13:46:28 +01001072 users = UserManager.get(mContext).getUsers(true);
Robin Lee4d03abc2016-05-09 12:32:27 +01001073 } finally {
1074 Binder.restoreCallingIdentity(token);
1075 }
1076 for (UserInfo user : users) {
1077 if (user.isRestricted() && (user.restrictedProfileParentId == userHandle)) {
1078 addUserToRanges(ranges, user.id, allowedApplications, disallowedApplications);
1079 }
1080 }
1081 }
1082 return ranges;
1083 }
1084
1085 /**
1086 * Updates a {@link Set} of non-intersecting {@link UidRange} objects to include all UIDs
1087 * associated with one user.
1088 *
1089 * <p>If one of {@param allowedApplications} or {@param disallowedApplications} is provided,
1090 * the UID ranges will match the app whitelist or blacklist specified there. Otherwise, all UIDs
1091 * in the user will be included.
1092 *
1093 * @param ranges {@link Set} of {@link UidRange}s to which to add.
1094 * @param userHandle The userId to add to {@param ranges}.
1095 * @param allowedApplications (optional) whitelist of applications to include.
1096 * @param disallowedApplications (optional) blacklist of applications to exclude.
1097 */
1098 @VisibleForTesting
1099 void addUserToRanges(@NonNull Set<UidRange> ranges, @UserIdInt int userHandle,
1100 @Nullable List<String> allowedApplications,
1101 @Nullable List<String> disallowedApplications) {
1102 if (allowedApplications != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001103 // Add ranges covering all UIDs for allowedApplications.
1104 int start = -1, stop = -1;
Robin Lee4d03abc2016-05-09 12:32:27 +01001105 for (int uid : getAppsUids(allowedApplications, userHandle)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001106 if (start == -1) {
1107 start = uid;
1108 } else if (uid != stop + 1) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001109 ranges.add(new UidRange(start, stop));
Paul Jensen0784eea2014-08-19 16:00:24 -04001110 start = uid;
1111 }
1112 stop = uid;
1113 }
Robin Lee4d03abc2016-05-09 12:32:27 +01001114 if (start != -1) ranges.add(new UidRange(start, stop));
1115 } else if (disallowedApplications != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001116 // Add all ranges for user skipping UIDs for disallowedApplications.
1117 final UidRange userRange = UidRange.createForUser(userHandle);
1118 int start = userRange.start;
Robin Lee4d03abc2016-05-09 12:32:27 +01001119 for (int uid : getAppsUids(disallowedApplications, userHandle)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001120 if (uid == start) {
1121 start++;
1122 } else {
Robin Lee4d03abc2016-05-09 12:32:27 +01001123 ranges.add(new UidRange(start, uid - 1));
Paul Jensen0784eea2014-08-19 16:00:24 -04001124 start = uid + 1;
1125 }
1126 }
Robin Lee4d03abc2016-05-09 12:32:27 +01001127 if (start <= userRange.stop) ranges.add(new UidRange(start, userRange.stop));
Paul Jensen0784eea2014-08-19 16:00:24 -04001128 } else {
1129 // Add all UIDs for the user.
Robin Lee4d03abc2016-05-09 12:32:27 +01001130 ranges.add(UidRange.createForUser(userHandle));
Paul Jensen0784eea2014-08-19 16:00:24 -04001131 }
Chad Brubakerc2865192013-07-10 14:46:23 -07001132 }
1133
Paul Jensen0784eea2014-08-19 16:00:24 -04001134 // Returns the subset of the full list of active UID ranges the VPN applies to (mVpnUsers) that
1135 // apply to userHandle.
1136 private List<UidRange> uidRangesForUser(int userHandle) {
1137 final UidRange userRange = UidRange.createForUser(userHandle);
1138 final List<UidRange> ranges = new ArrayList<UidRange>();
1139 for (UidRange range : mVpnUsers) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001140 if (userRange.containsRange(range)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001141 ranges.add(range);
1142 }
1143 }
1144 return ranges;
1145 }
1146
1147 private void removeVpnUserLocked(int userHandle) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001148 if (mVpnUsers == null) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001149 throw new IllegalStateException("VPN is not active");
1150 }
Paul Jensen0784eea2014-08-19 16:00:24 -04001151 final List<UidRange> ranges = uidRangesForUser(userHandle);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001152 if (mNetworkAgent != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001153 mNetworkAgent.removeUidRanges(ranges.toArray(new UidRange[ranges.size()]));
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001154 }
Paul Jensen0784eea2014-08-19 16:00:24 -04001155 mVpnUsers.removeAll(ranges);
Chad Brubakerc2865192013-07-10 14:46:23 -07001156 }
1157
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001158 public void onUserAdded(int userHandle) {
1159 // If the user is restricted tie them to the parent user's VPN
1160 UserInfo user = UserManager.get(mContext).getUserInfo(userHandle);
Robin Lee17e61832016-05-09 13:46:28 +01001161 if (user.isRestricted() && user.restrictedProfileParentId == mUserHandle) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001162 synchronized(Vpn.this) {
Robin Lee17e61832016-05-09 13:46:28 +01001163 if (mVpnUsers != null) {
1164 try {
1165 addUserToRanges(mVpnUsers, userHandle, mConfig.allowedApplications,
1166 mConfig.disallowedApplications);
1167 if (mNetworkAgent != null) {
1168 final List<UidRange> ranges = uidRangesForUser(userHandle);
1169 mNetworkAgent.addUidRanges(ranges.toArray(new UidRange[ranges.size()]));
1170 }
1171 } catch (Exception e) {
1172 Log.wtf(TAG, "Failed to add restricted user to owner", e);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001173 }
Robin Lee17e61832016-05-09 13:46:28 +01001174 }
Robin Leec3736bc2017-03-10 16:19:54 +00001175 setVpnForcedLocked(mLockdown);
Chad Brubakerc2865192013-07-10 14:46:23 -07001176 }
1177 }
1178 }
1179
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001180 public void onUserRemoved(int userHandle) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001181 // clean up if restricted
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001182 UserInfo user = UserManager.get(mContext).getUserInfo(userHandle);
Robin Lee17e61832016-05-09 13:46:28 +01001183 if (user.isRestricted() && user.restrictedProfileParentId == mUserHandle) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001184 synchronized(Vpn.this) {
Robin Lee17e61832016-05-09 13:46:28 +01001185 if (mVpnUsers != null) {
1186 try {
1187 removeVpnUserLocked(userHandle);
1188 } catch (Exception e) {
1189 Log.wtf(TAG, "Failed to remove restricted user to owner", e);
1190 }
1191 }
Robin Leec3736bc2017-03-10 16:19:54 +00001192 setVpnForcedLocked(mLockdown);
Chad Brubakerc2865192013-07-10 14:46:23 -07001193 }
1194 }
1195 }
1196
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07001197 /**
Robin Lee17e61832016-05-09 13:46:28 +01001198 * Called when the user associated with this VPN has just been stopped.
1199 */
1200 public synchronized void onUserStopped() {
1201 // Switch off networking lockdown (if it was enabled)
Robin Leec3736bc2017-03-10 16:19:54 +00001202 setLockdown(false);
Robin Lee17e61832016-05-09 13:46:28 +01001203 mAlwaysOn = false;
1204
Robin Lee812800c2016-05-13 15:38:08 +01001205 unregisterPackageChangeReceiverLocked();
Robin Lee17e61832016-05-09 13:46:28 +01001206 // Quit any active connections
1207 agentDisconnect();
1208 }
1209
1210 /**
1211 * Restrict network access from all UIDs affected by this {@link Vpn}, apart from the VPN
1212 * service app itself, to only sockets that have had {@code protect()} called on them. All
1213 * non-VPN traffic is blocked via a {@code PROHIBIT} response from the kernel.
1214 *
1215 * The exception for the VPN UID isn't technically necessary -- setup should use protected
1216 * sockets -- but in practice it saves apps that don't protect their sockets from breaking.
1217 *
1218 * Calling multiple times with {@param enforce} = {@code true} will recreate the set of UIDs to
1219 * block every time, and if anything has changed update using {@link #setAllowOnlyVpnForUids}.
1220 *
1221 * @param enforce {@code true} to require that all traffic under the jurisdiction of this
1222 * {@link Vpn} goes through a VPN connection or is blocked until one is
1223 * available, {@code false} to lift the requirement.
1224 *
1225 * @see #mBlockedUsers
1226 */
1227 @GuardedBy("this")
1228 private void setVpnForcedLocked(boolean enforce) {
Robin Leec3736bc2017-03-10 16:19:54 +00001229 final List<String> exemptedPackages =
1230 isNullOrLegacyVpn(mPackage) ? null : Collections.singletonList(mPackage);
1231 setVpnForcedWithExemptionsLocked(enforce, exemptedPackages);
1232 }
1233
1234 /**
1235 * @see #setVpnForcedLocked
1236 */
1237 @GuardedBy("this")
1238 private void setVpnForcedWithExemptionsLocked(boolean enforce,
1239 @Nullable List<String> exemptedPackages) {
Robin Lee17e61832016-05-09 13:46:28 +01001240 final Set<UidRange> removedRanges = new ArraySet<>(mBlockedUsers);
Robin Leec3736bc2017-03-10 16:19:54 +00001241
1242 Set<UidRange> addedRanges = Collections.emptySet();
Robin Lee17e61832016-05-09 13:46:28 +01001243 if (enforce) {
Robin Leec3736bc2017-03-10 16:19:54 +00001244 addedRanges = createUserAndRestrictedProfilesRanges(mUserHandle,
Robin Lee17e61832016-05-09 13:46:28 +01001245 /* allowedApplications */ null,
Robin Leec3736bc2017-03-10 16:19:54 +00001246 /* disallowedApplications */ exemptedPackages);
Robin Lee17e61832016-05-09 13:46:28 +01001247
1248 removedRanges.removeAll(addedRanges);
1249 addedRanges.removeAll(mBlockedUsers);
Robin Lee17e61832016-05-09 13:46:28 +01001250 }
Robin Leec3736bc2017-03-10 16:19:54 +00001251
1252 setAllowOnlyVpnForUids(false, removedRanges);
1253 setAllowOnlyVpnForUids(true, addedRanges);
Robin Lee17e61832016-05-09 13:46:28 +01001254 }
1255
1256 /**
1257 * Either add or remove a list of {@link UidRange}s to the list of UIDs that are only allowed
1258 * to make connections through sockets that have had {@code protect()} called on them.
1259 *
1260 * @param enforce {@code true} to add to the blacklist, {@code false} to remove.
1261 * @param ranges {@link Collection} of {@link UidRange}s to add (if {@param enforce} is
1262 * {@code true}) or to remove.
1263 * @return {@code true} if all of the UIDs were added/removed. {@code false} otherwise,
1264 * including added ranges that already existed or removed ones that didn't.
1265 */
1266 @GuardedBy("this")
1267 private boolean setAllowOnlyVpnForUids(boolean enforce, Collection<UidRange> ranges) {
1268 if (ranges.size() == 0) {
1269 return true;
1270 }
1271 final UidRange[] rangesArray = ranges.toArray(new UidRange[ranges.size()]);
1272 try {
1273 mNetd.setAllowOnlyVpnForUids(enforce, rangesArray);
1274 } catch (RemoteException | RuntimeException e) {
1275 Log.e(TAG, "Updating blocked=" + enforce
1276 + " for UIDs " + Arrays.toString(ranges.toArray()) + " failed", e);
1277 return false;
1278 }
1279 if (enforce) {
1280 mBlockedUsers.addAll(ranges);
1281 } else {
1282 mBlockedUsers.removeAll(ranges);
1283 }
1284 return true;
1285 }
1286
1287 /**
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07001288 * Return the configuration of the currently running VPN.
1289 */
1290 public VpnConfig getVpnConfig() {
1291 enforceControlPermission();
1292 return mConfig;
1293 }
1294
Jeff Sharkey899223b2012-08-04 15:24:58 -07001295 @Deprecated
1296 public synchronized void interfaceStatusChanged(String iface, boolean up) {
1297 try {
1298 mObserver.interfaceStatusChanged(iface, up);
1299 } catch (RemoteException e) {
1300 // ignored; target is local
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001301 }
1302 }
1303
Jeff Sharkey899223b2012-08-04 15:24:58 -07001304 private INetworkManagementEventObserver mObserver = new BaseNetworkObserver() {
1305 @Override
1306 public void interfaceStatusChanged(String interfaze, boolean up) {
1307 synchronized (Vpn.this) {
1308 if (!up && mLegacyVpnRunner != null) {
1309 mLegacyVpnRunner.check(interfaze);
1310 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001311 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001312 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001313
Jeff Sharkey899223b2012-08-04 15:24:58 -07001314 @Override
1315 public void interfaceRemoved(String interfaze) {
1316 synchronized (Vpn.this) {
1317 if (interfaze.equals(mInterface) && jniCheck(interfaze) == 0) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001318 mStatusIntent = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001319 mVpnUsers = null;
Paul Jensenc4c72312014-12-08 14:04:51 -05001320 mConfig = null;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001321 mInterface = null;
1322 if (mConnection != null) {
1323 mContext.unbindService(mConnection);
1324 mConnection = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001325 agentDisconnect();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001326 } else if (mLegacyVpnRunner != null) {
1327 mLegacyVpnRunner.exit();
1328 mLegacyVpnRunner = null;
1329 }
1330 }
1331 }
1332 }
1333 };
Haoyu Baidb3c8672012-06-20 14:29:57 -07001334
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001335 private void enforceControlPermission() {
Jeff Davidsonbc19c182014-11-11 13:20:01 -08001336 mContext.enforceCallingPermission(Manifest.permission.CONTROL_VPN, "Unauthorized Caller");
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001337 }
1338
Robin Lee244ce8e2016-01-05 18:03:46 +00001339 private void enforceControlPermissionOrInternalCaller() {
1340 // Require caller to be either an application with CONTROL_VPN permission or a process
1341 // in the system server.
1342 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONTROL_VPN,
1343 "Unauthorized Caller");
1344 }
1345
Charles Hea0a87e82017-05-15 17:07:18 +01001346 private void enforceSettingsPermission() {
1347 mContext.enforceCallingOrSelfPermission(Manifest.permission.NETWORK_SETTINGS,
1348 "Unauthorized Caller");
1349 }
1350
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001351 private class Connection implements ServiceConnection {
1352 private IBinder mService;
1353
1354 @Override
1355 public void onServiceConnected(ComponentName name, IBinder service) {
1356 mService = service;
1357 }
1358
1359 @Override
1360 public void onServiceDisconnected(ComponentName name) {
1361 mService = null;
1362 }
1363 }
1364
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001365 private void prepareStatusIntent() {
1366 final long token = Binder.clearCallingIdentity();
1367 try {
1368 mStatusIntent = VpnConfig.getIntentForStatusPanel(mContext);
1369 } finally {
1370 Binder.restoreCallingIdentity(token);
1371 }
1372 }
1373
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001374 public synchronized boolean addAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001375 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001376 return false;
1377 }
1378 boolean success = jniAddAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001379 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001380 return success;
1381 }
1382
1383 public synchronized boolean removeAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001384 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001385 return false;
1386 }
1387 boolean success = jniDelAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001388 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001389 return success;
1390 }
1391
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001392 public synchronized boolean setUnderlyingNetworks(Network[] networks) {
1393 if (!isCallerEstablishedOwnerLocked()) {
1394 return false;
1395 }
1396 if (networks == null) {
1397 mConfig.underlyingNetworks = null;
1398 } else {
1399 mConfig.underlyingNetworks = new Network[networks.length];
1400 for (int i = 0; i < networks.length; ++i) {
1401 if (networks[i] == null) {
1402 mConfig.underlyingNetworks[i] = null;
1403 } else {
1404 mConfig.underlyingNetworks[i] = new Network(networks[i].netId);
1405 }
1406 }
1407 }
Jeff Sharkey72f9c422017-10-27 17:22:59 -06001408 updateCapabilities();
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001409 return true;
1410 }
1411
1412 public synchronized Network[] getUnderlyingNetworks() {
1413 if (!isRunningLocked()) {
1414 return null;
1415 }
1416 return mConfig.underlyingNetworks;
1417 }
1418
Wenchao Tongf5ea3402015-03-04 13:26:38 -08001419 /**
1420 * This method should only be called by ConnectivityService. Because it doesn't
1421 * have enough data to fill VpnInfo.primaryUnderlyingIface field.
1422 */
1423 public synchronized VpnInfo getVpnInfo() {
1424 if (!isRunningLocked()) {
1425 return null;
1426 }
1427
1428 VpnInfo info = new VpnInfo();
1429 info.ownerUid = mOwnerUID;
1430 info.vpnIface = mInterface;
1431 return info;
1432 }
1433
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001434 public synchronized boolean appliesToUid(int uid) {
1435 if (!isRunningLocked()) {
1436 return false;
1437 }
1438 for (UidRange uidRange : mVpnUsers) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001439 if (uidRange.contains(uid)) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001440 return true;
1441 }
1442 }
1443 return false;
1444 }
1445
Robin Lee17e61832016-05-09 13:46:28 +01001446 /**
Robin Leeebbcb542016-05-24 16:35:10 +01001447 * @return {@code true} if {@param uid} is blocked by an always-on VPN.
1448 * A UID is blocked if it's included in one of the mBlockedUsers ranges and the VPN is
1449 * not connected, or if the VPN is connected but does not apply to the UID.
Robin Lee17e61832016-05-09 13:46:28 +01001450 *
1451 * @see #mBlockedUsers
1452 */
1453 public synchronized boolean isBlockingUid(int uid) {
Robin Leeebbcb542016-05-24 16:35:10 +01001454 if (!mLockdown) {
1455 return false;
Robin Lee17e61832016-05-09 13:46:28 +01001456 }
Robin Leeebbcb542016-05-24 16:35:10 +01001457
1458 if (mNetworkInfo.isConnected()) {
1459 return !appliesToUid(uid);
1460 } else {
1461 for (UidRange uidRange : mBlockedUsers) {
1462 if (uidRange.contains(uid)) {
1463 return true;
1464 }
1465 }
1466 return false;
1467 }
Robin Lee17e61832016-05-09 13:46:28 +01001468 }
1469
Tony Mak1a405fe2016-06-30 11:19:20 +01001470 private void updateAlwaysOnNotification(DetailedState networkState) {
1471 final boolean visible = (mAlwaysOn && networkState != DetailedState.CONNECTED);
Tony Mak1a405fe2016-06-30 11:19:20 +01001472
Tony Mak1a405fe2016-06-30 11:19:20 +01001473 final UserHandle user = UserHandle.of(mUserHandle);
1474 final long token = Binder.clearCallingIdentity();
1475 try {
1476 final NotificationManager notificationManager = NotificationManager.from(mContext);
1477 if (!visible) {
Charles He15297a62017-04-08 22:03:42 +01001478 notificationManager.cancelAsUser(TAG, SystemMessage.NOTE_VPN_DISCONNECTED, user);
Tony Mak1a405fe2016-06-30 11:19:20 +01001479 return;
1480 }
Charles Heab6f2f62017-07-12 15:30:00 +01001481 final Intent intent = new Intent();
1482 intent.setComponent(ComponentName.unflattenFromString(mContext.getString(
1483 R.string.config_customVpnAlwaysOnDisconnectedDialogComponent)));
1484 intent.putExtra("lockdown", mLockdown);
1485 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Robin Leeb8c2a2b2017-03-10 16:17:06 +00001486 final PendingIntent configIntent = mSystemServices.pendingIntentGetActivityAsUser(
1487 intent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT, user);
Geoffrey Pitschaf759c52017-02-15 09:35:38 -05001488 final Notification.Builder builder =
1489 new Notification.Builder(mContext, SystemNotificationChannels.VPN)
1490 .setSmallIcon(R.drawable.vpn_connected)
1491 .setContentTitle(mContext.getString(R.string.vpn_lockdown_disconnected))
1492 .setContentText(mContext.getString(R.string.vpn_lockdown_config))
1493 .setContentIntent(configIntent)
1494 .setCategory(Notification.CATEGORY_SYSTEM)
1495 .setVisibility(Notification.VISIBILITY_PUBLIC)
1496 .setOngoing(true)
1497 .setColor(mContext.getColor(R.color.system_notification_accent_color));
Chris Wren282cfef2017-03-27 15:01:44 -04001498 notificationManager.notifyAsUser(TAG, SystemMessage.NOTE_VPN_DISCONNECTED,
1499 builder.build(), user);
Tony Mak1a405fe2016-06-30 11:19:20 +01001500 } finally {
1501 Binder.restoreCallingIdentity(token);
1502 }
1503 }
1504
Robin Leeb8c2a2b2017-03-10 16:17:06 +00001505 /**
1506 * Facade for system service calls that change, or depend on, state outside of
1507 * {@link ConnectivityService} and have hard-to-mock interfaces.
1508 *
1509 * @see com.android.server.connectivity.VpnTest
1510 */
1511 @VisibleForTesting
1512 public static class SystemServices {
1513 private final Context mContext;
1514
1515 public SystemServices(@NonNull Context context) {
1516 mContext = context;
1517 }
1518
1519 /**
1520 * @see PendingIntent#getActivityAsUser()
1521 */
1522 public PendingIntent pendingIntentGetActivityAsUser(
1523 Intent intent, int flags, UserHandle user) {
1524 return PendingIntent.getActivityAsUser(mContext, 0 /*request*/, intent, flags,
1525 null /*options*/, user);
1526 }
1527
1528 /**
1529 * @see Settings.Secure#putStringForUser
1530 */
1531 public void settingsSecurePutStringForUser(String key, String value, int userId) {
1532 Settings.Secure.putStringForUser(mContext.getContentResolver(), key, value, userId);
1533 }
1534
1535 /**
1536 * @see Settings.Secure#putIntForUser
1537 */
1538 public void settingsSecurePutIntForUser(String key, int value, int userId) {
1539 Settings.Secure.putIntForUser(mContext.getContentResolver(), key, value, userId);
1540 }
1541
1542 /**
1543 * @see Settings.Secure#getStringForUser
1544 */
1545 public String settingsSecureGetStringForUser(String key, int userId) {
1546 return Settings.Secure.getStringForUser(mContext.getContentResolver(), key, userId);
1547 }
1548
1549 /**
1550 * @see Settings.Secure#getIntForUser
1551 */
1552 public int settingsSecureGetIntForUser(String key, int def, int userId) {
1553 return Settings.Secure.getIntForUser(mContext.getContentResolver(), key, def, userId);
1554 }
1555 }
1556
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001557 private native int jniCreate(int mtu);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001558 private native String jniGetName(int tun);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001559 private native int jniSetAddresses(String interfaze, String addresses);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001560 private native void jniReset(String interfaze);
1561 private native int jniCheck(String interfaze);
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001562 private native boolean jniAddAddress(String interfaze, String address, int prefixLen);
1563 private native boolean jniDelAddress(String interfaze, String address, int prefixLen);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001564
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001565 private static RouteInfo findIPv4DefaultRoute(LinkProperties prop) {
1566 for (RouteInfo route : prop.getAllRoutes()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -07001567 // Currently legacy VPN only works on IPv4.
1568 if (route.isDefaultRoute() && route.getGateway() instanceof Inet4Address) {
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001569 return route;
Jeff Sharkey82f85212012-08-24 11:17:25 -07001570 }
1571 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001572
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001573 throw new IllegalStateException("Unable to find IPv4 default gateway");
Jeff Sharkey82f85212012-08-24 11:17:25 -07001574 }
1575
1576 /**
1577 * Start legacy VPN, controlling native daemons as needed. Creates a
1578 * secondary thread to perform connection work, returning quickly.
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001579 *
1580 * Should only be called to respond to Binder requests as this enforces caller permission. Use
1581 * {@link #startLegacyVpnPrivileged(VpnProfile, KeyStore, LinkProperties)} to skip the
1582 * permission check only when the caller is trusted (or the call is initiated by the system).
Jeff Sharkey82f85212012-08-24 11:17:25 -07001583 */
1584 public void startLegacyVpn(VpnProfile profile, KeyStore keyStore, LinkProperties egress) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08001585 enforceControlPermission();
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001586 long token = Binder.clearCallingIdentity();
1587 try {
1588 startLegacyVpnPrivileged(profile, keyStore, egress);
1589 } finally {
1590 Binder.restoreCallingIdentity(token);
1591 }
1592 }
1593
1594 /**
1595 * Like {@link #startLegacyVpn(VpnProfile, KeyStore, LinkProperties)}, but does not check
1596 * permissions under the assumption that the caller is the system.
1597 *
1598 * Callers are responsible for checking permissions if needed.
1599 */
1600 public void startLegacyVpnPrivileged(VpnProfile profile, KeyStore keyStore,
1601 LinkProperties egress) {
Julia Reynoldsf5116d02014-07-01 11:10:41 -04001602 UserManager mgr = UserManager.get(mContext);
Paul Jensen0784eea2014-08-19 16:00:24 -04001603 UserInfo user = mgr.getUserInfo(mUserHandle);
Nicolas Prevot95778ff2015-01-06 15:43:05 +00001604 if (user.isRestricted() || mgr.hasUserRestriction(UserManager.DISALLOW_CONFIG_VPN,
1605 new UserHandle(mUserHandle))) {
Julia Reynoldsf5116d02014-07-01 11:10:41 -04001606 throw new SecurityException("Restricted users cannot establish VPNs");
1607 }
Jeff Sharkey82f85212012-08-24 11:17:25 -07001608
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001609 final RouteInfo ipv4DefaultRoute = findIPv4DefaultRoute(egress);
1610 final String gateway = ipv4DefaultRoute.getGateway().getHostAddress();
1611 final String iface = ipv4DefaultRoute.getInterface();
Jeff Sharkey82f85212012-08-24 11:17:25 -07001612
1613 // Load certificates.
1614 String privateKey = "";
1615 String userCert = "";
1616 String caCert = "";
1617 String serverCert = "";
1618 if (!profile.ipsecUserCert.isEmpty()) {
1619 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
1620 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecUserCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001621 userCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001622 }
1623 if (!profile.ipsecCaCert.isEmpty()) {
1624 byte[] value = keyStore.get(Credentials.CA_CERTIFICATE + profile.ipsecCaCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001625 caCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001626 }
1627 if (!profile.ipsecServerCert.isEmpty()) {
1628 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecServerCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001629 serverCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001630 }
1631 if (privateKey == null || userCert == null || caCert == null || serverCert == null) {
1632 throw new IllegalStateException("Cannot load credentials");
1633 }
1634
1635 // Prepare arguments for racoon.
1636 String[] racoon = null;
1637 switch (profile.type) {
1638 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
1639 racoon = new String[] {
1640 iface, profile.server, "udppsk", profile.ipsecIdentifier,
1641 profile.ipsecSecret, "1701",
1642 };
1643 break;
1644 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
1645 racoon = new String[] {
1646 iface, profile.server, "udprsa", privateKey, userCert,
1647 caCert, serverCert, "1701",
1648 };
1649 break;
1650 case VpnProfile.TYPE_IPSEC_XAUTH_PSK:
1651 racoon = new String[] {
1652 iface, profile.server, "xauthpsk", profile.ipsecIdentifier,
1653 profile.ipsecSecret, profile.username, profile.password, "", gateway,
1654 };
1655 break;
1656 case VpnProfile.TYPE_IPSEC_XAUTH_RSA:
1657 racoon = new String[] {
1658 iface, profile.server, "xauthrsa", privateKey, userCert,
1659 caCert, serverCert, profile.username, profile.password, "", gateway,
1660 };
1661 break;
1662 case VpnProfile.TYPE_IPSEC_HYBRID_RSA:
1663 racoon = new String[] {
1664 iface, profile.server, "hybridrsa",
1665 caCert, serverCert, profile.username, profile.password, "", gateway,
1666 };
1667 break;
1668 }
1669
1670 // Prepare arguments for mtpd.
1671 String[] mtpd = null;
1672 switch (profile.type) {
1673 case VpnProfile.TYPE_PPTP:
1674 mtpd = new String[] {
1675 iface, "pptp", profile.server, "1723",
1676 "name", profile.username, "password", profile.password,
1677 "linkname", "vpn", "refuse-eap", "nodefaultroute",
1678 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
1679 (profile.mppe ? "+mppe" : "nomppe"),
1680 };
1681 break;
1682 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
1683 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
1684 mtpd = new String[] {
1685 iface, "l2tp", profile.server, "1701", profile.l2tpSecret,
1686 "name", profile.username, "password", profile.password,
1687 "linkname", "vpn", "refuse-eap", "nodefaultroute",
1688 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
1689 };
1690 break;
1691 }
1692
1693 VpnConfig config = new VpnConfig();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001694 config.legacy = true;
Jeff Sharkey82f85212012-08-24 11:17:25 -07001695 config.user = profile.key;
1696 config.interfaze = iface;
1697 config.session = profile.name;
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001698
1699 config.addLegacyRoutes(profile.routes);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001700 if (!profile.dnsServers.isEmpty()) {
1701 config.dnsServers = Arrays.asList(profile.dnsServers.split(" +"));
1702 }
1703 if (!profile.searchDomains.isEmpty()) {
1704 config.searchDomains = Arrays.asList(profile.searchDomains.split(" +"));
1705 }
Jeff Sharkey82f85212012-08-24 11:17:25 -07001706 startLegacyVpn(config, racoon, mtpd);
1707 }
1708
1709 private synchronized void startLegacyVpn(VpnConfig config, String[] racoon, String[] mtpd) {
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001710 stopLegacyVpnPrivileged();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001711
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001712 // Prepare for the new request.
1713 prepareInternal(VpnConfig.LEGACY_VPN);
Jeff Sharkey899223b2012-08-04 15:24:58 -07001714 updateState(DetailedState.CONNECTING, "startLegacyVpn");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001715
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001716 // Start a new LegacyVpnRunner and we are done!
Chia-chi Yeh100155a2011-07-03 16:52:38 -07001717 mLegacyVpnRunner = new LegacyVpnRunner(config, racoon, mtpd);
1718 mLegacyVpnRunner.start();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001719 }
1720
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001721 /** Stop legacy VPN. Permissions must be checked by callers. */
1722 public synchronized void stopLegacyVpnPrivileged() {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001723 if (mLegacyVpnRunner != null) {
1724 mLegacyVpnRunner.exit();
1725 mLegacyVpnRunner = null;
1726
1727 synchronized (LegacyVpnRunner.TAG) {
1728 // wait for old thread to completely finish before spinning up
1729 // new instance, otherwise state updates can be out of order.
1730 }
1731 }
1732 }
1733
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001734 /**
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001735 * Return the information of the current ongoing legacy VPN.
1736 */
1737 public synchronized LegacyVpnInfo getLegacyVpnInfo() {
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001738 // Check if the caller is authorized.
1739 enforceControlPermission();
sj.cha08bbca02015-03-23 11:35:24 +09001740 return getLegacyVpnInfoPrivileged();
1741 }
1742
1743 /**
1744 * Return the information of the current ongoing legacy VPN.
1745 * Callers are responsible for checking permissions if needed.
1746 */
1747 public synchronized LegacyVpnInfo getLegacyVpnInfoPrivileged() {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001748 if (mLegacyVpnRunner == null) return null;
1749
1750 final LegacyVpnInfo info = new LegacyVpnInfo();
Chad Brubakerc2865192013-07-10 14:46:23 -07001751 info.key = mConfig.user;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001752 info.state = LegacyVpnInfo.stateFromNetworkInfo(mNetworkInfo);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001753 if (mNetworkInfo.isConnected()) {
1754 info.intent = mStatusIntent;
1755 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001756 return info;
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001757 }
1758
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001759 public VpnConfig getLegacyVpnConfig() {
1760 if (mLegacyVpnRunner != null) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001761 return mConfig;
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001762 } else {
1763 return null;
1764 }
1765 }
1766
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001767 /**
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001768 * Bringing up a VPN connection takes time, and that is all this thread
1769 * does. Here we have plenty of time. The only thing we need to take
1770 * care of is responding to interruptions as soon as possible. Otherwise
1771 * requests will be piled up. This can be done in a Handler as a state
1772 * machine, but it is much easier to read in the current form.
1773 */
1774 private class LegacyVpnRunner extends Thread {
1775 private static final String TAG = "LegacyVpnRunner";
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001776
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001777 private final String[] mDaemons;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001778 private final String[][] mArguments;
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001779 private final LocalSocket[] mSockets;
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001780 private final String mOuterInterface;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001781 private final AtomicInteger mOuterConnection =
1782 new AtomicInteger(ConnectivityManager.TYPE_NONE);
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001783
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001784 private long mTimer = -1;
1785
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001786 /**
1787 * Watch for the outer connection (passing in the constructor) going away.
1788 */
1789 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
1790 @Override
1791 public void onReceive(Context context, Intent intent) {
Jeff Sharkey57666932013-04-30 17:01:57 -07001792 if (!mEnableTeardown) return;
1793
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001794 if (intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
1795 if (intent.getIntExtra(ConnectivityManager.EXTRA_NETWORK_TYPE,
1796 ConnectivityManager.TYPE_NONE) == mOuterConnection.get()) {
1797 NetworkInfo info = (NetworkInfo)intent.getExtra(
1798 ConnectivityManager.EXTRA_NETWORK_INFO);
1799 if (info != null && !info.isConnectedOrConnecting()) {
1800 try {
1801 mObserver.interfaceStatusChanged(mOuterInterface, false);
1802 } catch (RemoteException e) {}
1803 }
1804 }
1805 }
1806 }
1807 };
1808
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001809 public LegacyVpnRunner(VpnConfig config, String[] racoon, String[] mtpd) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001810 super(TAG);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001811 mConfig = config;
1812 mDaemons = new String[] {"racoon", "mtpd"};
Jeff Sharkey899223b2012-08-04 15:24:58 -07001813 // TODO: clear arguments from memory once launched
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001814 mArguments = new String[][] {racoon, mtpd};
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001815 mSockets = new LocalSocket[mDaemons.length];
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001816
1817 // This is the interface which VPN is running on,
1818 // mConfig.interfaze will change to point to OUR
1819 // internal interface soon. TODO - add inner/outer to mconfig
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001820 // TODO - we have a race - if the outer iface goes away/disconnects before we hit this
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001821 // we will leave the VPN up. We should check that it's still there/connected after
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001822 // registering
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001823 mOuterInterface = mConfig.interfaze;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001824
Paul Jensene75b9e32015-04-06 11:54:53 -04001825 if (!TextUtils.isEmpty(mOuterInterface)) {
1826 final ConnectivityManager cm = ConnectivityManager.from(mContext);
1827 for (Network network : cm.getAllNetworks()) {
1828 final LinkProperties lp = cm.getLinkProperties(network);
Lorenzo Colitti1b60d112015-07-02 13:03:03 +09001829 if (lp != null && lp.getAllInterfaceNames().contains(mOuterInterface)) {
Paul Jensene75b9e32015-04-06 11:54:53 -04001830 final NetworkInfo networkInfo = cm.getNetworkInfo(network);
1831 if (networkInfo != null) mOuterConnection.set(networkInfo.getType());
1832 }
1833 }
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001834 }
1835
1836 IntentFilter filter = new IntentFilter();
1837 filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
1838 mContext.registerReceiver(mBroadcastReceiver, filter);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001839 }
1840
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001841 public void check(String interfaze) {
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001842 if (interfaze.equals(mOuterInterface)) {
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001843 Log.i(TAG, "Legacy VPN is going down with " + interfaze);
1844 exit();
1845 }
1846 }
1847
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001848 public void exit() {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001849 // We assume that everything is reset after stopping the daemons.
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001850 interrupt();
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001851 agentDisconnect();
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001852 try {
1853 mContext.unregisterReceiver(mBroadcastReceiver);
1854 } catch (IllegalArgumentException e) {}
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001855 }
1856
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001857 @Override
1858 public void run() {
1859 // Wait for the previous thread since it has been interrupted.
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001860 Log.v(TAG, "Waiting");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001861 synchronized (TAG) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001862 Log.v(TAG, "Executing");
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09001863 try {
1864 execute();
1865 monitorDaemons();
1866 interrupted(); // Clear interrupt flag if execute called exit.
1867 } catch (InterruptedException e) {
1868 } finally {
1869 for (LocalSocket socket : mSockets) {
1870 IoUtils.closeQuietly(socket);
1871 }
1872 // This sleep is necessary for racoon to successfully complete sending delete
1873 // message to server.
1874 try {
1875 Thread.sleep(50);
1876 } catch (InterruptedException e) {
1877 }
1878 for (String daemon : mDaemons) {
1879 SystemService.stop(daemon);
1880 }
1881 }
1882 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001883 }
1884 }
1885
1886 private void checkpoint(boolean yield) throws InterruptedException {
1887 long now = SystemClock.elapsedRealtime();
1888 if (mTimer == -1) {
1889 mTimer = now;
1890 Thread.sleep(1);
Chia-chi Yeh7ef86112011-07-22 15:46:52 -07001891 } else if (now - mTimer <= 60000) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001892 Thread.sleep(yield ? 200 : 1);
1893 } else {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001894 updateState(DetailedState.FAILED, "checkpoint");
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001895 throw new IllegalStateException("Time is up");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001896 }
1897 }
1898
1899 private void execute() {
1900 // Catch all exceptions so we can clean up few things.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001901 boolean initFinished = false;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001902 try {
1903 // Initialize the timer.
1904 checkpoint(false);
1905
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001906 // Wait for the daemons to stop.
1907 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001908 while (!SystemService.isStopped(daemon)) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001909 checkpoint(true);
1910 }
1911 }
1912
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001913 // Clear the previous state.
1914 File state = new File("/data/misc/vpn/state");
1915 state.delete();
1916 if (state.exists()) {
1917 throw new IllegalStateException("Cannot delete the state");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001918 }
Chia-chi Yehc1872732011-12-08 16:51:41 -08001919 new File("/data/misc/vpn/abort").delete();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001920 initFinished = true;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001921
Chia-chi Yehe9107902011-07-02 01:48:50 -07001922 // Check if we need to restart any of the daemons.
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001923 boolean restart = false;
1924 for (String[] arguments : mArguments) {
1925 restart = restart || (arguments != null);
1926 }
1927 if (!restart) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001928 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001929 return;
1930 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001931 updateState(DetailedState.CONNECTING, "execute");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001932
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001933 // Start the daemon with arguments.
1934 for (int i = 0; i < mDaemons.length; ++i) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001935 String[] arguments = mArguments[i];
1936 if (arguments == null) {
1937 continue;
1938 }
1939
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001940 // Start the daemon.
1941 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001942 SystemService.start(daemon);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001943
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001944 // Wait for the daemon to start.
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001945 while (!SystemService.isRunning(daemon)) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001946 checkpoint(true);
1947 }
1948
1949 // Create the control socket.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001950 mSockets[i] = new LocalSocket();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001951 LocalSocketAddress address = new LocalSocketAddress(
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001952 daemon, LocalSocketAddress.Namespace.RESERVED);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001953
1954 // Wait for the socket to connect.
1955 while (true) {
1956 try {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001957 mSockets[i].connect(address);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001958 break;
1959 } catch (Exception e) {
1960 // ignore
1961 }
1962 checkpoint(true);
1963 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001964 mSockets[i].setSoTimeout(500);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001965
1966 // Send over the arguments.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001967 OutputStream out = mSockets[i].getOutputStream();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001968 for (String argument : arguments) {
Elliott Hughesd396a442013-06-28 16:24:48 -07001969 byte[] bytes = argument.getBytes(StandardCharsets.UTF_8);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001970 if (bytes.length >= 0xFFFF) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001971 throw new IllegalArgumentException("Argument is too large");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001972 }
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001973 out.write(bytes.length >> 8);
1974 out.write(bytes.length);
1975 out.write(bytes);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001976 checkpoint(false);
1977 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001978 out.write(0xFF);
1979 out.write(0xFF);
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001980 out.flush();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001981
1982 // Wait for End-of-File.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001983 InputStream in = mSockets[i].getInputStream();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001984 while (true) {
1985 try {
1986 if (in.read() == -1) {
1987 break;
1988 }
1989 } catch (Exception e) {
1990 // ignore
1991 }
1992 checkpoint(true);
1993 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001994 }
1995
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001996 // Wait for the daemons to create the new state.
1997 while (!state.exists()) {
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001998 // Check if a running daemon is dead.
1999 for (int i = 0; i < mDaemons.length; ++i) {
2000 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07002001 if (mArguments[i] != null && !SystemService.isRunning(daemon)) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002002 throw new IllegalStateException(daemon + " is dead");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002003 }
2004 }
2005 checkpoint(true);
2006 }
2007
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002008 // Now we are connected. Read and parse the new state.
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -08002009 String[] parameters = FileUtils.readTextFile(state, 0, null).split("\n", -1);
Lorenzo Colitti50262792014-09-19 01:53:35 +09002010 if (parameters.length != 7) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002011 throw new IllegalStateException("Cannot parse the state");
2012 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002013
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002014 // Set the interface and the addresses in the config.
2015 mConfig.interfaze = parameters[0].trim();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002016
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002017 mConfig.addLegacyAddresses(parameters[1]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002018 // Set the routes if they are not set in the config.
2019 if (mConfig.routes == null || mConfig.routes.isEmpty()) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002020 mConfig.addLegacyRoutes(parameters[2]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002021 }
2022
2023 // Set the DNS servers if they are not set in the config.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002024 if (mConfig.dnsServers == null || mConfig.dnsServers.size() == 0) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002025 String dnsServers = parameters[3].trim();
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002026 if (!dnsServers.isEmpty()) {
2027 mConfig.dnsServers = Arrays.asList(dnsServers.split(" "));
2028 }
2029 }
2030
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002031 // Set the search domains if they are not set in the config.
2032 if (mConfig.searchDomains == null || mConfig.searchDomains.size() == 0) {
2033 String searchDomains = parameters[4].trim();
2034 if (!searchDomains.isEmpty()) {
2035 mConfig.searchDomains = Arrays.asList(searchDomains.split(" "));
2036 }
2037 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07002038
Lorenzo Colitti50262792014-09-19 01:53:35 +09002039 // Add a throw route for the VPN server endpoint, if one was specified.
2040 String endpoint = parameters[5];
2041 if (!endpoint.isEmpty()) {
2042 try {
2043 InetAddress addr = InetAddress.parseNumericAddress(endpoint);
2044 if (addr instanceof Inet4Address) {
2045 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 32), RTN_THROW));
2046 } else if (addr instanceof Inet6Address) {
2047 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 128), RTN_THROW));
2048 } else {
2049 Log.e(TAG, "Unknown IP address family for VPN endpoint: " + endpoint);
2050 }
2051 } catch (IllegalArgumentException e) {
2052 Log.e(TAG, "Exception constructing throw route to " + endpoint + ": " + e);
2053 }
2054 }
2055
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002056 // Here is the last step and it must be done synchronously.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002057 synchronized (Vpn.this) {
Vinit Deshapnde2b862e52013-10-02 11:50:39 -07002058 // Set the start time
2059 mConfig.startTime = SystemClock.elapsedRealtime();
2060
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002061 // Check if the thread is interrupted while we are waiting.
2062 checkpoint(false);
2063
Chia-chi Yehe9107902011-07-02 01:48:50 -07002064 // Check if the interface is gone while we are waiting.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07002065 if (jniCheck(mConfig.interfaze) == 0) {
Chia-chi Yeh34e78132011-07-03 03:07:07 -07002066 throw new IllegalStateException(mConfig.interfaze + " is gone");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002067 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07002068
2069 // Now INetworkManagementEventObserver is watching our back.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07002070 mInterface = mConfig.interfaze;
Robin Lee4d03abc2016-05-09 12:32:27 +01002071 prepareStatusIntent();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002072
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04002073 agentConnect();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002074
2075 Log.i(TAG, "Connected!");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002076 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002077 } catch (Exception e) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002078 Log.i(TAG, "Aborting", e);
Lorenzo Colitti43840602014-08-20 16:01:44 -07002079 updateState(DetailedState.FAILED, e.getMessage());
Chia-chi Yehe9107902011-07-02 01:48:50 -07002080 exit();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002081 }
2082 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07002083
2084 /**
2085 * Monitor the daemons we started, moving to disconnected state if the
2086 * underlying services fail.
2087 */
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09002088 private void monitorDaemons() throws InterruptedException{
Jeff Sharkey899223b2012-08-04 15:24:58 -07002089 if (!mNetworkInfo.isConnected()) {
2090 return;
2091 }
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09002092 while (true) {
2093 Thread.sleep(2000);
2094 for (int i = 0; i < mDaemons.length; i++) {
2095 if (mArguments[i] != null && SystemService.isStopped(mDaemons[i])) {
2096 return;
Jeff Sharkey899223b2012-08-04 15:24:58 -07002097 }
2098 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07002099 }
2100 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002101 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07002102}