blob: 376414b5e5e83fe03041771e82701cd1ce5609c5 [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;
20
Chad Brubaker4ca19e82013-06-14 11:16:51 -070021import android.app.AppGlobals;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070022import android.app.Notification;
23import android.app.NotificationManager;
Jeff Sharkey899223b2012-08-04 15:24:58 -070024import android.app.PendingIntent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070025import android.content.BroadcastReceiver;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070026import android.content.ComponentName;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070027import android.content.Context;
28import android.content.Intent;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070029import android.content.IntentFilter;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070030import android.content.ServiceConnection;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070031import android.content.pm.ApplicationInfo;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070032import android.content.pm.IPackageManager;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070033import android.content.pm.PackageManager;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070034import android.content.pm.ResolveInfo;
Chad Brubakerc2865192013-07-10 14:46:23 -070035import android.content.pm.UserInfo;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070036import android.graphics.Bitmap;
37import android.graphics.Canvas;
38import android.graphics.drawable.Drawable;
Jeff Sharkey899223b2012-08-04 15:24:58 -070039import android.net.BaseNetworkStateTracker;
40import android.net.ConnectivityManager;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070041import android.net.IConnectivityManager;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070042import android.net.INetworkManagementEventObserver;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070043import android.net.LinkAddress;
Jeff Sharkey82f85212012-08-24 11:17:25 -070044import android.net.LinkProperties;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070045import android.net.LocalSocket;
46import android.net.LocalSocketAddress;
Jeff Sharkey899223b2012-08-04 15:24:58 -070047import android.net.NetworkInfo;
Chad Brubaker74f99a42014-03-13 18:18:40 +000048import android.net.NetworkUtils;
Jeff Sharkey82f85212012-08-24 11:17:25 -070049import android.net.RouteInfo;
Jeff Sharkey899223b2012-08-04 15:24:58 -070050import android.net.NetworkInfo.DetailedState;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070051import android.os.Binder;
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -080052import android.os.FileUtils;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070053import android.os.IBinder;
Jeff Sharkey899223b2012-08-04 15:24:58 -070054import android.os.INetworkManagementService;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -070055import android.os.Parcel;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070056import android.os.ParcelFileDescriptor;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070057import android.os.Process;
Jeff Sharkey899223b2012-08-04 15:24:58 -070058import android.os.RemoteException;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070059import android.os.SystemClock;
Jeff Sharkey088f29f2012-08-05 14:55:04 -070060import android.os.SystemService;
Dianne Hackborn50cdf7c32012-09-23 17:08:57 -070061import android.os.UserHandle;
Chad Brubakerc2865192013-07-10 14:46:23 -070062import android.os.UserManager;
Jeff Sharkey82f85212012-08-24 11:17:25 -070063import android.security.Credentials;
64import android.security.KeyStore;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070065import android.util.Log;
Chad Brubakerc2865192013-07-10 14:46:23 -070066import android.util.SparseBooleanArray;
Jeff Sharkey82f85212012-08-24 11:17:25 -070067import android.widget.Toast;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070068
Chad Brubakerc2865192013-07-10 14:46:23 -070069import com.android.internal.annotations.GuardedBy;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070070import com.android.internal.R;
Chia-chi Yeh2e467642011-07-04 03:23:12 -070071import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -070072import com.android.internal.net.VpnConfig;
Jeff Sharkey82f85212012-08-24 11:17:25 -070073import com.android.internal.net.VpnProfile;
Jeff Sharkey899223b2012-08-04 15:24:58 -070074import com.android.internal.util.Preconditions;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070075import com.android.server.ConnectivityService.VpnCallback;
Jeff Sharkey899223b2012-08-04 15:24:58 -070076import com.android.server.net.BaseNetworkObserver;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070077
Chia-chi Yeh97a61562011-07-14 15:05:05 -070078import java.io.File;
Chia-chi Yeh97a61562011-07-14 15:05:05 -070079import java.io.InputStream;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070080import java.io.OutputStream;
Chad Brubaker74f99a42014-03-13 18:18:40 +000081import java.net.InetAddress;
Jeff Sharkey82f85212012-08-24 11:17:25 -070082import java.net.Inet4Address;
83import java.net.InetAddress;
Elliott Hughesd396a442013-06-28 16:24:48 -070084import java.nio.charset.StandardCharsets;
Chia-chi Yeh41d16852011-07-01 02:12:06 -070085import java.util.Arrays;
Chad Brubaker4ca19e82013-06-14 11:16:51 -070086import java.util.List;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -070087import java.util.concurrent.atomic.AtomicInteger;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -070088
Jeff Sharkey065b2992012-08-05 14:16:48 -070089import libcore.io.IoUtils;
90
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070091/**
92 * @hide
93 */
Jeff Sharkey899223b2012-08-04 15:24:58 -070094public class Vpn extends BaseNetworkStateTracker {
95 private static final String TAG = "Vpn";
96 private static final boolean LOGD = true;
97
98 // TODO: create separate trackers for each unique VPN to support
99 // automated reconnection
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700100
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700101 private final VpnCallback mCallback;
102
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700103 private String mPackage = VpnConfig.LEGACY_VPN;
104 private String mInterface;
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700105 private Connection mConnection;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700106 private LegacyVpnRunner mLegacyVpnRunner;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700107 private PendingIntent mStatusIntent;
Jeff Sharkey57666932013-04-30 17:01:57 -0700108 private volatile boolean mEnableNotif = true;
109 private volatile boolean mEnableTeardown = true;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700110 private final IConnectivityManager mConnService;
Chad Brubakerc2865192013-07-10 14:46:23 -0700111 private VpnConfig mConfig;
112
113 /* list of users using this VPN. */
114 @GuardedBy("this")
115 private SparseBooleanArray mVpnUsers = null;
116 private BroadcastReceiver mUserIntentReceiver = null;
117
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700118 private final int mUserId;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700119
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700120 public Vpn(Context context, VpnCallback callback, INetworkManagementService netService,
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700121 IConnectivityManager connService, int userId) {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700122 // TODO: create dedicated TYPE_VPN network type
123 super(ConnectivityManager.TYPE_DUMMY);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700124 mContext = context;
125 mCallback = callback;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700126 mConnService = connService;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700127 mUserId = userId;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700128
129 try {
130 netService.registerObserver(mObserver);
131 } catch (RemoteException e) {
132 Log.wtf(TAG, "Problem registering observer", e);
133 }
Chad Brubakerc2865192013-07-10 14:46:23 -0700134 if (userId == UserHandle.USER_OWNER) {
135 // Owner's VPN also needs to handle restricted users
136 mUserIntentReceiver = new BroadcastReceiver() {
137 @Override
138 public void onReceive(Context context, Intent intent) {
139 final String action = intent.getAction();
140 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE,
141 UserHandle.USER_NULL);
142 if (userId == UserHandle.USER_NULL) return;
143
144 if (Intent.ACTION_USER_ADDED.equals(action)) {
145 onUserAdded(userId);
146 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
147 onUserRemoved(userId);
148 }
149 }
150 };
151
152 IntentFilter intentFilter = new IntentFilter();
153 intentFilter.addAction(Intent.ACTION_USER_ADDED);
154 intentFilter.addAction(Intent.ACTION_USER_REMOVED);
155 mContext.registerReceiverAsUser(
156 mUserIntentReceiver, UserHandle.ALL, intentFilter, null, null);
157 }
Jeff Sharkey899223b2012-08-04 15:24:58 -0700158 }
159
Jeff Sharkey57666932013-04-30 17:01:57 -0700160 /**
161 * Set if this object is responsible for showing its own notifications. When
162 * {@code false}, notifications are handled externally by someone else.
163 */
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700164 public void setEnableNotifications(boolean enableNotif) {
165 mEnableNotif = enableNotif;
166 }
167
Jeff Sharkey57666932013-04-30 17:01:57 -0700168 /**
169 * Set if this object is responsible for watching for {@link NetworkInfo}
170 * teardown. When {@code false}, teardown is handled externally by someone
171 * else.
172 */
173 public void setEnableTeardown(boolean enableTeardown) {
174 mEnableTeardown = enableTeardown;
175 }
176
Jeff Sharkey899223b2012-08-04 15:24:58 -0700177 @Override
178 protected void startMonitoringInternal() {
179 // Ignored; events are sent through callbacks for now
180 }
181
182 @Override
183 public boolean teardown() {
184 // TODO: finish migration to unique tracker for each VPN
185 throw new UnsupportedOperationException();
186 }
187
188 @Override
189 public boolean reconnect() {
190 // TODO: finish migration to unique tracker for each VPN
191 throw new UnsupportedOperationException();
192 }
193
194 @Override
195 public String getTcpBufferSizesPropName() {
196 return PROP_TCP_BUFFER_UNKNOWN;
197 }
198
199 /**
200 * Update current state, dispaching event to listeners.
201 */
202 private void updateState(DetailedState detailedState, String reason) {
203 if (LOGD) Log.d(TAG, "setting state=" + detailedState + ", reason=" + reason);
204 mNetworkInfo.setDetailedState(detailedState, reason, null);
205 mCallback.onStateChanged(new NetworkInfo(mNetworkInfo));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700206 }
207
208 /**
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700209 * Prepare for a VPN application. This method is designed to solve
210 * race conditions. It first compares the current prepared package
211 * with {@code oldPackage}. If they are the same, the prepared
212 * package is revoked and replaced with {@code newPackage}. If
213 * {@code oldPackage} is {@code null}, the comparison is omitted.
214 * If {@code newPackage} is the same package or {@code null}, the
215 * revocation is omitted. This method returns {@code true} if the
216 * operation is succeeded.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700217 *
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700218 * Legacy VPN is handled specially since it is not a real package.
219 * It uses {@link VpnConfig#LEGACY_VPN} as its package name, and
220 * it can be revoked by itself.
221 *
222 * @param oldPackage The package name of the old VPN application.
223 * @param newPackage The package name of the new VPN application.
224 * @return true if the operation is succeeded.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700225 */
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700226 public synchronized boolean prepare(String oldPackage, String newPackage) {
227 // Return false if the package does not match.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700228 if (oldPackage != null && !oldPackage.equals(mPackage)) {
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700229 return false;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700230 }
231
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700232 // Return true if we do not need to revoke.
233 if (newPackage == null ||
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700234 (newPackage.equals(mPackage) && !newPackage.equals(VpnConfig.LEGACY_VPN))) {
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700235 return true;
236 }
237
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700238 // Check if the caller is authorized.
239 enforceControlPermission();
Chia-chi Yehe9107902011-07-02 01:48:50 -0700240
Chia-chi Yehe9107902011-07-02 01:48:50 -0700241 // Reset the interface and hide the notification.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700242 if (mInterface != null) {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700243 final long token = Binder.clearCallingIdentity();
244 try {
245 mCallback.restore();
Chad Brubakerc2865192013-07-10 14:46:23 -0700246 final int size = mVpnUsers.size();
Robert Greenwalt69887e82013-09-24 11:05:57 -0700247 final boolean forwardDns = (mConfig.dnsServers != null &&
248 mConfig.dnsServers.size() != 0);
Chad Brubakerc2865192013-07-10 14:46:23 -0700249 for (int i = 0; i < size; i++) {
250 int user = mVpnUsers.keyAt(i);
Robert Greenwalt69887e82013-09-24 11:05:57 -0700251 mCallback.clearUserForwarding(mInterface, user, forwardDns);
Chad Brubakerc2865192013-07-10 14:46:23 -0700252 hideNotification(user);
253 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700254
255 mCallback.clearMarkedForwarding(mInterface);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700256 } finally {
257 Binder.restoreCallingIdentity(token);
258 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700259 jniReset(mInterface);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700260 mInterface = null;
Chad Brubakerc2865192013-07-10 14:46:23 -0700261 mVpnUsers = null;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700262 }
263
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700264 // Revoke the connection or stop LegacyVpnRunner.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700265 if (mConnection != null) {
266 try {
267 mConnection.mService.transact(IBinder.LAST_CALL_TRANSACTION,
268 Parcel.obtain(), null, IBinder.FLAG_ONEWAY);
269 } catch (Exception e) {
270 // ignore
271 }
272 mContext.unbindService(mConnection);
273 mConnection = null;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700274 } else if (mLegacyVpnRunner != null) {
275 mLegacyVpnRunner.exit();
276 mLegacyVpnRunner = null;
277 }
278
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700279 Log.i(TAG, "Switched from " + mPackage + " to " + newPackage);
280 mPackage = newPackage;
Chad Brubakerc2865192013-07-10 14:46:23 -0700281 mConfig = null;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700282 updateState(DetailedState.IDLE, "prepare");
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700283 return true;
Chia-chi Yehe9107902011-07-02 01:48:50 -0700284 }
285
286 /**
Chad Brubaker7c2b1622014-03-14 16:27:58 +0000287 * Protect a socket from VPN rules by binding it to the main routing table.
288 * The socket is NOT closed by this method.
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700289 *
290 * @param socket The socket to be bound.
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700291 */
Chad Brubaker7c2b1622014-03-14 16:27:58 +0000292 public void protect(ParcelFileDescriptor socket) throws Exception {
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700293
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700294 PackageManager pm = mContext.getPackageManager();
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700295 int appUid = pm.getPackageUid(mPackage, mUserId);
296 if (Binder.getCallingUid() != appUid) {
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700297 throw new SecurityException("Unauthorized Caller");
298 }
Chad Brubakerc2865192013-07-10 14:46:23 -0700299 // protect the socket from routing rules
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700300 final long token = Binder.clearCallingIdentity();
301 try {
302 mCallback.protect(socket);
303 } finally {
304 Binder.restoreCallingIdentity(token);
305 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700306
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700307 }
308
309 /**
Chia-chi Yehe9107902011-07-02 01:48:50 -0700310 * Establish a VPN network and return the file descriptor of the VPN
311 * interface. This methods returns {@code null} if the application is
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700312 * revoked or not prepared.
Chia-chi Yehe9107902011-07-02 01:48:50 -0700313 *
314 * @param config The parameters to configure the network.
315 * @return The file descriptor of the VPN interface.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700316 */
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700317 public synchronized ParcelFileDescriptor establish(VpnConfig config) {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700318 // Check if the caller is already prepared.
Chad Brubakerc2865192013-07-10 14:46:23 -0700319 UserManager mgr = UserManager.get(mContext);
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700320 PackageManager pm = mContext.getPackageManager();
321 ApplicationInfo app = null;
322 try {
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700323 app = AppGlobals.getPackageManager().getApplicationInfo(mPackage, 0, mUserId);
324 if (Binder.getCallingUid() != app.uid) {
325 return null;
326 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700327 } catch (Exception e) {
Chia-chi Yeh7b0b8342011-06-17 14:34:11 -0700328 return null;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700329 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700330 // Check if the service is properly declared.
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700331 Intent intent = new Intent(VpnConfig.SERVICE_INTERFACE);
332 intent.setClassName(mPackage, config.user);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700333 long token = Binder.clearCallingIdentity();
334 try {
Chad Brubakerc2865192013-07-10 14:46:23 -0700335 // Restricted users are not allowed to create VPNs, they are tied to Owner
336 UserInfo user = mgr.getUserInfo(mUserId);
337 if (user.isRestricted()) {
338 throw new SecurityException("Restricted users cannot establish VPNs");
339 }
340
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700341 ResolveInfo info = AppGlobals.getPackageManager().resolveService(intent,
342 null, 0, mUserId);
343 if (info == null) {
344 throw new SecurityException("Cannot find " + config.user);
345 }
346 if (!BIND_VPN_SERVICE.equals(info.serviceInfo.permission)) {
347 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
348 }
349 } catch (RemoteException e) {
350 throw new SecurityException("Cannot find " + config.user);
351 } finally {
352 Binder.restoreCallingIdentity(token);
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700353 }
Chia-chi Yehfcc1b412011-08-03 15:39:59 -0700354
Chad Brubaker850eb672014-03-21 21:02:47 +0000355 // Save the old config in case we need to go back.
356 VpnConfig oldConfig = mConfig;
357 String oldInterface = mInterface;
358 Connection oldConnection = mConnection;
359 SparseBooleanArray oldUsers = mVpnUsers;
360
Chia-chi Yehe9107902011-07-02 01:48:50 -0700361 // Configure the interface. Abort if any of these steps fails.
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700362 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700363 try {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700364 updateState(DetailedState.CONNECTING, "establish");
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700365 String interfaze = jniGetName(tun.getFd());
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700366
Chad Brubakerc2865192013-07-10 14:46:23 -0700367 // TEMP use the old jni calls until there is support for netd address setting
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700368 StringBuilder builder = new StringBuilder();
369 for (LinkAddress address : config.addresses) {
370 builder.append(" " + address);
371 }
372 if (jniSetAddresses(interfaze, builder.toString()) < 1) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700373 throw new IllegalArgumentException("At least one address must be specified");
374 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700375 Connection connection = new Connection();
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700376 if (!mContext.bindServiceAsUser(intent, connection, Context.BIND_AUTO_CREATE,
377 new UserHandle(mUserId))) {
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700378 throw new IllegalStateException("Cannot bind " + config.user);
379 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000380
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700381 mConnection = connection;
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700382 mInterface = interfaze;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700383
384 // Fill more values.
385 config.user = mPackage;
386 config.interfaze = mInterface;
Chad Brubakerc2865192013-07-10 14:46:23 -0700387 config.startTime = SystemClock.elapsedRealtime();
388 mConfig = config;
Chad Brubaker850eb672014-03-21 21:02:47 +0000389
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700390 // Set up forwarding and DNS rules.
Chad Brubakerc2865192013-07-10 14:46:23 -0700391 mVpnUsers = new SparseBooleanArray();
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700392 token = Binder.clearCallingIdentity();
393 try {
394 mCallback.setMarkedForwarding(mInterface);
Chad Brubaker850eb672014-03-21 21:02:47 +0000395 mCallback.setRoutes(mInterface, config.routes);
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700396 mCallback.override(mInterface, config.dnsServers, config.searchDomains);
Chad Brubakerc2865192013-07-10 14:46:23 -0700397 addVpnUserLocked(mUserId);
Chad Brubaker850eb672014-03-21 21:02:47 +0000398 // If we are owner assign all Restricted Users to this VPN
399 if (mUserId == UserHandle.USER_OWNER) {
400 for (UserInfo user : mgr.getUsers()) {
401 if (user.isRestricted()) {
402 try {
403 addVpnUserLocked(user.id);
404 } catch (Exception e) {
405 Log.wtf(TAG, "Failed to add user " + user.id + " to owner's VPN");
406 }
Chad Brubakerc2865192013-07-10 14:46:23 -0700407 }
408 }
409 }
410 } finally {
411 Binder.restoreCallingIdentity(token);
412 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000413
414 if (oldConnection != null) {
415 mContext.unbindService(oldConnection);
416 }
417 if (oldInterface != null && !oldInterface.equals(interfaze)) {
418 // Remove the old tun's user forwarding rules
419 // The new tun's user rules have already been added so they will take over
420 // as rules are deleted. This prevents data leakage as the rules are moved over.
421 token = Binder.clearCallingIdentity();
422 try {
423 final int size = oldUsers.size();
424 final boolean forwardDns = (oldConfig.dnsServers != null &&
425 oldConfig.dnsServers.size() != 0);
426 for (int i = 0; i < size; i++) {
427 int user = oldUsers.keyAt(i);
428 mCallback.clearUserForwarding(oldInterface, user, forwardDns);
429 }
430 mCallback.clearMarkedForwarding(oldInterface);
431 } finally {
432 Binder.restoreCallingIdentity(token);
433 }
434 jniReset(oldInterface);
435 }
436 } catch (RuntimeException e) {
437 updateState(DetailedState.FAILED, "establish");
438 IoUtils.closeQuietly(tun);
439 // make sure marked forwarding is cleared if it was set
440 token = Binder.clearCallingIdentity();
441 try {
442 mCallback.clearMarkedForwarding(mInterface);
443 } catch (Exception ingored) {
444 // ignored
445 } finally {
446 Binder.restoreCallingIdentity(token);
447 }
448 // restore old state
449 mConfig = oldConfig;
450 mConnection = oldConnection;
451 mVpnUsers = oldUsers;
452 mInterface = oldInterface;
453 throw e;
Chad Brubakerc2865192013-07-10 14:46:23 -0700454 }
Chad Brubaker850eb672014-03-21 21:02:47 +0000455 Log.i(TAG, "Established by " + config.user + " on " + mInterface);
456
Jeff Sharkey899223b2012-08-04 15:24:58 -0700457 // TODO: ensure that contract class eventually marks as connected
458 updateState(DetailedState.AUTHENTICATING, "establish");
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700459 return tun;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700460 }
461
Chad Brubaker74f99a42014-03-13 18:18:40 +0000462 /**
463 * Check if a given address is covered by the VPN's routing rules.
464 */
465 public boolean isAddressCovered(InetAddress address) {
466 synchronized (Vpn.this) {
467 if (!isRunningLocked()) {
468 return false;
469 }
470 return RouteInfo.selectBestRoute(mConfig.routes, address) != null;
471 }
472 }
473
Chad Brubakerc2865192013-07-10 14:46:23 -0700474 private boolean isRunningLocked() {
475 return mVpnUsers != null;
476 }
477
478 private void addVpnUserLocked(int user) {
479 enforceControlPermission();
480
481 if (!isRunningLocked()) {
482 throw new IllegalStateException("VPN is not active");
483 }
Robert Greenwalt69887e82013-09-24 11:05:57 -0700484
485 final boolean forwardDns = (mConfig.dnsServers != null &&
486 mConfig.dnsServers.size() != 0);
487
Chad Brubakerc2865192013-07-10 14:46:23 -0700488 // add the user
Robert Greenwalt69887e82013-09-24 11:05:57 -0700489 mCallback.addUserForwarding(mInterface, user, forwardDns);
Chad Brubakerc2865192013-07-10 14:46:23 -0700490 mVpnUsers.put(user, true);
491
492 // show the notification
493 if (!mPackage.equals(VpnConfig.LEGACY_VPN)) {
494 // Load everything for the user's notification
495 PackageManager pm = mContext.getPackageManager();
496 ApplicationInfo app = null;
497 try {
498 app = AppGlobals.getPackageManager().getApplicationInfo(mPackage, 0, mUserId);
499 } catch (RemoteException e) {
500 throw new IllegalStateException("Invalid application");
501 }
502 String label = app.loadLabel(pm).toString();
503 // Load the icon and convert it into a bitmap.
504 Drawable icon = app.loadIcon(pm);
505 Bitmap bitmap = null;
506 if (icon.getIntrinsicWidth() > 0 && icon.getIntrinsicHeight() > 0) {
507 int width = mContext.getResources().getDimensionPixelSize(
508 android.R.dimen.notification_large_icon_width);
509 int height = mContext.getResources().getDimensionPixelSize(
510 android.R.dimen.notification_large_icon_height);
511 icon.setBounds(0, 0, width, height);
512 bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
513 Canvas c = new Canvas(bitmap);
514 icon.draw(c);
515 c.setBitmap(null);
516 }
517 showNotification(label, bitmap, user);
518 } else {
519 showNotification(null, null, user);
520 }
521 }
522
523 private void removeVpnUserLocked(int user) {
524 enforceControlPermission();
525
526 if (!isRunningLocked()) {
527 throw new IllegalStateException("VPN is not active");
528 }
Robert Greenwalt69887e82013-09-24 11:05:57 -0700529 final boolean forwardDns = (mConfig.dnsServers != null &&
530 mConfig.dnsServers.size() != 0);
531 mCallback.clearUserForwarding(mInterface, user, forwardDns);
Chad Brubakerc2865192013-07-10 14:46:23 -0700532 mVpnUsers.delete(user);
533 hideNotification(user);
534 }
535
536 private void onUserAdded(int userId) {
537 // If the user is restricted tie them to the owner's VPN
538 synchronized(Vpn.this) {
539 UserManager mgr = UserManager.get(mContext);
540 UserInfo user = mgr.getUserInfo(userId);
541 if (user.isRestricted()) {
542 try {
543 addVpnUserLocked(userId);
544 } catch (Exception e) {
545 Log.wtf(TAG, "Failed to add restricted user to owner", e);
546 }
547 }
548 }
549 }
550
551 private void onUserRemoved(int userId) {
552 // clean up if restricted
553 synchronized(Vpn.this) {
554 UserManager mgr = UserManager.get(mContext);
555 UserInfo user = mgr.getUserInfo(userId);
556 if (user.isRestricted()) {
557 try {
558 removeVpnUserLocked(userId);
559 } catch (Exception e) {
560 Log.wtf(TAG, "Failed to remove restricted user to owner", e);
561 }
562 }
563 }
564 }
565
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -0700566 /**
567 * Return the configuration of the currently running VPN.
568 */
569 public VpnConfig getVpnConfig() {
570 enforceControlPermission();
571 return mConfig;
572 }
573
Jeff Sharkey899223b2012-08-04 15:24:58 -0700574 @Deprecated
575 public synchronized void interfaceStatusChanged(String iface, boolean up) {
576 try {
577 mObserver.interfaceStatusChanged(iface, up);
578 } catch (RemoteException e) {
579 // ignored; target is local
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700580 }
581 }
582
Jeff Sharkey899223b2012-08-04 15:24:58 -0700583 private INetworkManagementEventObserver mObserver = new BaseNetworkObserver() {
584 @Override
585 public void interfaceStatusChanged(String interfaze, boolean up) {
586 synchronized (Vpn.this) {
587 if (!up && mLegacyVpnRunner != null) {
588 mLegacyVpnRunner.check(interfaze);
589 }
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700590 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700591 }
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700592
Jeff Sharkey899223b2012-08-04 15:24:58 -0700593 @Override
594 public void interfaceRemoved(String interfaze) {
595 synchronized (Vpn.this) {
596 if (interfaze.equals(mInterface) && jniCheck(interfaze) == 0) {
597 final long token = Binder.clearCallingIdentity();
598 try {
Chad Brubakerc2865192013-07-10 14:46:23 -0700599 final int size = mVpnUsers.size();
Robert Greenwalt69887e82013-09-24 11:05:57 -0700600 final boolean forwardDns = (mConfig.dnsServers != null &&
601 mConfig.dnsServers.size() != 0);
Chad Brubakerc2865192013-07-10 14:46:23 -0700602 for (int i = 0; i < size; i++) {
603 int user = mVpnUsers.keyAt(i);
Robert Greenwalt69887e82013-09-24 11:05:57 -0700604 mCallback.clearUserForwarding(mInterface, user, forwardDns);
Chad Brubakerc2865192013-07-10 14:46:23 -0700605 hideNotification(user);
606 }
607 mVpnUsers = null;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700608 mCallback.clearMarkedForwarding(mInterface);
609
Jeff Sharkey899223b2012-08-04 15:24:58 -0700610 mCallback.restore();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700611 } finally {
612 Binder.restoreCallingIdentity(token);
613 }
614 mInterface = null;
615 if (mConnection != null) {
616 mContext.unbindService(mConnection);
617 mConnection = null;
618 updateState(DetailedState.DISCONNECTED, "interfaceRemoved");
619 } else if (mLegacyVpnRunner != null) {
620 mLegacyVpnRunner.exit();
621 mLegacyVpnRunner = null;
622 }
623 }
624 }
625 }
626 };
Haoyu Baidb3c8672012-06-20 14:29:57 -0700627
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700628 private void enforceControlPermission() {
629 // System user is allowed to control VPN.
630 if (Binder.getCallingUid() == Process.SYSTEM_UID) {
631 return;
632 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700633 int appId = UserHandle.getAppId(Binder.getCallingUid());
634 final long token = Binder.clearCallingIdentity();
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700635 try {
Nick Kralevich212a1952013-10-18 17:48:39 -0700636 // System VPN dialogs are also allowed to control VPN.
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700637 PackageManager pm = mContext.getPackageManager();
638 ApplicationInfo app = pm.getApplicationInfo(VpnConfig.DIALOGS_PACKAGE, 0);
Nick Kralevich212a1952013-10-18 17:48:39 -0700639 if (((app.flags & ApplicationInfo.FLAG_SYSTEM) != 0) && (appId == app.uid)) {
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700640 return;
641 }
642 } catch (Exception e) {
643 // ignore
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700644 } finally {
645 Binder.restoreCallingIdentity(token);
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700646 }
647
648 throw new SecurityException("Unauthorized Caller");
649 }
650
Chia-chi Yeh199ed6e2011-08-03 17:38:49 -0700651 private class Connection implements ServiceConnection {
652 private IBinder mService;
653
654 @Override
655 public void onServiceConnected(ComponentName name, IBinder service) {
656 mService = service;
657 }
658
659 @Override
660 public void onServiceDisconnected(ComponentName name) {
661 mService = null;
662 }
663 }
664
Chad Brubakerc2865192013-07-10 14:46:23 -0700665 private void showNotification(String label, Bitmap icon, int user) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700666 if (!mEnableNotif) return;
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -0700667 mStatusIntent = VpnConfig.getIntentForStatusPanel(mContext);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700668
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700669 NotificationManager nm = (NotificationManager)
670 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
671
672 if (nm != null) {
Chia-chi Yeha4b87b52011-06-30 23:21:55 -0700673 String title = (label == null) ? mContext.getString(R.string.vpn_title) :
674 mContext.getString(R.string.vpn_title_long, label);
Chad Brubakerc2865192013-07-10 14:46:23 -0700675 String text = (mConfig.session == null) ? mContext.getString(R.string.vpn_text) :
676 mContext.getString(R.string.vpn_text_long, mConfig.session);
Chia-chi Yeha4b87b52011-06-30 23:21:55 -0700677
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700678 Notification notification = new Notification.Builder(mContext)
679 .setSmallIcon(R.drawable.vpn_connected)
Chia-chi Yeha4b87b52011-06-30 23:21:55 -0700680 .setLargeIcon(icon)
681 .setContentTitle(title)
Chia-chi Yehf8905fd2011-06-14 16:35:02 -0700682 .setContentText(text)
Jeff Sharkey899223b2012-08-04 15:24:58 -0700683 .setContentIntent(mStatusIntent)
Chia-chi Yeh50fe7092012-01-11 14:26:24 -0800684 .setDefaults(0)
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700685 .setOngoing(true)
Jeff Sharkey899223b2012-08-04 15:24:58 -0700686 .build();
Chad Brubakerc2865192013-07-10 14:46:23 -0700687 nm.notifyAsUser(null, R.drawable.vpn_connected, notification, new UserHandle(user));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700688 }
689 }
690
Chad Brubakerc2865192013-07-10 14:46:23 -0700691 private void hideNotification(int user) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700692 if (!mEnableNotif) return;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700693 mStatusIntent = null;
694
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700695 NotificationManager nm = (NotificationManager)
696 mContext.getSystemService(Context.NOTIFICATION_SERVICE);
697
698 if (nm != null) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700699 nm.cancelAsUser(null, R.drawable.vpn_connected, new UserHandle(user));
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700700 }
701 }
702
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700703 private native int jniCreate(int mtu);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700704 private native String jniGetName(int tun);
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700705 private native int jniSetAddresses(String interfaze, String addresses);
706 private native int jniSetRoutes(String interfaze, String routes);
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -0700707 private native void jniReset(String interfaze);
708 private native int jniCheck(String interfaze);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700709
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900710 private static RouteInfo findIPv4DefaultRoute(LinkProperties prop) {
711 for (RouteInfo route : prop.getAllRoutes()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -0700712 // Currently legacy VPN only works on IPv4.
713 if (route.isDefaultRoute() && route.getGateway() instanceof Inet4Address) {
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900714 return route;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700715 }
716 }
Jeff Sharkey899223b2012-08-04 15:24:58 -0700717
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900718 throw new IllegalStateException("Unable to find IPv4 default gateway");
Jeff Sharkey82f85212012-08-24 11:17:25 -0700719 }
720
721 /**
722 * Start legacy VPN, controlling native daemons as needed. Creates a
723 * secondary thread to perform connection work, returning quickly.
724 */
725 public void startLegacyVpn(VpnProfile profile, KeyStore keyStore, LinkProperties egress) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -0800726 enforceControlPermission();
Kenny Rootb9594ce2013-02-14 10:18:38 -0800727 if (!keyStore.isUnlocked()) {
Jeff Sharkey82f85212012-08-24 11:17:25 -0700728 throw new IllegalStateException("KeyStore isn't unlocked");
729 }
730
Lorenzo Colitti41fb98c2013-06-28 17:26:21 +0900731 final RouteInfo ipv4DefaultRoute = findIPv4DefaultRoute(egress);
732 final String gateway = ipv4DefaultRoute.getGateway().getHostAddress();
733 final String iface = ipv4DefaultRoute.getInterface();
Jeff Sharkey82f85212012-08-24 11:17:25 -0700734
735 // Load certificates.
736 String privateKey = "";
737 String userCert = "";
738 String caCert = "";
739 String serverCert = "";
740 if (!profile.ipsecUserCert.isEmpty()) {
741 privateKey = Credentials.USER_PRIVATE_KEY + profile.ipsecUserCert;
742 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecUserCert);
Elliott Hughesd396a442013-06-28 16:24:48 -0700743 userCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700744 }
745 if (!profile.ipsecCaCert.isEmpty()) {
746 byte[] value = keyStore.get(Credentials.CA_CERTIFICATE + profile.ipsecCaCert);
Elliott Hughesd396a442013-06-28 16:24:48 -0700747 caCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700748 }
749 if (!profile.ipsecServerCert.isEmpty()) {
750 byte[] value = keyStore.get(Credentials.USER_CERTIFICATE + profile.ipsecServerCert);
Elliott Hughesd396a442013-06-28 16:24:48 -0700751 serverCert = (value == null) ? null : new String(value, StandardCharsets.UTF_8);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700752 }
753 if (privateKey == null || userCert == null || caCert == null || serverCert == null) {
754 throw new IllegalStateException("Cannot load credentials");
755 }
756
757 // Prepare arguments for racoon.
758 String[] racoon = null;
759 switch (profile.type) {
760 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
761 racoon = new String[] {
762 iface, profile.server, "udppsk", profile.ipsecIdentifier,
763 profile.ipsecSecret, "1701",
764 };
765 break;
766 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
767 racoon = new String[] {
768 iface, profile.server, "udprsa", privateKey, userCert,
769 caCert, serverCert, "1701",
770 };
771 break;
772 case VpnProfile.TYPE_IPSEC_XAUTH_PSK:
773 racoon = new String[] {
774 iface, profile.server, "xauthpsk", profile.ipsecIdentifier,
775 profile.ipsecSecret, profile.username, profile.password, "", gateway,
776 };
777 break;
778 case VpnProfile.TYPE_IPSEC_XAUTH_RSA:
779 racoon = new String[] {
780 iface, profile.server, "xauthrsa", privateKey, userCert,
781 caCert, serverCert, profile.username, profile.password, "", gateway,
782 };
783 break;
784 case VpnProfile.TYPE_IPSEC_HYBRID_RSA:
785 racoon = new String[] {
786 iface, profile.server, "hybridrsa",
787 caCert, serverCert, profile.username, profile.password, "", gateway,
788 };
789 break;
790 }
791
792 // Prepare arguments for mtpd.
793 String[] mtpd = null;
794 switch (profile.type) {
795 case VpnProfile.TYPE_PPTP:
796 mtpd = new String[] {
797 iface, "pptp", profile.server, "1723",
798 "name", profile.username, "password", profile.password,
799 "linkname", "vpn", "refuse-eap", "nodefaultroute",
800 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
801 (profile.mppe ? "+mppe" : "nomppe"),
802 };
803 break;
804 case VpnProfile.TYPE_L2TP_IPSEC_PSK:
805 case VpnProfile.TYPE_L2TP_IPSEC_RSA:
806 mtpd = new String[] {
807 iface, "l2tp", profile.server, "1701", profile.l2tpSecret,
808 "name", profile.username, "password", profile.password,
809 "linkname", "vpn", "refuse-eap", "nodefaultroute",
810 "usepeerdns", "idle", "1800", "mtu", "1400", "mru", "1400",
811 };
812 break;
813 }
814
815 VpnConfig config = new VpnConfig();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700816 config.legacy = true;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700817 config.user = profile.key;
818 config.interfaze = iface;
819 config.session = profile.name;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700820
821 config.addLegacyRoutes(profile.routes);
Jeff Sharkey82f85212012-08-24 11:17:25 -0700822 if (!profile.dnsServers.isEmpty()) {
823 config.dnsServers = Arrays.asList(profile.dnsServers.split(" +"));
824 }
825 if (!profile.searchDomains.isEmpty()) {
826 config.searchDomains = Arrays.asList(profile.searchDomains.split(" +"));
827 }
Jeff Sharkey82f85212012-08-24 11:17:25 -0700828 startLegacyVpn(config, racoon, mtpd);
829 }
830
831 private synchronized void startLegacyVpn(VpnConfig config, String[] racoon, String[] mtpd) {
832 stopLegacyVpn();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700833
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700834 // Prepare for the new request. This also checks the caller.
835 prepare(null, VpnConfig.LEGACY_VPN);
Jeff Sharkey899223b2012-08-04 15:24:58 -0700836 updateState(DetailedState.CONNECTING, "startLegacyVpn");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700837
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700838 // Start a new LegacyVpnRunner and we are done!
Chia-chi Yeh100155a2011-07-03 16:52:38 -0700839 mLegacyVpnRunner = new LegacyVpnRunner(config, racoon, mtpd);
840 mLegacyVpnRunner.start();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700841 }
842
Jeff Sharkey899223b2012-08-04 15:24:58 -0700843 public synchronized void stopLegacyVpn() {
844 if (mLegacyVpnRunner != null) {
845 mLegacyVpnRunner.exit();
846 mLegacyVpnRunner = null;
847
848 synchronized (LegacyVpnRunner.TAG) {
849 // wait for old thread to completely finish before spinning up
850 // new instance, otherwise state updates can be out of order.
851 }
852 }
853 }
854
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700855 /**
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700856 * Return the information of the current ongoing legacy VPN.
857 */
858 public synchronized LegacyVpnInfo getLegacyVpnInfo() {
Chia-chi Yehdadc8572012-06-08 13:05:58 -0700859 // Check if the caller is authorized.
860 enforceControlPermission();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700861 if (mLegacyVpnRunner == null) return null;
862
863 final LegacyVpnInfo info = new LegacyVpnInfo();
Chad Brubakerc2865192013-07-10 14:46:23 -0700864 info.key = mConfig.user;
Jeff Sharkey899223b2012-08-04 15:24:58 -0700865 info.state = LegacyVpnInfo.stateFromNetworkInfo(mNetworkInfo);
866 if (mNetworkInfo.isConnected()) {
867 info.intent = mStatusIntent;
868 }
869 return info;
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700870 }
871
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700872 public VpnConfig getLegacyVpnConfig() {
873 if (mLegacyVpnRunner != null) {
Chad Brubakerc2865192013-07-10 14:46:23 -0700874 return mConfig;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700875 } else {
876 return null;
877 }
878 }
879
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700880 /**
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700881 * Bringing up a VPN connection takes time, and that is all this thread
882 * does. Here we have plenty of time. The only thing we need to take
883 * care of is responding to interruptions as soon as possible. Otherwise
884 * requests will be piled up. This can be done in a Handler as a state
885 * machine, but it is much easier to read in the current form.
886 */
887 private class LegacyVpnRunner extends Thread {
888 private static final String TAG = "LegacyVpnRunner";
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700889
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -0700890 private final String[] mDaemons;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700891 private final String[][] mArguments;
Chia-chi Yeh5317f032011-08-22 13:09:49 -0700892 private final LocalSocket[] mSockets;
Robert Greenwalt53c04bd2012-10-12 17:02:45 -0700893 private final String mOuterInterface;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700894 private final AtomicInteger mOuterConnection =
895 new AtomicInteger(ConnectivityManager.TYPE_NONE);
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700896
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700897 private long mTimer = -1;
898
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700899 /**
900 * Watch for the outer connection (passing in the constructor) going away.
901 */
902 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
903 @Override
904 public void onReceive(Context context, Intent intent) {
Jeff Sharkey57666932013-04-30 17:01:57 -0700905 if (!mEnableTeardown) return;
906
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700907 if (intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
908 if (intent.getIntExtra(ConnectivityManager.EXTRA_NETWORK_TYPE,
909 ConnectivityManager.TYPE_NONE) == mOuterConnection.get()) {
910 NetworkInfo info = (NetworkInfo)intent.getExtra(
911 ConnectivityManager.EXTRA_NETWORK_INFO);
912 if (info != null && !info.isConnectedOrConnecting()) {
913 try {
914 mObserver.interfaceStatusChanged(mOuterInterface, false);
915 } catch (RemoteException e) {}
916 }
917 }
918 }
919 }
920 };
921
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700922 public LegacyVpnRunner(VpnConfig config, String[] racoon, String[] mtpd) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700923 super(TAG);
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700924 mConfig = config;
925 mDaemons = new String[] {"racoon", "mtpd"};
Jeff Sharkey899223b2012-08-04 15:24:58 -0700926 // TODO: clear arguments from memory once launched
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700927 mArguments = new String[][] {racoon, mtpd};
Chia-chi Yeh5317f032011-08-22 13:09:49 -0700928 mSockets = new LocalSocket[mDaemons.length];
Robert Greenwalt53c04bd2012-10-12 17:02:45 -0700929
930 // This is the interface which VPN is running on,
931 // mConfig.interfaze will change to point to OUR
932 // internal interface soon. TODO - add inner/outer to mconfig
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700933 // TODO - we have a race - if the outer iface goes away/disconnects before we hit this
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700934 // we will leave the VPN up. We should check that it's still there/connected after
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700935 // registering
Robert Greenwalt53c04bd2012-10-12 17:02:45 -0700936 mOuterInterface = mConfig.interfaze;
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700937
938 try {
939 mOuterConnection.set(
940 mConnService.findConnectionTypeForIface(mOuterInterface));
941 } catch (Exception e) {
942 mOuterConnection.set(ConnectivityManager.TYPE_NONE);
943 }
944
945 IntentFilter filter = new IntentFilter();
946 filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
947 mContext.registerReceiver(mBroadcastReceiver, filter);
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700948 }
949
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700950 public void check(String interfaze) {
Robert Greenwalt53c04bd2012-10-12 17:02:45 -0700951 if (interfaze.equals(mOuterInterface)) {
Chia-chi Yehaa1727f2011-07-14 18:55:33 -0700952 Log.i(TAG, "Legacy VPN is going down with " + interfaze);
953 exit();
954 }
955 }
956
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700957 public void exit() {
Chia-chi Yeh5317f032011-08-22 13:09:49 -0700958 // We assume that everything is reset after stopping the daemons.
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700959 interrupt();
Chia-chi Yeh5317f032011-08-22 13:09:49 -0700960 for (LocalSocket socket : mSockets) {
Jeff Sharkey065b2992012-08-05 14:16:48 -0700961 IoUtils.closeQuietly(socket);
Chia-chi Yeh41d16852011-07-01 02:12:06 -0700962 }
Jeff Sharkey899223b2012-08-04 15:24:58 -0700963 updateState(DetailedState.DISCONNECTED, "exit");
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -0700964 try {
965 mContext.unregisterReceiver(mBroadcastReceiver);
966 } catch (IllegalArgumentException e) {}
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700967 }
968
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700969 @Override
970 public void run() {
971 // Wait for the previous thread since it has been interrupted.
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700972 Log.v(TAG, "Waiting");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700973 synchronized (TAG) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700974 Log.v(TAG, "Executing");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700975 execute();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700976 monitorDaemons();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700977 }
978 }
979
980 private void checkpoint(boolean yield) throws InterruptedException {
981 long now = SystemClock.elapsedRealtime();
982 if (mTimer == -1) {
983 mTimer = now;
984 Thread.sleep(1);
Chia-chi Yeh7ef86112011-07-22 15:46:52 -0700985 } else if (now - mTimer <= 60000) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700986 Thread.sleep(yield ? 200 : 1);
987 } else {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700988 updateState(DetailedState.FAILED, "checkpoint");
Chia-chi Yeh97a61562011-07-14 15:05:05 -0700989 throw new IllegalStateException("Time is up");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700990 }
991 }
992
993 private void execute() {
994 // Catch all exceptions so we can clean up few things.
Jeff Sharkey899223b2012-08-04 15:24:58 -0700995 boolean initFinished = false;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -0700996 try {
997 // Initialize the timer.
998 checkpoint(false);
999
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001000 // Wait for the daemons to stop.
1001 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001002 while (!SystemService.isStopped(daemon)) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001003 checkpoint(true);
1004 }
1005 }
1006
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001007 // Clear the previous state.
1008 File state = new File("/data/misc/vpn/state");
1009 state.delete();
1010 if (state.exists()) {
1011 throw new IllegalStateException("Cannot delete the state");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001012 }
Chia-chi Yehc1872732011-12-08 16:51:41 -08001013 new File("/data/misc/vpn/abort").delete();
Jeff Sharkey899223b2012-08-04 15:24:58 -07001014 initFinished = true;
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001015
Chia-chi Yehe9107902011-07-02 01:48:50 -07001016 // Check if we need to restart any of the daemons.
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001017 boolean restart = false;
1018 for (String[] arguments : mArguments) {
1019 restart = restart || (arguments != null);
1020 }
1021 if (!restart) {
Jeff Sharkey899223b2012-08-04 15:24:58 -07001022 updateState(DetailedState.DISCONNECTED, "execute");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001023 return;
1024 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001025 updateState(DetailedState.CONNECTING, "execute");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001026
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001027 // Start the daemon with arguments.
1028 for (int i = 0; i < mDaemons.length; ++i) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001029 String[] arguments = mArguments[i];
1030 if (arguments == null) {
1031 continue;
1032 }
1033
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001034 // Start the daemon.
1035 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001036 SystemService.start(daemon);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001037
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001038 // Wait for the daemon to start.
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001039 while (!SystemService.isRunning(daemon)) {
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001040 checkpoint(true);
1041 }
1042
1043 // Create the control socket.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001044 mSockets[i] = new LocalSocket();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001045 LocalSocketAddress address = new LocalSocketAddress(
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001046 daemon, LocalSocketAddress.Namespace.RESERVED);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001047
1048 // Wait for the socket to connect.
1049 while (true) {
1050 try {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001051 mSockets[i].connect(address);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001052 break;
1053 } catch (Exception e) {
1054 // ignore
1055 }
1056 checkpoint(true);
1057 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001058 mSockets[i].setSoTimeout(500);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001059
1060 // Send over the arguments.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001061 OutputStream out = mSockets[i].getOutputStream();
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001062 for (String argument : arguments) {
Elliott Hughesd396a442013-06-28 16:24:48 -07001063 byte[] bytes = argument.getBytes(StandardCharsets.UTF_8);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001064 if (bytes.length >= 0xFFFF) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001065 throw new IllegalArgumentException("Argument is too large");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001066 }
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001067 out.write(bytes.length >> 8);
1068 out.write(bytes.length);
1069 out.write(bytes);
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001070 checkpoint(false);
1071 }
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001072 out.write(0xFF);
1073 out.write(0xFF);
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001074 out.flush();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001075
1076 // Wait for End-of-File.
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001077 InputStream in = mSockets[i].getInputStream();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001078 while (true) {
1079 try {
1080 if (in.read() == -1) {
1081 break;
1082 }
1083 } catch (Exception e) {
1084 // ignore
1085 }
1086 checkpoint(true);
1087 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001088 }
1089
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001090 // Wait for the daemons to create the new state.
1091 while (!state.exists()) {
Chia-chi Yeh1f7746b2011-07-01 00:29:06 -07001092 // Check if a running daemon is dead.
1093 for (int i = 0; i < mDaemons.length; ++i) {
1094 String daemon = mDaemons[i];
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001095 if (mArguments[i] != null && !SystemService.isRunning(daemon)) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001096 throw new IllegalStateException(daemon + " is dead");
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001097 }
1098 }
1099 checkpoint(true);
1100 }
1101
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001102 // Now we are connected. Read and parse the new state.
Chia-chi Yehc1bac3a2011-12-16 15:00:31 -08001103 String[] parameters = FileUtils.readTextFile(state, 0, null).split("\n", -1);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001104 if (parameters.length != 6) {
1105 throw new IllegalStateException("Cannot parse the state");
1106 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001107
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001108 // Set the interface and the addresses in the config.
1109 mConfig.interfaze = parameters[0].trim();
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001110
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001111 mConfig.addLegacyAddresses(parameters[1]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001112 // Set the routes if they are not set in the config.
1113 if (mConfig.routes == null || mConfig.routes.isEmpty()) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001114 mConfig.addLegacyRoutes(parameters[2]);
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001115 }
1116
1117 // Set the DNS servers if they are not set in the config.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001118 if (mConfig.dnsServers == null || mConfig.dnsServers.size() == 0) {
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001119 String dnsServers = parameters[3].trim();
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001120 if (!dnsServers.isEmpty()) {
1121 mConfig.dnsServers = Arrays.asList(dnsServers.split(" "));
1122 }
1123 }
1124
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001125 // Set the search domains if they are not set in the config.
1126 if (mConfig.searchDomains == null || mConfig.searchDomains.size() == 0) {
1127 String searchDomains = parameters[4].trim();
1128 if (!searchDomains.isEmpty()) {
1129 mConfig.searchDomains = Arrays.asList(searchDomains.split(" "));
1130 }
1131 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07001132
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001133 // Set the routes.
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001134 long token = Binder.clearCallingIdentity();
1135 try {
1136 mCallback.setMarkedForwarding(mConfig.interfaze);
1137 mCallback.setRoutes(mConfig.interfaze, mConfig.routes);
1138 } finally {
1139 Binder.restoreCallingIdentity(token);
1140 }
Chia-chi Yeh97a61562011-07-14 15:05:05 -07001141
1142 // Here is the last step and it must be done synchronously.
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001143 synchronized (Vpn.this) {
Vinit Deshapnde2b862e52013-10-02 11:50:39 -07001144 // Set the start time
1145 mConfig.startTime = SystemClock.elapsedRealtime();
1146
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001147 // Check if the thread is interrupted while we are waiting.
1148 checkpoint(false);
1149
Chia-chi Yehe9107902011-07-02 01:48:50 -07001150 // Check if the interface is gone while we are waiting.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001151 if (jniCheck(mConfig.interfaze) == 0) {
Chia-chi Yeh34e78132011-07-03 03:07:07 -07001152 throw new IllegalStateException(mConfig.interfaze + " is gone");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001153 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07001154
1155 // Now INetworkManagementEventObserver is watching our back.
Chia-chi Yehc2b8aa02011-07-03 18:00:47 -07001156 mInterface = mConfig.interfaze;
Chad Brubakerc2865192013-07-10 14:46:23 -07001157 mVpnUsers = new SparseBooleanArray();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001158
1159 token = Binder.clearCallingIdentity();
1160 try {
1161 mCallback.override(mInterface, mConfig.dnsServers, mConfig.searchDomains);
Chad Brubakerc2865192013-07-10 14:46:23 -07001162 addVpnUserLocked(mUserId);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001163 } finally {
1164 Binder.restoreCallingIdentity(token);
1165 }
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001166
Chad Brubakerc2865192013-07-10 14:46:23 -07001167 // Assign all restircted users to this VPN
1168 // (Legacy VPNs are Owner only)
1169 UserManager mgr = UserManager.get(mContext);
1170 token = Binder.clearCallingIdentity();
1171 try {
1172 for (UserInfo user : mgr.getUsers()) {
1173 if (user.isRestricted()) {
1174 try {
1175 addVpnUserLocked(user.id);
1176 } catch (Exception e) {
1177 Log.wtf(TAG, "Failed to add user " + user.id
1178 + " to owner's VPN");
1179 }
1180 }
1181 }
1182 } finally {
1183 Binder.restoreCallingIdentity(token);
1184 }
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001185 Log.i(TAG, "Connected!");
Jeff Sharkey899223b2012-08-04 15:24:58 -07001186 updateState(DetailedState.CONNECTED, "execute");
Chia-chi Yeh41d16852011-07-01 02:12:06 -07001187 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001188 } catch (Exception e) {
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001189 Log.i(TAG, "Aborting", e);
Chad Brubakerc2865192013-07-10 14:46:23 -07001190 // make sure the routing is cleared
Chad Brubaker4ca19e82013-06-14 11:16:51 -07001191 try {
1192 mCallback.clearMarkedForwarding(mConfig.interfaze);
1193 } catch (Exception ignored) {
1194 }
Chia-chi Yehe9107902011-07-02 01:48:50 -07001195 exit();
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001196 } finally {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001197 // Kill the daemons if they fail to stop.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001198 if (!initFinished) {
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001199 for (String daemon : mDaemons) {
Jeff Sharkey088f29f2012-08-05 14:55:04 -07001200 SystemService.stop(daemon);
Chia-chi Yeh5317f032011-08-22 13:09:49 -07001201 }
1202 }
1203
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001204 // Do not leave an unstable state.
Jeff Sharkey899223b2012-08-04 15:24:58 -07001205 if (!initFinished || mNetworkInfo.getDetailedState() == DetailedState.CONNECTING) {
1206 updateState(DetailedState.FAILED, "execute");
Chia-chi Yeh2e467642011-07-04 03:23:12 -07001207 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001208 }
1209 }
Jeff Sharkey899223b2012-08-04 15:24:58 -07001210
1211 /**
1212 * Monitor the daemons we started, moving to disconnected state if the
1213 * underlying services fail.
1214 */
1215 private void monitorDaemons() {
1216 if (!mNetworkInfo.isConnected()) {
1217 return;
1218 }
1219
1220 try {
1221 while (true) {
1222 Thread.sleep(2000);
1223 for (int i = 0; i < mDaemons.length; i++) {
1224 if (mArguments[i] != null && SystemService.isStopped(mDaemons[i])) {
1225 return;
1226 }
1227 }
1228 }
1229 } catch (InterruptedException e) {
1230 Log.d(TAG, "interrupted during monitorDaemons(); stopping services");
1231 } finally {
1232 for (String daemon : mDaemons) {
1233 SystemService.stop(daemon);
1234 }
1235
1236 updateState(DetailedState.DISCONNECTED, "babysit");
1237 }
1238 }
Chia-chi Yeh85a7ce02011-06-29 16:05:58 -07001239 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07001240}