blob: c9bdcf1a73b5ffdd8d23de649ef14292867e258e [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;
Chalard Jeanadbf1d02018-02-26 11:52:46 +090060import android.net.NetworkUtils;
Jeff Sharkey82f85212012-08-24 11:17:25 -070061import android.net.RouteInfo;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040062import android.net.UidRange;
Robin Lee812800c2016-05-13 15:38:08 +010063import android.net.Uri;
Charles Hea0a87e82017-05-15 17:07:18 +010064import android.net.VpnService;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070065import android.os.Binder;
Charles Hea0a87e82017-05-15 17:07:18 +010066import android.os.Build.VERSION_CODES;
67import android.os.Bundle;
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -080068import android.os.FileUtils;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070069import android.os.IBinder;
Jeff Sharkey899223b2012-08-04 15:24:58 -070070import android.os.INetworkManagementService;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -040071import android.os.Looper;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070072import android.os.Parcel;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070073import android.os.ParcelFileDescriptor;
Robin Lee812800c2016-05-13 15:38:08 +010074import android.os.PatternMatcher;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070075import android.os.Process;
Jeff Sharkey899223b2012-08-04 15:24:58 -070076import android.os.RemoteException;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070077import android.os.SystemClock;
Jeff Sharkey088f29f2012-08-05 14:55:04 -070078import android.os.SystemService;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070079import android.os.UserHandle;
Chad Brubakerc2865192013-07-10 14:46:23 -070080import android.os.UserManager;
Robin Lee812800c2016-05-13 15:38:08 +010081import android.provider.Settings;
Jeff Sharkey82f85212012-08-24 11:17:25 -070082import android.security.Credentials;
83import android.security.KeyStore;
Paul Jensene75b9e32015-04-06 11:54:53 -040084import android.text.TextUtils;
Robin Lee4d03abc2016-05-09 12:32:27 +010085import android.util.ArraySet;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070086import android.util.Log;
87
Tony Mak1a405fe2016-06-30 11:19:20 +010088import com.android.internal.R;
Chad Brubakerc2865192013-07-10 14:46:23 -070089import com.android.internal.annotations.GuardedBy;
Robin Lee4d03abc2016-05-09 12:32:27 +010090import com.android.internal.annotations.VisibleForTesting;
Chris Wren282cfef2017-03-27 15:01:44 -040091import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
Chia-chi Yeh2e467642011-07-04 03:23:12 -070092import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070093import com.android.internal.net.VpnConfig;
Wenchao Tongf5ea3402015-03-04 13:26:38 -080094import com.android.internal.net.VpnInfo;
Jeff Sharkey82f85212012-08-24 11:17:25 -070095import com.android.internal.net.VpnProfile;
Geoffrey Pitschaf759c52017-02-15 09:35:38 -050096import com.android.internal.notification.SystemNotificationChannels;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060097import com.android.internal.util.ArrayUtils;
98import com.android.server.ConnectivityService;
Christopher Tatee0be7e82017-02-08 17:38:20 -080099import com.android.server.DeviceIdleController;
100import com.android.server.LocalServices;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700101import com.android.server.net.BaseNetworkObserver;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700102
Jeff Davidson05542602014-08-11 14:07:27 -0700103import libcore.io.IoUtils;
104
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700105import java.io.File;
Jeff Davidson6bbf39c2014-07-23 10:14:53 -0700106import java.io.IOException;
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700107import java.io.InputStream;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700108import java.io.OutputStream;
Chalard Jeanadbf1d02018-02-26 11:52:46 +0900109import java.math.BigInteger;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700110import java.net.Inet4Address;
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -0700111import java.net.Inet6Address;
112import java.net.InetAddress;
Elliott Hughesd396a442013-06-28 16:24:48 -0700113import java.nio.charset.StandardCharsets;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400114import java.util.ArrayList;
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700115import java.util.Arrays;
Robin Lee4d03abc2016-05-09 12:32:27 +0100116import java.util.Collection;
117import java.util.Collections;
Chalard Jeanadbf1d02018-02-26 11:52:46 +0900118import java.util.Comparator;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400119import java.util.List;
Robin Lee4d03abc2016-05-09 12:32:27 +0100120import java.util.Set;
Paul Jensen0784eea2014-08-19 16:00:24 -0400121import java.util.SortedSet;
122import java.util.TreeSet;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700123import java.util.concurrent.atomic.AtomicInteger;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700124
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700125/**
126 * @hide
127 */
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400128public class Vpn {
129 private static final String NETWORKTYPE = "VPN";
Jeff Sharkey899223b2012-08-04 15:24:58 -0700130 private static final String TAG = "Vpn";
131 private static final boolean LOGD = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400132
Christopher Tatee0be7e82017-02-08 17:38:20 -0800133 // Length of time (in milliseconds) that an app hosting an always-on VPN is placed on
134 // the device idle whitelist during service launch and VPN bootstrap.
Chalard Jeandd59ece2017-12-20 13:23:32 +0900135 private static final long VPN_LAUNCH_IDLE_WHITELIST_DURATION_MS = 60 * 1000;
Christopher Tatee0be7e82017-02-08 17:38:20 -0800136
Chalard Jeanadbf1d02018-02-26 11:52:46 +0900137 // Settings for how much of the address space should be routed so that Vpn considers
138 // "most" of the address space is routed. This is used to determine whether this Vpn
139 // should be marked with the INTERNET capability.
140 private static final long MOST_IPV4_ADDRESSES_COUNT;
141 private static final BigInteger MOST_IPV6_ADDRESSES_COUNT;
142 static {
143 // 85% of the address space must be routed for Vpn to consider this VPN to provide
144 // INTERNET access.
145 final int howManyPercentIsMost = 85;
146
147 final long twoPower32 = 1L << 32;
148 MOST_IPV4_ADDRESSES_COUNT = twoPower32 * howManyPercentIsMost / 100;
149 final BigInteger twoPower128 = BigInteger.ONE.shiftLeft(128);
150 MOST_IPV6_ADDRESSES_COUNT = twoPower128
151 .multiply(BigInteger.valueOf(howManyPercentIsMost))
152 .divide(BigInteger.valueOf(100));
153 }
154
Jeff Sharkey899223b2012-08-04 15:24:58 -0700155 // TODO: create separate trackers for each unique VPN to support
156 // automated reconnection
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700157
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400158 private Context mContext;
159 private NetworkInfo mNetworkInfo;
160 private String mPackage;
161 private int mOwnerUID;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700162 private String mInterface;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700163 private Connection mConnection;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700164 private LegacyVpnRunner mLegacyVpnRunner;
Jeff Davidson90b1b9f2014-08-22 13:05:43 -0700165 private PendingIntent mStatusIntent;
Jeff Sharkey57666932013-04-30 17:01:57 -0700166 private volatile boolean mEnableTeardown = true;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400167 private final INetworkManagementService mNetd;
Chad Brubakerc2865192013-07-10 14:46:23 -0700168 private VpnConfig mConfig;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400169 private NetworkAgent mNetworkAgent;
170 private final Looper mLooper;
171 private final NetworkCapabilities mNetworkCapabilities;
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000172 private final SystemServices mSystemServices;
Chad Brubakerc2865192013-07-10 14:46:23 -0700173
Robin Lee4d03abc2016-05-09 12:32:27 +0100174 /**
Robin Lee17e61832016-05-09 13:46:28 +0100175 * Whether to keep the connection active after rebooting, or upgrading or reinstalling. This
176 * only applies to {@link VpnService} connections.
177 */
178 private boolean mAlwaysOn = false;
179
180 /**
181 * Whether to disable traffic outside of this VPN even when the VPN is not connected. System
182 * apps can still bypass by choosing explicit networks. Has no effect if {@link mAlwaysOn} is
183 * not set.
184 */
185 private boolean mLockdown = false;
186
187 /**
Robin Lee17e61832016-05-09 13:46:28 +0100188 * List of UIDs for which networking should be blocked until VPN is ready, during brief periods
189 * when VPN is not running. For example, during system startup or after a crash.
190 * @see mLockdown
191 */
192 @GuardedBy("this")
193 private Set<UidRange> mBlockedUsers = new ArraySet<>();
194
Chalard Jeandd59ece2017-12-20 13:23:32 +0900195 // Handle of the user initiating VPN.
Paul Jensen0784eea2014-08-19 16:00:24 -0400196 private final int mUserHandle;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700197
Chalard Jeandd59ece2017-12-20 13:23:32 +0900198 // Listen to package removal and change events (update/uninstall) for this user
Robin Lee812800c2016-05-13 15:38:08 +0100199 private final BroadcastReceiver mPackageIntentReceiver = new BroadcastReceiver() {
200 @Override
201 public void onReceive(Context context, Intent intent) {
202 final Uri data = intent.getData();
203 final String packageName = data == null ? null : data.getSchemeSpecificPart();
204 if (packageName == null) {
205 return;
206 }
207
208 synchronized (Vpn.this) {
Chalard Jeandd59ece2017-12-20 13:23:32 +0900209 // Avoid race where always-on package has been unset
Robin Lee812800c2016-05-13 15:38:08 +0100210 if (!packageName.equals(getAlwaysOnPackage())) {
211 return;
212 }
213
214 final String action = intent.getAction();
Chalard Jeandd59ece2017-12-20 13:23:32 +0900215 Log.i(TAG, "Received broadcast " + action + " for always-on VPN package "
216 + packageName + " in user " + mUserHandle);
Robin Lee812800c2016-05-13 15:38:08 +0100217
218 switch(action) {
219 case Intent.ACTION_PACKAGE_REPLACED:
220 // Start vpn after app upgrade
221 startAlwaysOnVpn();
222 break;
223 case Intent.ACTION_PACKAGE_REMOVED:
224 final boolean isPackageRemoved = !intent.getBooleanExtra(
225 Intent.EXTRA_REPLACING, false);
226 if (isPackageRemoved) {
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000227 setAlwaysOnPackage(null, false);
Robin Lee812800c2016-05-13 15:38:08 +0100228 }
229 break;
230 }
231 }
232 }
233 };
234
235 private boolean mIsPackageIntentReceiverRegistered = false;
236
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400237 public Vpn(Looper looper, Context context, INetworkManagementService netService,
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000238 @UserIdInt int userHandle) {
239 this(looper, context, netService, userHandle, new SystemServices(context));
240 }
241
242 @VisibleForTesting
243 protected Vpn(Looper looper, Context context, INetworkManagementService netService,
244 int userHandle, SystemServices systemServices) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700245 mContext = context;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400246 mNetd = netService;
Paul Jensen0784eea2014-08-19 16:00:24 -0400247 mUserHandle = userHandle;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400248 mLooper = looper;
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000249 mSystemServices = systemServices;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400250
251 mPackage = VpnConfig.LEGACY_VPN;
Paul Jensen0784eea2014-08-19 16:00:24 -0400252 mOwnerUID = getAppUid(mPackage, mUserHandle);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700253
254 try {
255 netService.registerObserver(mObserver);
256 } catch (RemoteException e) {
257 Log.wtf(TAG, "Problem registering observer", e);
258 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400259
Chalard Jeandd59ece2017-12-20 13:23:32 +0900260 mNetworkInfo = new NetworkInfo(ConnectivityManager.TYPE_VPN, 0 /* subtype */, NETWORKTYPE,
261 "" /* subtypeName */);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400262 mNetworkCapabilities = new NetworkCapabilities();
263 mNetworkCapabilities.addTransportType(NetworkCapabilities.TRANSPORT_VPN);
264 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600265 updateCapabilities();
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000266
267 loadAlwaysOnPackage();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700268 }
269
Jeff Sharkey57666932013-04-30 17:01:57 -0700270 /**
Chalard Jeandd59ece2017-12-20 13:23:32 +0900271 * Set whether this object is responsible for watching for {@link NetworkInfo}
Jeff Sharkey57666932013-04-30 17:01:57 -0700272 * teardown. When {@code false}, teardown is handled externally by someone
273 * else.
274 */
275 public void setEnableTeardown(boolean enableTeardown) {
276 mEnableTeardown = enableTeardown;
277 }
278
Jeff Sharkey899223b2012-08-04 15:24:58 -0700279 /**
280 * Update current state, dispaching event to listeners.
281 */
Tony Mak1a405fe2016-06-30 11:19:20 +0100282 @VisibleForTesting
283 protected void updateState(DetailedState detailedState, String reason) {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700284 if (LOGD) Log.d(TAG, "setting state=" + detailedState + ", reason=" + reason);
285 mNetworkInfo.setDetailedState(detailedState, reason, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400286 if (mNetworkAgent != null) {
287 mNetworkAgent.sendNetworkInfo(mNetworkInfo);
288 }
Tony Mak1a405fe2016-06-30 11:19:20 +0100289 updateAlwaysOnNotification(detailedState);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700290 }
291
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600292 public void updateCapabilities() {
293 final Network[] underlyingNetworks = (mConfig != null) ? mConfig.underlyingNetworks : null;
294 updateCapabilities(mContext.getSystemService(ConnectivityManager.class), underlyingNetworks,
295 mNetworkCapabilities);
296
297 if (mNetworkAgent != null) {
298 mNetworkAgent.sendNetworkCapabilities(mNetworkCapabilities);
299 }
300 }
301
302 @VisibleForTesting
303 public static void updateCapabilities(ConnectivityManager cm, Network[] underlyingNetworks,
304 NetworkCapabilities caps) {
305 int[] transportTypes = new int[] { NetworkCapabilities.TRANSPORT_VPN };
306 int downKbps = NetworkCapabilities.LINK_BANDWIDTH_UNSPECIFIED;
307 int upKbps = NetworkCapabilities.LINK_BANDWIDTH_UNSPECIFIED;
308 boolean metered = false;
309 boolean roaming = false;
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900310 boolean congested = false;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600311
312 if (ArrayUtils.isEmpty(underlyingNetworks)) {
313 // No idea what the underlying networks are; assume sane defaults
314 metered = true;
315 roaming = false;
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900316 congested = false;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600317 } else {
318 for (Network underlying : underlyingNetworks) {
319 final NetworkCapabilities underlyingCaps = cm.getNetworkCapabilities(underlying);
Jeff Sharkey4f5e6262018-01-02 11:46:32 -0700320 if (underlyingCaps == null) continue;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600321 for (int underlyingType : underlyingCaps.getTransportTypes()) {
322 transportTypes = ArrayUtils.appendInt(transportTypes, underlyingType);
323 }
324
325 // When we have multiple networks, we have to assume the
326 // worst-case link speed and restrictions.
327 downKbps = NetworkCapabilities.minBandwidth(downKbps,
328 underlyingCaps.getLinkDownstreamBandwidthKbps());
329 upKbps = NetworkCapabilities.minBandwidth(upKbps,
330 underlyingCaps.getLinkUpstreamBandwidthKbps());
331 metered |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_METERED);
332 roaming |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_ROAMING);
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900333 congested |= !underlyingCaps.hasCapability(NET_CAPABILITY_NOT_CONGESTED);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600334 }
335 }
336
337 caps.setTransportTypes(transportTypes);
338 caps.setLinkDownstreamBandwidthKbps(downKbps);
339 caps.setLinkUpstreamBandwidthKbps(upKbps);
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900340 caps.setCapability(NET_CAPABILITY_NOT_METERED, !metered);
341 caps.setCapability(NET_CAPABILITY_NOT_ROAMING, !roaming);
342 caps.setCapability(NET_CAPABILITY_NOT_CONGESTED, !congested);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600343 }
344
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700345 /**
Robin Leec3736bc2017-03-10 16:19:54 +0000346 * Chooses whether to force all connections to go though VPN.
347 *
348 * Used to enable/disable legacy VPN lockdown.
349 *
350 * This uses the same ip rule mechanism as {@link #setAlwaysOnPackage(String, boolean)};
351 * previous settings from calling that function will be replaced and saved with the
352 * always-on state.
353 *
354 * @param lockdown whether to prevent all traffic outside of a VPN.
355 */
356 public synchronized void setLockdown(boolean lockdown) {
357 enforceControlPermissionOrInternalCaller();
358
359 setVpnForcedLocked(lockdown);
360 mLockdown = lockdown;
361
362 // Update app lockdown setting if it changed. Legacy VPN lockdown status is controlled by
363 // LockdownVpnTracker.isEnabled() which keeps track of its own state.
364 if (mAlwaysOn) {
365 saveAlwaysOnPackage();
366 }
367 }
368
369 /**
Charles Hea0a87e82017-05-15 17:07:18 +0100370 * Checks if a VPN app supports always-on mode.
371 *
372 * In order to support the always-on feature, an app has to
373 * <ul>
374 * <li>target {@link VERSION_CODES#N API 24} or above, and
Charles He5da5ae32017-08-15 15:30:22 +0100375 * <li>not opt out through the {@link VpnService#SERVICE_META_DATA_SUPPORTS_ALWAYS_ON}
376 * meta-data field.
Charles Hea0a87e82017-05-15 17:07:18 +0100377 * </ul>
378 *
379 * @param packageName the canonical package name of the VPN app
380 * @return {@code true} if and only if the VPN app exists and supports always-on mode
381 */
382 public boolean isAlwaysOnPackageSupported(String packageName) {
383 enforceSettingsPermission();
384
385 if (packageName == null) {
386 return false;
387 }
388
389 PackageManager pm = mContext.getPackageManager();
390 ApplicationInfo appInfo = null;
391 try {
392 appInfo = pm.getApplicationInfoAsUser(packageName, 0 /*flags*/, mUserHandle);
393 } catch (NameNotFoundException unused) {
394 Log.w(TAG, "Can't find \"" + packageName + "\" when checking always-on support");
395 }
396 if (appInfo == null || appInfo.targetSdkVersion < VERSION_CODES.N) {
397 return false;
398 }
399
400 final Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
401 intent.setPackage(packageName);
402 List<ResolveInfo> services =
403 pm.queryIntentServicesAsUser(intent, PackageManager.GET_META_DATA, mUserHandle);
404 if (services == null || services.size() == 0) {
405 return false;
406 }
407
408 for (ResolveInfo rInfo : services) {
409 final Bundle metaData = rInfo.serviceInfo.metaData;
Charles He5da5ae32017-08-15 15:30:22 +0100410 if (metaData != null &&
411 !metaData.getBoolean(VpnService.SERVICE_META_DATA_SUPPORTS_ALWAYS_ON, true)) {
Charles Hea0a87e82017-05-15 17:07:18 +0100412 return false;
413 }
414 }
415
416 return true;
417 }
418
419 /**
Robin Lee244ce8e2016-01-05 18:03:46 +0000420 * Configures an always-on VPN connection through a specific application.
421 * This connection is automatically granted and persisted after a reboot.
422 *
423 * <p>The designated package should exist and declare a {@link VpnService} in its
424 * manifest guarded by {@link android.Manifest.permission.BIND_VPN_SERVICE},
425 * otherwise the call will fail.
426 *
Charles Hea0a87e82017-05-15 17:07:18 +0100427 * <p>Note that this method does not check if the VPN app supports always-on mode. The check is
428 * delayed to {@link #startAlwaysOnVpn()}, which is always called immediately after this
429 * method in {@link android.net.IConnectivityManager#setAlwaysOnVpnPackage}.
430 *
Robin Lee17e61832016-05-09 13:46:28 +0100431 * @param packageName the package to designate as always-on VPN supplier.
432 * @param lockdown whether to prevent traffic outside of a VPN, for example while connecting.
Robin Lee9ff1a582016-06-10 16:41:10 +0100433 * @return {@code true} if the package has been set as always-on, {@code false} otherwise.
Robin Lee244ce8e2016-01-05 18:03:46 +0000434 */
Robin Lee17e61832016-05-09 13:46:28 +0100435 public synchronized boolean setAlwaysOnPackage(String packageName, boolean lockdown) {
Robin Lee244ce8e2016-01-05 18:03:46 +0000436 enforceControlPermissionOrInternalCaller();
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000437
438 if (setAlwaysOnPackageInternal(packageName, lockdown)) {
439 saveAlwaysOnPackage();
440 return true;
441 }
442 return false;
443 }
444
445 /**
446 * Configures an always-on VPN connection through a specific application, the same as
447 * {@link #setAlwaysOnPackage}.
448 *
449 * Does not perform permission checks. Does not persist any of the changes to storage.
450 *
451 * @param packageName the package to designate as always-on VPN supplier.
452 * @param lockdown whether to prevent traffic outside of a VPN, for example while connecting.
453 * @return {@code true} if the package has been set as always-on, {@code false} otherwise.
454 */
455 @GuardedBy("this")
456 private boolean setAlwaysOnPackageInternal(String packageName, boolean lockdown) {
Robin Lee9ff1a582016-06-10 16:41:10 +0100457 if (VpnConfig.LEGACY_VPN.equals(packageName)) {
458 Log.w(TAG, "Not setting legacy VPN \"" + packageName + "\" as always-on.");
459 return false;
460 }
Robin Lee244ce8e2016-01-05 18:03:46 +0000461
Robin Lee244ce8e2016-01-05 18:03:46 +0000462 if (packageName != null) {
Robin Lee9ff1a582016-06-10 16:41:10 +0100463 // Pre-authorize new always-on VPN package.
Robin Lee244ce8e2016-01-05 18:03:46 +0000464 if (!setPackageAuthorization(packageName, true)) {
465 return false;
466 }
Robin Lee9ff1a582016-06-10 16:41:10 +0100467 mAlwaysOn = true;
468 } else {
469 packageName = VpnConfig.LEGACY_VPN;
470 mAlwaysOn = false;
Robin Lee244ce8e2016-01-05 18:03:46 +0000471 }
472
Robin Lee17e61832016-05-09 13:46:28 +0100473 mLockdown = (mAlwaysOn && lockdown);
Tony Mak1a405fe2016-06-30 11:19:20 +0100474 if (isCurrentPreparedPackage(packageName)) {
475 updateAlwaysOnNotification(mNetworkInfo.getDetailedState());
476 } else {
477 // Prepare this app. The notification will update as a side-effect of updateState().
Robin Lee9ff1a582016-06-10 16:41:10 +0100478 prepareInternal(packageName);
479 }
Robin Lee812800c2016-05-13 15:38:08 +0100480 maybeRegisterPackageChangeReceiverLocked(packageName);
Robin Lee17e61832016-05-09 13:46:28 +0100481 setVpnForcedLocked(mLockdown);
Robin Lee244ce8e2016-01-05 18:03:46 +0000482 return true;
483 }
484
Robin Lee9ff1a582016-06-10 16:41:10 +0100485 private static boolean isNullOrLegacyVpn(String packageName) {
486 return packageName == null || VpnConfig.LEGACY_VPN.equals(packageName);
487 }
488
Robin Lee812800c2016-05-13 15:38:08 +0100489 private void unregisterPackageChangeReceiverLocked() {
Robin Lee812800c2016-05-13 15:38:08 +0100490 if (mIsPackageIntentReceiverRegistered) {
491 mContext.unregisterReceiver(mPackageIntentReceiver);
492 mIsPackageIntentReceiverRegistered = false;
493 }
494 }
495
496 private void maybeRegisterPackageChangeReceiverLocked(String packageName) {
497 // Unregister IntentFilter listening for previous always-on package change
498 unregisterPackageChangeReceiverLocked();
499
Robin Lee9ff1a582016-06-10 16:41:10 +0100500 if (!isNullOrLegacyVpn(packageName)) {
Robin Lee812800c2016-05-13 15:38:08 +0100501 mIsPackageIntentReceiverRegistered = true;
502
503 IntentFilter intentFilter = new IntentFilter();
504 // Protected intent can only be sent by system. No permission required in register.
505 intentFilter.addAction(Intent.ACTION_PACKAGE_REPLACED);
506 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
507 intentFilter.addDataScheme("package");
508 intentFilter.addDataSchemeSpecificPart(packageName, PatternMatcher.PATTERN_LITERAL);
509 mContext.registerReceiverAsUser(
510 mPackageIntentReceiver, UserHandle.of(mUserHandle), intentFilter, null, null);
511 }
512 }
513
Robin Lee244ce8e2016-01-05 18:03:46 +0000514 /**
515 * @return the package name of the VPN controller responsible for always-on VPN,
516 * or {@code null} if none is set or always-on VPN is controlled through
517 * lockdown instead.
518 * @hide
519 */
520 public synchronized String getAlwaysOnPackage() {
521 enforceControlPermissionOrInternalCaller();
Robin Lee17e61832016-05-09 13:46:28 +0100522 return (mAlwaysOn ? mPackage : null);
Robin Lee244ce8e2016-01-05 18:03:46 +0000523 }
524
525 /**
Robin Lee812800c2016-05-13 15:38:08 +0100526 * Save the always-on package and lockdown config into Settings.Secure
527 */
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000528 @GuardedBy("this")
529 private void saveAlwaysOnPackage() {
Robin Lee812800c2016-05-13 15:38:08 +0100530 final long token = Binder.clearCallingIdentity();
531 try {
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000532 mSystemServices.settingsSecurePutStringForUser(Settings.Secure.ALWAYS_ON_VPN_APP,
Robin Lee812800c2016-05-13 15:38:08 +0100533 getAlwaysOnPackage(), mUserHandle);
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000534 mSystemServices.settingsSecurePutIntForUser(Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN,
Robin Leec3736bc2017-03-10 16:19:54 +0000535 (mAlwaysOn && mLockdown ? 1 : 0), mUserHandle);
Robin Lee812800c2016-05-13 15:38:08 +0100536 } finally {
537 Binder.restoreCallingIdentity(token);
538 }
539 }
540
541 /**
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000542 * Load the always-on package and lockdown config from Settings.Secure
Robin Lee812800c2016-05-13 15:38:08 +0100543 */
Robin Leeb8c2a2b2017-03-10 16:17:06 +0000544 @GuardedBy("this")
545 private void loadAlwaysOnPackage() {
546 final long token = Binder.clearCallingIdentity();
547 try {
548 final String alwaysOnPackage = mSystemServices.settingsSecureGetStringForUser(
549 Settings.Secure.ALWAYS_ON_VPN_APP, mUserHandle);
550 final boolean alwaysOnLockdown = mSystemServices.settingsSecureGetIntForUser(
551 Settings.Secure.ALWAYS_ON_VPN_LOCKDOWN, 0 /*default*/, mUserHandle) != 0;
552 setAlwaysOnPackageInternal(alwaysOnPackage, alwaysOnLockdown);
553 } finally {
554 Binder.restoreCallingIdentity(token);
Robin Lee812800c2016-05-13 15:38:08 +0100555 }
556 }
557
558 /**
559 * @return {@code true} if the service was started, the service was already connected, or there
560 * was no always-on VPN to start. {@code false} otherwise.
561 */
562 public boolean startAlwaysOnVpn() {
563 final String alwaysOnPackage;
564 synchronized (this) {
565 alwaysOnPackage = getAlwaysOnPackage();
566 // Skip if there is no service to start.
567 if (alwaysOnPackage == null) {
568 return true;
569 }
Charles Hea0a87e82017-05-15 17:07:18 +0100570 // Remove always-on VPN if it's not supported.
571 if (!isAlwaysOnPackageSupported(alwaysOnPackage)) {
572 setAlwaysOnPackage(null, false);
573 return false;
574 }
Robin Lee812800c2016-05-13 15:38:08 +0100575 // Skip if the service is already established. This isn't bulletproof: it's not bound
576 // until after establish(), so if it's mid-setup onStartCommand will be sent twice,
577 // which may restart the connection.
578 if (getNetworkInfo().isConnected()) {
579 return true;
580 }
581 }
582
Christopher Tatee0be7e82017-02-08 17:38:20 -0800583 // Tell the OS that background services in this app need to be allowed for
584 // a short time, so we can bootstrap the VPN service.
585 final long oldId = Binder.clearCallingIdentity();
Robin Lee812800c2016-05-13 15:38:08 +0100586 try {
Christopher Tatee0be7e82017-02-08 17:38:20 -0800587 DeviceIdleController.LocalService idleController =
588 LocalServices.getService(DeviceIdleController.LocalService.class);
589 idleController.addPowerSaveTempWhitelistApp(Process.myUid(), alwaysOnPackage,
Chalard Jeandd59ece2017-12-20 13:23:32 +0900590 VPN_LAUNCH_IDLE_WHITELIST_DURATION_MS, mUserHandle, false, "vpn");
Christopher Tatee0be7e82017-02-08 17:38:20 -0800591
592 // Start the VPN service declared in the app's manifest.
593 Intent serviceIntent = new Intent(VpnConfig.SERVICE_INTERFACE);
594 serviceIntent.setPackage(alwaysOnPackage);
595 try {
596 return mContext.startServiceAsUser(serviceIntent, UserHandle.of(mUserHandle)) != null;
597 } catch (RuntimeException e) {
598 Log.e(TAG, "VpnService " + serviceIntent + " failed to start", e);
599 return false;
600 }
601 } finally {
602 Binder.restoreCallingIdentity(oldId);
Robin Lee812800c2016-05-13 15:38:08 +0100603 }
604 }
605
606 /**
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700607 * Prepare for a VPN application. This method is designed to solve
608 * race conditions. It first compares the current prepared package
609 * with {@code oldPackage}. If they are the same, the prepared
610 * package is revoked and replaced with {@code newPackage}. If
611 * {@code oldPackage} is {@code null}, the comparison is omitted.
612 * If {@code newPackage} is the same package or {@code null}, the
613 * revocation is omitted. This method returns {@code true} if the
614 * operation is succeeded.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700615 *
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700616 * Legacy VPN is handled specially since it is not a real package.
617 * It uses {@link VpnConfig#LEGACY_VPN} as its package name, and
618 * it can be revoked by itself.
619 *
Chalard Jeandd59ece2017-12-20 13:23:32 +0900620 * Note: when we added VPN pre-consent in
621 * https://android.googlesource.com/platform/frameworks/base/+/0554260
622 * the names oldPackage and newPackage became misleading, because when
623 * an app is pre-consented, we actually prepare oldPackage, not newPackage.
Victor Chang98a633a2016-05-27 17:30:49 +0100624 *
625 * Their meanings actually are:
626 *
627 * - oldPackage non-null, newPackage null: App calling VpnService#prepare().
628 * - oldPackage null, newPackage non-null: ConfirmDialog calling prepareVpn().
Robin Lee812800c2016-05-13 15:38:08 +0100629 * - oldPackage null, newPackage=LEGACY_VPN: Used internally to disconnect
Victor Chang98a633a2016-05-27 17:30:49 +0100630 * and revoke any current app VPN and re-prepare legacy vpn.
631 *
Robin Lee812800c2016-05-13 15:38:08 +0100632 * TODO: Rename the variables - or split this method into two - and end this confusion.
633 * TODO: b/29032008 Migrate code from prepare(oldPackage=non-null, newPackage=LEGACY_VPN)
634 * to prepare(oldPackage=null, newPackage=LEGACY_VPN)
Victor Chang98a633a2016-05-27 17:30:49 +0100635 *
636 * @param oldPackage The package name of the old VPN application
637 * @param newPackage The package name of the new VPN application
638 *
Chalard Jeandd59ece2017-12-20 13:23:32 +0900639 * @return true if the operation succeeded.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700640 */
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700641 public synchronized boolean prepare(String oldPackage, String newPackage) {
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700642 if (oldPackage != null) {
Victor Chang98a633a2016-05-27 17:30:49 +0100643 // Stop an existing always-on VPN from being dethroned by other apps.
Robin Lee812800c2016-05-13 15:38:08 +0100644 if (mAlwaysOn && !isCurrentPreparedPackage(oldPackage)) {
Victor Chang98a633a2016-05-27 17:30:49 +0100645 return false;
646 }
647
Chalard Jeandd59ece2017-12-20 13:23:32 +0900648 // Package is not the same or old package was reinstalled.
Victor Chang98a633a2016-05-27 17:30:49 +0100649 if (!isCurrentPreparedPackage(oldPackage)) {
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700650 // The package doesn't match. We return false (to obtain user consent) unless the
651 // user has already consented to that VPN package.
652 if (!oldPackage.equals(VpnConfig.LEGACY_VPN) && isVpnUserPreConsented(oldPackage)) {
653 prepareInternal(oldPackage);
654 return true;
655 }
656 return false;
657 } else if (!oldPackage.equals(VpnConfig.LEGACY_VPN)
658 && !isVpnUserPreConsented(oldPackage)) {
659 // Currently prepared VPN is revoked, so unprepare it and return false.
660 prepareInternal(VpnConfig.LEGACY_VPN);
661 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700662 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700663 }
664
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700665 // Return true if we do not need to revoke.
Jeff Davidsonbe085872014-10-24 10:35:53 -0700666 if (newPackage == null || (!newPackage.equals(VpnConfig.LEGACY_VPN) &&
Victor Chang98a633a2016-05-27 17:30:49 +0100667 isCurrentPreparedPackage(newPackage))) {
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700668 return true;
669 }
670
Robin Lee1b1bcd72016-02-12 18:11:30 +0000671 // Check that the caller is authorized.
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700672 enforceControlPermission();
Chia-chi Yehe9107902011-07-02 01:48:50 -0700673
Victor Chang98a633a2016-05-27 17:30:49 +0100674 // Stop an existing always-on VPN from being dethroned by other apps.
Robin Lee812800c2016-05-13 15:38:08 +0100675 if (mAlwaysOn && !isCurrentPreparedPackage(newPackage)) {
Victor Chang98a633a2016-05-27 17:30:49 +0100676 return false;
677 }
678
Jeff Davidson11008a72014-11-20 13:12:46 -0800679 prepareInternal(newPackage);
680 return true;
681 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700682
Victor Chang98a633a2016-05-27 17:30:49 +0100683 private boolean isCurrentPreparedPackage(String packageName) {
684 // We can't just check that packageName matches mPackage, because if the app was uninstalled
685 // and reinstalled it will no longer be prepared. Instead check the UID.
686 return getAppUid(packageName, mUserHandle) == mOwnerUID;
687 }
688
Jeff Davidson11008a72014-11-20 13:12:46 -0800689 /** Prepare the VPN for the given package. Does not perform permission checks. */
690 private void prepareInternal(String newPackage) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400691 long token = Binder.clearCallingIdentity();
692 try {
Jeff Davidson11008a72014-11-20 13:12:46 -0800693 // Reset the interface.
694 if (mInterface != null) {
695 mStatusIntent = null;
696 agentDisconnect();
697 jniReset(mInterface);
698 mInterface = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900699 mNetworkCapabilities.setUids(null);
Jeff Davidson11008a72014-11-20 13:12:46 -0800700 }
701
702 // Revoke the connection or stop LegacyVpnRunner.
703 if (mConnection != null) {
704 try {
705 mConnection.mService.transact(IBinder.LAST_CALL_TRANSACTION,
706 Parcel.obtain(), null, IBinder.FLAG_ONEWAY);
707 } catch (Exception e) {
708 // ignore
709 }
710 mContext.unbindService(mConnection);
711 mConnection = null;
712 } else if (mLegacyVpnRunner != null) {
713 mLegacyVpnRunner.exit();
714 mLegacyVpnRunner = null;
715 }
716
717 try {
718 mNetd.denyProtect(mOwnerUID);
719 } catch (Exception e) {
720 Log.wtf(TAG, "Failed to disallow UID " + mOwnerUID + " to call protect() " + e);
721 }
722
723 Log.i(TAG, "Switched from " + mPackage + " to " + newPackage);
724 mPackage = newPackage;
725 mOwnerUID = getAppUid(newPackage, mUserHandle);
726 try {
727 mNetd.allowProtect(mOwnerUID);
728 } catch (Exception e) {
729 Log.wtf(TAG, "Failed to allow UID " + mOwnerUID + " to call protect() " + e);
730 }
731 mConfig = null;
732
733 updateState(DetailedState.IDLE, "prepare");
Robin Leec3736bc2017-03-10 16:19:54 +0000734 setVpnForcedLocked(mLockdown);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400735 } finally {
736 Binder.restoreCallingIdentity(token);
737 }
Chia-chi Yehe9107902011-07-02 01:48:50 -0700738 }
739
Jeff Davidson05542602014-08-11 14:07:27 -0700740 /**
Robin Lee3b3dd942015-05-12 18:14:58 +0100741 * Set whether a package has the ability to launch VPNs without user intervention.
Jeff Davidson05542602014-08-11 14:07:27 -0700742 */
Robin Lee244ce8e2016-01-05 18:03:46 +0000743 public boolean setPackageAuthorization(String packageName, boolean authorized) {
Jeff Davidson05542602014-08-11 14:07:27 -0700744 // Check if the caller is authorized.
Robin Lee244ce8e2016-01-05 18:03:46 +0000745 enforceControlPermissionOrInternalCaller();
Jeff Davidson05542602014-08-11 14:07:27 -0700746
Robin Lee3b3dd942015-05-12 18:14:58 +0100747 int uid = getAppUid(packageName, mUserHandle);
748 if (uid == -1 || VpnConfig.LEGACY_VPN.equals(packageName)) {
749 // Authorization for nonexistent packages (or fake ones) can't be updated.
Robin Lee244ce8e2016-01-05 18:03:46 +0000750 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700751 }
752
753 long token = Binder.clearCallingIdentity();
754 try {
755 AppOpsManager appOps =
756 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Robin Lee3b3dd942015-05-12 18:14:58 +0100757 appOps.setMode(AppOpsManager.OP_ACTIVATE_VPN, uid, packageName,
Jeff Davidson05542602014-08-11 14:07:27 -0700758 authorized ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED);
Robin Lee244ce8e2016-01-05 18:03:46 +0000759 return true;
Jeff Davidson05542602014-08-11 14:07:27 -0700760 } catch (Exception e) {
Robin Lee3b3dd942015-05-12 18:14:58 +0100761 Log.wtf(TAG, "Failed to set app ops for package " + packageName + ", uid " + uid, e);
Jeff Davidson05542602014-08-11 14:07:27 -0700762 } finally {
763 Binder.restoreCallingIdentity(token);
764 }
Robin Lee244ce8e2016-01-05 18:03:46 +0000765 return false;
Jeff Davidson05542602014-08-11 14:07:27 -0700766 }
767
768 private boolean isVpnUserPreConsented(String packageName) {
769 AppOpsManager appOps =
770 (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
771
772 // Verify that the caller matches the given package and has permission to activate VPNs.
773 return appOps.noteOpNoThrow(AppOpsManager.OP_ACTIVATE_VPN, Binder.getCallingUid(),
774 packageName) == AppOpsManager.MODE_ALLOWED;
775 }
776
Paul Jensen0784eea2014-08-19 16:00:24 -0400777 private int getAppUid(String app, int userHandle) {
Jeff Davidson05542602014-08-11 14:07:27 -0700778 if (VpnConfig.LEGACY_VPN.equals(app)) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400779 return Process.myUid();
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700780 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400781 PackageManager pm = mContext.getPackageManager();
782 int result;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700783 try {
Jeff Sharkeye06b4d12016-01-06 14:51:50 -0700784 result = pm.getPackageUidAsUser(app, userHandle);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400785 } catch (NameNotFoundException e) {
786 result = -1;
787 }
788 return result;
789 }
790
791 public NetworkInfo getNetworkInfo() {
792 return mNetworkInfo;
793 }
794
Paul Jensen31a94f42015-02-13 14:18:39 -0500795 public int getNetId() {
796 return mNetworkAgent != null ? mNetworkAgent.netId : NETID_UNSET;
797 }
798
Lorenzo Colitti60446162014-09-20 00:14:31 +0900799 private LinkProperties makeLinkProperties() {
800 boolean allowIPv4 = mConfig.allowIPv4;
801 boolean allowIPv6 = mConfig.allowIPv6;
802
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400803 LinkProperties lp = new LinkProperties();
Lorenzo Colitti60446162014-09-20 00:14:31 +0900804
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400805 lp.setInterfaceName(mInterface);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700806
Lorenzo Colitti60446162014-09-20 00:14:31 +0900807 if (mConfig.addresses != null) {
808 for (LinkAddress address : mConfig.addresses) {
809 lp.addLinkAddress(address);
810 allowIPv4 |= address.getAddress() instanceof Inet4Address;
811 allowIPv6 |= address.getAddress() instanceof Inet6Address;
812 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400813 }
Lorenzo Colitti60446162014-09-20 00:14:31 +0900814
815 if (mConfig.routes != null) {
816 for (RouteInfo route : mConfig.routes) {
817 lp.addRoute(route);
818 InetAddress address = route.getDestination().getAddress();
819 allowIPv4 |= address instanceof Inet4Address;
820 allowIPv6 |= address instanceof Inet6Address;
821 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400822 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700823
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400824 if (mConfig.dnsServers != null) {
825 for (String dnsServer : mConfig.dnsServers) {
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700826 InetAddress address = InetAddress.parseNumericAddress(dnsServer);
827 lp.addDnsServer(address);
Lorenzo Colitti60446162014-09-20 00:14:31 +0900828 allowIPv4 |= address instanceof Inet4Address;
829 allowIPv6 |= address instanceof Inet6Address;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400830 }
831 }
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700832
Lorenzo Colitti60446162014-09-20 00:14:31 +0900833 if (!allowIPv4) {
834 lp.addRoute(new RouteInfo(new IpPrefix(Inet4Address.ANY, 0), RTN_UNREACHABLE));
835 }
836 if (!allowIPv6) {
837 lp.addRoute(new RouteInfo(new IpPrefix(Inet6Address.ANY, 0), RTN_UNREACHABLE));
838 }
839
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400840 // Concatenate search domains into a string.
841 StringBuilder buffer = new StringBuilder();
842 if (mConfig.searchDomains != null) {
843 for (String domain : mConfig.searchDomains) {
844 buffer.append(domain).append(' ');
845 }
846 }
847 lp.setDomains(buffer.toString().trim());
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700848
Lorenzo Colitti60446162014-09-20 00:14:31 +0900849 // TODO: Stop setting the MTU in jniCreate and set it here.
850
851 return lp;
852 }
853
Chalard Jeanadbf1d02018-02-26 11:52:46 +0900854 /**
855 * Analyzes the passed LinkedProperties to figure out whether it routes to most of the IP space.
856 *
857 * This returns true if the passed LinkedProperties contains routes to either most of the IPv4
858 * space or to most of the IPv6 address space, where "most" is defined by the value of the
859 * MOST_IPV{4,6}_ADDRESSES_COUNT constants : if more than this number of addresses are matched
860 * by any of the routes, then it's decided that most of the space is routed.
861 * @hide
862 */
863 @VisibleForTesting
864 static boolean providesRoutesToMostDestinations(LinkProperties lp) {
865 final Comparator<IpPrefix> prefixLengthComparator = IpPrefix.lengthComparator();
866 TreeSet<IpPrefix> ipv4Prefixes = new TreeSet<>(prefixLengthComparator);
867 TreeSet<IpPrefix> ipv6Prefixes = new TreeSet<>(prefixLengthComparator);
868 for (final RouteInfo route : lp.getAllRoutes()) {
869 IpPrefix destination = route.getDestination();
870 if (destination.isIPv4()) {
871 ipv4Prefixes.add(destination);
872 } else {
873 ipv6Prefixes.add(destination);
874 }
875 }
876 if (NetworkUtils.routedIPv4AddressCount(ipv4Prefixes) > MOST_IPV4_ADDRESSES_COUNT) {
877 return true;
878 }
879 return NetworkUtils.routedIPv6AddressCount(ipv6Prefixes)
880 .compareTo(MOST_IPV6_ADDRESSES_COUNT) >= 0;
881 }
882
Lorenzo Colitti60446162014-09-20 00:14:31 +0900883 private void agentConnect() {
884 LinkProperties lp = makeLinkProperties();
885
Chalard Jeanadbf1d02018-02-26 11:52:46 +0900886 if (providesRoutesToMostDestinations(lp)) {
Lorenzo Colitti60446162014-09-20 00:14:31 +0900887 mNetworkCapabilities.addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
888 } else {
889 mNetworkCapabilities.removeCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
890 }
891
Robin Lee323f29d2016-05-04 16:38:06 +0100892 mNetworkInfo.setDetailedState(DetailedState.CONNECTING, null, null);
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700893
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700894 NetworkMisc networkMisc = new NetworkMisc();
Robin Lee17e61832016-05-09 13:46:28 +0100895 networkMisc.allowBypass = mConfig.allowBypass && !mLockdown;
Sreeram Ramachandran42065ac2014-07-27 00:37:35 -0700896
Chalard Jeanf474fc32018-01-17 15:10:05 +0900897 mNetworkCapabilities.setEstablishingVpnAppUid(Binder.getCallingUid());
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900898 mNetworkCapabilities.setUids(createUserAndRestrictedProfilesRanges(mUserHandle,
899 mConfig.allowedApplications, mConfig.disallowedApplications));
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400900 long token = Binder.clearCallingIdentity();
901 try {
Chalard Jeandd59ece2017-12-20 13:23:32 +0900902 mNetworkAgent = new NetworkAgent(mLooper, mContext, NETWORKTYPE /* logtag */,
Chalard Jeandda156a2018-01-10 21:19:32 +0900903 mNetworkInfo, mNetworkCapabilities, lp,
904 ConnectivityConstants.VPN_DEFAULT_SCORE, networkMisc) {
Jeff Davidson05542602014-08-11 14:07:27 -0700905 @Override
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400906 public void unwanted() {
907 // We are user controlled, not driven by NetworkRequest.
Jeff Davidson05542602014-08-11 14:07:27 -0700908 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400909 };
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700910 } finally {
911 Binder.restoreCallingIdentity(token);
912 }
Robin Lee323f29d2016-05-04 16:38:06 +0100913 mNetworkInfo.setIsAvailable(true);
914 updateState(DetailedState.CONNECTED, "agentConnect");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400915 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700916
Fyodor Kupolov1c363152015-09-02 13:27:21 -0700917 private boolean canHaveRestrictedProfile(int userId) {
918 long token = Binder.clearCallingIdentity();
919 try {
920 return UserManager.get(mContext).canHaveRestrictedProfile(userId);
921 } finally {
922 Binder.restoreCallingIdentity(token);
923 }
924 }
925
Tony Mak1a405fe2016-06-30 11:19:20 +0100926 private void agentDisconnect(NetworkAgent networkAgent) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400927 if (networkAgent != null) {
Tony Mak1a405fe2016-06-30 11:19:20 +0100928 NetworkInfo networkInfo = new NetworkInfo(mNetworkInfo);
929 networkInfo.setIsAvailable(false);
930 networkInfo.setDetailedState(DetailedState.DISCONNECTED, null, null);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400931 networkAgent.sendNetworkInfo(networkInfo);
932 }
933 }
934
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400935 private void agentDisconnect() {
936 if (mNetworkInfo.isConnected()) {
Tony Mak1a405fe2016-06-30 11:19:20 +0100937 mNetworkInfo.setIsAvailable(false);
938 updateState(DetailedState.DISCONNECTED, "agentDisconnect");
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400939 mNetworkAgent = null;
940 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700941 }
942
943 /**
Chia-chi Yehe9107902011-07-02 01:48:50 -0700944 * Establish a VPN network and return the file descriptor of the VPN
945 * interface. This methods returns {@code null} if the application is
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700946 * revoked or not prepared.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700947 *
948 * @param config The parameters to configure the network.
949 * @return The file descriptor of the VPN interface.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700950 */
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700951 public synchronized ParcelFileDescriptor establish(VpnConfig config) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700952 // Check if the caller is already prepared.
Chad Brubakerc2865192013-07-10 14:46:23 -0700953 UserManager mgr = UserManager.get(mContext);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400954 if (Binder.getCallingUid() != mOwnerUID) {
Chia-chi Yeh7b0b8342011-06-17 14:34:11 -0700955 return null;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700956 }
Jeff Davidson0a775ce2015-04-27 15:02:48 -0700957 // Check to ensure consent hasn't been revoked since we were prepared.
958 if (!isVpnUserPreConsented(mPackage)) {
959 return null;
960 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700961 // Check if the service is properly declared.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700962 Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
963 intent.setClassName(mPackage, config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700964 long token = Binder.clearCallingIdentity();
965 try {
Chad Brubakerc2865192013-07-10 14:46:23 -0700966 // Restricted users are not allowed to create VPNs, they are tied to Owner
Paul Jensen0784eea2014-08-19 16:00:24 -0400967 UserInfo user = mgr.getUserInfo(mUserHandle);
Robin Lee628ae0d2016-05-20 14:53:48 +0100968 if (user.isRestricted()) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700969 throw new SecurityException("Restricted users cannot establish VPNs");
970 }
971
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700972 ResolveInfo info = AppGlobals.getPackageManager().resolveService(intent,
Chalard Jeandd59ece2017-12-20 13:23:32 +0900973 null, 0, mUserHandle);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700974 if (info == null) {
975 throw new SecurityException("Cannot find " + config.user);
976 }
977 if (!BIND_VPN_SERVICE.equals(info.serviceInfo.permission)) {
978 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
979 }
980 } catch (RemoteException e) {
Chalard Jeandd59ece2017-12-20 13:23:32 +0900981 throw new SecurityException("Cannot find " + config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700982 } finally {
983 Binder.restoreCallingIdentity(token);
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700984 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700985
Chad Brubaker850eb672014-03-21 21:02:47 +0000986 // Save the old config in case we need to go back.
987 VpnConfig oldConfig = mConfig;
988 String oldInterface = mInterface;
989 Connection oldConnection = mConnection;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400990 NetworkAgent oldNetworkAgent = mNetworkAgent;
991 mNetworkAgent = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +0900992 Set<UidRange> oldUsers = mNetworkCapabilities.getUids();
Chad Brubaker850eb672014-03-21 21:02:47 +0000993
Chia-chi Yehe9107902011-07-02 01:48:50 -0700994 // Configure the interface. Abort if any of these steps fails.
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700995 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700996 try {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700997 updateState(DetailedState.CONNECTING, "establish");
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700998 String interfaze = jniGetName(tun.getFd());
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700999
Chad Brubakerc2865192013-07-10 14:46:23 -07001000 // TEMP use the old jni calls until there is support for netd address setting
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001001 StringBuilder builder = new StringBuilder();
1002 for (LinkAddress address : config.addresses) {
1003 builder.append(" " + address);
1004 }
1005 if (jniSetAddresses(interfaze, builder.toString()) < 1) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001006 throw new IllegalArgumentException("At least one address must be specified");
1007 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001008 Connection connection = new Connection();
Dianne Hackbornd69e4c12015-04-24 09:54:54 -07001009 if (!mContext.bindServiceAsUser(intent, connection,
1010 Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE,
1011 new UserHandle(mUserHandle))) {
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001012 throw new IllegalStateException("Cannot bind " + config.user);
1013 }
Chad Brubaker850eb672014-03-21 21:02:47 +00001014
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001015 mConnection = connection;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001016 mInterface = interfaze;
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001017
1018 // Fill more values.
1019 config.user = mPackage;
1020 config.interfaze = mInterface;
Chad Brubakerc2865192013-07-10 14:46:23 -07001021 config.startTime = SystemClock.elapsedRealtime();
1022 mConfig = config;
Chad Brubaker850eb672014-03-21 21:02:47 +00001023
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001024 // Set up forwarding and DNS rules.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001025 agentConnect();
Chad Brubaker850eb672014-03-21 21:02:47 +00001026
1027 if (oldConnection != null) {
1028 mContext.unbindService(oldConnection);
1029 }
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001030 // Remove the old tun's user forwarding rules
1031 // The new tun's user rules have already been added so they will take over
1032 // as rules are deleted. This prevents data leakage as the rules are moved over.
1033 agentDisconnect(oldNetworkAgent);
Chad Brubaker850eb672014-03-21 21:02:47 +00001034 if (oldInterface != null && !oldInterface.equals(interfaze)) {
Chad Brubaker850eb672014-03-21 21:02:47 +00001035 jniReset(oldInterface);
1036 }
Jeff Davidson6bbf39c2014-07-23 10:14:53 -07001037
1038 try {
1039 IoUtils.setBlocking(tun.getFileDescriptor(), config.blocking);
1040 } catch (IOException e) {
1041 throw new IllegalStateException(
1042 "Cannot set tunnel's fd as blocking=" + config.blocking, e);
1043 }
Chad Brubaker850eb672014-03-21 21:02:47 +00001044 } catch (RuntimeException e) {
Chad Brubaker850eb672014-03-21 21:02:47 +00001045 IoUtils.closeQuietly(tun);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001046 agentDisconnect();
Chad Brubaker850eb672014-03-21 21:02:47 +00001047 // restore old state
1048 mConfig = oldConfig;
1049 mConnection = oldConnection;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001050 mNetworkCapabilities.setUids(oldUsers);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001051 mNetworkAgent = oldNetworkAgent;
Chad Brubaker850eb672014-03-21 21:02:47 +00001052 mInterface = oldInterface;
1053 throw e;
Chad Brubakerc2865192013-07-10 14:46:23 -07001054 }
Chad Brubaker850eb672014-03-21 21:02:47 +00001055 Log.i(TAG, "Established by " + config.user + " on " + mInterface);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001056 return tun;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07001057 }
1058
Chad Brubakerc2865192013-07-10 14:46:23 -07001059 private boolean isRunningLocked() {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001060 return mNetworkAgent != null && mInterface != null;
1061 }
1062
1063 // Returns true if the VPN has been established and the calling UID is its owner. Used to check
1064 // that a call to mutate VPN state is admissible.
1065 private boolean isCallerEstablishedOwnerLocked() {
1066 return isRunningLocked() && Binder.getCallingUid() == mOwnerUID;
Chad Brubakerc2865192013-07-10 14:46:23 -07001067 }
1068
Paul Jensen0784eea2014-08-19 16:00:24 -04001069 // Note: Return type guarantees results are deduped and sorted, which callers require.
1070 private SortedSet<Integer> getAppsUids(List<String> packageNames, int userHandle) {
1071 SortedSet<Integer> uids = new TreeSet<Integer>();
1072 for (String app : packageNames) {
1073 int uid = getAppUid(app, userHandle);
1074 if (uid != -1) uids.add(uid);
1075 }
1076 return uids;
1077 }
1078
Robin Lee4d03abc2016-05-09 12:32:27 +01001079 /**
1080 * Creates a {@link Set} of non-intersecting {@link UidRange} objects including all UIDs
1081 * associated with one user, and any restricted profiles attached to that user.
1082 *
1083 * <p>If one of {@param allowedApplications} or {@param disallowedApplications} is provided,
1084 * the UID ranges will match the app whitelist or blacklist specified there. Otherwise, all UIDs
1085 * in each user and profile will be included.
1086 *
1087 * @param userHandle The userId to create UID ranges for along with any of its restricted
1088 * profiles.
1089 * @param allowedApplications (optional) whitelist of applications to include.
1090 * @param disallowedApplications (optional) blacklist of applications to exclude.
1091 */
1092 @VisibleForTesting
1093 Set<UidRange> createUserAndRestrictedProfilesRanges(@UserIdInt int userHandle,
1094 @Nullable List<String> allowedApplications,
1095 @Nullable List<String> disallowedApplications) {
1096 final Set<UidRange> ranges = new ArraySet<>();
Robert Greenwalt69887e82013-09-24 11:05:57 -07001097
Robin Lee4d03abc2016-05-09 12:32:27 +01001098 // Assign the top-level user to the set of ranges
1099 addUserToRanges(ranges, userHandle, allowedApplications, disallowedApplications);
1100
1101 // If the user can have restricted profiles, assign all its restricted profiles too
1102 if (canHaveRestrictedProfile(userHandle)) {
1103 final long token = Binder.clearCallingIdentity();
1104 List<UserInfo> users;
1105 try {
Robin Lee17e61832016-05-09 13:46:28 +01001106 users = UserManager.get(mContext).getUsers(true);
Robin Lee4d03abc2016-05-09 12:32:27 +01001107 } finally {
1108 Binder.restoreCallingIdentity(token);
1109 }
1110 for (UserInfo user : users) {
1111 if (user.isRestricted() && (user.restrictedProfileParentId == userHandle)) {
1112 addUserToRanges(ranges, user.id, allowedApplications, disallowedApplications);
1113 }
1114 }
1115 }
1116 return ranges;
1117 }
1118
1119 /**
1120 * Updates a {@link Set} of non-intersecting {@link UidRange} objects to include all UIDs
1121 * associated with one user.
1122 *
1123 * <p>If one of {@param allowedApplications} or {@param disallowedApplications} is provided,
1124 * the UID ranges will match the app whitelist or blacklist specified there. Otherwise, all UIDs
1125 * in the user will be included.
1126 *
1127 * @param ranges {@link Set} of {@link UidRange}s to which to add.
1128 * @param userHandle The userId to add to {@param ranges}.
1129 * @param allowedApplications (optional) whitelist of applications to include.
1130 * @param disallowedApplications (optional) blacklist of applications to exclude.
1131 */
1132 @VisibleForTesting
1133 void addUserToRanges(@NonNull Set<UidRange> ranges, @UserIdInt int userHandle,
1134 @Nullable List<String> allowedApplications,
1135 @Nullable List<String> disallowedApplications) {
1136 if (allowedApplications != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001137 // Add ranges covering all UIDs for allowedApplications.
1138 int start = -1, stop = -1;
Robin Lee4d03abc2016-05-09 12:32:27 +01001139 for (int uid : getAppsUids(allowedApplications, userHandle)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001140 if (start == -1) {
1141 start = uid;
1142 } else if (uid != stop + 1) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001143 ranges.add(new UidRange(start, stop));
Paul Jensen0784eea2014-08-19 16:00:24 -04001144 start = uid;
1145 }
1146 stop = uid;
1147 }
Robin Lee4d03abc2016-05-09 12:32:27 +01001148 if (start != -1) ranges.add(new UidRange(start, stop));
1149 } else if (disallowedApplications != null) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001150 // Add all ranges for user skipping UIDs for disallowedApplications.
1151 final UidRange userRange = UidRange.createForUser(userHandle);
1152 int start = userRange.start;
Robin Lee4d03abc2016-05-09 12:32:27 +01001153 for (int uid : getAppsUids(disallowedApplications, userHandle)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001154 if (uid == start) {
1155 start++;
1156 } else {
Robin Lee4d03abc2016-05-09 12:32:27 +01001157 ranges.add(new UidRange(start, uid - 1));
Paul Jensen0784eea2014-08-19 16:00:24 -04001158 start = uid + 1;
1159 }
1160 }
Robin Lee4d03abc2016-05-09 12:32:27 +01001161 if (start <= userRange.stop) ranges.add(new UidRange(start, userRange.stop));
Paul Jensen0784eea2014-08-19 16:00:24 -04001162 } else {
1163 // Add all UIDs for the user.
Robin Lee4d03abc2016-05-09 12:32:27 +01001164 ranges.add(UidRange.createForUser(userHandle));
Paul Jensen0784eea2014-08-19 16:00:24 -04001165 }
Chad Brubakerc2865192013-07-10 14:46:23 -07001166 }
1167
Paul Jensen0784eea2014-08-19 16:00:24 -04001168 // Returns the subset of the full list of active UID ranges the VPN applies to (mVpnUsers) that
1169 // apply to userHandle.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001170 static private List<UidRange> uidRangesForUser(int userHandle, Set<UidRange> existingRanges) {
1171 // UidRange#createForUser returns the entire range of UIDs available to a macro-user.
1172 // This is something like 0-99999 ; {@see UserHandle#PER_USER_RANGE}
Paul Jensen0784eea2014-08-19 16:00:24 -04001173 final UidRange userRange = UidRange.createForUser(userHandle);
1174 final List<UidRange> ranges = new ArrayList<UidRange>();
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001175 for (UidRange range : existingRanges) {
Robin Lee4d03abc2016-05-09 12:32:27 +01001176 if (userRange.containsRange(range)) {
Paul Jensen0784eea2014-08-19 16:00:24 -04001177 ranges.add(range);
1178 }
1179 }
1180 return ranges;
1181 }
1182
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001183 public void onUserAdded(int userHandle) {
1184 // If the user is restricted tie them to the parent user's VPN
1185 UserInfo user = UserManager.get(mContext).getUserInfo(userHandle);
Robin Lee17e61832016-05-09 13:46:28 +01001186 if (user.isRestricted() && user.restrictedProfileParentId == mUserHandle) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001187 synchronized(Vpn.this) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001188 final Set<UidRange> existingRanges = mNetworkCapabilities.getUids();
1189 if (existingRanges != null) {
Robin Lee17e61832016-05-09 13:46:28 +01001190 try {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001191 addUserToRanges(existingRanges, userHandle, mConfig.allowedApplications,
Robin Lee17e61832016-05-09 13:46:28 +01001192 mConfig.disallowedApplications);
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001193 mNetworkCapabilities.setUids(existingRanges);
Chalard Jeanf213ca12018-01-16 18:43:05 +09001194 updateCapabilities();
Robin Lee17e61832016-05-09 13:46:28 +01001195 } catch (Exception e) {
1196 Log.wtf(TAG, "Failed to add restricted user to owner", e);
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001197 }
Robin Lee17e61832016-05-09 13:46:28 +01001198 }
Robin Leec3736bc2017-03-10 16:19:54 +00001199 setVpnForcedLocked(mLockdown);
Chad Brubakerc2865192013-07-10 14:46:23 -07001200 }
1201 }
1202 }
1203
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001204 public void onUserRemoved(int userHandle) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001205 // clean up if restricted
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001206 UserInfo user = UserManager.get(mContext).getUserInfo(userHandle);
Robin Lee17e61832016-05-09 13:46:28 +01001207 if (user.isRestricted() && user.restrictedProfileParentId == mUserHandle) {
Fyodor Kupolov1c363152015-09-02 13:27:21 -07001208 synchronized(Vpn.this) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001209 final Set<UidRange> existingRanges = mNetworkCapabilities.getUids();
1210 if (existingRanges != null) {
Robin Lee17e61832016-05-09 13:46:28 +01001211 try {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001212 final List<UidRange> removedRanges =
1213 uidRangesForUser(userHandle, existingRanges);
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001214 existingRanges.removeAll(removedRanges);
1215 mNetworkCapabilities.setUids(existingRanges);
Chalard Jeanf213ca12018-01-16 18:43:05 +09001216 updateCapabilities();
Robin Lee17e61832016-05-09 13:46:28 +01001217 } catch (Exception e) {
1218 Log.wtf(TAG, "Failed to remove restricted user to owner", e);
1219 }
1220 }
Robin Leec3736bc2017-03-10 16:19:54 +00001221 setVpnForcedLocked(mLockdown);
Chad Brubakerc2865192013-07-10 14:46:23 -07001222 }
1223 }
1224 }
1225
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07001226 /**
Robin Lee17e61832016-05-09 13:46:28 +01001227 * Called when the user associated with this VPN has just been stopped.
1228 */
1229 public synchronized void onUserStopped() {
1230 // Switch off networking lockdown (if it was enabled)
Robin Leec3736bc2017-03-10 16:19:54 +00001231 setLockdown(false);
Robin Lee17e61832016-05-09 13:46:28 +01001232 mAlwaysOn = false;
1233
Robin Lee812800c2016-05-13 15:38:08 +01001234 unregisterPackageChangeReceiverLocked();
Robin Lee17e61832016-05-09 13:46:28 +01001235 // Quit any active connections
1236 agentDisconnect();
1237 }
1238
1239 /**
1240 * Restrict network access from all UIDs affected by this {@link Vpn}, apart from the VPN
1241 * service app itself, to only sockets that have had {@code protect()} called on them. All
1242 * non-VPN traffic is blocked via a {@code PROHIBIT} response from the kernel.
1243 *
1244 * The exception for the VPN UID isn't technically necessary -- setup should use protected
1245 * sockets -- but in practice it saves apps that don't protect their sockets from breaking.
1246 *
1247 * Calling multiple times with {@param enforce} = {@code true} will recreate the set of UIDs to
1248 * block every time, and if anything has changed update using {@link #setAllowOnlyVpnForUids}.
1249 *
1250 * @param enforce {@code true} to require that all traffic under the jurisdiction of this
1251 * {@link Vpn} goes through a VPN connection or is blocked until one is
1252 * available, {@code false} to lift the requirement.
1253 *
1254 * @see #mBlockedUsers
1255 */
1256 @GuardedBy("this")
1257 private void setVpnForcedLocked(boolean enforce) {
Robin Leec3736bc2017-03-10 16:19:54 +00001258 final List<String> exemptedPackages =
1259 isNullOrLegacyVpn(mPackage) ? null : Collections.singletonList(mPackage);
Robin Lee17e61832016-05-09 13:46:28 +01001260 final Set<UidRange> removedRanges = new ArraySet<>(mBlockedUsers);
Robin Leec3736bc2017-03-10 16:19:54 +00001261
1262 Set<UidRange> addedRanges = Collections.emptySet();
Robin Lee17e61832016-05-09 13:46:28 +01001263 if (enforce) {
Robin Leec3736bc2017-03-10 16:19:54 +00001264 addedRanges = createUserAndRestrictedProfilesRanges(mUserHandle,
Robin Lee17e61832016-05-09 13:46:28 +01001265 /* allowedApplications */ null,
Robin Leec3736bc2017-03-10 16:19:54 +00001266 /* disallowedApplications */ exemptedPackages);
Robin Lee17e61832016-05-09 13:46:28 +01001267
1268 removedRanges.removeAll(addedRanges);
1269 addedRanges.removeAll(mBlockedUsers);
Robin Lee17e61832016-05-09 13:46:28 +01001270 }
Robin Leec3736bc2017-03-10 16:19:54 +00001271
1272 setAllowOnlyVpnForUids(false, removedRanges);
1273 setAllowOnlyVpnForUids(true, addedRanges);
Robin Lee17e61832016-05-09 13:46:28 +01001274 }
1275
1276 /**
1277 * Either add or remove a list of {@link UidRange}s to the list of UIDs that are only allowed
1278 * to make connections through sockets that have had {@code protect()} called on them.
1279 *
1280 * @param enforce {@code true} to add to the blacklist, {@code false} to remove.
1281 * @param ranges {@link Collection} of {@link UidRange}s to add (if {@param enforce} is
1282 * {@code true}) or to remove.
1283 * @return {@code true} if all of the UIDs were added/removed. {@code false} otherwise,
1284 * including added ranges that already existed or removed ones that didn't.
1285 */
1286 @GuardedBy("this")
1287 private boolean setAllowOnlyVpnForUids(boolean enforce, Collection<UidRange> ranges) {
1288 if (ranges.size() == 0) {
1289 return true;
1290 }
1291 final UidRange[] rangesArray = ranges.toArray(new UidRange[ranges.size()]);
1292 try {
1293 mNetd.setAllowOnlyVpnForUids(enforce, rangesArray);
1294 } catch (RemoteException | RuntimeException e) {
1295 Log.e(TAG, "Updating blocked=" + enforce
1296 + " for UIDs " + Arrays.toString(ranges.toArray()) + " failed", e);
1297 return false;
1298 }
1299 if (enforce) {
1300 mBlockedUsers.addAll(ranges);
1301 } else {
1302 mBlockedUsers.removeAll(ranges);
1303 }
1304 return true;
1305 }
1306
1307 /**
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07001308 * Return the configuration of the currently running VPN.
1309 */
1310 public VpnConfig getVpnConfig() {
1311 enforceControlPermission();
1312 return mConfig;
1313 }
1314
Jeff Sharkey899223b2012-08-04 15:24:58 -07001315 @Deprecated
1316 public synchronized void interfaceStatusChanged(String iface, boolean up) {
1317 try {
1318 mObserver.interfaceStatusChanged(iface, up);
1319 } catch (RemoteException e) {
1320 // ignored; target is local
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001321 }
1322 }
1323
Jeff Sharkey899223b2012-08-04 15:24:58 -07001324 private INetworkManagementEventObserver mObserver = new BaseNetworkObserver() {
1325 @Override
1326 public void interfaceStatusChanged(String interfaze, boolean up) {
1327 synchronized (Vpn.this) {
1328 if (!up && mLegacyVpnRunner != null) {
1329 mLegacyVpnRunner.check(interfaze);
1330 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001331 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001332 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001333
Jeff Sharkey899223b2012-08-04 15:24:58 -07001334 @Override
1335 public void interfaceRemoved(String interfaze) {
1336 synchronized (Vpn.this) {
1337 if (interfaze.equals(mInterface) && jniCheck(interfaze) == 0) {
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001338 mStatusIntent = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001339 mNetworkCapabilities.setUids(null);
Paul Jensenc4c72312014-12-08 14:04:51 -05001340 mConfig = null;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001341 mInterface = null;
1342 if (mConnection != null) {
1343 mContext.unbindService(mConnection);
1344 mConnection = null;
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001345 agentDisconnect();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001346 } else if (mLegacyVpnRunner != null) {
1347 mLegacyVpnRunner.exit();
1348 mLegacyVpnRunner = null;
1349 }
1350 }
1351 }
1352 }
1353 };
Haoyu Baidb3c8672012-06-20 14:29:57 -07001354
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001355 private void enforceControlPermission() {
Jeff Davidsonbc19c182014-11-11 13:20:01 -08001356 mContext.enforceCallingPermission(Manifest.permission.CONTROL_VPN, "Unauthorized Caller");
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001357 }
1358
Robin Lee244ce8e2016-01-05 18:03:46 +00001359 private void enforceControlPermissionOrInternalCaller() {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001360 // Require the caller to be either an application with CONTROL_VPN permission or a process
Robin Lee244ce8e2016-01-05 18:03:46 +00001361 // in the system server.
1362 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONTROL_VPN,
1363 "Unauthorized Caller");
1364 }
1365
Charles Hea0a87e82017-05-15 17:07:18 +01001366 private void enforceSettingsPermission() {
1367 mContext.enforceCallingOrSelfPermission(Manifest.permission.NETWORK_SETTINGS,
1368 "Unauthorized Caller");
1369 }
1370
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -07001371 private class Connection implements ServiceConnection {
1372 private IBinder mService;
1373
1374 @Override
1375 public void onServiceConnected(ComponentName name, IBinder service) {
1376 mService = service;
1377 }
1378
1379 @Override
1380 public void onServiceDisconnected(ComponentName name) {
1381 mService = null;
1382 }
1383 }
1384
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001385 private void prepareStatusIntent() {
1386 final long token = Binder.clearCallingIdentity();
1387 try {
1388 mStatusIntent = VpnConfig.getIntentForStatusPanel(mContext);
1389 } finally {
1390 Binder.restoreCallingIdentity(token);
1391 }
1392 }
1393
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001394 public synchronized boolean addAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001395 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001396 return false;
1397 }
1398 boolean success = jniAddAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001399 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001400 return success;
1401 }
1402
1403 public synchronized boolean removeAddress(String address, int prefixLength) {
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001404 if (!isCallerEstablishedOwnerLocked()) {
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001405 return false;
1406 }
1407 boolean success = jniDelAddress(mInterface, address, prefixLength);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001408 mNetworkAgent.sendLinkProperties(makeLinkProperties());
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001409 return success;
1410 }
1411
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001412 public synchronized boolean setUnderlyingNetworks(Network[] networks) {
1413 if (!isCallerEstablishedOwnerLocked()) {
1414 return false;
1415 }
1416 if (networks == null) {
1417 mConfig.underlyingNetworks = null;
1418 } else {
1419 mConfig.underlyingNetworks = new Network[networks.length];
1420 for (int i = 0; i < networks.length; ++i) {
1421 if (networks[i] == null) {
1422 mConfig.underlyingNetworks[i] = null;
1423 } else {
1424 mConfig.underlyingNetworks[i] = new Network(networks[i].netId);
1425 }
1426 }
1427 }
Jeff Sharkey72f9c422017-10-27 17:22:59 -06001428 updateCapabilities();
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001429 return true;
1430 }
1431
1432 public synchronized Network[] getUnderlyingNetworks() {
1433 if (!isRunningLocked()) {
1434 return null;
1435 }
1436 return mConfig.underlyingNetworks;
1437 }
1438
Wenchao Tongf5ea3402015-03-04 13:26:38 -08001439 /**
Chalard Jeandd59ece2017-12-20 13:23:32 +09001440 * This method should only be called by ConnectivityService because it doesn't
Wenchao Tongf5ea3402015-03-04 13:26:38 -08001441 * have enough data to fill VpnInfo.primaryUnderlyingIface field.
1442 */
1443 public synchronized VpnInfo getVpnInfo() {
1444 if (!isRunningLocked()) {
1445 return null;
1446 }
1447
1448 VpnInfo info = new VpnInfo();
1449 info.ownerUid = mOwnerUID;
1450 info.vpnIface = mInterface;
1451 return info;
1452 }
1453
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001454 public synchronized boolean appliesToUid(int uid) {
1455 if (!isRunningLocked()) {
1456 return false;
1457 }
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001458 return mNetworkCapabilities.appliesToUid(uid);
Sreeram Ramachandranc2c0bea2014-11-11 16:09:21 -08001459 }
1460
Robin Lee17e61832016-05-09 13:46:28 +01001461 /**
Robin Leeebbcb542016-05-24 16:35:10 +01001462 * @return {@code true} if {@param uid} is blocked by an always-on VPN.
1463 * A UID is blocked if it's included in one of the mBlockedUsers ranges and the VPN is
1464 * not connected, or if the VPN is connected but does not apply to the UID.
Robin Lee17e61832016-05-09 13:46:28 +01001465 *
1466 * @see #mBlockedUsers
1467 */
1468 public synchronized boolean isBlockingUid(int uid) {
Robin Leeebbcb542016-05-24 16:35:10 +01001469 if (!mLockdown) {
1470 return false;
Robin Lee17e61832016-05-09 13:46:28 +01001471 }
Robin Leeebbcb542016-05-24 16:35:10 +01001472
1473 if (mNetworkInfo.isConnected()) {
1474 return !appliesToUid(uid);
1475 } else {
1476 for (UidRange uidRange : mBlockedUsers) {
1477 if (uidRange.contains(uid)) {
1478 return true;
1479 }
1480 }
1481 return false;
1482 }
Robin Lee17e61832016-05-09 13:46:28 +01001483 }
1484
Tony Mak1a405fe2016-06-30 11:19:20 +01001485 private void updateAlwaysOnNotification(DetailedState networkState) {
1486 final boolean visible = (mAlwaysOn && networkState != DetailedState.CONNECTED);
Tony Mak1a405fe2016-06-30 11:19:20 +01001487
Tony Mak1a405fe2016-06-30 11:19:20 +01001488 final UserHandle user = UserHandle.of(mUserHandle);
1489 final long token = Binder.clearCallingIdentity();
1490 try {
1491 final NotificationManager notificationManager = NotificationManager.from(mContext);
1492 if (!visible) {
Charles He15297a62017-04-08 22:03:42 +01001493 notificationManager.cancelAsUser(TAG, SystemMessage.NOTE_VPN_DISCONNECTED, user);
Tony Mak1a405fe2016-06-30 11:19:20 +01001494 return;
1495 }
Charles Heab6f2f62017-07-12 15:30:00 +01001496 final Intent intent = new Intent();
1497 intent.setComponent(ComponentName.unflattenFromString(mContext.getString(
1498 R.string.config_customVpnAlwaysOnDisconnectedDialogComponent)));
1499 intent.putExtra("lockdown", mLockdown);
1500 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Robin Leeb8c2a2b2017-03-10 16:17:06 +00001501 final PendingIntent configIntent = mSystemServices.pendingIntentGetActivityAsUser(
1502 intent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_UPDATE_CURRENT, user);
Geoffrey Pitschaf759c52017-02-15 09:35:38 -05001503 final Notification.Builder builder =
1504 new Notification.Builder(mContext, SystemNotificationChannels.VPN)
1505 .setSmallIcon(R.drawable.vpn_connected)
1506 .setContentTitle(mContext.getString(R.string.vpn_lockdown_disconnected))
1507 .setContentText(mContext.getString(R.string.vpn_lockdown_config))
1508 .setContentIntent(configIntent)
1509 .setCategory(Notification.CATEGORY_SYSTEM)
1510 .setVisibility(Notification.VISIBILITY_PUBLIC)
1511 .setOngoing(true)
1512 .setColor(mContext.getColor(R.color.system_notification_accent_color));
Chris Wren282cfef2017-03-27 15:01:44 -04001513 notificationManager.notifyAsUser(TAG, SystemMessage.NOTE_VPN_DISCONNECTED,
1514 builder.build(), user);
Tony Mak1a405fe2016-06-30 11:19:20 +01001515 } finally {
1516 Binder.restoreCallingIdentity(token);
1517 }
1518 }
1519
Robin Leeb8c2a2b2017-03-10 16:17:06 +00001520 /**
1521 * Facade for system service calls that change, or depend on, state outside of
1522 * {@link ConnectivityService} and have hard-to-mock interfaces.
1523 *
1524 * @see com.android.server.connectivity.VpnTest
1525 */
1526 @VisibleForTesting
1527 public static class SystemServices {
1528 private final Context mContext;
1529
1530 public SystemServices(@NonNull Context context) {
1531 mContext = context;
1532 }
1533
1534 /**
1535 * @see PendingIntent#getActivityAsUser()
1536 */
1537 public PendingIntent pendingIntentGetActivityAsUser(
1538 Intent intent, int flags, UserHandle user) {
1539 return PendingIntent.getActivityAsUser(mContext, 0 /*request*/, intent, flags,
1540 null /*options*/, user);
1541 }
1542
1543 /**
1544 * @see Settings.Secure#putStringForUser
1545 */
1546 public void settingsSecurePutStringForUser(String key, String value, int userId) {
1547 Settings.Secure.putStringForUser(mContext.getContentResolver(), key, value, userId);
1548 }
1549
1550 /**
1551 * @see Settings.Secure#putIntForUser
1552 */
1553 public void settingsSecurePutIntForUser(String key, int value, int userId) {
1554 Settings.Secure.putIntForUser(mContext.getContentResolver(), key, value, userId);
1555 }
1556
1557 /**
1558 * @see Settings.Secure#getStringForUser
1559 */
1560 public String settingsSecureGetStringForUser(String key, int userId) {
1561 return Settings.Secure.getStringForUser(mContext.getContentResolver(), key, userId);
1562 }
1563
1564 /**
1565 * @see Settings.Secure#getIntForUser
1566 */
1567 public int settingsSecureGetIntForUser(String key, int def, int userId) {
1568 return Settings.Secure.getIntForUser(mContext.getContentResolver(), key, def, userId);
1569 }
1570 }
1571
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001572 private native int jniCreate(int mtu);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001573 private native String jniGetName(int tun);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001574 private native int jniSetAddresses(String interfaze, String addresses);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001575 private native void jniReset(String interfaze);
1576 private native int jniCheck(String interfaze);
Sreeram Ramachandranf4e0c0c2014-07-27 14:18:26 -07001577 private native boolean jniAddAddress(String interfaze, String address, int prefixLen);
1578 private native boolean jniDelAddress(String interfaze, String address, int prefixLen);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001579
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001580 private static RouteInfo findIPv4DefaultRoute(LinkProperties prop) {
1581 for (RouteInfo route : prop.getAllRoutes()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -07001582 // Currently legacy VPN only works on IPv4.
1583 if (route.isDefaultRoute() && route.getGateway() instanceof Inet4Address) {
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001584 return route;
Jeff Sharkey82f85212012-08-24 11:17:25 -07001585 }
1586 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001587
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001588 throw new IllegalStateException("Unable to find IPv4 default gateway");
Jeff Sharkey82f85212012-08-24 11:17:25 -07001589 }
1590
1591 /**
1592 * Start legacy VPN, controlling native daemons as needed. Creates a
1593 * secondary thread to perform connection work, returning quickly.
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001594 *
1595 * Should only be called to respond to Binder requests as this enforces caller permission. Use
1596 * {@link #startLegacyVpnPrivileged(VpnProfile, KeyStore, LinkProperties)} to skip the
1597 * permission check only when the caller is trusted (or the call is initiated by the system).
Jeff Sharkey82f85212012-08-24 11:17:25 -07001598 */
1599 public void startLegacyVpn(VpnProfile profile, KeyStore keyStore, LinkProperties egress) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08001600 enforceControlPermission();
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001601 long token = Binder.clearCallingIdentity();
1602 try {
1603 startLegacyVpnPrivileged(profile, keyStore, egress);
1604 } finally {
1605 Binder.restoreCallingIdentity(token);
1606 }
1607 }
1608
1609 /**
1610 * Like {@link #startLegacyVpn(VpnProfile, KeyStore, LinkProperties)}, but does not check
1611 * permissions under the assumption that the caller is the system.
1612 *
1613 * Callers are responsible for checking permissions if needed.
1614 */
1615 public void startLegacyVpnPrivileged(VpnProfile profile, KeyStore keyStore,
1616 LinkProperties egress) {
Julia Reynoldsf5116d02014-07-01 11:10:41 -04001617 UserManager mgr = UserManager.get(mContext);
Paul Jensen0784eea2014-08-19 16:00:24 -04001618 UserInfo user = mgr.getUserInfo(mUserHandle);
Nicolas Prevot95778ff2015-01-06 15:43:05 +00001619 if (user.isRestricted() || mgr.hasUserRestriction(UserManager.DISALLOW_CONFIG_VPN,
1620 new UserHandle(mUserHandle))) {
Julia Reynoldsf5116d02014-07-01 11:10:41 -04001621 throw new SecurityException("Restricted users cannot establish VPNs");
1622 }
Jeff Sharkey82f85212012-08-24 11:17:25 -07001623
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +09001624 final RouteInfo ipv4DefaultRoute = findIPv4DefaultRoute(egress);
1625 final String gateway = ipv4DefaultRoute.getGateway().getHostAddress();
1626 final String iface = ipv4DefaultRoute.getInterface();
Jeff Sharkey82f85212012-08-24 11:17:25 -07001627
1628 // Load certificates.
1629 String privateKey = "";
1630 String userCert = "";
1631 String caCert = "";
1632 String serverCert = "";
1633 if (!profile.ipsecUserCert.isEmpty()) {
1634 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
1635 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecUserCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001636 userCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001637 }
1638 if (!profile.ipsecCaCert.isEmpty()) {
1639 byte[] value = keyStore.get(Credentials.CA_CERTIFICATE + profile.ipsecCaCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001640 caCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001641 }
1642 if (!profile.ipsecServerCert.isEmpty()) {
1643 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecServerCert);
Elliott Hughesd396a442013-06-28 16:24:48 -07001644 serverCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001645 }
1646 if (privateKey == null || userCert == null || caCert == null || serverCert == null) {
1647 throw new IllegalStateException("Cannot load credentials");
1648 }
1649
1650 // Prepare arguments for racoon.
1651 String[] racoon = null;
1652 switch (profile.type) {
1653 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
1654 racoon = new String[] {
1655 iface, profile.server, "udppsk", profile.ipsecIdentifier,
1656 profile.ipsecSecret, "1701",
1657 };
1658 break;
1659 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
1660 racoon = new String[] {
1661 iface, profile.server, "udprsa", privateKey, userCert,
1662 caCert, serverCert, "1701",
1663 };
1664 break;
1665 case VpnProfile.TYPE_IPSEC_XAUTH_PSK:
1666 racoon = new String[] {
1667 iface, profile.server, "xauthpsk", profile.ipsecIdentifier,
1668 profile.ipsecSecret, profile.username, profile.password, "", gateway,
1669 };
1670 break;
1671 case VpnProfile.TYPE_IPSEC_XAUTH_RSA:
1672 racoon = new String[] {
1673 iface, profile.server, "xauthrsa", privateKey, userCert,
1674 caCert, serverCert, profile.username, profile.password, "", gateway,
1675 };
1676 break;
1677 case VpnProfile.TYPE_IPSEC_HYBRID_RSA:
1678 racoon = new String[] {
1679 iface, profile.server, "hybridrsa",
1680 caCert, serverCert, profile.username, profile.password, "", gateway,
1681 };
1682 break;
1683 }
1684
1685 // Prepare arguments for mtpd.
1686 String[] mtpd = null;
1687 switch (profile.type) {
1688 case VpnProfile.TYPE_PPTP:
1689 mtpd = new String[] {
1690 iface, "pptp", profile.server, "1723",
1691 "name", profile.username, "password", profile.password,
1692 "linkname", "vpn", "refuse-eap", "nodefaultroute",
1693 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
1694 (profile.mppe ? "+mppe" : "nomppe"),
1695 };
1696 break;
1697 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
1698 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
1699 mtpd = new String[] {
1700 iface, "l2tp", profile.server, "1701", profile.l2tpSecret,
1701 "name", profile.username, "password", profile.password,
1702 "linkname", "vpn", "refuse-eap", "nodefaultroute",
1703 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
1704 };
1705 break;
1706 }
1707
1708 VpnConfig config = new VpnConfig();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001709 config.legacy = true;
Jeff Sharkey82f85212012-08-24 11:17:25 -07001710 config.user = profile.key;
1711 config.interfaze = iface;
1712 config.session = profile.name;
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001713
1714 config.addLegacyRoutes(profile.routes);
Jeff Sharkey82f85212012-08-24 11:17:25 -07001715 if (!profile.dnsServers.isEmpty()) {
1716 config.dnsServers = Arrays.asList(profile.dnsServers.split(" +"));
1717 }
1718 if (!profile.searchDomains.isEmpty()) {
1719 config.searchDomains = Arrays.asList(profile.searchDomains.split(" +"));
1720 }
Jeff Sharkey82f85212012-08-24 11:17:25 -07001721 startLegacyVpn(config, racoon, mtpd);
1722 }
1723
1724 private synchronized void startLegacyVpn(VpnConfig config, String[] racoon, String[] mtpd) {
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001725 stopLegacyVpnPrivileged();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001726
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001727 // Prepare for the new request.
1728 prepareInternal(VpnConfig.LEGACY_VPN);
Jeff Sharkey899223b2012-08-04 15:24:58 -07001729 updateState(DetailedState.CONNECTING, "startLegacyVpn");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001730
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001731 // Start a new LegacyVpnRunner and we are done!
Chia-chi Yeh100155a2011-07-03 16:52:38 -07001732 mLegacyVpnRunner = new LegacyVpnRunner(config, racoon, mtpd);
1733 mLegacyVpnRunner.start();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001734 }
1735
Jeff Davidsonb21298a2015-02-10 10:02:11 -08001736 /** Stop legacy VPN. Permissions must be checked by callers. */
1737 public synchronized void stopLegacyVpnPrivileged() {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001738 if (mLegacyVpnRunner != null) {
1739 mLegacyVpnRunner.exit();
1740 mLegacyVpnRunner = null;
1741
1742 synchronized (LegacyVpnRunner.TAG) {
1743 // wait for old thread to completely finish before spinning up
1744 // new instance, otherwise state updates can be out of order.
1745 }
1746 }
1747 }
1748
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001749 /**
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001750 * Return the information of the current ongoing legacy VPN.
1751 */
1752 public synchronized LegacyVpnInfo getLegacyVpnInfo() {
Chia-chi Yehdadc8572012-06-08 13:05:58 -07001753 // Check if the caller is authorized.
1754 enforceControlPermission();
sj.cha08bbca02015-03-23 11:35:24 +09001755 return getLegacyVpnInfoPrivileged();
1756 }
1757
1758 /**
1759 * Return the information of the current ongoing legacy VPN.
1760 * Callers are responsible for checking permissions if needed.
1761 */
1762 public synchronized LegacyVpnInfo getLegacyVpnInfoPrivileged() {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001763 if (mLegacyVpnRunner == null) return null;
1764
1765 final LegacyVpnInfo info = new LegacyVpnInfo();
Chad Brubakerc2865192013-07-10 14:46:23 -07001766 info.key = mConfig.user;
Jeff Sharkey899223b2012-08-04 15:24:58 -07001767 info.state = LegacyVpnInfo.stateFromNetworkInfo(mNetworkInfo);
Jeff Davidson90b1b9f2014-08-22 13:05:43 -07001768 if (mNetworkInfo.isConnected()) {
1769 info.intent = mStatusIntent;
1770 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001771 return info;
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001772 }
1773
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001774 public VpnConfig getLegacyVpnConfig() {
1775 if (mLegacyVpnRunner != null) {
Chad Brubakerc2865192013-07-10 14:46:23 -07001776 return mConfig;
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001777 } else {
1778 return null;
1779 }
1780 }
1781
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001782 /**
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001783 * Bringing up a VPN connection takes time, and that is all this thread
1784 * does. Here we have plenty of time. The only thing we need to take
1785 * care of is responding to interruptions as soon as possible. Otherwise
Chalard Jeandd59ece2017-12-20 13:23:32 +09001786 * requests will pile up. This could be done in a Handler as a state
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001787 * machine, but it is much easier to read in the current form.
1788 */
1789 private class LegacyVpnRunner extends Thread {
1790 private static final String TAG = "LegacyVpnRunner";
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001791
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001792 private final String[] mDaemons;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001793 private final String[][] mArguments;
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001794 private final LocalSocket[] mSockets;
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001795 private final String mOuterInterface;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001796 private final AtomicInteger mOuterConnection =
1797 new AtomicInteger(ConnectivityManager.TYPE_NONE);
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001798
Chalard Jeandd59ece2017-12-20 13:23:32 +09001799 private long mBringupStartTime = -1;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001800
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001801 /**
1802 * Watch for the outer connection (passing in the constructor) going away.
1803 */
1804 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
1805 @Override
1806 public void onReceive(Context context, Intent intent) {
Jeff Sharkey57666932013-04-30 17:01:57 -07001807 if (!mEnableTeardown) return;
1808
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001809 if (intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
1810 if (intent.getIntExtra(ConnectivityManager.EXTRA_NETWORK_TYPE,
1811 ConnectivityManager.TYPE_NONE) == mOuterConnection.get()) {
1812 NetworkInfo info = (NetworkInfo)intent.getExtra(
1813 ConnectivityManager.EXTRA_NETWORK_INFO);
1814 if (info != null && !info.isConnectedOrConnecting()) {
1815 try {
1816 mObserver.interfaceStatusChanged(mOuterInterface, false);
1817 } catch (RemoteException e) {}
1818 }
1819 }
1820 }
1821 }
1822 };
1823
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001824 public LegacyVpnRunner(VpnConfig config, String[] racoon, String[] mtpd) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001825 super(TAG);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001826 mConfig = config;
1827 mDaemons = new String[] {"racoon", "mtpd"};
Jeff Sharkey899223b2012-08-04 15:24:58 -07001828 // TODO: clear arguments from memory once launched
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001829 mArguments = new String[][] {racoon, mtpd};
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001830 mSockets = new LocalSocket[mDaemons.length];
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001831
1832 // This is the interface which VPN is running on,
1833 // mConfig.interfaze will change to point to OUR
1834 // internal interface soon. TODO - add inner/outer to mconfig
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001835 // TODO - we have a race - if the outer iface goes away/disconnects before we hit this
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001836 // we will leave the VPN up. We should check that it's still there/connected after
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001837 // registering
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001838 mOuterInterface = mConfig.interfaze;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001839
Paul Jensene75b9e32015-04-06 11:54:53 -04001840 if (!TextUtils.isEmpty(mOuterInterface)) {
1841 final ConnectivityManager cm = ConnectivityManager.from(mContext);
1842 for (Network network : cm.getAllNetworks()) {
1843 final LinkProperties lp = cm.getLinkProperties(network);
Lorenzo Colitti1b60d112015-07-02 13:03:03 +09001844 if (lp != null && lp.getAllInterfaceNames().contains(mOuterInterface)) {
Paul Jensene75b9e32015-04-06 11:54:53 -04001845 final NetworkInfo networkInfo = cm.getNetworkInfo(network);
1846 if (networkInfo != null) mOuterConnection.set(networkInfo.getType());
1847 }
1848 }
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001849 }
1850
1851 IntentFilter filter = new IntentFilter();
1852 filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
1853 mContext.registerReceiver(mBroadcastReceiver, filter);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001854 }
1855
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001856 public void check(String interfaze) {
Robert Greenwalt53c04bd2012-10-12 17:02:45 -07001857 if (interfaze.equals(mOuterInterface)) {
Chia-chi Yehaa1727f2011-07-14 18:55:33 -07001858 Log.i(TAG, "Legacy VPN is going down with " + interfaze);
1859 exit();
1860 }
1861 }
1862
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001863 public void exit() {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001864 // We assume that everything is reset after stopping the daemons.
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001865 interrupt();
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001866 agentDisconnect();
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07001867 try {
1868 mContext.unregisterReceiver(mBroadcastReceiver);
1869 } catch (IllegalArgumentException e) {}
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001870 }
1871
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001872 @Override
1873 public void run() {
1874 // Wait for the previous thread since it has been interrupted.
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001875 Log.v(TAG, "Waiting");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001876 synchronized (TAG) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001877 Log.v(TAG, "Executing");
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09001878 try {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001879 bringup();
1880 waitForDaemonsToStop();
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09001881 interrupted(); // Clear interrupt flag if execute called exit.
1882 } catch (InterruptedException e) {
1883 } finally {
1884 for (LocalSocket socket : mSockets) {
1885 IoUtils.closeQuietly(socket);
1886 }
1887 // This sleep is necessary for racoon to successfully complete sending delete
1888 // message to server.
1889 try {
1890 Thread.sleep(50);
1891 } catch (InterruptedException e) {
1892 }
1893 for (String daemon : mDaemons) {
1894 SystemService.stop(daemon);
1895 }
1896 }
1897 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001898 }
1899 }
1900
Chalard Jeandd59ece2017-12-20 13:23:32 +09001901 private void checkInterruptAndDelay(boolean sleepLonger) throws InterruptedException {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001902 long now = SystemClock.elapsedRealtime();
Chalard Jeandd59ece2017-12-20 13:23:32 +09001903 if (now - mBringupStartTime <= 60000) {
1904 Thread.sleep(sleepLonger ? 200 : 1);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001905 } else {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001906 updateState(DetailedState.FAILED, "checkpoint");
Chalard Jeandd59ece2017-12-20 13:23:32 +09001907 throw new IllegalStateException("VPN bringup took too long");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001908 }
1909 }
1910
Chalard Jeandd59ece2017-12-20 13:23:32 +09001911 private void bringup() {
1912 // Catch all exceptions so we can clean up a few things.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001913 boolean initFinished = false;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001914 try {
1915 // Initialize the timer.
Chalard Jeandd59ece2017-12-20 13:23:32 +09001916 mBringupStartTime = SystemClock.elapsedRealtime();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001917
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001918 // Wait for the daemons to stop.
1919 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001920 while (!SystemService.isStopped(daemon)) {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001921 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001922 }
1923 }
1924
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001925 // Clear the previous state.
1926 File state = new File("/data/misc/vpn/state");
1927 state.delete();
1928 if (state.exists()) {
1929 throw new IllegalStateException("Cannot delete the state");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001930 }
Chia-chi Yehc1872732011-12-08 16:51:41 -08001931 new File("/data/misc/vpn/abort").delete();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001932 initFinished = true;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001933
Chia-chi Yehe9107902011-07-02 01:48:50 -07001934 // Check if we need to restart any of the daemons.
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001935 boolean restart = false;
1936 for (String[] arguments : mArguments) {
1937 restart = restart || (arguments != null);
1938 }
1939 if (!restart) {
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04001940 agentDisconnect();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001941 return;
1942 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001943 updateState(DetailedState.CONNECTING, "execute");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001944
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001945 // Start the daemon with arguments.
1946 for (int i = 0; i < mDaemons.length; ++i) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001947 String[] arguments = mArguments[i];
1948 if (arguments == null) {
1949 continue;
1950 }
1951
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001952 // Start the daemon.
1953 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001954 SystemService.start(daemon);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001955
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001956 // Wait for the daemon to start.
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001957 while (!SystemService.isRunning(daemon)) {
Chalard Jeandd59ece2017-12-20 13:23:32 +09001958 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001959 }
1960
1961 // Create the control socket.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001962 mSockets[i] = new LocalSocket();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001963 LocalSocketAddress address = new LocalSocketAddress(
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001964 daemon, LocalSocketAddress.Namespace.RESERVED);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001965
1966 // Wait for the socket to connect.
1967 while (true) {
1968 try {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001969 mSockets[i].connect(address);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001970 break;
1971 } catch (Exception e) {
1972 // ignore
1973 }
Chalard Jeandd59ece2017-12-20 13:23:32 +09001974 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001975 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001976 mSockets[i].setSoTimeout(500);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001977
1978 // Send over the arguments.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001979 OutputStream out = mSockets[i].getOutputStream();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001980 for (String argument : arguments) {
Elliott Hughesd396a442013-06-28 16:24:48 -07001981 byte[] bytes = argument.getBytes(StandardCharsets.UTF_8);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001982 if (bytes.length >= 0xFFFF) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001983 throw new IllegalArgumentException("Argument is too large");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001984 }
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001985 out.write(bytes.length >> 8);
1986 out.write(bytes.length);
1987 out.write(bytes);
Chalard Jeandd59ece2017-12-20 13:23:32 +09001988 checkInterruptAndDelay(false);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001989 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001990 out.write(0xFF);
1991 out.write(0xFF);
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001992 out.flush();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001993
1994 // Wait for End-of-File.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001995 InputStream in = mSockets[i].getInputStream();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001996 while (true) {
1997 try {
1998 if (in.read() == -1) {
1999 break;
2000 }
2001 } catch (Exception e) {
2002 // ignore
2003 }
Chalard Jeandd59ece2017-12-20 13:23:32 +09002004 checkInterruptAndDelay(true);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002005 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002006 }
2007
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002008 // Wait for the daemons to create the new state.
2009 while (!state.exists()) {
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07002010 // Check if a running daemon is dead.
2011 for (int i = 0; i < mDaemons.length; ++i) {
2012 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07002013 if (mArguments[i] != null && !SystemService.isRunning(daemon)) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002014 throw new IllegalStateException(daemon + " is dead");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002015 }
2016 }
Chalard Jeandd59ece2017-12-20 13:23:32 +09002017 checkInterruptAndDelay(true);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002018 }
2019
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002020 // Now we are connected. Read and parse the new state.
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -08002021 String[] parameters = FileUtils.readTextFile(state, 0, null).split("\n", -1);
Lorenzo Colitti50262792014-09-19 01:53:35 +09002022 if (parameters.length != 7) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002023 throw new IllegalStateException("Cannot parse the state");
2024 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002025
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002026 // Set the interface and the addresses in the config.
2027 mConfig.interfaze = parameters[0].trim();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002028
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002029 mConfig.addLegacyAddresses(parameters[1]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002030 // Set the routes if they are not set in the config.
2031 if (mConfig.routes == null || mConfig.routes.isEmpty()) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002032 mConfig.addLegacyRoutes(parameters[2]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002033 }
2034
2035 // Set the DNS servers if they are not set in the config.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002036 if (mConfig.dnsServers == null || mConfig.dnsServers.size() == 0) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002037 String dnsServers = parameters[3].trim();
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002038 if (!dnsServers.isEmpty()) {
2039 mConfig.dnsServers = Arrays.asList(dnsServers.split(" "));
2040 }
2041 }
2042
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002043 // Set the search domains if they are not set in the config.
2044 if (mConfig.searchDomains == null || mConfig.searchDomains.size() == 0) {
2045 String searchDomains = parameters[4].trim();
2046 if (!searchDomains.isEmpty()) {
2047 mConfig.searchDomains = Arrays.asList(searchDomains.split(" "));
2048 }
2049 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07002050
Lorenzo Colitti50262792014-09-19 01:53:35 +09002051 // Add a throw route for the VPN server endpoint, if one was specified.
2052 String endpoint = parameters[5];
2053 if (!endpoint.isEmpty()) {
2054 try {
2055 InetAddress addr = InetAddress.parseNumericAddress(endpoint);
2056 if (addr instanceof Inet4Address) {
2057 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 32), RTN_THROW));
2058 } else if (addr instanceof Inet6Address) {
2059 mConfig.routes.add(new RouteInfo(new IpPrefix(addr, 128), RTN_THROW));
2060 } else {
2061 Log.e(TAG, "Unknown IP address family for VPN endpoint: " + endpoint);
2062 }
2063 } catch (IllegalArgumentException e) {
2064 Log.e(TAG, "Exception constructing throw route to " + endpoint + ": " + e);
2065 }
2066 }
2067
Chia-chi Yeh97a61562011-07-14 15:05:05 -07002068 // Here is the last step and it must be done synchronously.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002069 synchronized (Vpn.this) {
Vinit Deshapnde2b862e52013-10-02 11:50:39 -07002070 // Set the start time
2071 mConfig.startTime = SystemClock.elapsedRealtime();
2072
Chalard Jeandd59ece2017-12-20 13:23:32 +09002073 // Check if the thread was interrupted while we were waiting on the lock.
2074 checkInterruptAndDelay(false);
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002075
Chia-chi Yehe9107902011-07-02 01:48:50 -07002076 // Check if the interface is gone while we are waiting.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07002077 if (jniCheck(mConfig.interfaze) == 0) {
Chia-chi Yeh34e78132011-07-03 03:07:07 -07002078 throw new IllegalStateException(mConfig.interfaze + " is gone");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002079 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07002080
2081 // Now INetworkManagementEventObserver is watching our back.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07002082 mInterface = mConfig.interfaze;
Robin Lee4d03abc2016-05-09 12:32:27 +01002083 prepareStatusIntent();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002084
Paul Jensen6bc2c2c2014-05-07 15:27:40 -04002085 agentConnect();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002086
2087 Log.i(TAG, "Connected!");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07002088 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002089 } catch (Exception e) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07002090 Log.i(TAG, "Aborting", e);
Lorenzo Colitti43840602014-08-20 16:01:44 -07002091 updateState(DetailedState.FAILED, e.getMessage());
Chia-chi Yehe9107902011-07-02 01:48:50 -07002092 exit();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002093 }
2094 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07002095
2096 /**
Chalard Jeandd59ece2017-12-20 13:23:32 +09002097 * Check all daemons every two seconds. Return when one of them is stopped.
2098 * The caller will move to the disconnected state when this function returns,
2099 * which can happen if a daemon failed or if the VPN was torn down.
Jeff Sharkey899223b2012-08-04 15:24:58 -07002100 */
Chalard Jeandd59ece2017-12-20 13:23:32 +09002101 private void waitForDaemonsToStop() throws InterruptedException {
Jeff Sharkey899223b2012-08-04 15:24:58 -07002102 if (!mNetworkInfo.isConnected()) {
2103 return;
2104 }
Hisanobu Watanabe047454c2016-06-07 19:55:41 +09002105 while (true) {
2106 Thread.sleep(2000);
2107 for (int i = 0; i < mDaemons.length; i++) {
2108 if (mArguments[i] != null && SystemService.isStopped(mDaemons[i])) {
2109 return;
Jeff Sharkey899223b2012-08-04 15:24:58 -07002110 }
2111 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07002112 }
2113 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07002114 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07002115}