blob: 6960abbb5dc61725a5d894199a0b74554179e5ee [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 Sharkey9b2a10f2018-01-17 13:27:03 +090021import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_CONGESTED;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060022import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_METERED;
23import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_ROAMING;
Lorenzo Colitti50262792014-09-19 01:53:35 +090024import static android.net.RouteInfo.RTN_THROW;
Lorenzo Colitti60446162014-09-20 00:14:31 +090025import static android.net.RouteInfo.RTN_UNREACHABLE;
Jeff Sharkey899223b2012-08-04 15:24:58 -070026
Jeff Davidsonbc19c182014-11-11 13:20:01 -080027import android.Manifest;
Robin Lee4d03abc2016-05-09 12:32:27 +010028import android.annotation.NonNull;
29import android.annotation.Nullable;
30import android.annotation.UserIdInt;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070031import android.app.AppGlobals;
Jeff Davidson05542602014-08-11 14:07:27 -070032import android.app.AppOpsManager;
Tony Mak1a405fe2016-06-30 11:19:20 +010033import android.app.Notification;
34import android.app.NotificationManager;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -070035import android.app.PendingIntent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070036import android.content.BroadcastReceiver;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070037import android.content.ComponentName;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070038import android.content.Context;
39import android.content.Intent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070040import android.content.IntentFilter;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070041import android.content.ServiceConnection;
Charles Hea0a87e82017-05-15 17:07:18 +010042import android.content.pm.ApplicationInfo;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070043import android.content.pm.PackageManager;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040044import android.content.pm.PackageManager.NameNotFoundException;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070045import android.content.pm.ResolveInfo;
Chad Brubakerc2865192013-07-10 14:46:23 -070046import android.content.pm.UserInfo;
Jeff Sharkey899223b2012-08-04 15:24:58 -070047import android.net.ConnectivityManager;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070048import android.net.INetworkManagementEventObserver;
Lorenzo Colitti50262792014-09-19 01:53:35 +090049import android.net.IpPrefix;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070050import android.net.LinkAddress;
Jeff Sharkey82f85212012-08-24 11:17:25 -070051import android.net.LinkProperties;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070052import android.net.LocalSocket;
53import android.net.LocalSocketAddress;
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -080054import android.net.Network;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040055import android.net.NetworkAgent;
56import android.net.NetworkCapabilities;
Jeff Sharkey899223b2012-08-04 15:24:58 -070057import android.net.NetworkInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040058import android.net.NetworkInfo.DetailedState;
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -070059import android.net.NetworkMisc;
Jeff Sharkey82f85212012-08-24 11:17:25 -070060import android.net.RouteInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040061import android.net.UidRange;
Robin Lee812800c2016-05-13 15:38:08 +010062import android.net.Uri;
Charles Hea0a87e82017-05-15 17:07:18 +010063import android.net.VpnService;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070064import android.os.Binder;
Charles Hea0a87e82017-05-15 17:07:18 +010065import android.os.Build.VERSION_CODES;
66import android.os.Bundle;
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -080067import android.os.FileUtils;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070068import android.os.IBinder;
Jeff Sharkey899223b2012-08-04 15:24:58 -070069import android.os.INetworkManagementService;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040070import android.os.Looper;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070071import android.os.Parcel;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070072import android.os.ParcelFileDescriptor;
Robin Lee812800c2016-05-13 15:38:08 +010073import android.os.PatternMatcher;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070074import android.os.Process;
Jeff Sharkey899223b2012-08-04 15:24:58 -070075import android.os.RemoteException;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070076import android.os.SystemClock;
Jeff Sharkey088f29f2012-08-05 14:55:04 -070077import android.os.SystemService;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070078import android.os.UserHandle;
Chad Brubakerc2865192013-07-10 14:46:23 -070079import android.os.UserManager;
Robin Lee812800c2016-05-13 15:38:08 +010080import android.provider.Settings;
Jeff Sharkey82f85212012-08-24 11:17:25 -070081import android.security.Credentials;
82import android.security.KeyStore;
Paul Jensene75b9e32015-04-06 11:54:53 -040083import android.text.TextUtils;
Robin Lee4d03abc2016-05-09 12:32:27 +010084import android.util.ArraySet;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070085import android.util.Log;
86
Tony Mak1a405fe2016-06-30 11:19:20 +010087import com.android.internal.R;
Chad Brubakerc2865192013-07-10 14:46:23 -070088import com.android.internal.annotations.GuardedBy;
Robin Lee4d03abc2016-05-09 12:32:27 +010089import com.android.internal.annotations.VisibleForTesting;
Chris Wren282cfef2017-03-27 15:01:44 -040090import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
Chia-chi Yeh2e467642011-07-04 03:23:12 -070091import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070092import com.android.internal.net.VpnConfig;
Wenchao Tongf5ea3402015-03-04 13:26:38 -080093import com.android.internal.net.VpnInfo;
Jeff Sharkey82f85212012-08-24 11:17:25 -070094import com.android.internal.net.VpnProfile;
Geoffrey Pitschaf759c52017-02-15 09:35:38 -050095import com.android.internal.notification.SystemNotificationChannels;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060096import com.android.internal.util.ArrayUtils;
97import com.android.server.ConnectivityService;
Christopher Tatee0be7e82017-02-08 17:38:20 -080098import com.android.server.DeviceIdleController;
99import com.android.server.LocalServices;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700100import com.android.server.net.BaseNetworkObserver;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700101
Jeff Davidson05542602014-08-11 14:07:27 -0700102import libcore.io.IoUtils;
103
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700104import java.io.File;
Jeff Davidson6bbf39c2014-07-23 10:14:53 -0700105import java.io.IOException;
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700106import java.io.InputStream;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700107import java.io.OutputStream;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700108import java.net.Inet4Address;
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700109import java.net.Inet6Address;
110import java.net.InetAddress;
Elliott Hughesd396a442013-06-28 16:24:48 -0700111import java.nio.charset.StandardCharsets;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400112import java.util.ArrayList;
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700113import java.util.Arrays;
Robin Lee4d03abc2016-05-09 12:32:27 +0100114import java.util.Collection;
115import java.util.Collections;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400116import java.util.List;
Robin Lee4d03abc2016-05-09 12:32:27 +0100117import java.util.Set;
Paul Jensen0784eea2014-08-19 16:00:24 -0400118import java.util.SortedSet;
119import java.util.TreeSet;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700120import java.util.concurrent.atomic.AtomicInteger;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700121
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700122/**
123 * @hide
124 */
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400125public class Vpn {
126 private static final String NETWORKTYPE = "VPN";
Jeff Sharkey899223b2012-08-04 15:24:58 -0700127 private static final String TAG = "Vpn";
128 private static final boolean LOGD = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400129
Christopher Tatee0be7e82017-02-08 17:38:20 -0800130 // Length of time (in milliseconds) that an app hosting an always-on VPN is placed on
131 // the device idle whitelist during service launch and VPN bootstrap.
Chalard Jeandd59ece2017-12-20 13:23:32 +0900132 private static final long VPN_LAUNCH_IDLE_WHITELIST_DURATION_MS = 60 * 1000;
Christopher Tatee0be7e82017-02-08 17:38:20 -0800133
Jeff Sharkey899223b2012-08-04 15:24:58 -0700134 // TODO: create separate trackers for each unique VPN to support
135 // automated reconnection
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700136
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400137 private Context mContext;
138 private NetworkInfo mNetworkInfo;
139 private String mPackage;
140 private int mOwnerUID;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700141 private String mInterface;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700142 private Connection mConnection;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700143 private LegacyVpnRunner mLegacyVpnRunner;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700144 private PendingIntent mStatusIntent;
Jeff Sharkey57666932013-04-30 17:01:57 -0700145 private volatile boolean mEnableTeardown = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400146 private final INetworkManagementService mNetd;
Chad Brubakerc2865192013-07-10 14:46:23 -0700147 private VpnConfig mConfig;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400148 private NetworkAgent mNetworkAgent;
149 private final Looper mLooper;
150 private final NetworkCapabilities mNetworkCapabilities;
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000151 private final SystemServices mSystemServices;
Chad Brubakerc2865192013-07-10 14:46:23 -0700152
Robin Lee4d03abc2016-05-09 12:32:27 +0100153 /**
Robin Lee17e61832016-05-09 13:46:28 +0100154 * Whether to keep the connection active after rebooting, or upgrading or reinstalling. This
155 * only applies to {@link VpnService} connections.
156 */
157 private boolean mAlwaysOn = false;
158
159 /**
160 * Whether to disable traffic outside of this VPN even when the VPN is not connected. System
161 * apps can still bypass by choosing explicit networks. Has no effect if {@link mAlwaysOn} is
162 * not set.
163 */
164 private boolean mLockdown = false;
165
166 /**
Robin Lee17e61832016-05-09 13:46:28 +0100167 * List of UIDs for which networking should be blocked until VPN is ready, during brief periods
168 * when VPN is not running. For example, during system startup or after a crash.
169 * @see mLockdown
170 */
171 @GuardedBy("this")
172 private Set<UidRange> mBlockedUsers = new ArraySet<>();
173
Chalard Jeandd59ece2017-12-20 13:23:32 +0900174 // Handle of the user initiating VPN.
Paul Jensen0784eea2014-08-19 16:00:24 -0400175 private final int mUserHandle;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700176
Chalard Jeandd59ece2017-12-20 13:23:32 +0900177 // Listen to package removal and change events (update/uninstall) for this user
Robin Lee812800c2016-05-13 15:38:08 +0100178 private final BroadcastReceiver mPackageIntentReceiver = new BroadcastReceiver() {
179 @Override
180 public void onReceive(Context context, Intent intent) {
181 final Uri data = intent.getData();
182 final String packageName = data == null ? null : data.getSchemeSpecificPart();
183 if (packageName == null) {
184 return;
185 }
186
187 synchronized (Vpn.this) {
Chalard Jeandd59ece2017-12-20 13:23:32 +0900188 // Avoid race where always-on package has been unset
Robin Lee812800c2016-05-13 15:38:08 +0100189 if (!packageName.equals(getAlwaysOnPackage())) {
190 return;
191 }
192
193 final String action = intent.getAction();
Chalard Jeandd59ece2017-12-20 13:23:32 +0900194 Log.i(TAG, "Received broadcast " + action + " for always-on VPN package "
195 + packageName + " in user " + mUserHandle);
Robin Lee812800c2016-05-13 15:38:08 +0100196
197 switch(action) {
198 case Intent.ACTION_PACKAGE_REPLACED:
199 // Start vpn after app upgrade
200 startAlwaysOnVpn();
201 break;
202 case Intent.ACTION_PACKAGE_REMOVED:
203 final boolean isPackageRemoved = !intent.getBooleanExtra(
204 Intent.EXTRA_REPLACING, false);
205 if (isPackageRemoved) {
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000206 setAlwaysOnPackage(null, false);
Robin Lee812800c2016-05-13 15:38:08 +0100207 }
208 break;
209 }
210 }
211 }
212 };
213
214 private boolean mIsPackageIntentReceiverRegistered = false;
215
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400216 public Vpn(Looper looper, Context context, INetworkManagementService netService,
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000217 @UserIdInt int userHandle) {
218 this(looper, context, netService, userHandle, new SystemServices(context));
219 }
220
221 @VisibleForTesting
222 protected Vpn(Looper looper, Context context, INetworkManagementService netService,
223 int userHandle, SystemServices systemServices) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700224 mContext = context;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400225 mNetd = netService;
Paul Jensen0784eea2014-08-19 16:00:24 -0400226 mUserHandle = userHandle;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400227 mLooper = looper;
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000228 mSystemServices = systemServices;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400229
230 mPackage = VpnConfig.LEGACY_VPN;
Paul Jensen0784eea2014-08-19 16:00:24 -0400231 mOwnerUID = getAppUid(mPackage, mUserHandle);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700232
233 try {
234 netService.registerObserver(mObserver);
235 } catch (RemoteException e) {
236 Log.wtf(TAG, "Problem registering observer", e);
237 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400238
Chalard Jeandd59ece2017-12-20 13:23:32 +0900239 mNetworkInfo = new NetworkInfo(ConnectivityManager.TYPE_VPN, 0 /* subtype */, NETWORKTYPE,
240 "" /* subtypeName */);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400241 mNetworkCapabilities = new NetworkCapabilities();
242 mNetworkCapabilities.addTransportType(NetworkCapabilities.TRANSPORT_VPN);
243 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600244 updateCapabilities();
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000245
246 loadAlwaysOnPackage();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700247 }
248
Jeff Sharkey57666932013-04-30 17:01:57 -0700249 /**
Chalard Jeandd59ece2017-12-20 13:23:32 +0900250 * Set whether this object is responsible for watching for {@link NetworkInfo}
Jeff Sharkey57666932013-04-30 17:01:57 -0700251 * teardown. When {@code false}, teardown is handled externally by someone
252 * else.
253 */
254 public void setEnableTeardown(boolean enableTeardown) {
255 mEnableTeardown = enableTeardown;
256 }
257
Jeff Sharkey899223b2012-08-04 15:24:58 -0700258 /**
259 * Update current state, dispaching event to listeners.
260 */
Tony Mak1a405fe2016-06-30 11:19:20 +0100261 @VisibleForTesting
262 protected void updateState(DetailedState detailedState, String reason) {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700263 if (LOGD) Log.d(TAG, "setting state=" + detailedState + ", reason=" + reason);
264 mNetworkInfo.setDetailedState(detailedState, reason, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400265 if (mNetworkAgent != null) {
266 mNetworkAgent.sendNetworkInfo(mNetworkInfo);
267 }
Tony Mak1a405fe2016-06-30 11:19:20 +0100268 updateAlwaysOnNotification(detailedState);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700269 }
270
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600271 public void updateCapabilities() {
272 final Network[] underlyingNetworks = (mConfig != null) ? mConfig.underlyingNetworks : null;
273 updateCapabilities(mContext.getSystemService(ConnectivityManager.class), underlyingNetworks,
274 mNetworkCapabilities);
275
276 if (mNetworkAgent != null) {
277 mNetworkAgent.sendNetworkCapabilities(mNetworkCapabilities);
278 }
279 }
280
281 @VisibleForTesting
282 public static void updateCapabilities(ConnectivityManager cm, Network[] underlyingNetworks,
283 NetworkCapabilities caps) {
284 int[] transportTypes = new int[] { NetworkCapabilities.TRANSPORT_VPN };
285 int downKbps = NetworkCapabilities.LINK_BANDWIDTH_UNSPECIFIED;
286 int upKbps = NetworkCapabilities.LINK_BANDWIDTH_UNSPECIFIED;
287 boolean metered = false;
288 boolean roaming = false;
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900289 boolean congested = false;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600290
291 if (ArrayUtils.isEmpty(underlyingNetworks)) {
292 // No idea what the underlying networks are; assume sane defaults
293 metered = true;
294 roaming = false;
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900295 congested = false;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600296 } else {
297 for (Network underlying : underlyingNetworks) {
298 final NetworkCapabilities underlyingCaps = cm.getNetworkCapabilities(underlying);
Jeff Sharkey4f5e6262018-01-02 11:46:32 -0700299 if (underlyingCaps == null) continue;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600300 for (int underlyingType : underlyingCaps.getTransportTypes()) {
301 transportTypes = ArrayUtils.appendInt(transportTypes, underlyingType);
302 }
303
304 // When we have multiple networks, we have to assume the
305 // worst-case link speed and restrictions.
306 downKbps = NetworkCapabilities.minBandwidth(downKbps,
307 underlyingCaps.getLinkDownstreamBandwidthKbps());
308 upKbps = NetworkCapabilities.minBandwidth(upKbps,
309 underlyingCaps.getLinkUpstreamBandwidthKbps());
310 metered |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_METERED);
311 roaming |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_ROAMING);
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900312 congested |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_CONGESTED);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600313 }
314 }
315
316 caps.setTransportTypes(transportTypes);
317 caps.setLinkDownstreamBandwidthKbps(downKbps);
318 caps.setLinkUpstreamBandwidthKbps(upKbps);
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900319 caps.setCapability(NET_CAPABILITY_NOT_METERED, !metered);
320 caps.setCapability(NET_CAPABILITY_NOT_ROAMING, !roaming);
321 caps.setCapability(NET_CAPABILITY_NOT_CONGESTED, !congested);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600322 }
323
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700324 /**
Robin Leec3736bc2017-03-10 16:19:54 +0000325 * Chooses whether to force all connections to go though VPN.
326 *
327 * Used to enable/disable legacy VPN lockdown.
328 *
329 * This uses the same ip rule mechanism as {@link #setAlwaysOnPackage(String, boolean)};
330 * previous settings from calling that function will be replaced and saved with the
331 * always-on state.
332 *
333 * @param lockdown whether to prevent all traffic outside of a VPN.
334 */
335 public synchronized void setLockdown(boolean lockdown) {
336 enforceControlPermissionOrInternalCaller();
337
338 setVpnForcedLocked(lockdown);
339 mLockdown = lockdown;
340
341 // Update app lockdown setting if it changed. Legacy VPN lockdown status is controlled by
342 // LockdownVpnTracker.isEnabled() which keeps track of its own state.
343 if (mAlwaysOn) {
344 saveAlwaysOnPackage();
345 }
346 }
347
348 /**
Charles Hea0a87e82017-05-15 17:07:18 +0100349 * Checks if a VPN app supports always-on mode.
350 *
351 * In order to support the always-on feature, an app has to
352 * <ul>
353 * <li>target {@link VERSION_CODES#N API 24} or above, and
Charles He5da5ae32017-08-15 15:30:22 +0100354 * <li>not opt out through the {@link VpnService#SERVICE_META_DATA_SUPPORTS_ALWAYS_ON}
355 * meta-data field.
Charles Hea0a87e82017-05-15 17:07:18 +0100356 * </ul>
357 *
358 * @param packageName the canonical package name of the VPN app
359 * @return {@code true} if and only if the VPN app exists and supports always-on mode
360 */
361 public boolean isAlwaysOnPackageSupported(String packageName) {
362 enforceSettingsPermission();
363
364 if (packageName == null) {
365 return false;
366 }
367
368 PackageManager pm = mContext.getPackageManager();
369 ApplicationInfo appInfo = null;
370 try {
371 appInfo = pm.getApplicationInfoAsUser(packageName, 0 /*flags*/, mUserHandle);
372 } catch (NameNotFoundException unused) {
373 Log.w(TAG, "Can't find \"" + packageName + "\" when checking always-on support");
374 }
375 if (appInfo == null || appInfo.targetSdkVersion < VERSION_CODES.N) {
376 return false;
377 }
378
379 final Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
380 intent.setPackage(packageName);
381 List<ResolveInfo> services =
382 pm.queryIntentServicesAsUser(intent, PackageManager.GET_META_DATA, mUserHandle);
383 if (services == null || services.size() == 0) {
384 return false;
385 }
386
387 for (ResolveInfo rInfo : services) {
388 final Bundle metaData = rInfo.serviceInfo.metaData;
Charles He5da5ae32017-08-15 15:30:22 +0100389 if (metaData != null &&
390 !metaData.getBoolean(VpnService.SERVICE_META_DATA_SUPPORTS_ALWAYS_ON, true)) {
Charles Hea0a87e82017-05-15 17:07:18 +0100391 return false;
392 }
393 }
394
395 return true;
396 }
397
398 /**
Robin Lee244ce8e2016-01-05 18:03:46 +0000399 * Configures an always-on VPN connection through a specific application.
400 * This connection is automatically granted and persisted after a reboot.
401 *
402 * <p>The designated package should exist and declare a {@link VpnService} in its
403 * manifest guarded by {@link android.Manifest.permission.BIND_VPN_SERVICE},
404 * otherwise the call will fail.
405 *
Charles Hea0a87e82017-05-15 17:07:18 +0100406 * <p>Note that this method does not check if the VPN app supports always-on mode. The check is
407 * delayed to {@link #startAlwaysOnVpn()}, which is always called immediately after this
408 * method in {@link android.net.IConnectivityManager#setAlwaysOnVpnPackage}.
409 *
Robin Lee17e61832016-05-09 13:46:28 +0100410 * @param packageName the package to designate as always-on VPN supplier.
411 * @param lockdown whether to prevent traffic outside of a VPN, for example while connecting.
Robin Lee9ff1a582016-06-10 16:41:10 +0100412 * @return {@code true} if the package has been set as always-on, {@code false} otherwise.
Robin Lee244ce8e2016-01-05 18:03:46 +0000413 */
Robin Lee17e61832016-05-09 13:46:28 +0100414 public synchronized boolean setAlwaysOnPackage(String packageName, boolean lockdown) {
Robin Lee244ce8e2016-01-05 18:03:46 +0000415 enforceControlPermissionOrInternalCaller();
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000416
417 if (setAlwaysOnPackageInternal(packageName, lockdown)) {
418 saveAlwaysOnPackage();
419 return true;
420 }
421 return false;
422 }
423
424 /**
425 * Configures an always-on VPN connection through a specific application, the same as
426 * {@link #setAlwaysOnPackage}.
427 *
428 * Does not perform permission checks. Does not persist any of the changes to storage.
429 *
430 * @param packageName the package to designate as always-on VPN supplier.
431 * @param lockdown whether to prevent traffic outside of a VPN, for example while connecting.
432 * @return {@code true} if the package has been set as always-on, {@code false} otherwise.
433 */
434 @GuardedBy("this")
435 private boolean setAlwaysOnPackageInternal(String packageName, boolean lockdown) {
Robin Lee9ff1a582016-06-10 16:41:10 +0100436 if (VpnConfig.LEGACY_VPN.equals(packageName)) {
437 Log.w(TAG, "Not setting legacy VPN \"" + packageName + "\" as always-on.");
438 return false;
439 }
Robin Lee244ce8e2016-01-05 18:03:46 +0000440
Robin Lee244ce8e2016-01-05 18:03:46 +0000441 if (packageName != null) {
Robin Lee9ff1a582016-06-10 16:41:10 +0100442 // Pre-authorize new always-on VPN package.
Robin Lee244ce8e2016-01-05 18:03:46 +0000443 if (!setPackageAuthorization(packageName, true)) {
444 return false;
445 }
Robin Lee9ff1a582016-06-10 16:41:10 +0100446 mAlwaysOn = true;
447 } else {
448 packageName = VpnConfig.LEGACY_VPN;
449 mAlwaysOn = false;
Robin Lee244ce8e2016-01-05 18:03:46 +0000450 }
451
Robin Lee17e61832016-05-09 13:46:28 +0100452 mLockdown = (mAlwaysOn && lockdown);
Tony Mak1a405fe2016-06-30 11:19:20 +0100453 if (isCurrentPreparedPackage(packageName)) {
454 updateAlwaysOnNotification(mNetworkInfo.getDetailedState());
455 } else {
456 // Prepare this app. The notification will update as a side-effect of updateState().
Robin Lee9ff1a582016-06-10 16:41:10 +0100457 prepareInternal(packageName);
458 }
Robin Lee812800c2016-05-13 15:38:08 +0100459 maybeRegisterPackageChangeReceiverLocked(packageName);
Robin Lee17e61832016-05-09 13:46:28 +0100460 setVpnForcedLocked(mLockdown);
Robin Lee244ce8e2016-01-05 18:03:46 +0000461 return true;
462 }
463
Robin Lee9ff1a582016-06-10 16:41:10 +0100464 private static boolean isNullOrLegacyVpn(String packageName) {
465 return packageName == null || VpnConfig.LEGACY_VPN.equals(packageName);
466 }
467
Robin Lee812800c2016-05-13 15:38:08 +0100468 private void unregisterPackageChangeReceiverLocked() {
Robin Lee812800c2016-05-13 15:38:08 +0100469 if (mIsPackageIntentReceiverRegistered) {
470 mContext.unregisterReceiver(mPackageIntentReceiver);
471 mIsPackageIntentReceiverRegistered = false;
472 }
473 }
474
475 private void maybeRegisterPackageChangeReceiverLocked(String packageName) {
476 // Unregister IntentFilter listening for previous always-on package change
477 unregisterPackageChangeReceiverLocked();
478
Robin Lee9ff1a582016-06-10 16:41:10 +0100479 if (!isNullOrLegacyVpn(packageName)) {
Robin Lee812800c2016-05-13 15:38:08 +0100480 mIsPackageIntentReceiverRegistered = true;
481
482 IntentFilter intentFilter = new IntentFilter();
483 // Protected intent can only be sent by system. No permission required in register.
484 intentFilter.addAction(Intent.ACTION_PACKAGE_REPLACED);
485 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
486 intentFilter.addDataScheme("package");
487 intentFilter.addDataSchemeSpecificPart(packageName, PatternMatcher.PATTERN_LITERAL);
488 mContext.registerReceiverAsUser(
489 mPackageIntentReceiver, UserHandle.of(mUserHandle), intentFilter, null, null);
490 }
491 }
492
Robin Lee244ce8e2016-01-05 18:03:46 +0000493 /**
494 * @return the package name of the VPN controller responsible for always-on VPN,
495 * or {@code null} if none is set or always-on VPN is controlled through
496 * lockdown instead.
497 * @hide
498 */
499 public synchronized String getAlwaysOnPackage() {
500 enforceControlPermissionOrInternalCaller();
Robin Lee17e61832016-05-09 13:46:28 +0100501 return (mAlwaysOn ? mPackage : null);
Robin Lee244ce8e2016-01-05 18:03:46 +0000502 }
503
504 /**
Robin Lee812800c2016-05-13 15:38:08 +0100505 * Save the always-on package and lockdown config into Settings.Secure
506 */
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000507 @GuardedBy("this")
508 private void saveAlwaysOnPackage() {
Robin Lee812800c2016-05-13 15:38:08 +0100509 final long token = Binder.clearCallingIdentity();
510 try {
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000511 mSystemServices.settingsSecurePutStringForUser(Settings.Secure.ALWAYS_ON_VPN_APP,
Robin Lee812800c2016-05-13 15:38:08 +0100512 getAlwaysOnPackage(), mUserHandle);
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000513 mSystemServices.settingsSecurePutIntForUser(Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN,
Robin Leec3736bc2017-03-10 16:19:54 +0000514 (mAlwaysOn && mLockdown ? 1 : 0), mUserHandle);
Robin Lee812800c2016-05-13 15:38:08 +0100515 } finally {
516 Binder.restoreCallingIdentity(token);
517 }
518 }
519
520 /**
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000521 * Load the always-on package and lockdown config from Settings.Secure
Robin Lee812800c2016-05-13 15:38:08 +0100522 */
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000523 @GuardedBy("this")
524 private void loadAlwaysOnPackage() {
525 final long token = Binder.clearCallingIdentity();
526 try {
527 final String alwaysOnPackage = mSystemServices.settingsSecureGetStringForUser(
528 Settings.Secure.ALWAYS_ON_VPN_APP, mUserHandle);
529 final boolean alwaysOnLockdown = mSystemServices.settingsSecureGetIntForUser(
530 Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN, 0 /*default*/, mUserHandle) != 0;
531 setAlwaysOnPackageInternal(alwaysOnPackage, alwaysOnLockdown);
532 } finally {
533 Binder.restoreCallingIdentity(token);
Robin Lee812800c2016-05-13 15:38:08 +0100534 }
535 }
536
537 /**
538 * @return {@code true} if the service was started, the service was already connected, or there
539 * was no always-on VPN to start. {@code false} otherwise.
540 */
541 public boolean startAlwaysOnVpn() {
542 final String alwaysOnPackage;
543 synchronized (this) {
544 alwaysOnPackage = getAlwaysOnPackage();
545 // Skip if there is no service to start.
546 if (alwaysOnPackage == null) {
547 return true;
548 }
Charles Hea0a87e82017-05-15 17:07:18 +0100549 // Remove always-on VPN if it's not supported.
550 if (!isAlwaysOnPackageSupported(alwaysOnPackage)) {
551 setAlwaysOnPackage(null, false);
552 return false;
553 }
Robin Lee812800c2016-05-13 15:38:08 +0100554 // Skip if the service is already established. This isn't bulletproof: it's not bound
555 // until after establish(), so if it's mid-setup onStartCommand will be sent twice,
556 // which may restart the connection.
557 if (getNetworkInfo().isConnected()) {
558 return true;
559 }
560 }
561
Christopher Tatee0be7e82017-02-08 17:38:20 -0800562 // Tell the OS that background services in this app need to be allowed for
563 // a short time, so we can bootstrap the VPN service.
564 final long oldId = Binder.clearCallingIdentity();
Robin Lee812800c2016-05-13 15:38:08 +0100565 try {
Christopher Tatee0be7e82017-02-08 17:38:20 -0800566 DeviceIdleController.LocalService idleController =
567 LocalServices.getService(DeviceIdleController.LocalService.class);
568 idleController.addPowerSaveTempWhitelistApp(Process.myUid(), alwaysOnPackage,
Chalard Jeandd59ece2017-12-20 13:23:32 +0900569 VPN_LAUNCH_IDLE_WHITELIST_DURATION_MS, mUserHandle, false, "vpn");
Christopher Tatee0be7e82017-02-08 17:38:20 -0800570
571 // Start the VPN service declared in the app's manifest.
572 Intent serviceIntent = new Intent(VpnConfig.SERVICE_INTERFACE);
573 serviceIntent.setPackage(alwaysOnPackage);
574 try {
575 return mContext.startServiceAsUser(serviceIntent, UserHandle.of(mUserHandle)) != null;
576 } catch (RuntimeException e) {
577 Log.e(TAG, "VpnService " + serviceIntent + " failed to start", e);
578 return false;
579 }
580 } finally {
581 Binder.restoreCallingIdentity(oldId);
Robin Lee812800c2016-05-13 15:38:08 +0100582 }
583 }
584
585 /**
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700586 * Prepare for a VPN application. This method is designed to solve
587 * race conditions. It first compares the current prepared package
588 * with {@code oldPackage}. If they are the same, the prepared
589 * package is revoked and replaced with {@code newPackage}. If
590 * {@code oldPackage} is {@code null}, the comparison is omitted.
591 * If {@code newPackage} is the same package or {@code null}, the
592 * revocation is omitted. This method returns {@code true} if the
593 * operation is succeeded.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700594 *
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700595 * Legacy VPN is handled specially since it is not a real package.
596 * It uses {@link VpnConfig#LEGACY_VPN} as its package name, and
597 * it can be revoked by itself.
598 *
Chalard Jeandd59ece2017-12-20 13:23:32 +0900599 * Note: when we added VPN pre-consent in
600 * https://android.googlesource.com/platform/frameworks/base/+/0554260
601 * the names oldPackage and newPackage became misleading, because when
602 * an app is pre-consented, we actually prepare oldPackage, not newPackage.
Victor Chang98a633a2016-05-27 17:30:49 +0100603 *
604 * Their meanings actually are:
605 *
606 * - oldPackage non-null, newPackage null: App calling VpnService#prepare().
607 * - oldPackage null, newPackage non-null: ConfirmDialog calling prepareVpn().
Robin Lee812800c2016-05-13 15:38:08 +0100608 * - oldPackage null, newPackage=LEGACY_VPN: Used internally to disconnect
Victor Chang98a633a2016-05-27 17:30:49 +0100609 * and revoke any current app VPN and re-prepare legacy vpn.
610 *
Robin Lee812800c2016-05-13 15:38:08 +0100611 * TODO: Rename the variables - or split this method into two - and end this confusion.
612 * TODO: b/29032008 Migrate code from prepare(oldPackage=non-null, newPackage=LEGACY_VPN)
613 * to prepare(oldPackage=null, newPackage=LEGACY_VPN)
Victor Chang98a633a2016-05-27 17:30:49 +0100614 *
615 * @param oldPackage The package name of the old VPN application
616 * @param newPackage The package name of the new VPN application
617 *
Chalard Jeandd59ece2017-12-20 13:23:32 +0900618 * @return true if the operation succeeded.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700619 */
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700620 public synchronized boolean prepare(String oldPackage, String newPackage) {
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700621 if (oldPackage != null) {
Victor Chang98a633a2016-05-27 17:30:49 +0100622 // Stop an existing always-on VPN from being dethroned by other apps.
Robin Lee812800c2016-05-13 15:38:08 +0100623 if (mAlwaysOn && !isCurrentPreparedPackage(oldPackage)) {
Victor Chang98a633a2016-05-27 17:30:49 +0100624 return false;
625 }
626
Chalard Jeandd59ece2017-12-20 13:23:32 +0900627 // Package is not the same or old package was reinstalled.
Victor Chang98a633a2016-05-27 17:30:49 +0100628 if (!isCurrentPreparedPackage(oldPackage)) {
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700629 // The package doesn't match. We return false (to obtain user consent) unless the
630 // user has already consented to that VPN package.
631 if (!oldPackage.equals(VpnConfig.LEGACY_VPN) && isVpnUserPreConsented(oldPackage)) {
632 prepareInternal(oldPackage);
633 return true;
634 }
635 return false;
636 } else if (!oldPackage.equals(VpnConfig.LEGACY_VPN)
637 && !isVpnUserPreConsented(oldPackage)) {
638 // Currently prepared VPN is revoked, so unprepare it and return false.
639 prepareInternal(VpnConfig.LEGACY_VPN);
640 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700641 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700642 }
643
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700644 // Return true if we do not need to revoke.
Jeff Davidsonbe085872014-10-24 10:35:53 -0700645 if (newPackage == null || (!newPackage.equals(VpnConfig.LEGACY_VPN) &&
Victor Chang98a633a2016-05-27 17:30:49 +0100646 isCurrentPreparedPackage(newPackage))) {
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700647 return true;
648 }
649
Robin Lee1b1bcd72016-02-12 18:11:30 +0000650 // Check that the caller is authorized.
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700651 enforceControlPermission();
Chia-chi Yehe9107902011-07-02 01:48:50 -0700652
Victor Chang98a633a2016-05-27 17:30:49 +0100653 // Stop an existing always-on VPN from being dethroned by other apps.
Robin Lee812800c2016-05-13 15:38:08 +0100654 if (mAlwaysOn && !isCurrentPreparedPackage(newPackage)) {
Victor Chang98a633a2016-05-27 17:30:49 +0100655 return false;
656 }
657
Jeff Davidson11008a72014-11-20 13:12:46 -0800658 prepareInternal(newPackage);
659 return true;
660 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700661
Victor Chang98a633a2016-05-27 17:30:49 +0100662 private boolean isCurrentPreparedPackage(String packageName) {
663 // We can't just check that packageName matches mPackage, because if the app was uninstalled
664 // and reinstalled it will no longer be prepared. Instead check the UID.
665 return getAppUid(packageName, mUserHandle) == mOwnerUID;
666 }
667
Jeff Davidson11008a72014-11-20 13:12:46 -0800668 /** Prepare the VPN for the given package. Does not perform permission checks. */
669 private void prepareInternal(String newPackage) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400670 long token = Binder.clearCallingIdentity();
671 try {
Jeff Davidson11008a72014-11-20 13:12:46 -0800672 // Reset the interface.
673 if (mInterface != null) {
674 mStatusIntent = null;
675 agentDisconnect();
676 jniReset(mInterface);
677 mInterface = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900678 mNetworkCapabilities.setUids(null);
Jeff Davidson11008a72014-11-20 13:12:46 -0800679 }
680
681 // Revoke the connection or stop LegacyVpnRunner.
682 if (mConnection != null) {
683 try {
684 mConnection.mService.transact(IBinder.LAST_CALL_TRANSACTION,
685 Parcel.obtain(), null, IBinder.FLAG_ONEWAY);
686 } catch (Exception e) {
687 // ignore
688 }
689 mContext.unbindService(mConnection);
690 mConnection = null;
691 } else if (mLegacyVpnRunner != null) {
692 mLegacyVpnRunner.exit();
693 mLegacyVpnRunner = null;
694 }
695
696 try {
697 mNetd.denyProtect(mOwnerUID);
698 } catch (Exception e) {
699 Log.wtf(TAG, "Failed to disallow UID " + mOwnerUID + " to call protect() " + e);
700 }
701
702 Log.i(TAG, "Switched from " + mPackage + " to " + newPackage);
703 mPackage = newPackage;
704 mOwnerUID = getAppUid(newPackage, mUserHandle);
705 try {
706 mNetd.allowProtect(mOwnerUID);
707 } catch (Exception e) {
708 Log.wtf(TAG, "Failed to allow UID " + mOwnerUID + " to call protect() " + e);
709 }
710 mConfig = null;
711
712 updateState(DetailedState.IDLE, "prepare");
Robin Leec3736bc2017-03-10 16:19:54 +0000713 setVpnForcedLocked(mLockdown);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400714 } finally {
715 Binder.restoreCallingIdentity(token);
716 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700717 }
718
Jeff Davidson05542602014-08-11 14:07:27 -0700719 /**
Robin Lee3b3dd942015-05-12 18:14:58 +0100720 * Set whether a package has the ability to launch VPNs without user intervention.
Jeff Davidson05542602014-08-11 14:07:27 -0700721 */
Robin Lee244ce8e2016-01-05 18:03:46 +0000722 public boolean setPackageAuthorization(String packageName, boolean authorized) {
Jeff Davidson05542602014-08-11 14:07:27 -0700723 // Check if the caller is authorized.
Robin Lee244ce8e2016-01-05 18:03:46 +0000724 enforceControlPermissionOrInternalCaller();
Jeff Davidson05542602014-08-11 14:07:27 -0700725
Robin Lee3b3dd942015-05-12 18:14:58 +0100726 int uid = getAppUid(packageName, mUserHandle);
727 if (uid == -1 || VpnConfig.LEGACY_VPN.equals(packageName)) {
728 // Authorization for nonexistent packages (or fake ones) can't be updated.
Robin Lee244ce8e2016-01-05 18:03:46 +0000729 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700730 }
731
732 long token = Binder.clearCallingIdentity();
733 try {
734 AppOpsManager appOps =
735 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Robin Lee3b3dd942015-05-12 18:14:58 +0100736 appOps.setMode(AppOpsManager.OP_ACTIVATE_VPN, uid, packageName,
Jeff Davidson05542602014-08-11 14:07:27 -0700737 authorized ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED);
Robin Lee244ce8e2016-01-05 18:03:46 +0000738 return true;
Jeff Davidson05542602014-08-11 14:07:27 -0700739 } catch (Exception e) {
Robin Lee3b3dd942015-05-12 18:14:58 +0100740 Log.wtf(TAG, "Failed to set app ops for package " + packageName + ", uid " + uid, e);
Jeff Davidson05542602014-08-11 14:07:27 -0700741 } finally {
742 Binder.restoreCallingIdentity(token);
743 }
Robin Lee244ce8e2016-01-05 18:03:46 +0000744 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700745 }
746
747 private boolean isVpnUserPreConsented(String packageName) {
748 AppOpsManager appOps =
749 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
750
751 // Verify that the caller matches the given package and has permission to activate VPNs.
752 return appOps.noteOpNoThrow(AppOpsManager.OP_ACTIVATE_VPN, Binder.getCallingUid(),
753 packageName) == AppOpsManager.MODE_ALLOWED;
754 }
755
Paul Jensen0784eea2014-08-19 16:00:24 -0400756 private int getAppUid(String app, int userHandle) {
Jeff Davidson05542602014-08-11 14:07:27 -0700757 if (VpnConfig.LEGACY_VPN.equals(app)) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400758 return Process.myUid();
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700759 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400760 PackageManager pm = mContext.getPackageManager();
761 int result;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700762 try {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -0700763 result = pm.getPackageUidAsUser(app, userHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400764 } catch (NameNotFoundException e) {
765 result = -1;
766 }
767 return result;
768 }
769
770 public NetworkInfo getNetworkInfo() {
771 return mNetworkInfo;
772 }
773
Paul Jensen31a94f42015-02-13 14:18:39 -0500774 public int getNetId() {
775 return mNetworkAgent != null ? mNetworkAgent.netId : NETID_UNSET;
776 }
777
Lorenzo Colitti60446162014-09-20 00:14:31 +0900778 private LinkProperties makeLinkProperties() {
779 boolean allowIPv4 = mConfig.allowIPv4;
780 boolean allowIPv6 = mConfig.allowIPv6;
781
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400782 LinkProperties lp = new LinkProperties();
Lorenzo Colitti60446162014-09-20 00:14:31 +0900783
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400784 lp.setInterfaceName(mInterface);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700785
Lorenzo Colitti60446162014-09-20 00:14:31 +0900786 if (mConfig.addresses != null) {
787 for (LinkAddress address : mConfig.addresses) {
788 lp.addLinkAddress(address);
789 allowIPv4 |= address.getAddress() instanceof Inet4Address;
790 allowIPv6 |= address.getAddress() instanceof Inet6Address;
791 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400792 }
Lorenzo Colitti60446162014-09-20 00:14:31 +0900793
794 if (mConfig.routes != null) {
795 for (RouteInfo route : mConfig.routes) {
796 lp.addRoute(route);
797 InetAddress address = route.getDestination().getAddress();
798 allowIPv4 |= address instanceof Inet4Address;
799 allowIPv6 |= address instanceof Inet6Address;
800 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400801 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700802
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400803 if (mConfig.dnsServers != null) {
804 for (String dnsServer : mConfig.dnsServers) {
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700805 InetAddress address = InetAddress.parseNumericAddress(dnsServer);
806 lp.addDnsServer(address);
Lorenzo Colitti60446162014-09-20 00:14:31 +0900807 allowIPv4 |= address instanceof Inet4Address;
808 allowIPv6 |= address instanceof Inet6Address;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400809 }
810 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700811
Lorenzo Colitti60446162014-09-20 00:14:31 +0900812 if (!allowIPv4) {
813 lp.addRoute(new RouteInfo(new IpPrefix(Inet4Address.ANY, 0), RTN_UNREACHABLE));
814 }
815 if (!allowIPv6) {
816 lp.addRoute(new RouteInfo(new IpPrefix(Inet6Address.ANY, 0), RTN_UNREACHABLE));
817 }
818
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400819 // Concatenate search domains into a string.
820 StringBuilder buffer = new StringBuilder();
821 if (mConfig.searchDomains != null) {
822 for (String domain : mConfig.searchDomains) {
823 buffer.append(domain).append(' ');
824 }
825 }
826 lp.setDomains(buffer.toString().trim());
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700827
Lorenzo Colitti60446162014-09-20 00:14:31 +0900828 // TODO: Stop setting the MTU in jniCreate and set it here.
829
830 return lp;
831 }
832
833 private void agentConnect() {
834 LinkProperties lp = makeLinkProperties();
835
836 if (lp.hasIPv4DefaultRoute() || lp.hasIPv6DefaultRoute()) {
837 mNetworkCapabilities.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
838 } else {
839 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
840 }
841
Robin Lee323f29d2016-05-04 16:38:06 +0100842 mNetworkInfo.setDetailedState(DetailedState.CONNECTING, null, null);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700843
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700844 NetworkMisc networkMisc = new NetworkMisc();
Robin Lee17e61832016-05-09 13:46:28 +0100845 networkMisc.allowBypass = mConfig.allowBypass && !mLockdown;
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700846
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900847 mNetworkCapabilities.setUids(createUserAndRestrictedProfilesRanges(mUserHandle,
848 mConfig.allowedApplications, mConfig.disallowedApplications));
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400849 long token = Binder.clearCallingIdentity();
850 try {
Chalard Jeandd59ece2017-12-20 13:23:32 +0900851 mNetworkAgent = new NetworkAgent(mLooper, mContext, NETWORKTYPE /* logtag */,
852 mNetworkInfo, mNetworkCapabilities, lp, 0 /* score */, networkMisc) {
Jeff Davidson05542602014-08-11 14:07:27 -0700853 @Override
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400854 public void unwanted() {
855 // We are user controlled, not driven by NetworkRequest.
Jeff Davidson05542602014-08-11 14:07:27 -0700856 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400857 };
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700858 } finally {
859 Binder.restoreCallingIdentity(token);
860 }
Robin Lee323f29d2016-05-04 16:38:06 +0100861 mNetworkInfo.setIsAvailable(true);
862 updateState(DetailedState.CONNECTED, "agentConnect");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400863 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700864
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700865 private boolean canHaveRestrictedProfile(int userId) {
866 long token = Binder.clearCallingIdentity();
867 try {
868 return UserManager.get(mContext).canHaveRestrictedProfile(userId);
869 } finally {
870 Binder.restoreCallingIdentity(token);
871 }
872 }
873
Tony Mak1a405fe2016-06-30 11:19:20 +0100874 private void agentDisconnect(NetworkAgent networkAgent) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400875 if (networkAgent != null) {
Tony Mak1a405fe2016-06-30 11:19:20 +0100876 NetworkInfo networkInfo = new NetworkInfo(mNetworkInfo);
877 networkInfo.setIsAvailable(false);
878 networkInfo.setDetailedState(DetailedState.DISCONNECTED, null, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400879 networkAgent.sendNetworkInfo(networkInfo);
880 }
881 }
882
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400883 private void agentDisconnect() {
884 if (mNetworkInfo.isConnected()) {
Tony Mak1a405fe2016-06-30 11:19:20 +0100885 mNetworkInfo.setIsAvailable(false);
886 updateState(DetailedState.DISCONNECTED, "agentDisconnect");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400887 mNetworkAgent = null;
888 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700889 }
890
891 /**
Chia-chi Yehe9107902011-07-02 01:48:50 -0700892 * Establish a VPN network and return the file descriptor of the VPN
893 * interface. This methods returns {@code null} if the application is
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700894 * revoked or not prepared.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700895 *
896 * @param config The parameters to configure the network.
897 * @return The file descriptor of the VPN interface.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700898 */
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700899 public synchronized ParcelFileDescriptor establish(VpnConfig config) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700900 // Check if the caller is already prepared.
Chad Brubakerc2865192013-07-10 14:46:23 -0700901 UserManager mgr = UserManager.get(mContext);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400902 if (Binder.getCallingUid() != mOwnerUID) {
Chia-chi Yeh7b0b8342011-06-17 14:34:11 -0700903 return null;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700904 }
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700905 // Check to ensure consent hasn't been revoked since we were prepared.
906 if (!isVpnUserPreConsented(mPackage)) {
907 return null;
908 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700909 // Check if the service is properly declared.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700910 Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
911 intent.setClassName(mPackage, config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700912 long token = Binder.clearCallingIdentity();
913 try {
Chad Brubakerc2865192013-07-10 14:46:23 -0700914 // Restricted users are not allowed to create VPNs, they are tied to Owner
Paul Jensen0784eea2014-08-19 16:00:24 -0400915 UserInfo user = mgr.getUserInfo(mUserHandle);
Robin Lee628ae0d2016-05-20 14:53:48 +0100916 if (user.isRestricted()) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700917 throw new SecurityException("Restricted users cannot establish VPNs");
918 }
919
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700920 ResolveInfo info = AppGlobals.getPackageManager().resolveService(intent,
Chalard Jeandd59ece2017-12-20 13:23:32 +0900921 null, 0, mUserHandle);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700922 if (info == null) {
923 throw new SecurityException("Cannot find " + config.user);
924 }
925 if (!BIND_VPN_SERVICE.equals(info.serviceInfo.permission)) {
926 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
927 }
928 } catch (RemoteException e) {
Chalard Jeandd59ece2017-12-20 13:23:32 +0900929 throw new SecurityException("Cannot find " + config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700930 } finally {
931 Binder.restoreCallingIdentity(token);
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700932 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700933
Chad Brubaker850eb672014-03-21 21:02:47 +0000934 // Save the old config in case we need to go back.
935 VpnConfig oldConfig = mConfig;
936 String oldInterface = mInterface;
937 Connection oldConnection = mConnection;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400938 NetworkAgent oldNetworkAgent = mNetworkAgent;
939 mNetworkAgent = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900940 Set<UidRange> oldUsers = mNetworkCapabilities.getUids();
Chad Brubaker850eb672014-03-21 21:02:47 +0000941
Chia-chi Yehe9107902011-07-02 01:48:50 -0700942 // Configure the interface. Abort if any of these steps fails.
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700943 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700944 try {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700945 updateState(DetailedState.CONNECTING, "establish");
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700946 String interfaze = jniGetName(tun.getFd());
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700947
Chad Brubakerc2865192013-07-10 14:46:23 -0700948 // TEMP use the old jni calls until there is support for netd address setting
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700949 StringBuilder builder = new StringBuilder();
950 for (LinkAddress address : config.addresses) {
951 builder.append(" " + address);
952 }
953 if (jniSetAddresses(interfaze, builder.toString()) < 1) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700954 throw new IllegalArgumentException("At least one address must be specified");
955 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700956 Connection connection = new Connection();
Dianne Hackbornd69e4c12015-04-24 09:54:54 -0700957 if (!mContext.bindServiceAsUser(intent, connection,
958 Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE,
959 new UserHandle(mUserHandle))) {
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700960 throw new IllegalStateException("Cannot bind " + config.user);
961 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000962
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700963 mConnection = connection;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700964 mInterface = interfaze;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700965
966 // Fill more values.
967 config.user = mPackage;
968 config.interfaze = mInterface;
Chad Brubakerc2865192013-07-10 14:46:23 -0700969 config.startTime = SystemClock.elapsedRealtime();
970 mConfig = config;
Chad Brubaker850eb672014-03-21 21:02:47 +0000971
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700972 // Set up forwarding and DNS rules.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400973 agentConnect();
Chad Brubaker850eb672014-03-21 21:02:47 +0000974
975 if (oldConnection != null) {
976 mContext.unbindService(oldConnection);
977 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400978 // Remove the old tun's user forwarding rules
979 // The new tun's user rules have already been added so they will take over
980 // as rules are deleted. This prevents data leakage as the rules are moved over.
981 agentDisconnect(oldNetworkAgent);
Chad Brubaker850eb672014-03-21 21:02:47 +0000982 if (oldInterface != null && !oldInterface.equals(interfaze)) {
Chad Brubaker850eb672014-03-21 21:02:47 +0000983 jniReset(oldInterface);
984 }
Jeff Davidson6bbf39c2014-07-23 10:14:53 -0700985
986 try {
987 IoUtils.setBlocking(tun.getFileDescriptor(), config.blocking);
988 } catch (IOException e) {
989 throw new IllegalStateException(
990 "Cannot set tunnel's fd as blocking=" + config.blocking, e);
991 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000992 } catch (RuntimeException e) {
Chad Brubaker850eb672014-03-21 21:02:47 +0000993 IoUtils.closeQuietly(tun);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400994 agentDisconnect();
Chad Brubaker850eb672014-03-21 21:02:47 +0000995 // restore old state
996 mConfig = oldConfig;
997 mConnection = oldConnection;
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900998 mNetworkCapabilities.setUids(oldUsers);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400999 mNetworkAgent = oldNetworkAgent;
Chad Brubaker850eb672014-03-21 21:02:47 +00001000 mInterface = oldInterface;
1001 throw e;
Chad Brubakerc2865192013-07-10 14:46:23 -07001002 }
Chad Brubaker850eb672014-03-21 21:02:47 +00001003 Log.i(TAG, "Established by " + config.user + " on " + mInterface);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001004 return tun;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07001005 }
1006
Chad Brubakerc2865192013-07-10 14:46:23 -07001007 private boolean isRunningLocked() {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001008 return mNetworkAgent != null && mInterface != null;
1009 }
1010
1011 // Returns true if the VPN has been established and the calling UID is its owner. Used to check
1012 // that a call to mutate VPN state is admissible.
1013 private boolean isCallerEstablishedOwnerLocked() {
1014 return isRunningLocked() && Binder.getCallingUid() == mOwnerUID;
Chad Brubakerc2865192013-07-10 14:46:23 -07001015 }
1016
Paul Jensen0784eea2014-08-19 16:00:24 -04001017 // Note: Return type guarantees results are deduped and sorted, which callers require.
1018 private SortedSet<Integer> getAppsUids(List<String> packageNames, int userHandle) {
1019 SortedSet<Integer> uids = new TreeSet<Integer>();
1020 for (String app : packageNames) {
1021 int uid = getAppUid(app, userHandle);
1022 if (uid != -1) uids.add(uid);
1023 }
1024 return uids;
1025 }
1026
Robin Lee4d03abc2016-05-09 12:32:27 +01001027 /**
1028 * Creates a {@link Set} of non-intersecting {@link UidRange} objects including all UIDs
1029 * associated with one user, and any restricted profiles attached to that user.
1030 *
1031 * <p>If one of {@param allowedApplications} or {@param disallowedApplications} is provided,
1032 * the UID ranges will match the app whitelist or blacklist specified there. Otherwise, all UIDs
1033 * in each user and profile will be included.
1034 *
1035 * @param userHandle The userId to create UID ranges for along with any of its restricted
1036 * profiles.
1037 * @param allowedApplications (optional) whitelist of applications to include.
1038 * @param disallowedApplications (optional) blacklist of applications to exclude.
1039 */
1040 @VisibleForTesting
1041 Set<UidRange> createUserAndRestrictedProfilesRanges(@UserIdInt int userHandle,
1042 @Nullable List<String> allowedApplications,
1043 @Nullable List<String> disallowedApplications) {
1044 final Set<UidRange> ranges = new ArraySet<>();
Robert Greenwalt69887e82013-09-24 11:05:57 -07001045
Robin Lee4d03abc2016-05-09 12:32:27 +01001046 // Assign the top-level user to the set of ranges
1047 addUserToRanges(ranges, userHandle, allowedApplications, disallowedApplications);
1048
1049 // If the user can have restricted profiles, assign all its restricted profiles too
1050 if (canHaveRestrictedProfile(userHandle)) {
1051 final long token = Binder.clearCallingIdentity();
1052 List<UserInfo> users;
1053 try {
Robin Lee17e61832016-05-09 13:46:28 +01001054 users = UserManager.get(mContext).getUsers(true);
Robin Lee4d03abc2016-05-09 12:32:27 +01001055 } finally {
1056 Binder.restoreCallingIdentity(token);
1057 }
1058 for (UserInfo user : users) {
1059 if (user.isRestricted() && (user.restrictedProfileParentId == userHandle)) {
1060 addUserToRanges(ranges, user.id, allowedApplications, disallowedApplications);
1061 }
1062 }
1063 }
1064 return ranges;
1065 }
1066
1067 /**
1068 * Updates a {@link Set} of non-intersecting {@link UidRange} objects to include all UIDs
1069 * associated with one user.
1070 *
1071 * <p>If one of {@param allowedApplications} or {@param disallowedApplications} is provided,
1072 * the UID ranges will match the app whitelist or blacklist specified there. Otherwise, all UIDs
1073 * in the user will be included.
1074 *
1075 * @param ranges {@link Set} of {@link UidRange}s to which to add.
1076 * @param userHandle The userId to add to {@param ranges}.
1077 * @param allowedApplications (optional) whitelist of applications to include.
1078 * @param disallowedApplications (optional) blacklist of applications to exclude.
1079 */
1080 @VisibleForTesting
1081 void addUserToRanges(@NonNull Set<UidRange> ranges, @UserIdInt int userHandle,
1082 @Nullable List<String> allowedApplications,
1083 @Nullable List<String> disallowedApplications) {
1084 if (allowedApplications != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001085 // Add ranges covering all UIDs for allowedApplications.
1086 int start = -1, stop = -1;
Robin Lee4d03abc2016-05-09 12:32:27 +01001087 for (int uid : getAppsUids(allowedApplications, userHandle)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001088 if (start == -1) {
1089 start = uid;
1090 } else if (uid != stop + 1) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001091 ranges.add(new UidRange(start, stop));
Paul Jensen0784eea2014-08-19 16:00:24 -04001092 start = uid;
1093 }
1094 stop = uid;
1095 }
Robin Lee4d03abc2016-05-09 12:32:27 +01001096 if (start != -1) ranges.add(new UidRange(start, stop));
1097 } else if (disallowedApplications != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001098 // Add all ranges for user skipping UIDs for disallowedApplications.
1099 final UidRange userRange = UidRange.createForUser(userHandle);
1100 int start = userRange.start;
Robin Lee4d03abc2016-05-09 12:32:27 +01001101 for (int uid : getAppsUids(disallowedApplications, userHandle)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001102 if (uid == start) {
1103 start++;
1104 } else {
Robin Lee4d03abc2016-05-09 12:32:27 +01001105 ranges.add(new UidRange(start, uid - 1));
Paul Jensen0784eea2014-08-19 16:00:24 -04001106 start = uid + 1;
1107 }
1108 }
Robin Lee4d03abc2016-05-09 12:32:27 +01001109 if (start <= userRange.stop) ranges.add(new UidRange(start, userRange.stop));
Paul Jensen0784eea2014-08-19 16:00:24 -04001110 } else {
1111 // Add all UIDs for the user.
Robin Lee4d03abc2016-05-09 12:32:27 +01001112 ranges.add(UidRange.createForUser(userHandle));
Paul Jensen0784eea2014-08-19 16:00:24 -04001113 }
Chad Brubakerc2865192013-07-10 14:46:23 -07001114 }
1115
Paul Jensen0784eea2014-08-19 16:00:24 -04001116 // Returns the subset of the full list of active UID ranges the VPN applies to (mVpnUsers) that
1117 // apply to userHandle.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001118 static private List<UidRange> uidRangesForUser(int userHandle, Set<UidRange> existingRanges) {
1119 // UidRange#createForUser returns the entire range of UIDs available to a macro-user.
1120 // This is something like 0-99999 ; {@see UserHandle#PER_USER_RANGE}
Paul Jensen0784eea2014-08-19 16:00:24 -04001121 final UidRange userRange = UidRange.createForUser(userHandle);
1122 final List<UidRange> ranges = new ArrayList<UidRange>();
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001123 for (UidRange range : existingRanges) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001124 if (userRange.containsRange(range)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001125 ranges.add(range);
1126 }
1127 }
1128 return ranges;
1129 }
1130
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001131 public void onUserAdded(int userHandle) {
1132 // If the user is restricted tie them to the parent user's VPN
1133 UserInfo user = UserManager.get(mContext).getUserInfo(userHandle);
Robin Lee17e61832016-05-09 13:46:28 +01001134 if (user.isRestricted() && user.restrictedProfileParentId == mUserHandle) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001135 synchronized(Vpn.this) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001136 final Set<UidRange> existingRanges = mNetworkCapabilities.getUids();
1137 if (existingRanges != null) {
Robin Lee17e61832016-05-09 13:46:28 +01001138 try {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001139 addUserToRanges(existingRanges, userHandle, mConfig.allowedApplications,
Robin Lee17e61832016-05-09 13:46:28 +01001140 mConfig.disallowedApplications);
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001141 mNetworkCapabilities.setUids(existingRanges);
Chalard Jeanf213ca12018-01-16 18:43:05 +09001142 updateCapabilities();
Robin Lee17e61832016-05-09 13:46:28 +01001143 } catch (Exception e) {
1144 Log.wtf(TAG, "Failed to add restricted user to owner", e);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001145 }
Robin Lee17e61832016-05-09 13:46:28 +01001146 }
Robin Leec3736bc2017-03-10 16:19:54 +00001147 setVpnForcedLocked(mLockdown);
Chad Brubakerc2865192013-07-10 14:46:23 -07001148 }
1149 }
1150 }
1151
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001152 public void onUserRemoved(int userHandle) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001153 // clean up if restricted
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001154 UserInfo user = UserManager.get(mContext).getUserInfo(userHandle);
Robin Lee17e61832016-05-09 13:46:28 +01001155 if (user.isRestricted() && user.restrictedProfileParentId == mUserHandle) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001156 synchronized(Vpn.this) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001157 final Set<UidRange> existingRanges = mNetworkCapabilities.getUids();
1158 if (existingRanges != null) {
Robin Lee17e61832016-05-09 13:46:28 +01001159 try {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001160 final List<UidRange> removedRanges =
1161 uidRangesForUser(userHandle, existingRanges);
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001162 existingRanges.removeAll(removedRanges);
1163 mNetworkCapabilities.setUids(existingRanges);
Chalard Jeanf213ca12018-01-16 18:43:05 +09001164 updateCapabilities();
Robin Lee17e61832016-05-09 13:46:28 +01001165 } catch (Exception e) {
1166 Log.wtf(TAG, "Failed to remove restricted user to owner", e);
1167 }
1168 }
Robin Leec3736bc2017-03-10 16:19:54 +00001169 setVpnForcedLocked(mLockdown);
Chad Brubakerc2865192013-07-10 14:46:23 -07001170 }
1171 }
1172 }
1173
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07001174 /**
Robin Lee17e61832016-05-09 13:46:28 +01001175 * Called when the user associated with this VPN has just been stopped.
1176 */
1177 public synchronized void onUserStopped() {
1178 // Switch off networking lockdown (if it was enabled)
Robin Leec3736bc2017-03-10 16:19:54 +00001179 setLockdown(false);
Robin Lee17e61832016-05-09 13:46:28 +01001180 mAlwaysOn = false;
1181
Robin Lee812800c2016-05-13 15:38:08 +01001182 unregisterPackageChangeReceiverLocked();
Robin Lee17e61832016-05-09 13:46:28 +01001183 // Quit any active connections
1184 agentDisconnect();
1185 }
1186
1187 /**
1188 * Restrict network access from all UIDs affected by this {@link Vpn}, apart from the VPN
1189 * service app itself, to only sockets that have had {@code protect()} called on them. All
1190 * non-VPN traffic is blocked via a {@code PROHIBIT} response from the kernel.
1191 *
1192 * The exception for the VPN UID isn't technically necessary -- setup should use protected
1193 * sockets -- but in practice it saves apps that don't protect their sockets from breaking.
1194 *
1195 * Calling multiple times with {@param enforce} = {@code true} will recreate the set of UIDs to
1196 * block every time, and if anything has changed update using {@link #setAllowOnlyVpnForUids}.
1197 *
1198 * @param enforce {@code true} to require that all traffic under the jurisdiction of this
1199 * {@link Vpn} goes through a VPN connection or is blocked until one is
1200 * available, {@code false} to lift the requirement.
1201 *
1202 * @see #mBlockedUsers
1203 */
1204 @GuardedBy("this")
1205 private void setVpnForcedLocked(boolean enforce) {
Robin Leec3736bc2017-03-10 16:19:54 +00001206 final List<String> exemptedPackages =
1207 isNullOrLegacyVpn(mPackage) ? null : Collections.singletonList(mPackage);
Robin Lee17e61832016-05-09 13:46:28 +01001208 final Set<UidRange> removedRanges = new ArraySet<>(mBlockedUsers);
Robin Leec3736bc2017-03-10 16:19:54 +00001209
1210 Set<UidRange> addedRanges = Collections.emptySet();
Robin Lee17e61832016-05-09 13:46:28 +01001211 if (enforce) {
Robin Leec3736bc2017-03-10 16:19:54 +00001212 addedRanges = createUserAndRestrictedProfilesRanges(mUserHandle,
Robin Lee17e61832016-05-09 13:46:28 +01001213 /* allowedApplications */ null,
Robin Leec3736bc2017-03-10 16:19:54 +00001214 /* disallowedApplications */ exemptedPackages);
Robin Lee17e61832016-05-09 13:46:28 +01001215
1216 removedRanges.removeAll(addedRanges);
1217 addedRanges.removeAll(mBlockedUsers);
Robin Lee17e61832016-05-09 13:46:28 +01001218 }
Robin Leec3736bc2017-03-10 16:19:54 +00001219
1220 setAllowOnlyVpnForUids(false, removedRanges);
1221 setAllowOnlyVpnForUids(true, addedRanges);
Robin Lee17e61832016-05-09 13:46:28 +01001222 }
1223
1224 /**
1225 * Either add or remove a list of {@link UidRange}s to the list of UIDs that are only allowed
1226 * to make connections through sockets that have had {@code protect()} called on them.
1227 *
1228 * @param enforce {@code true} to add to the blacklist, {@code false} to remove.
1229 * @param ranges {@link Collection} of {@link UidRange}s to add (if {@param enforce} is
1230 * {@code true}) or to remove.
1231 * @return {@code true} if all of the UIDs were added/removed. {@code false} otherwise,
1232 * including added ranges that already existed or removed ones that didn't.
1233 */
1234 @GuardedBy("this")
1235 private boolean setAllowOnlyVpnForUids(boolean enforce, Collection<UidRange> ranges) {
1236 if (ranges.size() == 0) {
1237 return true;
1238 }
1239 final UidRange[] rangesArray = ranges.toArray(new UidRange[ranges.size()]);
1240 try {
1241 mNetd.setAllowOnlyVpnForUids(enforce, rangesArray);
1242 } catch (RemoteException | RuntimeException e) {
1243 Log.e(TAG, "Updating blocked=" + enforce
1244 + " for UIDs " + Arrays.toString(ranges.toArray()) + " failed", e);
1245 return false;
1246 }
1247 if (enforce) {
1248 mBlockedUsers.addAll(ranges);
1249 } else {
1250 mBlockedUsers.removeAll(ranges);
1251 }
1252 return true;
1253 }
1254
1255 /**
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07001256 * Return the configuration of the currently running VPN.
1257 */
1258 public VpnConfig getVpnConfig() {
1259 enforceControlPermission();
1260 return mConfig;
1261 }
1262
Jeff Sharkey899223b2012-08-04 15:24:58 -07001263 @Deprecated
1264 public synchronized void interfaceStatusChanged(String iface, boolean up) {
1265 try {
1266 mObserver.interfaceStatusChanged(iface, up);
1267 } catch (RemoteException e) {
1268 // ignored; target is local
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001269 }
1270 }
1271
Jeff Sharkey899223b2012-08-04 15:24:58 -07001272 private INetworkManagementEventObserver mObserver = new BaseNetworkObserver() {
1273 @Override
1274 public void interfaceStatusChanged(String interfaze, boolean up) {
1275 synchronized (Vpn.this) {
1276 if (!up && mLegacyVpnRunner != null) {
1277 mLegacyVpnRunner.check(interfaze);
1278 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001279 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001280 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001281
Jeff Sharkey899223b2012-08-04 15:24:58 -07001282 @Override
1283 public void interfaceRemoved(String interfaze) {
1284 synchronized (Vpn.this) {
1285 if (interfaze.equals(mInterface) && jniCheck(interfaze) == 0) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001286 mStatusIntent = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001287 mNetworkCapabilities.setUids(null);
Paul Jensenc4c72312014-12-08 14:04:51 -05001288 mConfig = null;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001289 mInterface = null;
1290 if (mConnection != null) {
1291 mContext.unbindService(mConnection);
1292 mConnection = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001293 agentDisconnect();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001294 } else if (mLegacyVpnRunner != null) {
1295 mLegacyVpnRunner.exit();
1296 mLegacyVpnRunner = null;
1297 }
1298 }
1299 }
1300 }
1301 };
Haoyu Baidb3c8672012-06-20 14:29:57 -07001302
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001303 private void enforceControlPermission() {
Jeff Davidsonbc19c182014-11-11 13:20:01 -08001304 mContext.enforceCallingPermission(Manifest.permission.CONTROL_VPN, "Unauthorized Caller");
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001305 }
1306
Robin Lee244ce8e2016-01-05 18:03:46 +00001307 private void enforceControlPermissionOrInternalCaller() {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001308 // Require the caller to be either an application with CONTROL_VPN permission or a process
Robin Lee244ce8e2016-01-05 18:03:46 +00001309 // in the system server.
1310 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONTROL_VPN,
1311 "Unauthorized Caller");
1312 }
1313
Charles Hea0a87e82017-05-15 17:07:18 +01001314 private void enforceSettingsPermission() {
1315 mContext.enforceCallingOrSelfPermission(Manifest.permission.NETWORK_SETTINGS,
1316 "Unauthorized Caller");
1317 }
1318
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001319 private class Connection implements ServiceConnection {
1320 private IBinder mService;
1321
1322 @Override
1323 public void onServiceConnected(ComponentName name, IBinder service) {
1324 mService = service;
1325 }
1326
1327 @Override
1328 public void onServiceDisconnected(ComponentName name) {
1329 mService = null;
1330 }
1331 }
1332
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001333 private void prepareStatusIntent() {
1334 final long token = Binder.clearCallingIdentity();
1335 try {
1336 mStatusIntent = VpnConfig.getIntentForStatusPanel(mContext);
1337 } finally {
1338 Binder.restoreCallingIdentity(token);
1339 }
1340 }
1341
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001342 public synchronized boolean addAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001343 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001344 return false;
1345 }
1346 boolean success = jniAddAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001347 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001348 return success;
1349 }
1350
1351 public synchronized boolean removeAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001352 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001353 return false;
1354 }
1355 boolean success = jniDelAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001356 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001357 return success;
1358 }
1359
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001360 public synchronized boolean setUnderlyingNetworks(Network[] networks) {
1361 if (!isCallerEstablishedOwnerLocked()) {
1362 return false;
1363 }
1364 if (networks == null) {
1365 mConfig.underlyingNetworks = null;
1366 } else {
1367 mConfig.underlyingNetworks = new Network[networks.length];
1368 for (int i = 0; i < networks.length; ++i) {
1369 if (networks[i] == null) {
1370 mConfig.underlyingNetworks[i] = null;
1371 } else {
1372 mConfig.underlyingNetworks[i] = new Network(networks[i].netId);
1373 }
1374 }
1375 }
Jeff Sharkey72f9c422017-10-27 17:22:59 -06001376 updateCapabilities();
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001377 return true;
1378 }
1379
1380 public synchronized Network[] getUnderlyingNetworks() {
1381 if (!isRunningLocked()) {
1382 return null;
1383 }
1384 return mConfig.underlyingNetworks;
1385 }
1386
Wenchao Tongf5ea3402015-03-04 13:26:38 -08001387 /**
Chalard Jeandd59ece2017-12-20 13:23:32 +09001388 * This method should only be called by ConnectivityService because it doesn't
Wenchao Tongf5ea3402015-03-04 13:26:38 -08001389 * have enough data to fill VpnInfo.primaryUnderlyingIface field.
1390 */
1391 public synchronized VpnInfo getVpnInfo() {
1392 if (!isRunningLocked()) {
1393 return null;
1394 }
1395
1396 VpnInfo info = new VpnInfo();
1397 info.ownerUid = mOwnerUID;
1398 info.vpnIface = mInterface;
1399 return info;
1400 }
1401
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001402 public synchronized boolean appliesToUid(int uid) {
1403 if (!isRunningLocked()) {
1404 return false;
1405 }
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001406 return mNetworkCapabilities.appliesToUid(uid);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001407 }
1408
Robin Lee17e61832016-05-09 13:46:28 +01001409 /**
Robin Leeebbcb542016-05-24 16:35:10 +01001410 * @return {@code true} if {@param uid} is blocked by an always-on VPN.
1411 * A UID is blocked if it's included in one of the mBlockedUsers ranges and the VPN is
1412 * not connected, or if the VPN is connected but does not apply to the UID.
Robin Lee17e61832016-05-09 13:46:28 +01001413 *
1414 * @see #mBlockedUsers
1415 */
1416 public synchronized boolean isBlockingUid(int uid) {
Robin Leeebbcb542016-05-24 16:35:10 +01001417 if (!mLockdown) {
1418 return false;
Robin Lee17e61832016-05-09 13:46:28 +01001419 }
Robin Leeebbcb542016-05-24 16:35:10 +01001420
1421 if (mNetworkInfo.isConnected()) {
1422 return !appliesToUid(uid);
1423 } else {
1424 for (UidRange uidRange : mBlockedUsers) {
1425 if (uidRange.contains(uid)) {
1426 return true;
1427 }
1428 }
1429 return false;
1430 }
Robin Lee17e61832016-05-09 13:46:28 +01001431 }
1432
Tony Mak1a405fe2016-06-30 11:19:20 +01001433 private void updateAlwaysOnNotification(DetailedState networkState) {
1434 final boolean visible = (mAlwaysOn && networkState != DetailedState.CONNECTED);
Tony Mak1a405fe2016-06-30 11:19:20 +01001435
Tony Mak1a405fe2016-06-30 11:19:20 +01001436 final UserHandle user = UserHandle.of(mUserHandle);
1437 final long token = Binder.clearCallingIdentity();
1438 try {
1439 final NotificationManager notificationManager = NotificationManager.from(mContext);
1440 if (!visible) {
Charles He15297a62017-04-08 22:03:42 +01001441 notificationManager.cancelAsUser(TAG, SystemMessage.NOTE_VPN_DISCONNECTED, user);
Tony Mak1a405fe2016-06-30 11:19:20 +01001442 return;
1443 }
Charles Heab6f2f62017-07-12 15:30:00 +01001444 final Intent intent = new Intent();
1445 intent.setComponent(ComponentName.unflattenFromString(mContext.getString(
1446 R.string.config_customVpnAlwaysOnDisconnectedDialogComponent)));
1447 intent.putExtra("lockdown", mLockdown);
1448 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Robin Leeb8c2a2b2017-03-10 16:17:06 +00001449 final PendingIntent configIntent = mSystemServices.pendingIntentGetActivityAsUser(
1450 intent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT, user);
Geoffrey Pitschaf759c52017-02-15 09:35:38 -05001451 final Notification.Builder builder =
1452 new Notification.Builder(mContext, SystemNotificationChannels.VPN)
1453 .setSmallIcon(R.drawable.vpn_connected)
1454 .setContentTitle(mContext.getString(R.string.vpn_lockdown_disconnected))
1455 .setContentText(mContext.getString(R.string.vpn_lockdown_config))
1456 .setContentIntent(configIntent)
1457 .setCategory(Notification.CATEGORY_SYSTEM)
1458 .setVisibility(Notification.VISIBILITY_PUBLIC)
1459 .setOngoing(true)
1460 .setColor(mContext.getColor(R.color.system_notification_accent_color));
Chris Wren282cfef2017-03-27 15:01:44 -04001461 notificationManager.notifyAsUser(TAG, SystemMessage.NOTE_VPN_DISCONNECTED,
1462 builder.build(), user);
Tony Mak1a405fe2016-06-30 11:19:20 +01001463 } finally {
1464 Binder.restoreCallingIdentity(token);
1465 }
1466 }
1467
Robin Leeb8c2a2b2017-03-10 16:17:06 +00001468 /**
1469 * Facade for system service calls that change, or depend on, state outside of
1470 * {@link ConnectivityService} and have hard-to-mock interfaces.
1471 *
1472 * @see com.android.server.connectivity.VpnTest
1473 */
1474 @VisibleForTesting
1475 public static class SystemServices {
1476 private final Context mContext;
1477
1478 public SystemServices(@NonNull Context context) {
1479 mContext = context;
1480 }
1481
1482 /**
1483 * @see PendingIntent#getActivityAsUser()
1484 */
1485 public PendingIntent pendingIntentGetActivityAsUser(
1486 Intent intent, int flags, UserHandle user) {
1487 return PendingIntent.getActivityAsUser(mContext, 0 /*request*/, intent, flags,
1488 null /*options*/, user);
1489 }
1490
1491 /**
1492 * @see Settings.Secure#putStringForUser
1493 */
1494 public void settingsSecurePutStringForUser(String key, String value, int userId) {
1495 Settings.Secure.putStringForUser(mContext.getContentResolver(), key, value, userId);
1496 }
1497
1498 /**
1499 * @see Settings.Secure#putIntForUser
1500 */
1501 public void settingsSecurePutIntForUser(String key, int value, int userId) {
1502 Settings.Secure.putIntForUser(mContext.getContentResolver(), key, value, userId);
1503 }
1504
1505 /**
1506 * @see Settings.Secure#getStringForUser
1507 */
1508 public String settingsSecureGetStringForUser(String key, int userId) {
1509 return Settings.Secure.getStringForUser(mContext.getContentResolver(), key, userId);
1510 }
1511
1512 /**
1513 * @see Settings.Secure#getIntForUser
1514 */
1515 public int settingsSecureGetIntForUser(String key, int def, int userId) {
1516 return Settings.Secure.getIntForUser(mContext.getContentResolver(), key, def, userId);
1517 }
1518 }
1519
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001520 private native int jniCreate(int mtu);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001521 private native String jniGetName(int tun);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001522 private native int jniSetAddresses(String interfaze, String addresses);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001523 private native void jniReset(String interfaze);
1524 private native int jniCheck(String interfaze);
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001525 private native boolean jniAddAddress(String interfaze, String address, int prefixLen);
1526 private native boolean jniDelAddress(String interfaze, String address, int prefixLen);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001527
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001528 private static RouteInfo findIPv4DefaultRoute(LinkProperties prop) {
1529 for (RouteInfo route : prop.getAllRoutes()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -07001530 // Currently legacy VPN only works on IPv4.
1531 if (route.isDefaultRoute() && route.getGateway() instanceof Inet4Address) {
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001532 return route;
Jeff Sharkey82f85212012-08-24 11:17:25 -07001533 }
1534 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001535
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001536 throw new IllegalStateException("Unable to find IPv4 default gateway");
Jeff Sharkey82f85212012-08-24 11:17:25 -07001537 }
1538
1539 /**
1540 * Start legacy VPN, controlling native daemons as needed. Creates a
1541 * secondary thread to perform connection work, returning quickly.
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001542 *
1543 * Should only be called to respond to Binder requests as this enforces caller permission. Use
1544 * {@link #startLegacyVpnPrivileged(VpnProfile, KeyStore, LinkProperties)} to skip the
1545 * permission check only when the caller is trusted (or the call is initiated by the system).
Jeff Sharkey82f85212012-08-24 11:17:25 -07001546 */
1547 public void startLegacyVpn(VpnProfile profile, KeyStore keyStore, LinkProperties egress) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08001548 enforceControlPermission();
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001549 long token = Binder.clearCallingIdentity();
1550 try {
1551 startLegacyVpnPrivileged(profile, keyStore, egress);
1552 } finally {
1553 Binder.restoreCallingIdentity(token);
1554 }
1555 }
1556
1557 /**
1558 * Like {@link #startLegacyVpn(VpnProfile, KeyStore, LinkProperties)}, but does not check
1559 * permissions under the assumption that the caller is the system.
1560 *
1561 * Callers are responsible for checking permissions if needed.
1562 */
1563 public void startLegacyVpnPrivileged(VpnProfile profile, KeyStore keyStore,
1564 LinkProperties egress) {
Julia Reynoldsf5116d02014-07-01 11:10:41 -04001565 UserManager mgr = UserManager.get(mContext);
Paul Jensen0784eea2014-08-19 16:00:24 -04001566 UserInfo user = mgr.getUserInfo(mUserHandle);
Nicolas Prevot95778ff2015-01-06 15:43:05 +00001567 if (user.isRestricted() || mgr.hasUserRestriction(UserManager.DISALLOW_CONFIG_VPN,
1568 new UserHandle(mUserHandle))) {
Julia Reynoldsf5116d02014-07-01 11:10:41 -04001569 throw new SecurityException("Restricted users cannot establish VPNs");
1570 }
Jeff Sharkey82f85212012-08-24 11:17:25 -07001571
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001572 final RouteInfo ipv4DefaultRoute = findIPv4DefaultRoute(egress);
1573 final String gateway = ipv4DefaultRoute.getGateway().getHostAddress();
1574 final String iface = ipv4DefaultRoute.getInterface();
Jeff Sharkey82f85212012-08-24 11:17:25 -07001575
1576 // Load certificates.
1577 String privateKey = "";
1578 String userCert = "";
1579 String caCert = "";
1580 String serverCert = "";
1581 if (!profile.ipsecUserCert.isEmpty()) {
1582 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
1583 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecUserCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001584 userCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001585 }
1586 if (!profile.ipsecCaCert.isEmpty()) {
1587 byte[] value = keyStore.get(Credentials.CA_CERTIFICATE + profile.ipsecCaCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001588 caCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001589 }
1590 if (!profile.ipsecServerCert.isEmpty()) {
1591 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecServerCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001592 serverCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001593 }
1594 if (privateKey == null || userCert == null || caCert == null || serverCert == null) {
1595 throw new IllegalStateException("Cannot load credentials");
1596 }
1597
1598 // Prepare arguments for racoon.
1599 String[] racoon = null;
1600 switch (profile.type) {
1601 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
1602 racoon = new String[] {
1603 iface, profile.server, "udppsk", profile.ipsecIdentifier,
1604 profile.ipsecSecret, "1701",
1605 };
1606 break;
1607 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
1608 racoon = new String[] {
1609 iface, profile.server, "udprsa", privateKey, userCert,
1610 caCert, serverCert, "1701",
1611 };
1612 break;
1613 case VpnProfile.TYPE_IPSEC_XAUTH_PSK:
1614 racoon = new String[] {
1615 iface, profile.server, "xauthpsk", profile.ipsecIdentifier,
1616 profile.ipsecSecret, profile.username, profile.password, "", gateway,
1617 };
1618 break;
1619 case VpnProfile.TYPE_IPSEC_XAUTH_RSA:
1620 racoon = new String[] {
1621 iface, profile.server, "xauthrsa", privateKey, userCert,
1622 caCert, serverCert, profile.username, profile.password, "", gateway,
1623 };
1624 break;
1625 case VpnProfile.TYPE_IPSEC_HYBRID_RSA:
1626 racoon = new String[] {
1627 iface, profile.server, "hybridrsa",
1628 caCert, serverCert, profile.username, profile.password, "", gateway,
1629 };
1630 break;
1631 }
1632
1633 // Prepare arguments for mtpd.
1634 String[] mtpd = null;
1635 switch (profile.type) {
1636 case VpnProfile.TYPE_PPTP:
1637 mtpd = new String[] {
1638 iface, "pptp", profile.server, "1723",
1639 "name", profile.username, "password", profile.password,
1640 "linkname", "vpn", "refuse-eap", "nodefaultroute",
1641 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
1642 (profile.mppe ? "+mppe" : "nomppe"),
1643 };
1644 break;
1645 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
1646 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
1647 mtpd = new String[] {
1648 iface, "l2tp", profile.server, "1701", profile.l2tpSecret,
1649 "name", profile.username, "password", profile.password,
1650 "linkname", "vpn", "refuse-eap", "nodefaultroute",
1651 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
1652 };
1653 break;
1654 }
1655
1656 VpnConfig config = new VpnConfig();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001657 config.legacy = true;
Jeff Sharkey82f85212012-08-24 11:17:25 -07001658 config.user = profile.key;
1659 config.interfaze = iface;
1660 config.session = profile.name;
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001661
1662 config.addLegacyRoutes(profile.routes);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001663 if (!profile.dnsServers.isEmpty()) {
1664 config.dnsServers = Arrays.asList(profile.dnsServers.split(" +"));
1665 }
1666 if (!profile.searchDomains.isEmpty()) {
1667 config.searchDomains = Arrays.asList(profile.searchDomains.split(" +"));
1668 }
Jeff Sharkey82f85212012-08-24 11:17:25 -07001669 startLegacyVpn(config, racoon, mtpd);
1670 }
1671
1672 private synchronized void startLegacyVpn(VpnConfig config, String[] racoon, String[] mtpd) {
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001673 stopLegacyVpnPrivileged();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001674
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001675 // Prepare for the new request.
1676 prepareInternal(VpnConfig.LEGACY_VPN);
Jeff Sharkey899223b2012-08-04 15:24:58 -07001677 updateState(DetailedState.CONNECTING, "startLegacyVpn");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001678
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001679 // Start a new LegacyVpnRunner and we are done!
Chia-chi Yeh100155a2011-07-03 16:52:38 -07001680 mLegacyVpnRunner = new LegacyVpnRunner(config, racoon, mtpd);
1681 mLegacyVpnRunner.start();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001682 }
1683
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001684 /** Stop legacy VPN. Permissions must be checked by callers. */
1685 public synchronized void stopLegacyVpnPrivileged() {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001686 if (mLegacyVpnRunner != null) {
1687 mLegacyVpnRunner.exit();
1688 mLegacyVpnRunner = null;
1689
1690 synchronized (LegacyVpnRunner.TAG) {
1691 // wait for old thread to completely finish before spinning up
1692 // new instance, otherwise state updates can be out of order.
1693 }
1694 }
1695 }
1696
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001697 /**
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001698 * Return the information of the current ongoing legacy VPN.
1699 */
1700 public synchronized LegacyVpnInfo getLegacyVpnInfo() {
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001701 // Check if the caller is authorized.
1702 enforceControlPermission();
sj.cha08bbca02015-03-23 11:35:24 +09001703 return getLegacyVpnInfoPrivileged();
1704 }
1705
1706 /**
1707 * Return the information of the current ongoing legacy VPN.
1708 * Callers are responsible for checking permissions if needed.
1709 */
1710 public synchronized LegacyVpnInfo getLegacyVpnInfoPrivileged() {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001711 if (mLegacyVpnRunner == null) return null;
1712
1713 final LegacyVpnInfo info = new LegacyVpnInfo();
Chad Brubakerc2865192013-07-10 14:46:23 -07001714 info.key = mConfig.user;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001715 info.state = LegacyVpnInfo.stateFromNetworkInfo(mNetworkInfo);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001716 if (mNetworkInfo.isConnected()) {
1717 info.intent = mStatusIntent;
1718 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001719 return info;
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001720 }
1721
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001722 public VpnConfig getLegacyVpnConfig() {
1723 if (mLegacyVpnRunner != null) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001724 return mConfig;
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001725 } else {
1726 return null;
1727 }
1728 }
1729
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001730 /**
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001731 * Bringing up a VPN connection takes time, and that is all this thread
1732 * does. Here we have plenty of time. The only thing we need to take
1733 * care of is responding to interruptions as soon as possible. Otherwise
Chalard Jeandd59ece2017-12-20 13:23:32 +09001734 * requests will pile up. This could be done in a Handler as a state
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001735 * machine, but it is much easier to read in the current form.
1736 */
1737 private class LegacyVpnRunner extends Thread {
1738 private static final String TAG = "LegacyVpnRunner";
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001739
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001740 private final String[] mDaemons;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001741 private final String[][] mArguments;
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001742 private final LocalSocket[] mSockets;
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001743 private final String mOuterInterface;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001744 private final AtomicInteger mOuterConnection =
1745 new AtomicInteger(ConnectivityManager.TYPE_NONE);
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001746
Chalard Jeandd59ece2017-12-20 13:23:32 +09001747 private long mBringupStartTime = -1;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001748
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001749 /**
1750 * Watch for the outer connection (passing in the constructor) going away.
1751 */
1752 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
1753 @Override
1754 public void onReceive(Context context, Intent intent) {
Jeff Sharkey57666932013-04-30 17:01:57 -07001755 if (!mEnableTeardown) return;
1756
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001757 if (intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
1758 if (intent.getIntExtra(ConnectivityManager.EXTRA_NETWORK_TYPE,
1759 ConnectivityManager.TYPE_NONE) == mOuterConnection.get()) {
1760 NetworkInfo info = (NetworkInfo)intent.getExtra(
1761 ConnectivityManager.EXTRA_NETWORK_INFO);
1762 if (info != null && !info.isConnectedOrConnecting()) {
1763 try {
1764 mObserver.interfaceStatusChanged(mOuterInterface, false);
1765 } catch (RemoteException e) {}
1766 }
1767 }
1768 }
1769 }
1770 };
1771
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001772 public LegacyVpnRunner(VpnConfig config, String[] racoon, String[] mtpd) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001773 super(TAG);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001774 mConfig = config;
1775 mDaemons = new String[] {"racoon", "mtpd"};
Jeff Sharkey899223b2012-08-04 15:24:58 -07001776 // TODO: clear arguments from memory once launched
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001777 mArguments = new String[][] {racoon, mtpd};
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001778 mSockets = new LocalSocket[mDaemons.length];
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001779
1780 // This is the interface which VPN is running on,
1781 // mConfig.interfaze will change to point to OUR
1782 // internal interface soon. TODO - add inner/outer to mconfig
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001783 // TODO - we have a race - if the outer iface goes away/disconnects before we hit this
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001784 // we will leave the VPN up. We should check that it's still there/connected after
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001785 // registering
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001786 mOuterInterface = mConfig.interfaze;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001787
Paul Jensene75b9e32015-04-06 11:54:53 -04001788 if (!TextUtils.isEmpty(mOuterInterface)) {
1789 final ConnectivityManager cm = ConnectivityManager.from(mContext);
1790 for (Network network : cm.getAllNetworks()) {
1791 final LinkProperties lp = cm.getLinkProperties(network);
Lorenzo Colitti1b60d112015-07-02 13:03:03 +09001792 if (lp != null && lp.getAllInterfaceNames().contains(mOuterInterface)) {
Paul Jensene75b9e32015-04-06 11:54:53 -04001793 final NetworkInfo networkInfo = cm.getNetworkInfo(network);
1794 if (networkInfo != null) mOuterConnection.set(networkInfo.getType());
1795 }
1796 }
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001797 }
1798
1799 IntentFilter filter = new IntentFilter();
1800 filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
1801 mContext.registerReceiver(mBroadcastReceiver, filter);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001802 }
1803
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001804 public void check(String interfaze) {
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001805 if (interfaze.equals(mOuterInterface)) {
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001806 Log.i(TAG, "Legacy VPN is going down with " + interfaze);
1807 exit();
1808 }
1809 }
1810
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001811 public void exit() {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001812 // We assume that everything is reset after stopping the daemons.
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001813 interrupt();
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001814 agentDisconnect();
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001815 try {
1816 mContext.unregisterReceiver(mBroadcastReceiver);
1817 } catch (IllegalArgumentException e) {}
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001818 }
1819
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001820 @Override
1821 public void run() {
1822 // Wait for the previous thread since it has been interrupted.
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001823 Log.v(TAG, "Waiting");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001824 synchronized (TAG) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001825 Log.v(TAG, "Executing");
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09001826 try {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001827 bringup();
1828 waitForDaemonsToStop();
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09001829 interrupted(); // Clear interrupt flag if execute called exit.
1830 } catch (InterruptedException e) {
1831 } finally {
1832 for (LocalSocket socket : mSockets) {
1833 IoUtils.closeQuietly(socket);
1834 }
1835 // This sleep is necessary for racoon to successfully complete sending delete
1836 // message to server.
1837 try {
1838 Thread.sleep(50);
1839 } catch (InterruptedException e) {
1840 }
1841 for (String daemon : mDaemons) {
1842 SystemService.stop(daemon);
1843 }
1844 }
1845 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001846 }
1847 }
1848
Chalard Jeandd59ece2017-12-20 13:23:32 +09001849 private void checkInterruptAndDelay(boolean sleepLonger) throws InterruptedException {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001850 long now = SystemClock.elapsedRealtime();
Chalard Jeandd59ece2017-12-20 13:23:32 +09001851 if (now - mBringupStartTime <= 60000) {
1852 Thread.sleep(sleepLonger ? 200 : 1);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001853 } else {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001854 updateState(DetailedState.FAILED, "checkpoint");
Chalard Jeandd59ece2017-12-20 13:23:32 +09001855 throw new IllegalStateException("VPN bringup took too long");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001856 }
1857 }
1858
Chalard Jeandd59ece2017-12-20 13:23:32 +09001859 private void bringup() {
1860 // Catch all exceptions so we can clean up a few things.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001861 boolean initFinished = false;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001862 try {
1863 // Initialize the timer.
Chalard Jeandd59ece2017-12-20 13:23:32 +09001864 mBringupStartTime = SystemClock.elapsedRealtime();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001865
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001866 // Wait for the daemons to stop.
1867 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001868 while (!SystemService.isStopped(daemon)) {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001869 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001870 }
1871 }
1872
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001873 // Clear the previous state.
1874 File state = new File("/data/misc/vpn/state");
1875 state.delete();
1876 if (state.exists()) {
1877 throw new IllegalStateException("Cannot delete the state");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001878 }
Chia-chi Yehc1872732011-12-08 16:51:41 -08001879 new File("/data/misc/vpn/abort").delete();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001880 initFinished = true;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001881
Chia-chi Yehe9107902011-07-02 01:48:50 -07001882 // Check if we need to restart any of the daemons.
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001883 boolean restart = false;
1884 for (String[] arguments : mArguments) {
1885 restart = restart || (arguments != null);
1886 }
1887 if (!restart) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001888 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001889 return;
1890 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001891 updateState(DetailedState.CONNECTING, "execute");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001892
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001893 // Start the daemon with arguments.
1894 for (int i = 0; i < mDaemons.length; ++i) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001895 String[] arguments = mArguments[i];
1896 if (arguments == null) {
1897 continue;
1898 }
1899
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001900 // Start the daemon.
1901 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001902 SystemService.start(daemon);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001903
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001904 // Wait for the daemon to start.
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001905 while (!SystemService.isRunning(daemon)) {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001906 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001907 }
1908
1909 // Create the control socket.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001910 mSockets[i] = new LocalSocket();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001911 LocalSocketAddress address = new LocalSocketAddress(
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001912 daemon, LocalSocketAddress.Namespace.RESERVED);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001913
1914 // Wait for the socket to connect.
1915 while (true) {
1916 try {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001917 mSockets[i].connect(address);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001918 break;
1919 } catch (Exception e) {
1920 // ignore
1921 }
Chalard Jeandd59ece2017-12-20 13:23:32 +09001922 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001923 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001924 mSockets[i].setSoTimeout(500);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001925
1926 // Send over the arguments.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001927 OutputStream out = mSockets[i].getOutputStream();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001928 for (String argument : arguments) {
Elliott Hughesd396a442013-06-28 16:24:48 -07001929 byte[] bytes = argument.getBytes(StandardCharsets.UTF_8);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001930 if (bytes.length >= 0xFFFF) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001931 throw new IllegalArgumentException("Argument is too large");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001932 }
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001933 out.write(bytes.length >> 8);
1934 out.write(bytes.length);
1935 out.write(bytes);
Chalard Jeandd59ece2017-12-20 13:23:32 +09001936 checkInterruptAndDelay(false);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001937 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001938 out.write(0xFF);
1939 out.write(0xFF);
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001940 out.flush();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001941
1942 // Wait for End-of-File.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001943 InputStream in = mSockets[i].getInputStream();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001944 while (true) {
1945 try {
1946 if (in.read() == -1) {
1947 break;
1948 }
1949 } catch (Exception e) {
1950 // ignore
1951 }
Chalard Jeandd59ece2017-12-20 13:23:32 +09001952 checkInterruptAndDelay(true);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001953 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001954 }
1955
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001956 // Wait for the daemons to create the new state.
1957 while (!state.exists()) {
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001958 // Check if a running daemon is dead.
1959 for (int i = 0; i < mDaemons.length; ++i) {
1960 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001961 if (mArguments[i] != null && !SystemService.isRunning(daemon)) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001962 throw new IllegalStateException(daemon + " is dead");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001963 }
1964 }
Chalard Jeandd59ece2017-12-20 13:23:32 +09001965 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001966 }
1967
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001968 // Now we are connected. Read and parse the new state.
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -08001969 String[] parameters = FileUtils.readTextFile(state, 0, null).split("\n", -1);
Lorenzo Colitti50262792014-09-19 01:53:35 +09001970 if (parameters.length != 7) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001971 throw new IllegalStateException("Cannot parse the state");
1972 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001973
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001974 // Set the interface and the addresses in the config.
1975 mConfig.interfaze = parameters[0].trim();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001976
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001977 mConfig.addLegacyAddresses(parameters[1]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001978 // Set the routes if they are not set in the config.
1979 if (mConfig.routes == null || mConfig.routes.isEmpty()) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001980 mConfig.addLegacyRoutes(parameters[2]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001981 }
1982
1983 // Set the DNS servers if they are not set in the config.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001984 if (mConfig.dnsServers == null || mConfig.dnsServers.size() == 0) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001985 String dnsServers = parameters[3].trim();
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001986 if (!dnsServers.isEmpty()) {
1987 mConfig.dnsServers = Arrays.asList(dnsServers.split(" "));
1988 }
1989 }
1990
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001991 // Set the search domains if they are not set in the config.
1992 if (mConfig.searchDomains == null || mConfig.searchDomains.size() == 0) {
1993 String searchDomains = parameters[4].trim();
1994 if (!searchDomains.isEmpty()) {
1995 mConfig.searchDomains = Arrays.asList(searchDomains.split(" "));
1996 }
1997 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07001998
Lorenzo Colitti50262792014-09-19 01:53:35 +09001999 // Add a throw route for the VPN server endpoint, if one was specified.
2000 String endpoint = parameters[5];
2001 if (!endpoint.isEmpty()) {
2002 try {
2003 InetAddress addr = InetAddress.parseNumericAddress(endpoint);
2004 if (addr instanceof Inet4Address) {
2005 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 32), RTN_THROW));
2006 } else if (addr instanceof Inet6Address) {
2007 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 128), RTN_THROW));
2008 } else {
2009 Log.e(TAG, "Unknown IP address family for VPN endpoint: " + endpoint);
2010 }
2011 } catch (IllegalArgumentException e) {
2012 Log.e(TAG, "Exception constructing throw route to " + endpoint + ": " + e);
2013 }
2014 }
2015
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002016 // Here is the last step and it must be done synchronously.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002017 synchronized (Vpn.this) {
Vinit Deshapnde2b862e52013-10-02 11:50:39 -07002018 // Set the start time
2019 mConfig.startTime = SystemClock.elapsedRealtime();
2020
Chalard Jeandd59ece2017-12-20 13:23:32 +09002021 // Check if the thread was interrupted while we were waiting on the lock.
2022 checkInterruptAndDelay(false);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002023
Chia-chi Yehe9107902011-07-02 01:48:50 -07002024 // Check if the interface is gone while we are waiting.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07002025 if (jniCheck(mConfig.interfaze) == 0) {
Chia-chi Yeh34e78132011-07-03 03:07:07 -07002026 throw new IllegalStateException(mConfig.interfaze + " is gone");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002027 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07002028
2029 // Now INetworkManagementEventObserver is watching our back.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07002030 mInterface = mConfig.interfaze;
Robin Lee4d03abc2016-05-09 12:32:27 +01002031 prepareStatusIntent();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002032
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04002033 agentConnect();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002034
2035 Log.i(TAG, "Connected!");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002036 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002037 } catch (Exception e) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002038 Log.i(TAG, "Aborting", e);
Lorenzo Colitti43840602014-08-20 16:01:44 -07002039 updateState(DetailedState.FAILED, e.getMessage());
Chia-chi Yehe9107902011-07-02 01:48:50 -07002040 exit();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002041 }
2042 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07002043
2044 /**
Chalard Jeandd59ece2017-12-20 13:23:32 +09002045 * Check all daemons every two seconds. Return when one of them is stopped.
2046 * The caller will move to the disconnected state when this function returns,
2047 * which can happen if a daemon failed or if the VPN was torn down.
Jeff Sharkey899223b2012-08-04 15:24:58 -07002048 */
Chalard Jeandd59ece2017-12-20 13:23:32 +09002049 private void waitForDaemonsToStop() throws InterruptedException {
Jeff Sharkey899223b2012-08-04 15:24:58 -07002050 if (!mNetworkInfo.isConnected()) {
2051 return;
2052 }
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09002053 while (true) {
2054 Thread.sleep(2000);
2055 for (int i = 0; i < mDaemons.length; i++) {
2056 if (mArguments[i] != null && SystemService.isStopped(mDaemons[i])) {
2057 return;
Jeff Sharkey899223b2012-08-04 15:24:58 -07002058 }
2059 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07002060 }
2061 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002062 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07002063}