blob: 1cb873e66cb48f99ffb89a9887c07b5952a45957 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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;
18
Jeff Sharkey1a303952011-06-16 13:04:20 -070019import static android.Manifest.permission.MANAGE_NETWORK_POLICY;
Haoyu Baidb3c8672012-06-20 14:29:57 -070020import static android.Manifest.permission.RECEIVE_DATA_ACTIVITY_CHANGE;
Jeff Sharkey961e3042011-08-29 16:02:57 -070021import static android.net.ConnectivityManager.CONNECTIVITY_ACTION;
22import static android.net.ConnectivityManager.CONNECTIVITY_ACTION_IMMEDIATE;
Jeff Sharkeyfb878b62012-07-26 18:32:30 -070023import static android.net.ConnectivityManager.TYPE_BLUETOOTH;
24import static android.net.ConnectivityManager.TYPE_DUMMY;
25import static android.net.ConnectivityManager.TYPE_ETHERNET;
26import static android.net.ConnectivityManager.TYPE_MOBILE;
27import static android.net.ConnectivityManager.TYPE_WIFI;
28import static android.net.ConnectivityManager.TYPE_WIMAX;
Hui Lu1c5624a2014-01-15 11:05:36 -050029import static android.net.ConnectivityManager.TYPE_PROXY;
Jeff Sharkeyfb878b62012-07-26 18:32:30 -070030import static android.net.ConnectivityManager.getNetworkTypeName;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070031import static android.net.ConnectivityManager.isNetworkTypeValid;
Robert Greenwalte049c232014-04-11 15:53:27 -070032import static android.net.ConnectivityServiceProtocol.NetworkFactoryProtocol;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070033import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070034import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070035
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -070036import android.app.AlarmManager;
Chad Brubakerc0234532014-02-14 13:24:29 -080037import android.app.AppOpsManager;
Wink Savilleab9321d2013-06-29 21:10:57 -070038import android.app.Notification;
39import android.app.NotificationManager;
40import android.app.PendingIntent;
Jaikumar Ganesh15c74392010-12-21 22:31:44 -080041import android.bluetooth.BluetoothTetheringDataTracker;
Wink Saville948282b2013-08-29 08:55:16 -070042import android.content.ActivityNotFoundException;
Jeff Sharkey69ddab42012-08-25 00:05:46 -070043import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.content.ContentResolver;
45import android.content.Context;
tk.mun148c7d02011-10-13 22:51:57 +090046import android.content.ContextWrapper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import android.content.Intent;
Jeff Sharkey69ddab42012-08-25 00:05:46 -070048import android.content.IntentFilter;
Chad Brubakerc0234532014-02-14 13:24:29 -080049import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import android.content.pm.PackageManager;
Chad Brubakerc0234532014-02-14 13:24:29 -080051import android.content.pm.PackageManager.NameNotFoundException;
Robert Greenwalte182bfe2013-07-16 12:06:09 -070052import android.content.res.Configuration;
tk.mun148c7d02011-10-13 22:51:57 +090053import android.content.res.Resources;
Robert Greenwalt434203a2010-10-11 16:00:27 -070054import android.database.ContentObserver;
Irfan Sheriffda6da092012-08-16 12:49:23 -070055import android.net.CaptivePortalTracker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056import android.net.ConnectivityManager;
Robert Greenwaltda3d5e62010-12-06 13:56:24 -080057import android.net.DummyDataStateTracker;
Benoit Goby19970692010-12-22 14:29:40 -080058import android.net.EthernetDataTracker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.net.IConnectivityManager;
Haoyu Baidb3c8672012-06-20 14:29:57 -070060import android.net.INetworkManagementEventObserver;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070061import android.net.INetworkPolicyListener;
62import android.net.INetworkPolicyManager;
Jeff Sharkey367d15a2011-09-22 14:59:51 -070063import android.net.INetworkStatsService;
Wink Savillec9822c52011-07-14 12:23:28 -070064import android.net.LinkAddress;
Jaikumar Ganesh15c74392010-12-21 22:31:44 -080065import android.net.LinkProperties;
Robert Greenwalt0a46db52011-07-14 14:28:05 -070066import android.net.LinkProperties.CompareResult;
Jeff Sharkeye4984be2013-09-10 21:03:27 -070067import android.net.LinkQualityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068import android.net.MobileDataStateTracker;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070069import android.net.Network;
Robert Greenwalte049c232014-04-11 15:53:27 -070070import android.net.NetworkCapabilities;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -070071import android.net.NetworkConfig;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072import android.net.NetworkInfo;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070073import android.net.NetworkInfo.DetailedState;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070074import android.net.NetworkQuotaInfo;
Robert Greenwalte049c232014-04-11 15:53:27 -070075import android.net.NetworkRequest;
Jeff Sharkeyd2a45872011-05-28 20:56:34 -070076import android.net.NetworkState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077import android.net.NetworkStateTracker;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070078import android.net.NetworkUtils;
Robert Greenwalt434203a2010-10-11 16:00:27 -070079import android.net.Proxy;
Hui Lu1c5624a2014-01-15 11:05:36 -050080import android.net.ProxyDataTracker;
Jason Monk207900c2014-04-25 15:00:09 -040081import android.net.ProxyInfo;
Robert Greenwaltaa70f102011-04-28 14:28:50 -070082import android.net.RouteInfo;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -070083import android.net.SamplingDataTracker;
Jason Monk602b2322013-07-03 17:04:33 -040084import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085import android.net.wifi.WifiStateTracker;
tk.mun148c7d02011-10-13 22:51:57 +090086import android.net.wimax.WimaxManagerConstants;
Wink Savilleab9321d2013-06-29 21:10:57 -070087import android.os.AsyncTask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088import android.os.Binder;
Wink Saville1d3a89e2013-10-31 06:35:22 -070089import android.os.Build;
Mike Lockwoodda8bb742011-05-28 13:24:04 -040090import android.os.FileUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091import android.os.Handler;
Wink Savillebb08caf2010-09-02 19:23:52 -070092import android.os.HandlerThread;
Robert Greenwalt42acef32009-08-12 16:08:25 -070093import android.os.IBinder;
Chia-chi Yehc9338302011-05-11 16:35:13 -070094import android.os.INetworkManagementService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095import android.os.Looper;
96import android.os.Message;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -070097import android.os.Messenger;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070098import android.os.ParcelFileDescriptor;
Robert Greenwalt14f2ef42010-06-15 12:19:37 -070099import android.os.PowerManager;
Jeff Sharkeyf56e2432012-09-06 17:54:29 -0700100import android.os.Process;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700101import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102import android.os.ServiceManager;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -0700103import android.os.SystemClock;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104import android.os.SystemProperties;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700105import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106import android.provider.Settings;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700107import android.security.Credentials;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700108import android.security.KeyStore;
Wink Savilleab9321d2013-06-29 21:10:57 -0700109import android.telephony.TelephonyManager;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700110import android.text.TextUtils;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800111import android.util.Slog;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700112import android.util.SparseArray;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700113import android.util.SparseIntArray;
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700114import android.util.Xml;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115
Wink Savilleab9321d2013-06-29 21:10:57 -0700116import com.android.internal.R;
Jason Monk602b2322013-07-03 17:04:33 -0400117import com.android.internal.annotations.GuardedBy;
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700118import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700119import com.android.internal.net.VpnConfig;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700120import com.android.internal.net.VpnProfile;
Wink Savilleab9321d2013-06-29 21:10:57 -0700121import com.android.internal.telephony.DctConstants;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700122import com.android.internal.telephony.Phone;
Wink Savillea639b312012-07-10 12:37:54 -0700123import com.android.internal.telephony.PhoneConstants;
Andrew Flynn0c3e1df2013-10-11 10:16:31 -0700124import com.android.internal.telephony.TelephonyIntents;
Robert Greenwalte049c232014-04-11 15:53:27 -0700125import com.android.internal.util.AsyncChannel;
Jeff Sharkeye6e61972012-09-14 13:47:51 -0700126import com.android.internal.util.IndentingPrintWriter;
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700127import com.android.internal.util.XmlUtils;
Jeff Sharkey1059c3c2011-10-04 16:54:49 -0700128import com.android.server.am.BatteryStatsService;
John Spurlockbf991a82013-06-24 14:20:23 -0400129import com.android.server.connectivity.DataConnectionStats;
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900130import com.android.server.connectivity.Nat464Xlat;
Jason Monk602b2322013-07-03 17:04:33 -0400131import com.android.server.connectivity.PacManager;
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800132import com.android.server.connectivity.Tethering;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700133import com.android.server.connectivity.Vpn;
Jeff Sharkey216c1812012-08-05 14:29:23 -0700134import com.android.server.net.BaseNetworkObserver;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700135import com.android.server.net.LockdownVpnTracker;
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700136import com.google.android.collect.Lists;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700137import com.google.android.collect.Sets;
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700138
tk.mun148c7d02011-10-13 22:51:57 +0900139import dalvik.system.DexClassLoader;
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700140
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700141import org.xmlpull.v1.XmlPullParser;
142import org.xmlpull.v1.XmlPullParserException;
143
144import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145import java.io.FileDescriptor;
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700146import java.io.FileNotFoundException;
147import java.io.FileReader;
Irfan Sheriffd649c122010-06-09 15:39:36 -0700148import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149import java.io.PrintWriter;
tk.mun148c7d02011-10-13 22:51:57 +0900150import java.lang.reflect.Constructor;
Wink Savilleab9321d2013-06-29 21:10:57 -0700151import java.net.HttpURLConnection;
Wink Savillec9822c52011-07-14 12:23:28 -0700152import java.net.Inet4Address;
Wink Savillee8222252011-07-13 13:44:13 -0700153import java.net.Inet6Address;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700154import java.net.InetAddress;
Wink Savilleab9321d2013-06-29 21:10:57 -0700155import java.net.URL;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700156import java.net.UnknownHostException;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700157import java.util.ArrayList;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700158import java.util.Arrays;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700159import java.util.Collection;
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700160import java.util.GregorianCalendar;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700161import java.util.HashMap;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700162import java.util.HashSet;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700163import java.util.List;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700164import java.util.Map;
Wink Savilleab9321d2013-06-29 21:10:57 -0700165import java.util.Random;
Wink Saville948282b2013-08-29 08:55:16 -0700166import java.util.concurrent.atomic.AtomicBoolean;
Wink Savilleab9321d2013-06-29 21:10:57 -0700167import java.util.concurrent.atomic.AtomicInteger;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168
Wink Saville1d3a89e2013-10-31 06:35:22 -0700169import javax.net.ssl.HostnameVerifier;
170import javax.net.ssl.HttpsURLConnection;
171import javax.net.ssl.SSLSession;
172
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700173import static android.net.ConnectivityManager.INVALID_NET_ID;
174
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175/**
176 * @hide
177 */
178public class ConnectivityService extends IConnectivityManager.Stub {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700179 private static final String TAG = "ConnectivityService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180
Robert Greenwaltba175a52010-10-05 19:12:26 -0700181 private static final boolean DBG = true;
Jake Hamby786e71a2014-02-06 14:43:50 -0800182 private static final boolean VDBG = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183
Jake Hamby786e71a2014-02-06 14:43:50 -0800184 private static final boolean LOGD_RULES = false;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700185
Jeff Sharkey899223b2012-08-04 15:24:58 -0700186 // TODO: create better separation between radio types and network types
187
Robert Greenwalt42acef32009-08-12 16:08:25 -0700188 // how long to wait before switching back to a radio's default network
189 private static final int RESTORE_DEFAULT_NETWORK_DELAY = 1 * 60 * 1000;
190 // system property that can override the above value
191 private static final String NETWORK_RESTORE_DELAY_PROP_NAME =
192 "android.telephony.apn-restore";
193
Wink Savilleab9321d2013-06-29 21:10:57 -0700194 // Default value if FAIL_FAST_TIME_MS is not set
195 private static final int DEFAULT_FAIL_FAST_TIME_MS = 1 * 60 * 1000;
196 // system property that can override DEFAULT_FAIL_FAST_TIME_MS
197 private static final String FAIL_FAST_TIME_MS =
198 "persist.radio.fail_fast_time_ms";
199
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700200 private static final String ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED =
201 "android.net.ConnectivityService.action.PKT_CNT_SAMPLE_INTERVAL_ELAPSED";
202
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -0700203 private static final int SAMPLE_INTERVAL_ELAPSED_REQUEST_CODE = 0;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700204
205 private PendingIntent mSampleIntervalElapsedIntent;
206
207 // Set network sampling interval at 12 minutes, this way, even if the timers get
208 // aggregated, it will fire at around 15 minutes, which should allow us to
209 // aggregate this timer with other timers (specially the socket keep alive timers)
210 private static final int DEFAULT_SAMPLING_INTERVAL_IN_SECONDS = (VDBG ? 30 : 12 * 60);
211
212 // start network sampling a minute after booting ...
213 private static final int DEFAULT_START_SAMPLING_INTERVAL_IN_SECONDS = (VDBG ? 30 : 60);
214
215 AlarmManager mAlarmManager;
216
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700217 // used in recursive route setting to add gateways for the host for which
218 // a host route was requested.
219 private static final int MAX_HOSTROUTE_CYCLE_COUNT = 10;
220
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800221 private Tethering mTethering;
222
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700223 private KeyStore mKeyStore;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700224
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700225 @GuardedBy("mVpns")
226 private final SparseArray<Vpn> mVpns = new SparseArray<Vpn>();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700227 private VpnCallback mVpnCallback = new VpnCallback();
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700228
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700229 private boolean mLockdownEnabled;
230 private LockdownVpnTracker mLockdownTracker;
231
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900232 private Nat464Xlat mClat;
233
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700234 /** Lock around {@link #mUidRules} and {@link #mMeteredIfaces}. */
235 private Object mRulesLock = new Object();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700236 /** Currently active network rules by UID. */
237 private SparseIntArray mUidRules = new SparseIntArray();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700238 /** Set of ifaces that are costly. */
239 private HashSet<String> mMeteredIfaces = Sets.newHashSet();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241 /**
242 * Sometimes we want to refer to the individual network state
243 * trackers separately, and sometimes we just want to treat them
244 * abstractly.
245 */
246 private NetworkStateTracker mNetTrackers[];
Robert Greenwalt42acef32009-08-12 16:08:25 -0700247
Irfan Sheriffda6da092012-08-16 12:49:23 -0700248 /* Handles captive portal check on a network */
249 private CaptivePortalTracker mCaptivePortalTracker;
250
Robert Greenwalt42acef32009-08-12 16:08:25 -0700251 /**
Wink Savillee8222252011-07-13 13:44:13 -0700252 * The link properties that define the current links
253 */
254 private LinkProperties mCurrentLinkProperties[];
255
256 /**
Robert Greenwalt42acef32009-08-12 16:08:25 -0700257 * A per Net list of the PID's that requested access to the net
258 * used both as a refcount and for per-PID DNS selection
259 */
Mattias Falk8b47b362011-08-23 14:15:13 +0200260 private List<Integer> mNetRequestersPids[];
Robert Greenwalt42acef32009-08-12 16:08:25 -0700261
Robert Greenwalt42acef32009-08-12 16:08:25 -0700262 // priority order of the nettrackers
263 // (excluding dynamically set mNetworkPreference)
264 // TODO - move mNetworkTypePreference into this
265 private int[] mPriorityList;
266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 private Context mContext;
268 private int mNetworkPreference;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700269 private int mActiveDefaultNetwork = -1;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -0700270 // 0 is full bad, 100 is full good
Wink Saville5b7573e2013-01-31 00:30:13 +0000271 private int mDefaultInetCondition = 0;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -0700272 private int mDefaultInetConditionPublished = 0;
273 private boolean mInetConditionChangeInFlight = false;
274 private int mDefaultConnectionSequence = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275
Chia-chi Yeh44bb2512011-07-14 18:01:57 -0700276 private Object mDnsLock = new Object();
Robert Greenwalt0dd19a82013-02-11 15:25:10 -0800277 private int mNumDnsEntries;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278
279 private boolean mTestMode;
Joe Onorato00092872010-09-01 21:18:22 -0700280 private static ConnectivityService sServiceInstance;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700282 private INetworkManagementService mNetd;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700283 private INetworkPolicyManager mPolicyManager;
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700284
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700285 private static final int ENABLED = 1;
286 private static final int DISABLED = 0;
287
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -0700288 private static final boolean ADD = true;
289 private static final boolean REMOVE = false;
290
291 private static final boolean TO_DEFAULT_TABLE = true;
292 private static final boolean TO_SECONDARY_TABLE = false;
293
Chad Brubakerf336d722013-07-15 16:34:04 -0700294 private static final boolean EXEMPT = true;
295 private static final boolean UNEXEMPT = false;
296
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700297 /**
298 * used internally as a delayed event to make us switch back to the
299 * default network
300 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700301 private static final int EVENT_RESTORE_DEFAULT_NETWORK = 1;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700302
303 /**
304 * used internally to change our mobile data enabled flag
305 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700306 private static final int EVENT_CHANGE_MOBILE_DATA_ENABLED = 2;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700307
308 /**
309 * used internally to change our network preference setting
310 * arg1 = networkType to prefer
311 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700312 private static final int EVENT_SET_NETWORK_PREFERENCE = 3;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700313
314 /**
315 * used internally to synchronize inet condition reports
316 * arg1 = networkType
317 * arg2 = condition (0 bad, 100 good)
318 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700319 private static final int EVENT_INET_CONDITION_CHANGE = 4;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700320
321 /**
322 * used internally to mark the end of inet condition hold periods
323 * arg1 = networkType
324 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700325 private static final int EVENT_INET_CONDITION_HOLD_END = 5;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700326
327 /**
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700328 * used internally to set enable/disable cellular data
329 * arg1 = ENBALED or DISABLED
330 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700331 private static final int EVENT_SET_MOBILE_DATA = 7;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700332
Robert Greenwaltf3331232010-09-24 14:32:21 -0700333 /**
334 * used internally to clear a wakelock when transitioning
335 * from one net to another
336 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700337 private static final int EVENT_CLEAR_NET_TRANSITION_WAKELOCK = 8;
Robert Greenwaltf3331232010-09-24 14:32:21 -0700338
Robert Greenwalt434203a2010-10-11 16:00:27 -0700339 /**
340 * used internally to reload global proxy settings
341 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700342 private static final int EVENT_APPLY_GLOBAL_HTTP_PROXY = 9;
Robert Greenwalt434203a2010-10-11 16:00:27 -0700343
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700344 /**
345 * used internally to set external dependency met/unmet
346 * arg1 = ENABLED (met) or DISABLED (unmet)
347 * arg2 = NetworkType
348 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700349 private static final int EVENT_SET_DEPENDENCY_MET = 10;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700350
Chia-chi Yeh44bb2512011-07-14 18:01:57 -0700351 /**
Wink Saville628b0852011-08-04 15:01:58 -0700352 * used internally to send a sticky broadcast delayed.
353 */
Chad Brubakerb98703e2013-07-23 17:44:41 -0700354 private static final int EVENT_SEND_STICKY_BROADCAST_INTENT = 11;
Wink Saville628b0852011-08-04 15:01:58 -0700355
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700356 /**
357 * Used internally to
358 * {@link NetworkStateTracker#setPolicyDataEnable(boolean)}.
359 */
Chad Brubakerb98703e2013-07-23 17:44:41 -0700360 private static final int EVENT_SET_POLICY_DATA_ENABLE = 12;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700361
Chad Brubakerb98703e2013-07-23 17:44:41 -0700362 private static final int EVENT_VPN_STATE_CHANGED = 13;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700363
Wink Savilleab9321d2013-06-29 21:10:57 -0700364 /**
365 * Used internally to disable fail fast of mobile data
366 */
Chad Brubakerb98703e2013-07-23 17:44:41 -0700367 private static final int EVENT_ENABLE_FAIL_FAST_MOBILE_DATA = 14;
Wink Savilleab9321d2013-06-29 21:10:57 -0700368
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700369 /**
370 * user internally to indicate that data sampling interval is up
371 */
372 private static final int EVENT_SAMPLE_INTERVAL_ELAPSED = 15;
373
Jason Monkdecd2952013-10-10 14:02:51 -0400374 /**
375 * PAC manager has received new port.
376 */
377 private static final int EVENT_PROXY_HAS_CHANGED = 16;
378
Robert Greenwalte049c232014-04-11 15:53:27 -0700379 /**
380 * used internally when registering NetworkFactories
381 * obj = Messenger
382 */
383 private static final int EVENT_REGISTER_NETWORK_FACTORY = 17;
384
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700385 /** Handler used for internal events. */
386 private InternalHandler mHandler;
387 /** Handler used for incoming {@link NetworkStateTracker} events. */
388 private NetworkStateTrackerHandler mTrackerHandler;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700389
390 // list of DeathRecipients used to make sure features are turned off when
391 // a process dies
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -0500392 private List<FeatureUser> mFeatureUsers;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700393
Mike Lockwood0f79b542009-08-14 14:18:49 -0400394 private boolean mSystemReady;
Dianne Hackborn1c633fc2009-12-08 19:45:14 -0800395 private Intent mInitialBroadcast;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400396
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700397 private PowerManager.WakeLock mNetTransitionWakeLock;
398 private String mNetTransitionWakeLockCausedBy = "";
399 private int mNetTransitionWakeLockSerialNumber;
400 private int mNetTransitionWakeLockTimeout;
401
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700402 private InetAddress mDefaultDns;
403
Chad Brubakerf336d722013-07-15 16:34:04 -0700404 // Lock for protecting access to mAddedRoutes and mExemptAddresses
405 private final Object mRoutesLock = new Object();
406
Robert Greenwalt0a46db52011-07-14 14:28:05 -0700407 // this collection is used to refcount the added routes - if there are none left
408 // it's time to remove the route from the route table
Chad Brubakerf336d722013-07-15 16:34:04 -0700409 @GuardedBy("mRoutesLock")
Robert Greenwalt0a46db52011-07-14 14:28:05 -0700410 private Collection<RouteInfo> mAddedRoutes = new ArrayList<RouteInfo>();
411
Chad Brubakerf336d722013-07-15 16:34:04 -0700412 // this collection corresponds to the entries of mAddedRoutes that have routing exemptions
413 // used to handle cleanup of exempt rules
414 @GuardedBy("mRoutesLock")
415 private Collection<LinkAddress> mExemptAddresses = new ArrayList<LinkAddress>();
416
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700417 // used in DBG mode to track inet condition reports
418 private static final int INET_CONDITION_LOG_MAX_SIZE = 15;
419 private ArrayList mInetLog;
420
Robert Greenwalt434203a2010-10-11 16:00:27 -0700421 // track the current default http proxy - tell the world if we get a new one (real change)
Jason Monk207900c2014-04-25 15:00:09 -0400422 private ProxyInfo mDefaultProxy = null;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -0700423 private Object mProxyLock = new Object();
Chia-chi Yeh4c12a472011-10-03 15:34:04 -0700424 private boolean mDefaultProxyDisabled = false;
425
Robert Greenwalt434203a2010-10-11 16:00:27 -0700426 // track the global proxy.
Jason Monk207900c2014-04-25 15:00:09 -0400427 private ProxyInfo mGlobalProxy = null;
Robert Greenwalt434203a2010-10-11 16:00:27 -0700428
Jason Monk602b2322013-07-03 17:04:33 -0400429 private PacManager mPacManager = null;
430
Robert Greenwalt434203a2010-10-11 16:00:27 -0700431 private SettingsObserver mSettingsObserver;
432
Chad Brubakerc0234532014-02-14 13:24:29 -0800433 private AppOpsManager mAppOpsManager;
434
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700435 NetworkConfig[] mNetConfigs;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700436 int mNetworksDefined;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700437
Robert Greenwalt511288a2009-12-07 11:33:18 -0800438 private static class RadioAttributes {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700439 public int mSimultaneity;
440 public int mType;
441 public RadioAttributes(String init) {
442 String fragments[] = init.split(",");
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700443 mType = Integer.parseInt(fragments[0]);
444 mSimultaneity = Integer.parseInt(fragments[1]);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700445 }
446 }
447 RadioAttributes[] mRadioAttributes;
448
Robert Greenwalt50393202011-06-21 17:26:14 -0700449 // the set of network types that can only be enabled by system/sig apps
450 List mProtectedNetworks;
451
John Spurlockbf991a82013-06-24 14:20:23 -0400452 private DataConnectionStats mDataConnectionStats;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700453
Wink Savilleab9321d2013-06-29 21:10:57 -0700454 private AtomicInteger mEnableFailFastMobileDataTag = new AtomicInteger(0);
455
456 TelephonyManager mTelephonyManager;
John Spurlockbf991a82013-06-24 14:20:23 -0400457
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700458 private final static int MIN_NET_ID = 10; // some reserved marks
459 private final static int MAX_NET_ID = 65535;
460 private int mNextNetId = MIN_NET_ID;
461
Jeff Sharkey367d15a2011-09-22 14:59:51 -0700462 public ConnectivityService(Context context, INetworkManagementService netd,
463 INetworkStatsService statsService, INetworkPolicyManager policyManager) {
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700464 // Currently, omitting a NetworkFactory will create one internally
465 // TODO: create here when we have cleaner WiMAX support
466 this(context, netd, statsService, policyManager, null);
467 }
468
Jeff Sharkey899223b2012-08-04 15:24:58 -0700469 public ConnectivityService(Context context, INetworkManagementService netManager,
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700470 INetworkStatsService statsService, INetworkPolicyManager policyManager,
471 NetworkFactory netFactory) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800472 if (DBG) log("ConnectivityService starting up");
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800473
Robert Greenwalte049c232014-04-11 15:53:27 -0700474 NetworkCapabilities netCap = new NetworkCapabilities();
475 netCap.addNetworkCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
476 netCap.addNetworkCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED);
477 NetworkRequest netRequest = new NetworkRequest(netCap);
478 mNetworkRequests.append(netRequest.requestId, netRequest);
479
Wink Savillebb08caf2010-09-02 19:23:52 -0700480 HandlerThread handlerThread = new HandlerThread("ConnectivityServiceThread");
481 handlerThread.start();
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700482 mHandler = new InternalHandler(handlerThread.getLooper());
483 mTrackerHandler = new NetworkStateTrackerHandler(handlerThread.getLooper());
Wink Savillebb08caf2010-09-02 19:23:52 -0700484
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700485 if (netFactory == null) {
486 netFactory = new DefaultNetworkFactory(context, mTrackerHandler);
487 }
488
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800489 // setup our unique device name
Robert Greenwalt733c6292010-12-06 09:30:17 -0800490 if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
491 String id = Settings.Secure.getString(context.getContentResolver(),
492 Settings.Secure.ANDROID_ID);
493 if (id != null && id.length() > 0) {
Irfan Sheriffa10a3ad2011-09-20 15:17:07 -0700494 String name = new String("android-").concat(id);
Robert Greenwalt733c6292010-12-06 09:30:17 -0800495 SystemProperties.set("net.hostname", name);
496 }
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800497 }
498
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700499 // read our default dns server ip
Jeff Sharkey625239a2012-09-26 22:03:49 -0700500 String dns = Settings.Global.getString(context.getContentResolver(),
501 Settings.Global.DEFAULT_DNS_SERVER);
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700502 if (dns == null || dns.length() == 0) {
503 dns = context.getResources().getString(
504 com.android.internal.R.string.config_default_dns_server);
505 }
506 try {
Robert Greenwalte5903732011-02-22 16:00:42 -0800507 mDefaultDns = NetworkUtils.numericToInetAddress(dns);
508 } catch (IllegalArgumentException e) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800509 loge("Error setting defaultDns using " + dns);
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700510 }
511
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700512 mContext = checkNotNull(context, "missing Context");
Jeff Sharkey899223b2012-08-04 15:24:58 -0700513 mNetd = checkNotNull(netManager, "missing INetworkManagementService");
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700514 mPolicyManager = checkNotNull(policyManager, "missing INetworkPolicyManager");
Jeff Sharkey82f85212012-08-24 11:17:25 -0700515 mKeyStore = KeyStore.getInstance();
Wink Savilleab9321d2013-06-29 21:10:57 -0700516 mTelephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700517
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700518 try {
519 mPolicyManager.registerListener(mPolicyListener);
520 } catch (RemoteException e) {
521 // ouch, no rules updates means some processes may never get network
Robert Greenwalt58d4c592011-08-02 17:18:41 -0700522 loge("unable to register INetworkPolicyListener" + e.toString());
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700523 }
524
525 final PowerManager powerManager = (PowerManager) context.getSystemService(
526 Context.POWER_SERVICE);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700527 mNetTransitionWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
528 mNetTransitionWakeLockTimeout = mContext.getResources().getInteger(
529 com.android.internal.R.integer.config_networkTransitionTimeout);
530
Robert Greenwalt42acef32009-08-12 16:08:25 -0700531 mNetTrackers = new NetworkStateTracker[
532 ConnectivityManager.MAX_NETWORK_TYPE+1];
Wink Savillee8222252011-07-13 13:44:13 -0700533 mCurrentLinkProperties = new LinkProperties[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700534
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700535 mRadioAttributes = new RadioAttributes[ConnectivityManager.MAX_RADIO_TYPE+1];
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700536 mNetConfigs = new NetworkConfig[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700537
Robert Greenwalt42acef32009-08-12 16:08:25 -0700538 // Load device network attributes from resources
Robert Greenwalt42acef32009-08-12 16:08:25 -0700539 String[] raStrings = context.getResources().getStringArray(
540 com.android.internal.R.array.radioAttributes);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700541 for (String raString : raStrings) {
542 RadioAttributes r = new RadioAttributes(raString);
Wink Saville5e56bc52013-07-29 15:00:57 -0700543 if (VDBG) log("raString=" + raString + " r=" + r);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700544 if (r.mType > ConnectivityManager.MAX_RADIO_TYPE) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800545 loge("Error in radioAttributes - ignoring attempt to define type " + r.mType);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700546 continue;
547 }
548 if (mRadioAttributes[r.mType] != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800549 loge("Error in radioAttributes - ignoring attempt to redefine type " +
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700550 r.mType);
551 continue;
552 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700553 mRadioAttributes[r.mType] = r;
554 }
555
Wink Saville51f456f2013-04-23 14:26:51 -0700556 // TODO: What is the "correct" way to do determine if this is a wifi only device?
557 boolean wifiOnly = SystemProperties.getBoolean("ro.radio.noril", false);
558 log("wifiOnly=" + wifiOnly);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700559 String[] naStrings = context.getResources().getStringArray(
560 com.android.internal.R.array.networkAttributes);
561 for (String naString : naStrings) {
562 try {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700563 NetworkConfig n = new NetworkConfig(naString);
Wink Saville5e56bc52013-07-29 15:00:57 -0700564 if (VDBG) log("naString=" + naString + " config=" + n);
Wink Saville975c8482011-04-07 14:23:45 -0700565 if (n.type > ConnectivityManager.MAX_NETWORK_TYPE) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800566 loge("Error in networkAttributes - ignoring attempt to define type " +
Wink Saville975c8482011-04-07 14:23:45 -0700567 n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700568 continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700569 }
Wink Saville51f456f2013-04-23 14:26:51 -0700570 if (wifiOnly && ConnectivityManager.isNetworkTypeMobile(n.type)) {
571 log("networkAttributes - ignoring mobile as this dev is wifiOnly " +
572 n.type);
573 continue;
574 }
Wink Saville975c8482011-04-07 14:23:45 -0700575 if (mNetConfigs[n.type] != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800576 loge("Error in networkAttributes - ignoring attempt to redefine type " +
Wink Saville975c8482011-04-07 14:23:45 -0700577 n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700578 continue;
579 }
Wink Saville975c8482011-04-07 14:23:45 -0700580 if (mRadioAttributes[n.radio] == null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800581 loge("Error in networkAttributes - ignoring attempt to use undefined " +
Wink Saville975c8482011-04-07 14:23:45 -0700582 "radio " + n.radio + " in network type " + n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700583 continue;
584 }
Wink Saville975c8482011-04-07 14:23:45 -0700585 mNetConfigs[n.type] = n;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700586 mNetworksDefined++;
587 } catch(Exception e) {
588 // ignore it - leave the entry null
Robert Greenwalt42acef32009-08-12 16:08:25 -0700589 }
590 }
Wink Saville5e56bc52013-07-29 15:00:57 -0700591 if (VDBG) log("mNetworksDefined=" + mNetworksDefined);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700592
Robert Greenwalt50393202011-06-21 17:26:14 -0700593 mProtectedNetworks = new ArrayList<Integer>();
594 int[] protectedNetworks = context.getResources().getIntArray(
595 com.android.internal.R.array.config_protectedNetworks);
596 for (int p : protectedNetworks) {
597 if ((mNetConfigs[p] != null) && (mProtectedNetworks.contains(p) == false)) {
598 mProtectedNetworks.add(p);
599 } else {
600 if (DBG) loge("Ignoring protectedNetwork " + p);
601 }
602 }
603
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700604 // high priority first
605 mPriorityList = new int[mNetworksDefined];
606 {
607 int insertionPoint = mNetworksDefined-1;
608 int currentLowest = 0;
609 int nextLowest = 0;
610 while (insertionPoint > -1) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700611 for (NetworkConfig na : mNetConfigs) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700612 if (na == null) continue;
Wink Saville975c8482011-04-07 14:23:45 -0700613 if (na.priority < currentLowest) continue;
614 if (na.priority > currentLowest) {
615 if (na.priority < nextLowest || nextLowest == 0) {
616 nextLowest = na.priority;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700617 }
618 continue;
619 }
Wink Saville975c8482011-04-07 14:23:45 -0700620 mPriorityList[insertionPoint--] = na.type;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700621 }
622 currentLowest = nextLowest;
623 nextLowest = 0;
624 }
625 }
626
Jianzheng Zhoudcf03f32012-11-16 13:45:20 +0800627 // Update mNetworkPreference according to user mannually first then overlay config.xml
628 mNetworkPreference = getPersistedNetworkPreference();
629 if (mNetworkPreference == -1) {
630 for (int n : mPriorityList) {
631 if (mNetConfigs[n].isDefault() && ConnectivityManager.isNetworkTypeValid(n)) {
632 mNetworkPreference = n;
633 break;
634 }
635 }
636 if (mNetworkPreference == -1) {
637 throw new IllegalStateException(
638 "You should set at least one default Network in config.xml!");
639 }
640 }
641
Mattias Falk8b47b362011-08-23 14:15:13 +0200642 mNetRequestersPids =
643 (List<Integer> [])new ArrayList[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700644 for (int i : mPriorityList) {
Mattias Falk8b47b362011-08-23 14:15:13 +0200645 mNetRequestersPids[i] = new ArrayList<Integer>();
Robert Greenwalt42acef32009-08-12 16:08:25 -0700646 }
647
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -0500648 mFeatureUsers = new ArrayList<FeatureUser>();
Robert Greenwalt42acef32009-08-12 16:08:25 -0700649
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700650 mTestMode = SystemProperties.get("cm.test.mode").equals("true")
651 && SystemProperties.get("ro.build.type").equals("eng");
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700652
653 // Create and start trackers for hard-coded networks
654 for (int targetNetworkType : mPriorityList) {
655 final NetworkConfig config = mNetConfigs[targetNetworkType];
656 final NetworkStateTracker tracker;
657 try {
658 tracker = netFactory.createTracker(targetNetworkType, config);
659 mNetTrackers[targetNetworkType] = tracker;
660 } catch (IllegalArgumentException e) {
661 Slog.e(TAG, "Problem creating " + getNetworkTypeName(targetNetworkType)
662 + " tracker: " + e);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700663 continue;
664 }
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700665
666 tracker.startMonitoring(context, mTrackerHandler);
667 if (config.isDefault()) {
668 tracker.reconnect();
Robert Greenwalt6537b022011-11-10 16:55:20 -0800669 }
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700670 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800671
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700672 mTethering = new Tethering(mContext, mNetd, statsService, this, mHandler.getLooper());
Robert Greenwaltc9d5fb72010-02-25 12:29:30 -0800673
Robert Greenwaltbfc76342013-07-19 14:30:49 -0700674 //set up the listener for user state for creating user VPNs
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700675 IntentFilter intentFilter = new IntentFilter();
676 intentFilter.addAction(Intent.ACTION_USER_STARTING);
677 intentFilter.addAction(Intent.ACTION_USER_STOPPING);
678 mContext.registerReceiverAsUser(
679 mUserIntentReceiver, UserHandle.ALL, intentFilter, null, null);
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900680 mClat = new Nat464Xlat(mContext, mNetd, this, mTrackerHandler);
681
Chia-chi Yeh008ff392011-05-23 15:08:29 -0700682 try {
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700683 mNetd.registerObserver(mTethering);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700684 mNetd.registerObserver(mDataActivityObserver);
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900685 mNetd.registerObserver(mClat);
Chia-chi Yeh008ff392011-05-23 15:08:29 -0700686 } catch (RemoteException e) {
687 loge("Error registering observer :" + e);
688 }
689
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700690 if (DBG) {
691 mInetLog = new ArrayList();
692 }
Robert Greenwalt434203a2010-10-11 16:00:27 -0700693
694 mSettingsObserver = new SettingsObserver(mHandler, EVENT_APPLY_GLOBAL_HTTP_PROXY);
695 mSettingsObserver.observe(mContext);
Robert Greenwaltb7090d62010-12-02 11:31:00 -0800696
John Spurlockbf991a82013-06-24 14:20:23 -0400697 mDataConnectionStats = new DataConnectionStats(mContext);
698 mDataConnectionStats.startMonitoring();
Jason Monk602b2322013-07-03 17:04:33 -0400699
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700700 // start network sampling ..
701 Intent intent = new Intent(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED, null);
702 mSampleIntervalElapsedIntent = PendingIntent.getBroadcast(mContext,
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -0700703 SAMPLE_INTERVAL_ELAPSED_REQUEST_CODE, intent, 0);
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700704
705 mAlarmManager = (AlarmManager)mContext.getSystemService(Context.ALARM_SERVICE);
706 setAlarm(DEFAULT_START_SAMPLING_INTERVAL_IN_SECONDS * 1000, mSampleIntervalElapsedIntent);
707
708 IntentFilter filter = new IntentFilter();
709 filter.addAction(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED);
710 mContext.registerReceiver(
711 new BroadcastReceiver() {
712 @Override
713 public void onReceive(Context context, Intent intent) {
714 String action = intent.getAction();
715 if (action.equals(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED)) {
716 mHandler.sendMessage(mHandler.obtainMessage
717 (EVENT_SAMPLE_INTERVAL_ELAPSED));
718 }
719 }
720 },
721 new IntentFilter(filter));
722
Jason Monkdecd2952013-10-10 14:02:51 -0400723 mPacManager = new PacManager(mContext, mHandler, EVENT_PROXY_HAS_CHANGED);
Wink Saville7788c612013-08-29 14:57:08 -0700724
725 filter = new IntentFilter();
Wink Saville948282b2013-08-29 08:55:16 -0700726 filter.addAction(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
727 mContext.registerReceiver(mProvisioningReceiver, filter);
Chad Brubakerc0234532014-02-14 13:24:29 -0800728
729 mAppOpsManager = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800730 }
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700731
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700732 private synchronized int nextNetId() {
733 int netId = mNextNetId;
734 if (++mNextNetId > MAX_NET_ID) mNextNetId = MIN_NET_ID;
735 return netId;
736 }
737
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700738 /**
739 * Factory that creates {@link NetworkStateTracker} instances using given
740 * {@link NetworkConfig}.
741 */
742 public interface NetworkFactory {
743 public NetworkStateTracker createTracker(int targetNetworkType, NetworkConfig config);
744 }
745
746 private static class DefaultNetworkFactory implements NetworkFactory {
747 private final Context mContext;
748 private final Handler mTrackerHandler;
749
750 public DefaultNetworkFactory(Context context, Handler trackerHandler) {
751 mContext = context;
752 mTrackerHandler = trackerHandler;
753 }
754
755 @Override
756 public NetworkStateTracker createTracker(int targetNetworkType, NetworkConfig config) {
757 switch (config.radio) {
758 case TYPE_WIFI:
759 return new WifiStateTracker(targetNetworkType, config.name);
760 case TYPE_MOBILE:
761 return new MobileDataStateTracker(targetNetworkType, config.name);
762 case TYPE_DUMMY:
763 return new DummyDataStateTracker(targetNetworkType, config.name);
764 case TYPE_BLUETOOTH:
765 return BluetoothTetheringDataTracker.getInstance();
766 case TYPE_WIMAX:
767 return makeWimaxStateTracker(mContext, mTrackerHandler);
768 case TYPE_ETHERNET:
769 return EthernetDataTracker.getInstance();
Hui Lu1c5624a2014-01-15 11:05:36 -0500770 case TYPE_PROXY:
771 return new ProxyDataTracker();
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700772 default:
773 throw new IllegalArgumentException(
774 "Trying to create a NetworkStateTracker for an unknown radio type: "
775 + config.radio);
776 }
777 }
778 }
779
780 /**
781 * Loads external WiMAX library and registers as system service, returning a
782 * {@link NetworkStateTracker} for WiMAX. Caller is still responsible for
783 * invoking {@link NetworkStateTracker#startMonitoring(Context, Handler)}.
784 */
785 private static NetworkStateTracker makeWimaxStateTracker(
786 Context context, Handler trackerHandler) {
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700787 // Initialize Wimax
tk.mun148c7d02011-10-13 22:51:57 +0900788 DexClassLoader wimaxClassLoader;
789 Class wimaxStateTrackerClass = null;
790 Class wimaxServiceClass = null;
791 Class wimaxManagerClass;
792 String wimaxJarLocation;
793 String wimaxLibLocation;
794 String wimaxManagerClassName;
795 String wimaxServiceClassName;
796 String wimaxStateTrackerClassName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800797
tk.mun148c7d02011-10-13 22:51:57 +0900798 NetworkStateTracker wimaxStateTracker = null;
799
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700800 boolean isWimaxEnabled = context.getResources().getBoolean(
tk.mun148c7d02011-10-13 22:51:57 +0900801 com.android.internal.R.bool.config_wimaxEnabled);
802
803 if (isWimaxEnabled) {
804 try {
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700805 wimaxJarLocation = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900806 com.android.internal.R.string.config_wimaxServiceJarLocation);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700807 wimaxLibLocation = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900808 com.android.internal.R.string.config_wimaxNativeLibLocation);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700809 wimaxManagerClassName = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900810 com.android.internal.R.string.config_wimaxManagerClassname);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700811 wimaxServiceClassName = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900812 com.android.internal.R.string.config_wimaxServiceClassname);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700813 wimaxStateTrackerClassName = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900814 com.android.internal.R.string.config_wimaxStateTrackerClassname);
815
Dianne Hackborn7ff30112012-11-08 11:12:09 -0800816 if (DBG) log("wimaxJarLocation: " + wimaxJarLocation);
tk.mun148c7d02011-10-13 22:51:57 +0900817 wimaxClassLoader = new DexClassLoader(wimaxJarLocation,
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700818 new ContextWrapper(context).getCacheDir().getAbsolutePath(),
tk.mun148c7d02011-10-13 22:51:57 +0900819 wimaxLibLocation, ClassLoader.getSystemClassLoader());
820
821 try {
822 wimaxManagerClass = wimaxClassLoader.loadClass(wimaxManagerClassName);
823 wimaxStateTrackerClass = wimaxClassLoader.loadClass(wimaxStateTrackerClassName);
824 wimaxServiceClass = wimaxClassLoader.loadClass(wimaxServiceClassName);
825 } catch (ClassNotFoundException ex) {
826 loge("Exception finding Wimax classes: " + ex.toString());
827 return null;
828 }
829 } catch(Resources.NotFoundException ex) {
830 loge("Wimax Resources does not exist!!! ");
831 return null;
832 }
833
834 try {
Dianne Hackborn7ff30112012-11-08 11:12:09 -0800835 if (DBG) log("Starting Wimax Service... ");
tk.mun148c7d02011-10-13 22:51:57 +0900836
837 Constructor wmxStTrkrConst = wimaxStateTrackerClass.getConstructor
838 (new Class[] {Context.class, Handler.class});
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700839 wimaxStateTracker = (NetworkStateTracker) wmxStTrkrConst.newInstance(
840 context, trackerHandler);
tk.mun148c7d02011-10-13 22:51:57 +0900841
842 Constructor wmxSrvConst = wimaxServiceClass.getDeclaredConstructor
843 (new Class[] {Context.class, wimaxStateTrackerClass});
844 wmxSrvConst.setAccessible(true);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700845 IBinder svcInvoker = (IBinder)wmxSrvConst.newInstance(context, wimaxStateTracker);
tk.mun148c7d02011-10-13 22:51:57 +0900846 wmxSrvConst.setAccessible(false);
847
848 ServiceManager.addService(WimaxManagerConstants.WIMAX_SERVICE, svcInvoker);
849
850 } catch(Exception ex) {
851 loge("Exception creating Wimax classes: " + ex.toString());
852 return null;
853 }
854 } else {
855 loge("Wimax is not enabled or not added to the network attributes!!! ");
856 return null;
857 }
858
859 return wimaxStateTracker;
860 }
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700861
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800862 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700863 * Sets the preferred network.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800864 * @param preference the new preference
865 */
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700866 public void setNetworkPreference(int preference) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800867 enforceChangePermission();
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700868
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700869 mHandler.sendMessage(
870 mHandler.obtainMessage(EVENT_SET_NETWORK_PREFERENCE, preference, 0));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800871 }
872
873 public int getNetworkPreference() {
874 enforceAccessPermission();
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700875 int preference;
876 synchronized(this) {
877 preference = mNetworkPreference;
878 }
879 return preference;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 }
881
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700882 private void handleSetNetworkPreference(int preference) {
883 if (ConnectivityManager.isNetworkTypeValid(preference) &&
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700884 mNetConfigs[preference] != null &&
885 mNetConfigs[preference].isDefault()) {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700886 if (mNetworkPreference != preference) {
887 final ContentResolver cr = mContext.getContentResolver();
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700888 Settings.Global.putInt(cr, Settings.Global.NETWORK_PREFERENCE, preference);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700889 synchronized(this) {
890 mNetworkPreference = preference;
891 }
892 enforcePreference();
893 }
894 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800895 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700896
Wink Saville628b0852011-08-04 15:01:58 -0700897 private int getConnectivityChangeDelay() {
898 final ContentResolver cr = mContext.getContentResolver();
899
900 /** Check system properties for the default value then use secure settings value, if any. */
901 int defaultDelay = SystemProperties.getInt(
Jeff Sharkey625239a2012-09-26 22:03:49 -0700902 "conn." + Settings.Global.CONNECTIVITY_CHANGE_DELAY,
903 ConnectivityManager.CONNECTIVITY_CHANGE_DELAY_DEFAULT);
904 return Settings.Global.getInt(cr, Settings.Global.CONNECTIVITY_CHANGE_DELAY,
Wink Saville628b0852011-08-04 15:01:58 -0700905 defaultDelay);
906 }
907
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800908 private int getPersistedNetworkPreference() {
909 final ContentResolver cr = mContext.getContentResolver();
910
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700911 final int networkPrefSetting = Settings.Global
912 .getInt(cr, Settings.Global.NETWORK_PREFERENCE, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800913
Jianzheng Zhoudcf03f32012-11-16 13:45:20 +0800914 return networkPrefSetting;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800915 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700916
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800917 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700918 * Make the state of network connectivity conform to the preference settings
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800919 * In this method, we only tear down a non-preferred network. Establishing
920 * a connection to the preferred network is taken care of when we handle
921 * the disconnect event from the non-preferred network
922 * (see {@link #handleDisconnect(NetworkInfo)}).
923 */
924 private void enforcePreference() {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700925 if (mNetTrackers[mNetworkPreference].getNetworkInfo().isConnected())
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800926 return;
927
Robert Greenwalt42acef32009-08-12 16:08:25 -0700928 if (!mNetTrackers[mNetworkPreference].isAvailable())
929 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930
Robert Greenwalt42acef32009-08-12 16:08:25 -0700931 for (int t=0; t <= ConnectivityManager.MAX_RADIO_TYPE; t++) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700932 if (t != mNetworkPreference && mNetTrackers[t] != null &&
Robert Greenwalt42acef32009-08-12 16:08:25 -0700933 mNetTrackers[t].getNetworkInfo().isConnected()) {
Robert Greenwaltec9fe462009-08-20 15:25:14 -0700934 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800935 log("tearing down " + mNetTrackers[t].getNetworkInfo() +
Robert Greenwaltec9fe462009-08-20 15:25:14 -0700936 " in enforcePreference");
937 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700938 teardown(mNetTrackers[t]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 }
940 }
941 }
942
943 private boolean teardown(NetworkStateTracker netTracker) {
944 if (netTracker.teardown()) {
945 netTracker.setTeardownRequested(true);
946 return true;
947 } else {
948 return false;
949 }
950 }
951
952 /**
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700953 * Check if UID should be blocked from using the network represented by the
954 * given {@link NetworkStateTracker}.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700955 */
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700956 private boolean isNetworkBlocked(NetworkStateTracker tracker, int uid) {
957 final String iface = tracker.getLinkProperties().getInterfaceName();
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700958
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700959 final boolean networkCostly;
960 final int uidRules;
961 synchronized (mRulesLock) {
962 networkCostly = mMeteredIfaces.contains(iface);
963 uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700964 }
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700965
966 if (networkCostly && (uidRules & RULE_REJECT_METERED) != 0) {
967 return true;
968 }
969
970 // no restrictive rules; network is visible
971 return false;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700972 }
973
974 /**
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700975 * Return a filtered {@link NetworkInfo}, potentially marked
976 * {@link DetailedState#BLOCKED} based on
977 * {@link #isNetworkBlocked(NetworkStateTracker, int)}.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700978 */
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700979 private NetworkInfo getFilteredNetworkInfo(NetworkStateTracker tracker, int uid) {
980 NetworkInfo info = tracker.getNetworkInfo();
981 if (isNetworkBlocked(tracker, uid)) {
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700982 // network is blocked; clone and override state
983 info = new NetworkInfo(info);
984 info.setDetailedState(DetailedState.BLOCKED, null, null);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700985 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700986 if (mLockdownTracker != null) {
987 info = mLockdownTracker.augmentNetworkInfo(info);
988 }
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700989 return info;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700990 }
991
992 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800993 * Return NetworkInfo for the active (i.e., connected) network interface.
994 * It is assumed that at most one network is active at a time. If more
995 * than one is active, it is indeterminate which will be returned.
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700996 * @return the info for the active network, or {@code null} if none is
997 * active
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800998 */
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700999 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001000 public NetworkInfo getActiveNetworkInfo() {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001001 enforceAccessPermission();
1002 final int uid = Binder.getCallingUid();
1003 return getNetworkInfo(mActiveDefaultNetwork, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001004 }
1005
Wink Saville948282b2013-08-29 08:55:16 -07001006 /**
1007 * Find the first Provisioning network.
1008 *
1009 * @return NetworkInfo or null if none.
1010 */
1011 private NetworkInfo getProvisioningNetworkInfo() {
1012 enforceAccessPermission();
1013
1014 // Find the first Provisioning Network
1015 NetworkInfo provNi = null;
1016 for (NetworkInfo ni : getAllNetworkInfo()) {
Wink Saville67c38212013-09-05 12:02:25 -07001017 if (ni.isConnectedToProvisioningNetwork()) {
Wink Saville948282b2013-08-29 08:55:16 -07001018 provNi = ni;
1019 break;
1020 }
1021 }
1022 if (DBG) log("getProvisioningNetworkInfo: X provNi=" + provNi);
1023 return provNi;
1024 }
1025
1026 /**
1027 * Find the first Provisioning network or the ActiveDefaultNetwork
1028 * if there is no Provisioning network
1029 *
1030 * @return NetworkInfo or null if none.
1031 */
1032 @Override
1033 public NetworkInfo getProvisioningOrActiveNetworkInfo() {
1034 enforceAccessPermission();
1035
1036 NetworkInfo provNi = getProvisioningNetworkInfo();
1037 if (provNi == null) {
1038 final int uid = Binder.getCallingUid();
1039 provNi = getNetworkInfo(mActiveDefaultNetwork, uid);
1040 }
1041 if (DBG) log("getProvisioningOrActiveNetworkInfo: X provNi=" + provNi);
1042 return provNi;
1043 }
1044
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001045 public NetworkInfo getActiveNetworkInfoUnfiltered() {
1046 enforceAccessPermission();
1047 if (isNetworkTypeValid(mActiveDefaultNetwork)) {
1048 final NetworkStateTracker tracker = mNetTrackers[mActiveDefaultNetwork];
1049 if (tracker != null) {
1050 return tracker.getNetworkInfo();
1051 }
1052 }
1053 return null;
1054 }
1055
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001056 @Override
1057 public NetworkInfo getActiveNetworkInfoForUid(int uid) {
1058 enforceConnectivityInternalPermission();
1059 return getNetworkInfo(mActiveDefaultNetwork, uid);
1060 }
1061
1062 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001063 public NetworkInfo getNetworkInfo(int networkType) {
1064 enforceAccessPermission();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001065 final int uid = Binder.getCallingUid();
1066 return getNetworkInfo(networkType, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001067 }
1068
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001069 private NetworkInfo getNetworkInfo(int networkType, int uid) {
1070 NetworkInfo info = null;
1071 if (isNetworkTypeValid(networkType)) {
1072 final NetworkStateTracker tracker = mNetTrackers[networkType];
1073 if (tracker != null) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001074 info = getFilteredNetworkInfo(tracker, uid);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001075 }
1076 }
1077 return info;
1078 }
1079
1080 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001081 public NetworkInfo[] getAllNetworkInfo() {
1082 enforceAccessPermission();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001083 final int uid = Binder.getCallingUid();
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001084 final ArrayList<NetworkInfo> result = Lists.newArrayList();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001085 synchronized (mRulesLock) {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001086 for (NetworkStateTracker tracker : mNetTrackers) {
1087 if (tracker != null) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001088 result.add(getFilteredNetworkInfo(tracker, uid));
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001089 }
1090 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001091 }
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001092 return result.toArray(new NetworkInfo[result.size()]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 }
1094
Robert Greenwalt9b2886e2011-08-31 11:46:42 -07001095 @Override
1096 public boolean isNetworkSupported(int networkType) {
1097 enforceAccessPermission();
1098 return (isNetworkTypeValid(networkType) && (mNetTrackers[networkType] != null));
1099 }
1100
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001101 /**
1102 * Return LinkProperties for the active (i.e., connected) default
1103 * network interface. It is assumed that at most one default network
1104 * is active at a time. If more than one is active, it is indeterminate
1105 * which will be returned.
1106 * @return the ip properties for the active network, or {@code null} if
1107 * none is active
1108 */
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001109 @Override
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001110 public LinkProperties getActiveLinkProperties() {
Robert Greenwalt59911582011-05-20 12:23:41 -07001111 return getLinkProperties(mActiveDefaultNetwork);
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001112 }
1113
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001114 @Override
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001115 public LinkProperties getLinkProperties(int networkType) {
1116 enforceAccessPermission();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001117 if (isNetworkTypeValid(networkType)) {
1118 final NetworkStateTracker tracker = mNetTrackers[networkType];
1119 if (tracker != null) {
1120 return tracker.getLinkProperties();
1121 }
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001122 }
1123 return null;
1124 }
1125
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001126 @Override
1127 public NetworkState[] getAllNetworkState() {
1128 enforceAccessPermission();
1129 final int uid = Binder.getCallingUid();
1130 final ArrayList<NetworkState> result = Lists.newArrayList();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001131 synchronized (mRulesLock) {
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001132 for (NetworkStateTracker tracker : mNetTrackers) {
1133 if (tracker != null) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001134 final NetworkInfo info = getFilteredNetworkInfo(tracker, uid);
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001135 result.add(new NetworkState(
Robert Greenwaltf9cb86a2014-04-08 17:34:00 -07001136 info, tracker.getLinkProperties(), tracker.getNetworkCapabilities()));
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001137 }
1138 }
1139 }
1140 return result.toArray(new NetworkState[result.size()]);
1141 }
1142
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001143 private NetworkState getNetworkStateUnchecked(int networkType) {
1144 if (isNetworkTypeValid(networkType)) {
1145 final NetworkStateTracker tracker = mNetTrackers[networkType];
1146 if (tracker != null) {
1147 return new NetworkState(tracker.getNetworkInfo(), tracker.getLinkProperties(),
Robert Greenwaltf9cb86a2014-04-08 17:34:00 -07001148 tracker.getNetworkCapabilities());
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001149 }
1150 }
1151 return null;
1152 }
1153
1154 @Override
1155 public NetworkQuotaInfo getActiveNetworkQuotaInfo() {
1156 enforceAccessPermission();
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001157
1158 final long token = Binder.clearCallingIdentity();
1159 try {
1160 final NetworkState state = getNetworkStateUnchecked(mActiveDefaultNetwork);
1161 if (state != null) {
1162 try {
1163 return mPolicyManager.getNetworkQuotaInfo(state);
1164 } catch (RemoteException e) {
1165 }
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001166 }
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001167 return null;
1168 } finally {
1169 Binder.restoreCallingIdentity(token);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001170 }
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001171 }
1172
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001173 @Override
1174 public boolean isActiveNetworkMetered() {
1175 enforceAccessPermission();
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001176 final long token = Binder.clearCallingIdentity();
1177 try {
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001178 return isNetworkMeteredUnchecked(mActiveDefaultNetwork);
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001179 } finally {
1180 Binder.restoreCallingIdentity(token);
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001181 }
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001182 }
1183
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001184 private boolean isNetworkMeteredUnchecked(int networkType) {
1185 final NetworkState state = getNetworkStateUnchecked(networkType);
1186 if (state != null) {
1187 try {
1188 return mPolicyManager.isNetworkMetered(state);
1189 } catch (RemoteException e) {
1190 }
1191 }
1192 return false;
1193 }
1194
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195 public boolean setRadios(boolean turnOn) {
1196 boolean result = true;
1197 enforceChangePermission();
1198 for (NetworkStateTracker t : mNetTrackers) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001199 if (t != null) result = t.setRadio(turnOn) && result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001200 }
1201 return result;
1202 }
1203
1204 public boolean setRadio(int netType, boolean turnOn) {
1205 enforceChangePermission();
1206 if (!ConnectivityManager.isNetworkTypeValid(netType)) {
1207 return false;
1208 }
1209 NetworkStateTracker tracker = mNetTrackers[netType];
1210 return tracker != null && tracker.setRadio(turnOn);
1211 }
1212
Jeff Sharkey216c1812012-08-05 14:29:23 -07001213 private INetworkManagementEventObserver mDataActivityObserver = new BaseNetworkObserver() {
1214 @Override
Ashish Sharma0535a9f2014-03-12 18:42:23 -07001215 public void interfaceClassDataActivityChanged(String label, boolean active, long tsNanos) {
Haoyu Baidb3c8672012-06-20 14:29:57 -07001216 int deviceType = Integer.parseInt(label);
Ashish Sharma0535a9f2014-03-12 18:42:23 -07001217 sendDataActivityBroadcast(deviceType, active, tsNanos);
Haoyu Baidb3c8672012-06-20 14:29:57 -07001218 }
Jeff Sharkey216c1812012-08-05 14:29:23 -07001219 };
Haoyu Baidb3c8672012-06-20 14:29:57 -07001220
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001221 /**
1222 * Used to notice when the calling process dies so we can self-expire
1223 *
1224 * Also used to know if the process has cleaned up after itself when
1225 * our auto-expire timer goes off. The timer has a link to an object.
1226 *
1227 */
Robert Greenwalt42acef32009-08-12 16:08:25 -07001228 private class FeatureUser implements IBinder.DeathRecipient {
1229 int mNetworkType;
1230 String mFeature;
1231 IBinder mBinder;
1232 int mPid;
1233 int mUid;
Robert Greenwaltb9285352009-12-21 18:24:07 -08001234 long mCreateTime;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001235
1236 FeatureUser(int type, String feature, IBinder binder) {
1237 super();
1238 mNetworkType = type;
1239 mFeature = feature;
1240 mBinder = binder;
1241 mPid = getCallingPid();
1242 mUid = getCallingUid();
Robert Greenwaltb9285352009-12-21 18:24:07 -08001243 mCreateTime = System.currentTimeMillis();
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001244
Robert Greenwalt42acef32009-08-12 16:08:25 -07001245 try {
1246 mBinder.linkToDeath(this, 0);
1247 } catch (RemoteException e) {
1248 binderDied();
1249 }
1250 }
1251
1252 void unlinkDeathRecipient() {
1253 mBinder.unlinkToDeath(this, 0);
1254 }
1255
1256 public void binderDied() {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001257 log("ConnectivityService FeatureUser binderDied(" +
Robert Greenwaltb9285352009-12-21 18:24:07 -08001258 mNetworkType + ", " + mFeature + ", " + mBinder + "), created " +
1259 (System.currentTimeMillis() - mCreateTime) + " mSec ago");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001260 stopUsingNetworkFeature(this, false);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001261 }
1262
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001263 public void expire() {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001264 if (VDBG) {
1265 log("ConnectivityService FeatureUser expire(" +
1266 mNetworkType + ", " + mFeature + ", " + mBinder +"), created " +
1267 (System.currentTimeMillis() - mCreateTime) + " mSec ago");
1268 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001269 stopUsingNetworkFeature(this, false);
1270 }
Robert Greenwaltb9285352009-12-21 18:24:07 -08001271
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001272 public boolean isSameUser(FeatureUser u) {
1273 if (u == null) return false;
1274
1275 return isSameUser(u.mPid, u.mUid, u.mNetworkType, u.mFeature);
1276 }
1277
1278 public boolean isSameUser(int pid, int uid, int networkType, String feature) {
1279 if ((mPid == pid) && (mUid == uid) && (mNetworkType == networkType) &&
1280 TextUtils.equals(mFeature, feature)) {
1281 return true;
1282 }
1283 return false;
1284 }
1285
Robert Greenwaltb9285352009-12-21 18:24:07 -08001286 public String toString() {
1287 return "FeatureUser("+mNetworkType+","+mFeature+","+mPid+","+mUid+"), created " +
1288 (System.currentTimeMillis() - mCreateTime) + " mSec ago";
1289 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001290 }
1291
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001292 // javadoc from interface
Robert Greenwalt42acef32009-08-12 16:08:25 -07001293 public int startUsingNetworkFeature(int networkType, String feature,
1294 IBinder binder) {
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001295 long startTime = 0;
1296 if (DBG) {
1297 startTime = SystemClock.elapsedRealtime();
1298 }
Wink Savillec9acde92011-09-21 11:05:43 -07001299 if (VDBG) {
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001300 log("startUsingNetworkFeature for net " + networkType + ": " + feature + ", uid="
1301 + Binder.getCallingUid());
Robert Greenwalt42acef32009-08-12 16:08:25 -07001302 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001303 enforceChangePermission();
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001304 try {
1305 if (!ConnectivityManager.isNetworkTypeValid(networkType) ||
1306 mNetConfigs[networkType] == null) {
Wink Savillea639b312012-07-10 12:37:54 -07001307 return PhoneConstants.APN_REQUEST_FAILED;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001308 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001309
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001310 FeatureUser f = new FeatureUser(networkType, feature, binder);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001311
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001312 // TODO - move this into individual networktrackers
1313 int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
Robert Greenwalt50393202011-06-21 17:26:14 -07001314
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001315 if (mLockdownEnabled) {
1316 // Since carrier APNs usually aren't available from VPN
1317 // endpoint, mark them as unavailable.
1318 return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
1319 }
1320
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001321 if (mProtectedNetworks.contains(usedNetworkType)) {
1322 enforceConnectivityInternalPermission();
1323 }
Robert Greenwalt50393202011-06-21 17:26:14 -07001324
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001325 // if UID is restricted, don't allow them to bring up metered APNs
1326 final boolean networkMetered = isNetworkMeteredUnchecked(usedNetworkType);
1327 final int uidRules;
1328 synchronized (mRulesLock) {
1329 uidRules = mUidRules.get(Binder.getCallingUid(), RULE_ALLOW_ALL);
1330 }
1331 if (networkMetered && (uidRules & RULE_REJECT_METERED) != 0) {
Wink Savillea639b312012-07-10 12:37:54 -07001332 return PhoneConstants.APN_REQUEST_FAILED;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001333 }
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001334
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001335 NetworkStateTracker network = mNetTrackers[usedNetworkType];
1336 if (network != null) {
1337 Integer currentPid = new Integer(getCallingPid());
1338 if (usedNetworkType != networkType) {
1339 NetworkInfo ni = network.getNetworkInfo();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001340
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001341 if (ni.isAvailable() == false) {
1342 if (!TextUtils.equals(feature,Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
1343 if (DBG) log("special network not available ni=" + ni.getTypeName());
Wink Savillea639b312012-07-10 12:37:54 -07001344 return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001345 } else {
1346 // else make the attempt anyway - probably giving REQUEST_STARTED below
1347 if (DBG) {
1348 log("special network not available, but try anyway ni=" +
1349 ni.getTypeName());
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001350 }
1351 }
1352 }
1353
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001354 int restoreTimer = getRestoreDefaultNetworkDelay(usedNetworkType);
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001355
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001356 synchronized(this) {
1357 boolean addToList = true;
1358 if (restoreTimer < 0) {
1359 // In case there is no timer is specified for the feature,
1360 // make sure we don't add duplicate entry with the same request.
1361 for (FeatureUser u : mFeatureUsers) {
1362 if (u.isSameUser(f)) {
1363 // Duplicate user is found. Do not add.
1364 addToList = false;
1365 break;
1366 }
1367 }
Robert Greenwalt8beff952011-12-13 15:26:02 -08001368 }
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001369
1370 if (addToList) mFeatureUsers.add(f);
1371 if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
1372 // this gets used for per-pid dns when connected
1373 mNetRequestersPids[usedNetworkType].add(currentPid);
1374 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001375 }
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001376
1377 if (restoreTimer >= 0) {
1378 mHandler.sendMessageDelayed(mHandler.obtainMessage(
1379 EVENT_RESTORE_DEFAULT_NETWORK, f), restoreTimer);
1380 }
1381
1382 if ((ni.isConnectedOrConnecting() == true) &&
1383 !network.isTeardownRequested()) {
1384 if (ni.isConnected() == true) {
1385 final long token = Binder.clearCallingIdentity();
1386 try {
1387 // add the pid-specific dns
1388 handleDnsConfigurationChange(usedNetworkType);
1389 if (VDBG) log("special network already active");
1390 } finally {
1391 Binder.restoreCallingIdentity(token);
1392 }
Wink Savillea639b312012-07-10 12:37:54 -07001393 return PhoneConstants.APN_ALREADY_ACTIVE;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001394 }
1395 if (VDBG) log("special network already connecting");
Wink Savillea639b312012-07-10 12:37:54 -07001396 return PhoneConstants.APN_REQUEST_STARTED;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001397 }
1398
1399 // check if the radio in play can make another contact
1400 // assume if cannot for now
1401
1402 if (DBG) {
1403 log("startUsingNetworkFeature reconnecting to " + networkType + ": " +
1404 feature);
1405 }
Mikael Hedegren342a7cb2012-12-14 15:52:52 +01001406 if (network.reconnect()) {
Wink Saville948282b2013-08-29 08:55:16 -07001407 if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_STARTED");
Mikael Hedegren342a7cb2012-12-14 15:52:52 +01001408 return PhoneConstants.APN_REQUEST_STARTED;
1409 } else {
Wink Saville948282b2013-08-29 08:55:16 -07001410 if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_FAILED");
Mikael Hedegren342a7cb2012-12-14 15:52:52 +01001411 return PhoneConstants.APN_REQUEST_FAILED;
1412 }
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001413 } else {
1414 // need to remember this unsupported request so we respond appropriately on stop
1415 synchronized(this) {
1416 mFeatureUsers.add(f);
1417 if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
1418 // this gets used for per-pid dns when connected
1419 mNetRequestersPids[usedNetworkType].add(currentPid);
1420 }
Robert Greenwalt0be1e982010-12-15 13:26:33 -08001421 }
Wink Saville948282b2013-08-29 08:55:16 -07001422 if (DBG) log("startUsingNetworkFeature X: return -1 unsupported feature.");
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001423 return -1;
Robert Greenwalt0be1e982010-12-15 13:26:33 -08001424 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001425 }
Wink Saville948282b2013-08-29 08:55:16 -07001426 if (DBG) log("startUsingNetworkFeature X: return APN_TYPE_NOT_AVAILABLE");
Wink Savillea639b312012-07-10 12:37:54 -07001427 return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001428 } finally {
1429 if (DBG) {
1430 final long execTime = SystemClock.elapsedRealtime() - startTime;
1431 if (execTime > 250) {
1432 loge("startUsingNetworkFeature took too long: " + execTime + "ms");
1433 } else {
1434 if (VDBG) log("startUsingNetworkFeature took " + execTime + "ms");
1435 }
1436 }
1437 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001438 }
1439
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001440 // javadoc from interface
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001441 public int stopUsingNetworkFeature(int networkType, String feature) {
Robert Greenwaltb8f16342009-10-06 17:52:40 -07001442 enforceChangePermission();
1443
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001444 int pid = getCallingPid();
1445 int uid = getCallingUid();
1446
1447 FeatureUser u = null;
1448 boolean found = false;
1449
1450 synchronized(this) {
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001451 for (FeatureUser x : mFeatureUsers) {
1452 if (x.isSameUser(pid, uid, networkType, feature)) {
1453 u = x;
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001454 found = true;
1455 break;
1456 }
1457 }
1458 }
1459 if (found && u != null) {
Wink Saville948282b2013-08-29 08:55:16 -07001460 if (VDBG) log("stopUsingNetworkFeature: X");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001461 // stop regardless of how many other time this proc had called start
1462 return stopUsingNetworkFeature(u, true);
1463 } else {
1464 // none found!
Wink Saville948282b2013-08-29 08:55:16 -07001465 if (VDBG) log("stopUsingNetworkFeature: X not a live request, ignoring");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001466 return 1;
1467 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001468 }
1469
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001470 private int stopUsingNetworkFeature(FeatureUser u, boolean ignoreDups) {
1471 int networkType = u.mNetworkType;
1472 String feature = u.mFeature;
1473 int pid = u.mPid;
1474 int uid = u.mUid;
1475
1476 NetworkStateTracker tracker = null;
1477 boolean callTeardown = false; // used to carry our decision outside of sync block
1478
Wink Savillec9acde92011-09-21 11:05:43 -07001479 if (VDBG) {
1480 log("stopUsingNetworkFeature: net " + networkType + ": " + feature);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001481 }
Robert Greenwaltb8f16342009-10-06 17:52:40 -07001482
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001483 if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
Wink Savillec9acde92011-09-21 11:05:43 -07001484 if (DBG) {
1485 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1486 ", net is invalid");
1487 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001488 return -1;
1489 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001490
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001491 // need to link the mFeatureUsers list with the mNetRequestersPids state in this
1492 // sync block
1493 synchronized(this) {
1494 // check if this process still has an outstanding start request
1495 if (!mFeatureUsers.contains(u)) {
Wink Savillec9acde92011-09-21 11:05:43 -07001496 if (VDBG) {
1497 log("stopUsingNetworkFeature: this process has no outstanding requests" +
1498 ", ignoring");
1499 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001500 return 1;
1501 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001502 u.unlinkDeathRecipient();
1503 mFeatureUsers.remove(mFeatureUsers.indexOf(u));
1504 // If we care about duplicate requests, check for that here.
1505 //
1506 // This is done to support the extension of a request - the app
1507 // can request we start the network feature again and renew the
1508 // auto-shutoff delay. Normal "stop" calls from the app though
1509 // do not pay attention to duplicate requests - in effect the
1510 // API does not refcount and a single stop will counter multiple starts.
1511 if (ignoreDups == false) {
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001512 for (FeatureUser x : mFeatureUsers) {
1513 if (x.isSameUser(u)) {
Wink Savillec9acde92011-09-21 11:05:43 -07001514 if (VDBG) log("stopUsingNetworkFeature: dup is found, ignoring");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001515 return 1;
1516 }
1517 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001518 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001519
repo syncaea743a2011-07-29 23:55:49 -07001520 // TODO - move to individual network trackers
1521 int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
1522
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001523 tracker = mNetTrackers[usedNetworkType];
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001524 if (tracker == null) {
Wink Savillec9acde92011-09-21 11:05:43 -07001525 if (DBG) {
1526 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1527 " no known tracker for used net type " + usedNetworkType);
1528 }
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001529 return -1;
1530 }
1531 if (usedNetworkType != networkType) {
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001532 Integer currentPid = new Integer(pid);
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001533 mNetRequestersPids[usedNetworkType].remove(currentPid);
Robert Greenwalt9055ae32013-02-12 17:18:25 -08001534
1535 final long token = Binder.clearCallingIdentity();
1536 try {
1537 reassessPidDns(pid, true);
1538 } finally {
1539 Binder.restoreCallingIdentity(token);
1540 }
Mattias Falk8b47b362011-08-23 14:15:13 +02001541 flushVmDnsCache();
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001542 if (mNetRequestersPids[usedNetworkType].size() != 0) {
Wink Savillec9acde92011-09-21 11:05:43 -07001543 if (VDBG) {
1544 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1545 " others still using it");
1546 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001547 return 1;
1548 }
1549 callTeardown = true;
Robert Greenwalt19b9ab42011-01-10 11:58:31 -08001550 } else {
Wink Savillec9acde92011-09-21 11:05:43 -07001551 if (DBG) {
1552 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1553 " not a known feature - dropping");
1554 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001555 }
1556 }
Wink Savillec9acde92011-09-21 11:05:43 -07001557
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001558 if (callTeardown) {
Wink Savillec9acde92011-09-21 11:05:43 -07001559 if (DBG) {
1560 log("stopUsingNetworkFeature: teardown net " + networkType + ": " + feature);
1561 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001562 tracker.teardown();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001563 return 1;
1564 } else {
Robert Greenwalt02648a42010-05-18 10:52:51 -07001565 return -1;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001566 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001567 }
1568
1569 /**
Chad Brubakerc0234532014-02-14 13:24:29 -08001570 * Check if the address falls into any of currently running VPN's route's.
1571 */
1572 private boolean isAddressUnderVpn(InetAddress address) {
1573 synchronized (mVpns) {
1574 synchronized (mRoutesLock) {
1575 int uid = UserHandle.getCallingUserId();
1576 Vpn vpn = mVpns.get(uid);
1577 if (vpn == null) {
1578 return false;
1579 }
1580
1581 // Check if an exemption exists for this address.
1582 for (LinkAddress destination : mExemptAddresses) {
1583 if (!NetworkUtils.addressTypeMatches(address, destination.getAddress())) {
1584 continue;
1585 }
1586
1587 int prefix = destination.getNetworkPrefixLength();
1588 InetAddress addrMasked = NetworkUtils.getNetworkPart(address, prefix);
1589 InetAddress destMasked = NetworkUtils.getNetworkPart(destination.getAddress(),
1590 prefix);
1591
1592 if (addrMasked.equals(destMasked)) {
1593 return false;
1594 }
1595 }
1596
1597 // Finally check if the address is covered by the VPN.
1598 return vpn.isAddressCovered(address);
1599 }
1600 }
1601 }
1602
1603 /**
Robert Greenwalt585ac0f2010-08-27 09:24:29 -07001604 * @deprecated use requestRouteToHostAddress instead
1605 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001606 * Ensure that a network route exists to deliver traffic to the specified
1607 * host via the specified network interface.
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001608 * @param networkType the type of the network over which traffic to the
1609 * specified host is to be routed
1610 * @param hostAddress the IP address of the host to which the route is
1611 * desired
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001612 * @return {@code true} on success, {@code false} on failure
1613 */
Chad Brubakerf81daa92014-02-14 13:22:34 -08001614 public boolean requestRouteToHost(int networkType, int hostAddress, String packageName) {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -07001615 InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
1616
1617 if (inetAddress == null) {
1618 return false;
1619 }
1620
Chad Brubakerf81daa92014-02-14 13:22:34 -08001621 return requestRouteToHostAddress(networkType, inetAddress.getAddress(), packageName);
Robert Greenwalt585ac0f2010-08-27 09:24:29 -07001622 }
1623
1624 /**
1625 * Ensure that a network route exists to deliver traffic to the specified
1626 * host via the specified network interface.
1627 * @param networkType the type of the network over which traffic to the
1628 * specified host is to be routed
1629 * @param hostAddress the IP address of the host to which the route is
1630 * desired
1631 * @return {@code true} on success, {@code false} on failure
1632 */
Chad Brubakerf81daa92014-02-14 13:22:34 -08001633 public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress,
1634 String packageName) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001635 enforceChangePermission();
Robert Greenwalt50393202011-06-21 17:26:14 -07001636 if (mProtectedNetworks.contains(networkType)) {
1637 enforceConnectivityInternalPermission();
1638 }
Chad Brubakerc0234532014-02-14 13:24:29 -08001639 boolean exempt;
1640 InetAddress addr;
1641 try {
1642 addr = InetAddress.getByAddress(hostAddress);
1643 } catch (UnknownHostException e) {
1644 if (DBG) log("requestRouteToHostAddress got " + e.toString());
1645 return false;
1646 }
1647 // System apps may request routes bypassing the VPN to keep other networks working.
1648 if (Binder.getCallingUid() == Process.SYSTEM_UID) {
1649 exempt = true;
1650 } else {
1651 mAppOpsManager.checkPackage(Binder.getCallingUid(), packageName);
1652 try {
1653 ApplicationInfo info = mContext.getPackageManager().getApplicationInfo(packageName,
1654 0);
1655 exempt = (info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
1656 } catch (NameNotFoundException e) {
1657 throw new IllegalArgumentException("Failed to find calling package details", e);
1658 }
1659 }
1660
1661 // Non-exempt routeToHost's can only be added if the host is not covered by the VPN.
1662 // This can be either because the VPN's routes do not cover the destination or a
1663 // system application added an exemption that covers this destination.
1664 if (!exempt && isAddressUnderVpn(addr)) {
1665 return false;
1666 }
Robert Greenwalt50393202011-06-21 17:26:14 -07001667
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001668 if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
Robert Greenwalt8beff952011-12-13 15:26:02 -08001669 if (DBG) log("requestRouteToHostAddress on invalid network: " + networkType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001670 return false;
1671 }
1672 NetworkStateTracker tracker = mNetTrackers[networkType];
Ken Mixter151d3032013-11-07 22:08:24 -08001673 DetailedState netState = DetailedState.DISCONNECTED;
1674 if (tracker != null) {
1675 netState = tracker.getNetworkInfo().getDetailedState();
1676 }
Robert Greenwalt8206ff32009-09-10 15:06:20 -07001677
Ken Mixter151d3032013-11-07 22:08:24 -08001678 if ((netState != DetailedState.CONNECTED &&
Irfan Sheriffda6da092012-08-16 12:49:23 -07001679 netState != DetailedState.CAPTIVE_PORTAL_CHECK) ||
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001680 tracker.isTeardownRequested()) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001681 if (VDBG) {
Wink Savilleab9321d2013-06-29 21:10:57 -07001682 log("requestRouteToHostAddress on down network "
1683 + "(" + networkType + ") - dropped"
1684 + " tracker=" + tracker
1685 + " netState=" + netState
1686 + " isTeardownRequested="
1687 + ((tracker != null) ? tracker.isTeardownRequested() : "tracker:null"));
Robert Greenwalt8206ff32009-09-10 15:06:20 -07001688 }
1689 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001690 }
Robert Greenwalt8beff952011-12-13 15:26:02 -08001691 final long token = Binder.clearCallingIdentity();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001692 try {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001693 LinkProperties lp = tracker.getLinkProperties();
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001694 boolean ok = addRouteToAddress(lp, addr, exempt, tracker.getNetwork().netId);
Wink Savilleab9321d2013-06-29 21:10:57 -07001695 if (DBG) log("requestRouteToHostAddress ok=" + ok);
1696 return ok;
Robert Greenwalt8beff952011-12-13 15:26:02 -08001697 } finally {
1698 Binder.restoreCallingIdentity(token);
1699 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001700 }
1701
Chad Brubakerf336d722013-07-15 16:34:04 -07001702 private boolean addRoute(LinkProperties p, RouteInfo r, boolean toDefaultTable,
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001703 boolean exempt, int netId) {
1704 return modifyRoute(p, r, 0, ADD, toDefaultTable, exempt, netId);
Robert Greenwaltf43396c2011-05-06 17:10:53 -07001705 }
1706
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001707 private boolean removeRoute(LinkProperties p, RouteInfo r, boolean toDefaultTable, int netId) {
1708 return modifyRoute(p, r, 0, REMOVE, toDefaultTable, UNEXEMPT, netId);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001709 }
1710
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001711 private boolean addRouteToAddress(LinkProperties lp, InetAddress addr, boolean exempt,
1712 int netId) {
1713 return modifyRouteToAddress(lp, addr, ADD, TO_DEFAULT_TABLE, exempt, netId);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001714 }
1715
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001716 private boolean removeRouteToAddress(LinkProperties lp, InetAddress addr, int netId) {
1717 return modifyRouteToAddress(lp, addr, REMOVE, TO_DEFAULT_TABLE, UNEXEMPT, netId);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001718 }
1719
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001720 private boolean modifyRouteToAddress(LinkProperties lp, InetAddress addr, boolean doAdd,
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001721 boolean toDefaultTable, boolean exempt, int netId) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001722 RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), addr);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001723 if (bestRoute == null) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001724 bestRoute = RouteInfo.makeHostRoute(addr, lp.getInterfaceName());
Robert Greenwaltad55d352011-07-22 11:55:33 -07001725 } else {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001726 String iface = bestRoute.getInterface();
Robert Greenwaltad55d352011-07-22 11:55:33 -07001727 if (bestRoute.getGateway().equals(addr)) {
1728 // if there is no better route, add the implied hostroute for our gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001729 bestRoute = RouteInfo.makeHostRoute(addr, iface);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001730 } else {
1731 // if we will connect to this through another route, add a direct route
1732 // to it's gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001733 bestRoute = RouteInfo.makeHostRoute(addr, bestRoute.getGateway(), iface);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001734 }
1735 }
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001736 return modifyRoute(lp, bestRoute, 0, doAdd, toDefaultTable, exempt, netId);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001737 }
1738
Lorenzo Colitti2adea7f2013-03-12 07:39:59 +09001739 private boolean modifyRoute(LinkProperties lp, RouteInfo r, int cycleCount, boolean doAdd,
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001740 boolean toDefaultTable, boolean exempt, int netId) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001741 if ((lp == null) || (r == null)) {
1742 if (DBG) log("modifyRoute got unexpected null: " + lp + ", " + r);
Robert Greenwalt8beff952011-12-13 15:26:02 -08001743 return false;
1744 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001745
1746 if (cycleCount > MAX_HOSTROUTE_CYCLE_COUNT) {
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001747 loge("Error modifying route - too much recursion");
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001748 return false;
1749 }
1750
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001751 String ifaceName = r.getInterface();
1752 if(ifaceName == null) {
1753 loge("Error modifying route - no interface name");
1754 return false;
1755 }
Robert Greenwaltca441ee2013-04-11 13:48:16 -07001756 if (r.hasGateway()) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001757 RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), r.getGateway());
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001758 if (bestRoute != null) {
Robert Greenwalt476f5522011-07-15 09:45:08 -07001759 if (bestRoute.getGateway().equals(r.getGateway())) {
1760 // if there is no better route, add the implied hostroute for our gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001761 bestRoute = RouteInfo.makeHostRoute(r.getGateway(), ifaceName);
Robert Greenwalt476f5522011-07-15 09:45:08 -07001762 } else {
1763 // if we will connect to our gateway through another route, add a direct
1764 // route to it's gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001765 bestRoute = RouteInfo.makeHostRoute(r.getGateway(),
1766 bestRoute.getGateway(),
1767 ifaceName);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001768 }
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001769 modifyRoute(lp, bestRoute, cycleCount+1, doAdd, toDefaultTable, exempt, netId);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001770 }
1771 }
1772 if (doAdd) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001773 if (VDBG) log("Adding " + r + " for interface " + ifaceName);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001774 try {
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001775 if (toDefaultTable) {
Chad Brubakerf336d722013-07-15 16:34:04 -07001776 synchronized (mRoutesLock) {
1777 // only track default table - only one apps can effect
1778 mAddedRoutes.add(r);
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001779 mNetd.addRoute(netId, r);
Chad Brubakerf336d722013-07-15 16:34:04 -07001780 if (exempt) {
1781 LinkAddress dest = r.getDestination();
1782 if (!mExemptAddresses.contains(dest)) {
1783 mNetd.setHostExemption(dest);
1784 mExemptAddresses.add(dest);
1785 }
1786 }
1787 }
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001788 } else {
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001789 mNetd.addRoute(netId, r);
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001790 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001791 } catch (Exception e) {
1792 // never crash - catch them all
Robert Greenwalt8beff952011-12-13 15:26:02 -08001793 if (DBG) loge("Exception trying to add a route: " + e);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001794 return false;
1795 }
1796 } else {
1797 // if we remove this one and there are no more like it, then refcount==0 and
1798 // we can remove it from the table
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001799 if (toDefaultTable) {
Chad Brubakerf336d722013-07-15 16:34:04 -07001800 synchronized (mRoutesLock) {
1801 mAddedRoutes.remove(r);
1802 if (mAddedRoutes.contains(r) == false) {
1803 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
1804 try {
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001805 mNetd.removeRoute(netId, r);
Chad Brubakerf336d722013-07-15 16:34:04 -07001806 LinkAddress dest = r.getDestination();
1807 if (mExemptAddresses.contains(dest)) {
1808 mNetd.clearHostExemption(dest);
1809 mExemptAddresses.remove(dest);
1810 }
1811 } catch (Exception e) {
1812 // never crash - catch them all
1813 if (VDBG) loge("Exception trying to remove a route: " + e);
1814 return false;
1815 }
1816 } else {
1817 if (VDBG) log("not removing " + r + " as it's still in use");
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001818 }
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001819 }
1820 } else {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001821 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001822 try {
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07001823 mNetd.removeRoute(netId, r);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001824 } catch (Exception e) {
1825 // never crash - catch them all
Robert Greenwalt2473a4ba2012-04-23 18:00:37 -07001826 if (VDBG) loge("Exception trying to remove a route: " + e);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001827 return false;
1828 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001829 }
1830 }
1831 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001832 }
1833
1834 /**
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001835 * @see ConnectivityManager#getMobileDataEnabled()
1836 */
1837 public boolean getMobileDataEnabled() {
Wink Savillee7982682010-12-07 10:31:02 -08001838 // TODO: This detail should probably be in DataConnectionTracker's
1839 // which is where we store the value and maybe make this
1840 // asynchronous.
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001841 enforceAccessPermission();
Jeff Sharkeybdfce2e2012-09-26 15:54:06 -07001842 boolean retVal = Settings.Global.getInt(mContext.getContentResolver(),
1843 Settings.Global.MOBILE_DATA, 1) == 1;
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001844 if (VDBG) log("getMobileDataEnabled returning " + retVal);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001845 return retVal;
1846 }
1847
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001848 public void setDataDependency(int networkType, boolean met) {
Robert Greenwalt50393202011-06-21 17:26:14 -07001849 enforceConnectivityInternalPermission();
1850
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001851 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_DEPENDENCY_MET,
1852 (met ? ENABLED : DISABLED), networkType));
1853 }
1854
1855 private void handleSetDependencyMet(int networkType, boolean met) {
1856 if (mNetTrackers[networkType] != null) {
1857 if (DBG) {
1858 log("handleSetDependencyMet(" + networkType + ", " + met + ")");
1859 }
1860 mNetTrackers[networkType].setDependencyMet(met);
1861 }
1862 }
1863
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001864 private INetworkPolicyListener mPolicyListener = new INetworkPolicyListener.Stub() {
1865 @Override
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001866 public void onUidRulesChanged(int uid, int uidRules) {
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001867 // caller is NPMS, since we only register with them
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001868 if (LOGD_RULES) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001869 log("onUidRulesChanged(uid=" + uid + ", uidRules=" + uidRules + ")");
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001870 }
1871
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001872 synchronized (mRulesLock) {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001873 // skip update when we've already applied rules
1874 final int oldRules = mUidRules.get(uid, RULE_ALLOW_ALL);
1875 if (oldRules == uidRules) return;
1876
1877 mUidRules.put(uid, uidRules);
1878 }
1879
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001880 // TODO: notify UID when it has requested targeted updates
1881 }
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001882
1883 @Override
1884 public void onMeteredIfacesChanged(String[] meteredIfaces) {
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001885 // caller is NPMS, since we only register with them
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001886 if (LOGD_RULES) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001887 log("onMeteredIfacesChanged(ifaces=" + Arrays.toString(meteredIfaces) + ")");
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001888 }
1889
1890 synchronized (mRulesLock) {
1891 mMeteredIfaces.clear();
1892 for (String iface : meteredIfaces) {
1893 mMeteredIfaces.add(iface);
1894 }
1895 }
1896 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001897
1898 @Override
1899 public void onRestrictBackgroundChanged(boolean restrictBackground) {
1900 // caller is NPMS, since we only register with them
1901 if (LOGD_RULES) {
1902 log("onRestrictBackgroundChanged(restrictBackground=" + restrictBackground + ")");
1903 }
1904
1905 // kick off connectivity change broadcast for active network, since
1906 // global background policy change is radical.
1907 final int networkType = mActiveDefaultNetwork;
1908 if (isNetworkTypeValid(networkType)) {
1909 final NetworkStateTracker tracker = mNetTrackers[networkType];
1910 if (tracker != null) {
1911 final NetworkInfo info = tracker.getNetworkInfo();
1912 if (info != null && info.isConnected()) {
1913 sendConnectedBroadcast(info);
1914 }
1915 }
1916 }
1917 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001918 };
1919
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001920 /**
1921 * @see ConnectivityManager#setMobileDataEnabled(boolean)
1922 */
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001923 public void setMobileDataEnabled(boolean enabled) {
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001924 enforceChangePermission();
Wink Savilleed9c02b2010-12-03 12:01:38 -08001925 if (DBG) log("setMobileDataEnabled(" + enabled + ")");
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001926
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001927 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_MOBILE_DATA,
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001928 (enabled ? ENABLED : DISABLED), 0));
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001929 }
1930
1931 private void handleSetMobileData(boolean enabled) {
Wink Savillee7982682010-12-07 10:31:02 -08001932 if (mNetTrackers[ConnectivityManager.TYPE_MOBILE] != null) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001933 if (VDBG) {
1934 log(mNetTrackers[ConnectivityManager.TYPE_MOBILE].toString() + enabled);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001935 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001936 mNetTrackers[ConnectivityManager.TYPE_MOBILE].setUserDataEnable(enabled);
1937 }
tk.munb97d34c2012-01-06 10:43:52 +09001938 if (mNetTrackers[ConnectivityManager.TYPE_WIMAX] != null) {
1939 if (VDBG) {
1940 log(mNetTrackers[ConnectivityManager.TYPE_WIMAX].toString() + enabled);
1941 }
1942 mNetTrackers[ConnectivityManager.TYPE_WIMAX].setUserDataEnable(enabled);
1943 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001944 }
1945
1946 @Override
1947 public void setPolicyDataEnable(int networkType, boolean enabled) {
1948 // only someone like NPMS should only be calling us
1949 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1950
1951 mHandler.sendMessage(mHandler.obtainMessage(
1952 EVENT_SET_POLICY_DATA_ENABLE, networkType, (enabled ? ENABLED : DISABLED)));
1953 }
1954
1955 private void handleSetPolicyDataEnable(int networkType, boolean enabled) {
1956 if (isNetworkTypeValid(networkType)) {
1957 final NetworkStateTracker tracker = mNetTrackers[networkType];
1958 if (tracker != null) {
1959 tracker.setPolicyDataEnable(enabled);
1960 }
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001961 }
1962 }
1963
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001964 private void enforceAccessPermission() {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001965 mContext.enforceCallingOrSelfPermission(
1966 android.Manifest.permission.ACCESS_NETWORK_STATE,
1967 "ConnectivityService");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001968 }
1969
1970 private void enforceChangePermission() {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001971 mContext.enforceCallingOrSelfPermission(
1972 android.Manifest.permission.CHANGE_NETWORK_STATE,
1973 "ConnectivityService");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001974 }
1975
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001976 // TODO Make this a special check when it goes public
1977 private void enforceTetherChangePermission() {
1978 mContext.enforceCallingOrSelfPermission(
1979 android.Manifest.permission.CHANGE_NETWORK_STATE,
1980 "ConnectivityService");
1981 }
1982
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001983 private void enforceTetherAccessPermission() {
1984 mContext.enforceCallingOrSelfPermission(
1985 android.Manifest.permission.ACCESS_NETWORK_STATE,
1986 "ConnectivityService");
1987 }
1988
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001989 private void enforceConnectivityInternalPermission() {
1990 mContext.enforceCallingOrSelfPermission(
1991 android.Manifest.permission.CONNECTIVITY_INTERNAL,
1992 "ConnectivityService");
1993 }
1994
Chad Brubakerd475c702013-07-11 13:29:30 -07001995 private void enforceMarkNetworkSocketPermission() {
1996 //Media server special case
1997 if (Binder.getCallingUid() == Process.MEDIA_UID) {
1998 return;
1999 }
2000 mContext.enforceCallingOrSelfPermission(
2001 android.Manifest.permission.MARK_NETWORK_SOCKET,
2002 "ConnectivityService");
2003 }
2004
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002005 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002006 * Handle a {@code DISCONNECTED} event. If this pertains to the non-active
2007 * network, we ignore it. If it is for the active network, we send out a
2008 * broadcast. But first, we check whether it might be possible to connect
2009 * to a different network.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002010 * @param info the {@code NetworkInfo} for the network
2011 */
2012 private void handleDisconnect(NetworkInfo info) {
2013
Robert Greenwalt42acef32009-08-12 16:08:25 -07002014 int prevNetType = info.getType();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002015
Robert Greenwalt42acef32009-08-12 16:08:25 -07002016 mNetTrackers[prevNetType].setTeardownRequested(false);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002017 int thisNetId = mNetTrackers[prevNetType].getNetwork().netId;
Haoyu Bai04124232012-06-28 15:26:19 -07002018
2019 // Remove idletimer previously setup in {@code handleConnect}
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002020 if (mNetConfigs[prevNetType].isDefault()) {
2021 removeDataActivityTracking(prevNetType);
2022 }
Haoyu Bai04124232012-06-28 15:26:19 -07002023
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002024 /*
2025 * If the disconnected network is not the active one, then don't report
2026 * this as a loss of connectivity. What probably happened is that we're
2027 * getting the disconnect for a network that we explicitly disabled
2028 * in accordance with network preference policies.
2029 */
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002030 if (!mNetConfigs[prevNetType].isDefault()) {
Mattias Falk8b47b362011-08-23 14:15:13 +02002031 List<Integer> pids = mNetRequestersPids[prevNetType];
2032 for (Integer pid : pids) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002033 // will remove them because the net's no longer connected
2034 // need to do this now as only now do we know the pids and
2035 // can properly null things that are no longer referenced.
2036 reassessPidDns(pid.intValue(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002037 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002038 }
2039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002040 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
Irfan Sheriff9538bdd2012-09-20 09:32:41 -07002041 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
Jeff Sharkey75fbb4b2012-08-06 11:41:50 -07002042 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002043 if (info.isFailover()) {
2044 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2045 info.setFailover(false);
2046 }
2047 if (info.getReason() != null) {
2048 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
2049 }
2050 if (info.getExtraInfo() != null) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002051 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
2052 info.getExtraInfo());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002053 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002054
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002055 if (mNetConfigs[prevNetType].isDefault()) {
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002056 tryFailover(prevNetType);
2057 if (mActiveDefaultNetwork != -1) {
2058 NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002059 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
2060 } else {
Robert Greenwalt029be812010-09-20 18:01:43 -07002061 mDefaultInetConditionPublished = 0; // we're not connected anymore
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002062 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2063 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002064 }
Robert Greenwalt029be812010-09-20 18:01:43 -07002065 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Robert Greenwaltec896c62011-06-15 12:22:07 -07002066
2067 // Reset interface if no other connections are using the same interface
2068 boolean doReset = true;
2069 LinkProperties linkProperties = mNetTrackers[prevNetType].getLinkProperties();
2070 if (linkProperties != null) {
2071 String oldIface = linkProperties.getInterfaceName();
2072 if (TextUtils.isEmpty(oldIface) == false) {
2073 for (NetworkStateTracker networkStateTracker : mNetTrackers) {
2074 if (networkStateTracker == null) continue;
2075 NetworkInfo networkInfo = networkStateTracker.getNetworkInfo();
2076 if (networkInfo.isConnected() && networkInfo.getType() != prevNetType) {
2077 LinkProperties l = networkStateTracker.getLinkProperties();
2078 if (l == null) continue;
2079 if (oldIface.equals(l.getInterfaceName())) {
2080 doReset = false;
2081 break;
2082 }
2083 }
2084 }
2085 }
2086 }
2087
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002088 // do this before we broadcast the change
Robert Greenwaltec896c62011-06-15 12:22:07 -07002089 handleConnectivityChange(prevNetType, doReset);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002090
Jeff Sharkey961e3042011-08-29 16:02:57 -07002091 final Intent immediateIntent = new Intent(intent);
2092 immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
2093 sendStickyBroadcast(immediateIntent);
Wink Saville628b0852011-08-04 15:01:58 -07002094 sendStickyBroadcastDelayed(intent, getConnectivityChangeDelay());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002095 /*
2096 * If the failover network is already connected, then immediately send
2097 * out a followup broadcast indicating successful failover
2098 */
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002099 if (mActiveDefaultNetwork != -1) {
Wink Saville628b0852011-08-04 15:01:58 -07002100 sendConnectedBroadcastDelayed(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo(),
2101 getConnectivityChangeDelay());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002102 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002103 try {
Robert Greenwalt9876e632014-05-13 06:32:53 -07002104// mNetd.removeNetwork(thisNetId);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002105 } catch (Exception e) {
2106 loge("Exception removing network: " + e);
2107 } finally {
2108 mNetTrackers[prevNetType].setNetId(INVALID_NET_ID);
2109 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002110 }
2111
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002112 private void tryFailover(int prevNetType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002113 /*
Robert Greenwaltbff90182011-01-06 15:41:07 -08002114 * If this is a default network, check if other defaults are available.
2115 * Try to reconnect on all available and let them hash it out when
2116 * more than one connects.
Robert Greenwalt42acef32009-08-12 16:08:25 -07002117 */
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002118 if (mNetConfigs[prevNetType].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002119 if (mActiveDefaultNetwork == prevNetType) {
Wink Saville948282b2013-08-29 08:55:16 -07002120 if (DBG) {
2121 log("tryFailover: set mActiveDefaultNetwork=-1, prevNetType=" + prevNetType);
2122 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002123 mActiveDefaultNetwork = -1;
Sreeram Ramachandran79a10582014-04-15 16:35:19 -07002124 try {
2125 mNetd.clearDefaultNetId();
2126 } catch (Exception e) {
2127 loge("Exception clearing default network :" + e);
2128 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002129 }
2130
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002131 // don't signal a reconnect for anything lower or equal priority than our
2132 // current connected default
2133 // TODO - don't filter by priority now - nice optimization but risky
2134// int currentPriority = -1;
2135// if (mActiveDefaultNetwork != -1) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002136// currentPriority = mNetConfigs[mActiveDefaultNetwork].mPriority;
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002137// }
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002138
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002139 for (int checkType=0; checkType <= ConnectivityManager.MAX_NETWORK_TYPE; checkType++) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -07002140 if (checkType == prevNetType) continue;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002141 if (mNetConfigs[checkType] == null) continue;
2142 if (!mNetConfigs[checkType].isDefault()) continue;
Robert Greenwalt424781e2011-11-11 09:56:03 -08002143 if (mNetTrackers[checkType] == null) continue;
Wink Saville9f7a0b22011-01-26 15:43:49 -08002144
2145// Enabling the isAvailable() optimization caused mobile to not get
2146// selected if it was in the middle of error handling. Specifically
2147// a moble connection that took 30 seconds to complete the DEACTIVATE_DATA_CALL
2148// would not be available and we wouldn't get connected to anything.
2149// So removing the isAvailable() optimization below for now. TODO: This
2150// optimization should work and we need to investigate why it doesn't work.
2151// This could be related to how DEACTIVATE_DATA_CALL is reporting its
2152// complete before it is really complete.
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002153
Wink Saville9f7a0b22011-01-26 15:43:49 -08002154// if (!mNetTrackers[checkType].isAvailable()) continue;
2155
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002156// if (currentPriority >= mNetConfigs[checkType].mPriority) continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -07002157
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002158 NetworkStateTracker checkTracker = mNetTrackers[checkType];
2159 NetworkInfo checkInfo = checkTracker.getNetworkInfo();
2160 if (!checkInfo.isConnectedOrConnecting() || checkTracker.isTeardownRequested()) {
2161 checkInfo.setFailover(true);
2162 checkTracker.reconnect();
Robert Greenwalt42acef32009-08-12 16:08:25 -07002163 }
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002164 if (DBG) log("Attempting to switch to " + checkInfo.getTypeName());
Robert Greenwalt42acef32009-08-12 16:08:25 -07002165 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002166 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002167 }
2168
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002169 public void sendConnectedBroadcast(NetworkInfo info) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08002170 enforceConnectivityInternalPermission();
Jeff Sharkey961e3042011-08-29 16:02:57 -07002171 sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
2172 sendGeneralBroadcast(info, CONNECTIVITY_ACTION);
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07002173 }
2174
Wink Saville628b0852011-08-04 15:01:58 -07002175 private void sendConnectedBroadcastDelayed(NetworkInfo info, int delayMs) {
Jeff Sharkey961e3042011-08-29 16:02:57 -07002176 sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
2177 sendGeneralBroadcastDelayed(info, CONNECTIVITY_ACTION, delayMs);
Wink Saville628b0852011-08-04 15:01:58 -07002178 }
2179
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07002180 private void sendInetConditionBroadcast(NetworkInfo info) {
2181 sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
2182 }
2183
Wink Saville628b0852011-08-04 15:01:58 -07002184 private Intent makeGeneralIntent(NetworkInfo info, String bcastType) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002185 if (mLockdownTracker != null) {
2186 info = mLockdownTracker.augmentNetworkInfo(info);
2187 }
2188
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07002189 Intent intent = new Intent(bcastType);
Irfan Sheriff9538bdd2012-09-20 09:32:41 -07002190 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
Jeff Sharkey75fbb4b2012-08-06 11:41:50 -07002191 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002192 if (info.isFailover()) {
2193 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2194 info.setFailover(false);
2195 }
2196 if (info.getReason() != null) {
2197 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
2198 }
2199 if (info.getExtraInfo() != null) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002200 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
2201 info.getExtraInfo());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002202 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002203 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Wink Saville628b0852011-08-04 15:01:58 -07002204 return intent;
2205 }
2206
2207 private void sendGeneralBroadcast(NetworkInfo info, String bcastType) {
2208 sendStickyBroadcast(makeGeneralIntent(info, bcastType));
2209 }
2210
2211 private void sendGeneralBroadcastDelayed(NetworkInfo info, String bcastType, int delayMs) {
2212 sendStickyBroadcastDelayed(makeGeneralIntent(info, bcastType), delayMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002213 }
2214
Ashish Sharma0535a9f2014-03-12 18:42:23 -07002215 private void sendDataActivityBroadcast(int deviceType, boolean active, long tsNanos) {
Haoyu Baidb3c8672012-06-20 14:29:57 -07002216 Intent intent = new Intent(ConnectivityManager.ACTION_DATA_ACTIVITY_CHANGE);
2217 intent.putExtra(ConnectivityManager.EXTRA_DEVICE_TYPE, deviceType);
2218 intent.putExtra(ConnectivityManager.EXTRA_IS_ACTIVE, active);
Ashish Sharma0535a9f2014-03-12 18:42:23 -07002219 intent.putExtra(ConnectivityManager.EXTRA_REALTIME_NS, tsNanos);
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07002220 final long ident = Binder.clearCallingIdentity();
2221 try {
2222 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.ALL,
2223 RECEIVE_DATA_ACTIVITY_CHANGE, null, null, 0, null, null);
2224 } finally {
2225 Binder.restoreCallingIdentity(ident);
2226 }
Haoyu Baidb3c8672012-06-20 14:29:57 -07002227 }
2228
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002229 /**
2230 * Called when an attempt to fail over to another network has failed.
2231 * @param info the {@link NetworkInfo} for the failed network
2232 */
2233 private void handleConnectionFailure(NetworkInfo info) {
2234 mNetTrackers[info.getType()].setTeardownRequested(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002235
Robert Greenwalt42acef32009-08-12 16:08:25 -07002236 String reason = info.getReason();
2237 String extraInfo = info.getExtraInfo();
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002238
Robert Greenwalt572172b2010-10-08 16:35:52 -07002239 String reasonText;
2240 if (reason == null) {
2241 reasonText = ".";
2242 } else {
2243 reasonText = " (" + reason + ").";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002244 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08002245 loge("Attempt to connect to " + info.getTypeName() + " failed" + reasonText);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002246
2247 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
Irfan Sheriff9538bdd2012-09-20 09:32:41 -07002248 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
Jeff Sharkey75fbb4b2012-08-06 11:41:50 -07002249 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
Robert Greenwalt42acef32009-08-12 16:08:25 -07002250 if (getActiveNetworkInfo() == null) {
2251 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2252 }
2253 if (reason != null) {
2254 intent.putExtra(ConnectivityManager.EXTRA_REASON, reason);
2255 }
2256 if (extraInfo != null) {
2257 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO, extraInfo);
2258 }
2259 if (info.isFailover()) {
2260 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2261 info.setFailover(false);
2262 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002263
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002264 if (mNetConfigs[info.getType()].isDefault()) {
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002265 tryFailover(info.getType());
2266 if (mActiveDefaultNetwork != -1) {
2267 NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002268 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
2269 } else {
Robert Greenwalt029be812010-09-20 18:01:43 -07002270 mDefaultInetConditionPublished = 0;
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002271 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2272 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002273 }
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002274
Robert Greenwalt029be812010-09-20 18:01:43 -07002275 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Jeff Sharkey961e3042011-08-29 16:02:57 -07002276
2277 final Intent immediateIntent = new Intent(intent);
2278 immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
2279 sendStickyBroadcast(immediateIntent);
Mike Lockwood0f79b542009-08-14 14:18:49 -04002280 sendStickyBroadcast(intent);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002281 /*
2282 * If the failover network is already connected, then immediately send
2283 * out a followup broadcast indicating successful failover
2284 */
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002285 if (mActiveDefaultNetwork != -1) {
2286 sendConnectedBroadcast(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002287 }
Mike Lockwood0f79b542009-08-14 14:18:49 -04002288 }
2289
2290 private void sendStickyBroadcast(Intent intent) {
2291 synchronized(this) {
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002292 if (!mSystemReady) {
2293 mInitialBroadcast = new Intent(intent);
Mike Lockwood0f79b542009-08-14 14:18:49 -04002294 }
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002295 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Wink Savillec9acde92011-09-21 11:05:43 -07002296 if (VDBG) {
Jeff Sharkey961e3042011-08-29 16:02:57 -07002297 log("sendStickyBroadcast: action=" + intent.getAction());
Wink Saville628b0852011-08-04 15:01:58 -07002298 }
2299
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07002300 final long ident = Binder.clearCallingIdentity();
2301 try {
2302 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
2303 } finally {
2304 Binder.restoreCallingIdentity(ident);
2305 }
Mike Lockwood0f79b542009-08-14 14:18:49 -04002306 }
2307 }
2308
Wink Saville628b0852011-08-04 15:01:58 -07002309 private void sendStickyBroadcastDelayed(Intent intent, int delayMs) {
2310 if (delayMs <= 0) {
2311 sendStickyBroadcast(intent);
2312 } else {
Wink Savillec9acde92011-09-21 11:05:43 -07002313 if (VDBG) {
Jeff Sharkey961e3042011-08-29 16:02:57 -07002314 log("sendStickyBroadcastDelayed: delayMs=" + delayMs + ", action="
2315 + intent.getAction());
2316 }
Wink Saville628b0852011-08-04 15:01:58 -07002317 mHandler.sendMessageDelayed(mHandler.obtainMessage(
2318 EVENT_SEND_STICKY_BROADCAST_INTENT, intent), delayMs);
2319 }
2320 }
2321
Mike Lockwood0f79b542009-08-14 14:18:49 -04002322 void systemReady() {
Wink Saville948282b2013-08-29 08:55:16 -07002323 mCaptivePortalTracker = CaptivePortalTracker.makeCaptivePortalTracker(mContext, this);
2324 loadGlobalProxy();
2325
Mike Lockwood0f79b542009-08-14 14:18:49 -04002326 synchronized(this) {
2327 mSystemReady = true;
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002328 if (mInitialBroadcast != null) {
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002329 mContext.sendStickyBroadcastAsUser(mInitialBroadcast, UserHandle.ALL);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002330 mInitialBroadcast = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -04002331 }
2332 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07002333 // load the global proxy at startup
2334 mHandler.sendMessage(mHandler.obtainMessage(EVENT_APPLY_GLOBAL_HTTP_PROXY));
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002335
2336 // Try bringing up tracker, but if KeyStore isn't ready yet, wait
2337 // for user to unlock device.
2338 if (!updateLockdownVpn()) {
2339 final IntentFilter filter = new IntentFilter(Intent.ACTION_USER_PRESENT);
2340 mContext.registerReceiver(mUserPresentReceiver, filter);
2341 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002342 }
2343
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002344 private BroadcastReceiver mUserPresentReceiver = new BroadcastReceiver() {
2345 @Override
2346 public void onReceive(Context context, Intent intent) {
2347 // Try creating lockdown tracker, since user present usually means
2348 // unlocked keystore.
2349 if (updateLockdownVpn()) {
2350 mContext.unregisterReceiver(this);
2351 }
2352 }
2353 };
2354
Irfan Sheriffda6da092012-08-16 12:49:23 -07002355 private boolean isNewNetTypePreferredOverCurrentNetType(int type) {
Wink Saville948282b2013-08-29 08:55:16 -07002356 if (((type != mNetworkPreference)
2357 && (mNetConfigs[mActiveDefaultNetwork].priority > mNetConfigs[type].priority))
2358 || (mNetworkPreference == mActiveDefaultNetwork)) {
2359 return false;
2360 }
Irfan Sheriffda6da092012-08-16 12:49:23 -07002361 return true;
2362 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002363
Irfan Sheriffda6da092012-08-16 12:49:23 -07002364 private void handleConnect(NetworkInfo info) {
2365 final int newNetType = info.getType();
2366
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002367 // snapshot isFailover, because sendConnectedBroadcast() resets it
2368 boolean isFailover = info.isFailover();
Irfan Sheriffda6da092012-08-16 12:49:23 -07002369 final NetworkStateTracker thisNet = mNetTrackers[newNetType];
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07002370 final String thisIface = thisNet.getLinkProperties().getInterfaceName();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002371
Wink Saville948282b2013-08-29 08:55:16 -07002372 if (VDBG) {
2373 log("handleConnect: E newNetType=" + newNetType + " thisIface=" + thisIface
2374 + " isFailover" + isFailover);
2375 }
2376
Robert Greenwalt42acef32009-08-12 16:08:25 -07002377 // if this is a default net and other default is running
2378 // kill the one not preferred
Irfan Sheriffda6da092012-08-16 12:49:23 -07002379 if (mNetConfigs[newNetType].isDefault()) {
2380 if (mActiveDefaultNetwork != -1 && mActiveDefaultNetwork != newNetType) {
2381 if (isNewNetTypePreferredOverCurrentNetType(newNetType)) {
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002382 String teardownPolicy = SystemProperties.get("net.teardownPolicy");
2383 if (TextUtils.equals(teardownPolicy, "keep") == false) {
2384 // tear down the other
2385 NetworkStateTracker otherNet =
2386 mNetTrackers[mActiveDefaultNetwork];
2387 if (DBG) {
2388 log("Policy requires " + otherNet.getNetworkInfo().getTypeName() +
2389 " teardown");
2390 }
2391 if (!teardown(otherNet)) {
2392 loge("Network declined teardown request");
2393 teardown(thisNet);
2394 return;
2395 }
2396 } else {
2397 //TODO - remove
2398 loge("network teardown skipped due to net.teardownPolicy setting");
Robert Greenwalt42acef32009-08-12 16:08:25 -07002399 }
Irfan Sheriffda6da092012-08-16 12:49:23 -07002400 } else {
2401 // don't accept this one
2402 if (VDBG) {
2403 log("Not broadcasting CONNECT_ACTION " +
2404 "to torn down network " + info.getTypeName());
2405 }
2406 teardown(thisNet);
2407 return;
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002408 }
2409 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002410 int thisNetId = nextNetId();
2411 thisNet.setNetId(thisNetId);
2412 try {
Robert Greenwalt9876e632014-05-13 06:32:53 -07002413// mNetd.createNetwork(thisNetId, thisIface);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002414 } catch (Exception e) {
2415 loge("Exception creating network :" + e);
2416 teardown(thisNet);
2417 return;
2418 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002419 setupDataActivityTracking(newNetType);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002420 synchronized (ConnectivityService.this) {
2421 // have a new default network, release the transition wakelock in a second
2422 // if it's held. The second pause is to allow apps to reconnect over the
2423 // new network
2424 if (mNetTransitionWakeLock.isHeld()) {
2425 mHandler.sendMessageDelayed(mHandler.obtainMessage(
Robert Greenwaltf3331232010-09-24 14:32:21 -07002426 EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002427 mNetTransitionWakeLockSerialNumber, 0),
2428 1000);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002429 }
2430 }
Irfan Sheriffda6da092012-08-16 12:49:23 -07002431 mActiveDefaultNetwork = newNetType;
Sreeram Ramachandran79a10582014-04-15 16:35:19 -07002432 try {
2433 mNetd.setDefaultNetId(thisNetId);
2434 } catch (Exception e) {
2435 loge("Exception setting default network :" + e);
2436 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002437 // this will cause us to come up initially as unconnected and switching
2438 // to connected after our normal pause unless somebody reports us as reall
2439 // disconnected
2440 mDefaultInetConditionPublished = 0;
2441 mDefaultConnectionSequence++;
2442 mInetConditionChangeInFlight = false;
2443 // Don't do this - if we never sign in stay, grey
2444 //reportNetworkCondition(mActiveDefaultNetwork, 100);
Robert Greenwaltd49f64c2014-02-28 16:44:00 -08002445 updateNetworkSettings(thisNet);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002446 } else {
2447 int thisNetId = nextNetId();
2448 thisNet.setNetId(thisNetId);
2449 try {
Robert Greenwalt9876e632014-05-13 06:32:53 -07002450// mNetd.createNetwork(thisNetId, thisIface);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002451 } catch (Exception e) {
2452 loge("Exception creating network :" + e);
2453 teardown(thisNet);
2454 return;
2455 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002456 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002457 thisNet.setTeardownRequested(false);
sy.yun9d9b74a2013-09-02 05:24:09 +09002458 updateMtuSizeSettings(thisNet);
Irfan Sheriffda6da092012-08-16 12:49:23 -07002459 handleConnectivityChange(newNetType, false);
Wink Saville628b0852011-08-04 15:01:58 -07002460 sendConnectedBroadcastDelayed(info, getConnectivityChangeDelay());
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07002461
2462 // notify battery stats service about this network
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07002463 if (thisIface != null) {
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07002464 try {
Irfan Sheriffda6da092012-08-16 12:49:23 -07002465 BatteryStatsService.getService().noteNetworkInterfaceType(thisIface, newNetType);
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07002466 } catch (RemoteException e) {
2467 // ignored; service lives in system_server
2468 }
2469 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002470 }
2471
Wink Savilled747cbc2013-08-07 16:22:47 -07002472 /** @hide */
2473 @Override
2474 public void captivePortalCheckCompleted(NetworkInfo info, boolean isCaptivePortal) {
2475 enforceConnectivityInternalPermission();
2476 if (DBG) log("captivePortalCheckCompleted: ni=" + info + " captive=" + isCaptivePortal);
2477 mNetTrackers[info.getType()].captivePortalCheckCompleted(isCaptivePortal);
2478 }
2479
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002480 /**
Haoyu Bai04124232012-06-28 15:26:19 -07002481 * Setup data activity tracking for the given network interface.
2482 *
2483 * Every {@code setupDataActivityTracking} should be paired with a
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002484 * {@link #removeDataActivityTracking} for cleanup.
Haoyu Bai04124232012-06-28 15:26:19 -07002485 */
2486 private void setupDataActivityTracking(int type) {
2487 final NetworkStateTracker thisNet = mNetTrackers[type];
2488 final String iface = thisNet.getLinkProperties().getInterfaceName();
2489
2490 final int timeout;
2491
2492 if (ConnectivityManager.isNetworkTypeMobile(type)) {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07002493 timeout = Settings.Global.getInt(mContext.getContentResolver(),
2494 Settings.Global.DATA_ACTIVITY_TIMEOUT_MOBILE,
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002495 5);
Haoyu Bai04124232012-06-28 15:26:19 -07002496 // Canonicalize mobile network type
2497 type = ConnectivityManager.TYPE_MOBILE;
2498 } else if (ConnectivityManager.TYPE_WIFI == type) {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07002499 timeout = Settings.Global.getInt(mContext.getContentResolver(),
2500 Settings.Global.DATA_ACTIVITY_TIMEOUT_WIFI,
Haoyu Bai04124232012-06-28 15:26:19 -07002501 0);
2502 } else {
2503 // do not track any other networks
2504 timeout = 0;
2505 }
2506
2507 if (timeout > 0 && iface != null) {
2508 try {
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002509 mNetd.addIdleTimer(iface, timeout, type);
Robert Greenwaltd9cb2f32014-03-19 14:26:28 -07002510 } catch (Exception e) {
2511 // You shall not crash!
2512 loge("Exception in setupDataActivityTracking " + e);
Haoyu Bai04124232012-06-28 15:26:19 -07002513 }
2514 }
2515 }
2516
2517 /**
2518 * Remove data activity tracking when network disconnects.
2519 */
2520 private void removeDataActivityTracking(int type) {
2521 final NetworkStateTracker net = mNetTrackers[type];
2522 final String iface = net.getLinkProperties().getInterfaceName();
2523
2524 if (iface != null && (ConnectivityManager.isNetworkTypeMobile(type) ||
2525 ConnectivityManager.TYPE_WIFI == type)) {
2526 try {
2527 // the call fails silently if no idletimer setup for this interface
2528 mNetd.removeIdleTimer(iface);
Robert Greenwaltd9cb2f32014-03-19 14:26:28 -07002529 } catch (Exception e) {
2530 loge("Exception in removeDataActivityTracking " + e);
Haoyu Bai04124232012-06-28 15:26:19 -07002531 }
2532 }
2533 }
2534
2535 /**
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002536 * After a change in the connectivity state of a network. We're mainly
2537 * concerned with making sure that the list of DNS servers is set up
2538 * according to which networks are connected, and ensuring that the
2539 * right routing table entries exist.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002540 */
Robert Greenwaltec896c62011-06-15 12:22:07 -07002541 private void handleConnectivityChange(int netType, boolean doReset) {
Wink Savillee8222252011-07-13 13:44:13 -07002542 int resetMask = doReset ? NetworkUtils.RESET_ALL_ADDRESSES : 0;
Chad Brubakerf336d722013-07-15 16:34:04 -07002543 boolean exempt = ConnectivityManager.isNetworkTypeExempt(netType);
Wink Saville948282b2013-08-29 08:55:16 -07002544 if (VDBG) {
2545 log("handleConnectivityChange: netType=" + netType + " doReset=" + doReset
2546 + " resetMask=" + resetMask);
2547 }
Wink Savillee8222252011-07-13 13:44:13 -07002548
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002549 /*
Robert Greenwalt42acef32009-08-12 16:08:25 -07002550 * If a non-default network is enabled, add the host routes that
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002551 * will allow it's DNS servers to be accessed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002552 */
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002553 handleDnsConfigurationChange(netType);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002554
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002555 LinkProperties curLp = mCurrentLinkProperties[netType];
2556 LinkProperties newLp = null;
2557
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002558 if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002559 newLp = mNetTrackers[netType].getLinkProperties();
Wink Savillee8222252011-07-13 13:44:13 -07002560 if (VDBG) {
2561 log("handleConnectivityChange: changed linkProperty[" + netType + "]:" +
2562 " doReset=" + doReset + " resetMask=" + resetMask +
2563 "\n curLp=" + curLp +
2564 "\n newLp=" + newLp);
2565 }
2566
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002567 if (curLp != null) {
2568 if (curLp.isIdenticalInterfaceName(newLp)) {
2569 CompareResult<LinkAddress> car = curLp.compareAddresses(newLp);
2570 if ((car.removed.size() != 0) || (car.added.size() != 0)) {
2571 for (LinkAddress linkAddr : car.removed) {
2572 if (linkAddr.getAddress() instanceof Inet4Address) {
2573 resetMask |= NetworkUtils.RESET_IPV4_ADDRESSES;
2574 }
2575 if (linkAddr.getAddress() instanceof Inet6Address) {
2576 resetMask |= NetworkUtils.RESET_IPV6_ADDRESSES;
2577 }
Wink Savillee8222252011-07-13 13:44:13 -07002578 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002579 if (DBG) {
2580 log("handleConnectivityChange: addresses changed" +
2581 " linkProperty[" + netType + "]:" + " resetMask=" + resetMask +
2582 "\n car=" + car);
Wink Savillee8222252011-07-13 13:44:13 -07002583 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002584 } else {
Robert Greenwaltd01f8422014-01-23 16:03:04 -08002585 if (VDBG) {
2586 log("handleConnectivityChange: addresses are the same reset per" +
2587 " doReset linkProperty[" + netType + "]:" +
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002588 " resetMask=" + resetMask);
2589 }
Wink Savillee8222252011-07-13 13:44:13 -07002590 }
2591 } else {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002592 resetMask = NetworkUtils.RESET_ALL_ADDRESSES;
Robert Greenwalt58d4c592011-08-02 17:18:41 -07002593 if (DBG) {
2594 log("handleConnectivityChange: interface not not equivalent reset both" +
2595 " linkProperty[" + netType + "]:" +
2596 " resetMask=" + resetMask);
2597 }
Wink Savillee8222252011-07-13 13:44:13 -07002598 }
Wink Savillee8222252011-07-13 13:44:13 -07002599 }
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002600 if (mNetConfigs[netType].isDefault()) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07002601 handleApplyDefaultProxy(newLp.getHttpProxy());
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002602 }
2603 } else {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002604 if (VDBG) {
2605 log("handleConnectivityChange: changed linkProperty[" + netType + "]:" +
2606 " doReset=" + doReset + " resetMask=" + resetMask +
2607 "\n curLp=" + curLp +
2608 "\n newLp= null");
Robert Greenwalt42acef32009-08-12 16:08:25 -07002609 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002610 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002611 mCurrentLinkProperties[netType] = newLp;
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002612 boolean resetDns = updateRoutes(newLp, curLp, mNetConfigs[netType].isDefault(), exempt,
2613 mNetTrackers[netType].getNetwork().netId);
Robert Greenwaltec896c62011-06-15 12:22:07 -07002614
Chia-chi Yeh0c074e62011-08-15 15:19:40 -07002615 if (resetMask != 0 || resetDns) {
Wink Saville948282b2013-08-29 08:55:16 -07002616 if (VDBG) log("handleConnectivityChange: resetting");
Robert Greenwalt80eb63b2013-05-23 18:33:06 -07002617 if (curLp != null) {
Wink Saville948282b2013-08-29 08:55:16 -07002618 if (VDBG) log("handleConnectivityChange: resetting curLp=" + curLp);
Robert Greenwalt80eb63b2013-05-23 18:33:06 -07002619 for (String iface : curLp.getAllInterfaceNames()) {
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002620 if (TextUtils.isEmpty(iface) == false) {
2621 if (resetMask != 0) {
2622 if (DBG) log("resetConnections(" + iface + ", " + resetMask + ")");
2623 NetworkUtils.resetConnections(iface, resetMask);
Chia-chi Yeh0c074e62011-08-15 15:19:40 -07002624
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002625 // Tell VPN the interface is down. It is a temporary
2626 // but effective fix to make VPN aware of the change.
2627 if ((resetMask & NetworkUtils.RESET_IPV4_ADDRESSES) != 0) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002628 synchronized(mVpns) {
2629 for (int i = 0; i < mVpns.size(); i++) {
2630 mVpns.valueAt(i).interfaceStatusChanged(iface, false);
2631 }
2632 }
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002633 }
Chia-chi Yeh0c074e62011-08-15 15:19:40 -07002634 }
Robert Greenwalt80eb63b2013-05-23 18:33:06 -07002635 } else {
2636 loge("Can't reset connection for type "+netType);
Robert Greenwaltf125a092011-08-15 12:31:55 -07002637 }
Robert Greenwaltec896c62011-06-15 12:22:07 -07002638 }
Paul Jensen13e817d2014-04-10 14:16:37 -04002639 if (resetDns) {
2640 flushVmDnsCache();
2641 if (VDBG) log("resetting DNS cache for type " + netType);
2642 try {
2643 mNetd.flushNetworkDnsCache(mNetTrackers[netType].getNetwork().netId);
2644 } catch (Exception e) {
2645 // never crash - catch them all
2646 if (DBG) loge("Exception resetting dns cache: " + e);
2647 }
2648 }
Robert Greenwaltec896c62011-06-15 12:22:07 -07002649 }
2650 }
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05002651
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +09002652 // Update 464xlat state.
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +09002653 NetworkStateTracker tracker = mNetTrackers[netType];
2654 if (mClat.requiresClat(netType, tracker)) {
Wink Saville948282b2013-08-29 08:55:16 -07002655
Lorenzo Colittid2ef1e52013-03-28 14:13:43 +09002656 // If the connection was previously using clat, but is not using it now, stop the clat
2657 // daemon. Normally, this happens automatically when the connection disconnects, but if
2658 // the disconnect is not reported, or if the connection's LinkProperties changed for
2659 // some other reason (e.g., handoff changes the IP addresses on the link), it would
2660 // still be running. If it's not running, then stopping it is a no-op.
2661 if (Nat464Xlat.isRunningClat(curLp) && !Nat464Xlat.isRunningClat(newLp)) {
2662 mClat.stopClat();
2663 }
2664 // If the link requires clat to be running, then start the daemon now.
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +09002665 if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
2666 mClat.startClat(tracker);
2667 } else {
2668 mClat.stopClat();
2669 }
2670 }
2671
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05002672 // TODO: Temporary notifying upstread change to Tethering.
2673 // @see bug/4455071
2674 /** Notify TetheringService if interface name has been changed. */
2675 if (TextUtils.equals(mNetTrackers[netType].getNetworkInfo().getReason(),
Wink Savillea639b312012-07-10 12:37:54 -07002676 PhoneConstants.REASON_LINK_PROPERTIES_CHANGED)) {
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05002677 if (isTetheringSupported()) {
2678 mTethering.handleTetherIfaceChange();
2679 }
2680 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002681 }
2682
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002683 /**
2684 * Add and remove routes using the old properties (null if not previously connected),
2685 * new properties (null if becoming disconnected). May even be double null, which
2686 * is a noop.
2687 * Uses isLinkDefault to determine if default routes should be set or conversely if
2688 * host routes should be set to the dns servers
Robert Greenwaltf125a092011-08-15 12:31:55 -07002689 * returns a boolean indicating the routes changed
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002690 */
Robert Greenwaltf125a092011-08-15 12:31:55 -07002691 private boolean updateRoutes(LinkProperties newLp, LinkProperties curLp,
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002692 boolean isLinkDefault, boolean exempt, int netId) {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002693 Collection<RouteInfo> routesToAdd = null;
Robert Greenwaltad55d352011-07-22 11:55:33 -07002694 CompareResult<InetAddress> dnsDiff = new CompareResult<InetAddress>();
2695 CompareResult<RouteInfo> routeDiff = new CompareResult<RouteInfo>();
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002696 if (curLp != null) {
2697 // check for the delta between the current set and the new
Lorenzo Colittid1e0fae2013-07-31 23:23:21 +09002698 routeDiff = curLp.compareAllRoutes(newLp);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002699 dnsDiff = curLp.compareDnses(newLp);
Robert Greenwaltad55d352011-07-22 11:55:33 -07002700 } else if (newLp != null) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09002701 routeDiff.added = newLp.getAllRoutes();
Robert Greenwaltad55d352011-07-22 11:55:33 -07002702 dnsDiff.added = newLp.getDnses();
Irfan Sheriffd649c122010-06-09 15:39:36 -07002703 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002704
Robert Greenwaltf125a092011-08-15 12:31:55 -07002705 boolean routesChanged = (routeDiff.removed.size() != 0 || routeDiff.added.size() != 0);
2706
Robert Greenwaltad55d352011-07-22 11:55:33 -07002707 for (RouteInfo r : routeDiff.removed) {
2708 if (isLinkDefault || ! r.isDefaultRoute()) {
Wink Saville948282b2013-08-29 08:55:16 -07002709 if (VDBG) log("updateRoutes: default remove route r=" + r);
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002710 removeRoute(curLp, r, TO_DEFAULT_TABLE, netId);
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07002711 }
2712 if (isLinkDefault == false) {
2713 // remove from a secondary route table
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002714 removeRoute(curLp, r, TO_SECONDARY_TABLE, netId);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002715 }
Robert Greenwaltad55d352011-07-22 11:55:33 -07002716 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002717
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002718 for (RouteInfo r : routeDiff.added) {
2719 if (isLinkDefault || ! r.isDefaultRoute()) {
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002720 addRoute(newLp, r, TO_DEFAULT_TABLE, exempt, netId);
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002721 } else {
2722 // add to a secondary route table
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002723 addRoute(newLp, r, TO_SECONDARY_TABLE, UNEXEMPT, netId);
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002724
2725 // many radios add a default route even when we don't want one.
2726 // remove the default route unless somebody else has asked for it
2727 String ifaceName = newLp.getInterfaceName();
Chad Brubakerf336d722013-07-15 16:34:04 -07002728 synchronized (mRoutesLock) {
2729 if (!TextUtils.isEmpty(ifaceName) && !mAddedRoutes.contains(r)) {
2730 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
2731 try {
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07002732 mNetd.removeRoute(netId, r);
Chad Brubakerf336d722013-07-15 16:34:04 -07002733 } catch (Exception e) {
2734 // never crash - catch them all
2735 if (DBG) loge("Exception trying to remove a route: " + e);
2736 }
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002737 }
2738 }
2739 }
2740 }
2741
Robert Greenwaltf125a092011-08-15 12:31:55 -07002742 return routesChanged;
Irfan Sheriffd649c122010-06-09 15:39:36 -07002743 }
2744
sy.yun9d9b74a2013-09-02 05:24:09 +09002745 /**
2746 * Reads the network specific MTU size from reources.
2747 * and set it on it's iface.
2748 */
2749 private void updateMtuSizeSettings(NetworkStateTracker nt) {
2750 final String iface = nt.getLinkProperties().getInterfaceName();
2751 final int mtu = nt.getLinkProperties().getMtu();
2752
2753 if (mtu < 68 || mtu > 10000) {
Patrick Tjina45610f2014-02-19 11:28:08 -08002754 loge("Unexpected mtu value: " + mtu + ", " + nt);
sy.yun9d9b74a2013-09-02 05:24:09 +09002755 return;
2756 }
2757
2758 try {
2759 if (VDBG) log("Setting MTU size: " + iface + ", " + mtu);
2760 mNetd.setMtu(iface, mtu);
2761 } catch (Exception e) {
2762 Slog.e(TAG, "exception in setMtu()" + e);
2763 }
2764 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002765
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002766 /**
Irfan Sheriffd649c122010-06-09 15:39:36 -07002767 * Reads the network specific TCP buffer sizes from SystemProperties
2768 * net.tcp.buffersize.[default|wifi|umts|edge|gprs] and set them for system
2769 * wide use
2770 */
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002771 private void updateNetworkSettings(NetworkStateTracker nt) {
Irfan Sheriffd649c122010-06-09 15:39:36 -07002772 String key = nt.getTcpBufferSizesPropName();
Jeff Sharkey899223b2012-08-04 15:24:58 -07002773 String bufferSizes = key == null ? null : SystemProperties.get(key);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002774
Jeff Sharkey899223b2012-08-04 15:24:58 -07002775 if (TextUtils.isEmpty(bufferSizes)) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07002776 if (VDBG) log(key + " not found in system properties. Using defaults");
Irfan Sheriffd649c122010-06-09 15:39:36 -07002777
2778 // Setting to default values so we won't be stuck to previous values
2779 key = "net.tcp.buffersize.default";
2780 bufferSizes = SystemProperties.get(key);
2781 }
2782
2783 // Set values in kernel
2784 if (bufferSizes.length() != 0) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07002785 if (VDBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002786 log("Setting TCP values: [" + bufferSizes
Irfan Sheriffd649c122010-06-09 15:39:36 -07002787 + "] which comes from [" + key + "]");
2788 }
2789 setBufferSize(bufferSizes);
2790 }
JP Abgrall32d1ac4d2014-02-21 12:05:20 -08002791
2792 final String defaultRwndKey = "net.tcp.default_init_rwnd";
2793 int defaultRwndValue = SystemProperties.getInt(defaultRwndKey, 0);
2794 Integer rwndValue = Settings.Global.getInt(mContext.getContentResolver(),
2795 Settings.Global.TCP_DEFAULT_INIT_RWND, defaultRwndValue);
2796 final String sysctlKey = "sys.sysctl.tcp_def_init_rwnd";
2797 if (rwndValue != 0) {
2798 SystemProperties.set(sysctlKey, rwndValue.toString());
2799 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002800 }
2801
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002802 /**
Irfan Sheriffd649c122010-06-09 15:39:36 -07002803 * Writes TCP buffer sizes to /sys/kernel/ipv4/tcp_[r/w]mem_[min/def/max]
2804 * which maps to /proc/sys/net/ipv4/tcp_rmem and tcpwmem
2805 *
2806 * @param bufferSizes in the format of "readMin, readInitial, readMax,
2807 * writeMin, writeInitial, writeMax"
2808 */
2809 private void setBufferSize(String bufferSizes) {
2810 try {
2811 String[] values = bufferSizes.split(",");
2812
2813 if (values.length == 6) {
2814 final String prefix = "/sys/kernel/ipv4/tcp_";
Mike Lockwoodda8bb742011-05-28 13:24:04 -04002815 FileUtils.stringToFile(prefix + "rmem_min", values[0]);
2816 FileUtils.stringToFile(prefix + "rmem_def", values[1]);
2817 FileUtils.stringToFile(prefix + "rmem_max", values[2]);
2818 FileUtils.stringToFile(prefix + "wmem_min", values[3]);
2819 FileUtils.stringToFile(prefix + "wmem_def", values[4]);
2820 FileUtils.stringToFile(prefix + "wmem_max", values[5]);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002821 } else {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002822 loge("Invalid buffersize string: " + bufferSizes);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002823 }
2824 } catch (IOException e) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002825 loge("Can't set tcp buffer sizes:" + e);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002826 }
2827 }
2828
Robert Greenwalt42acef32009-08-12 16:08:25 -07002829 /**
2830 * Adjust the per-process dns entries (net.dns<x>.<pid>) based
2831 * on the highest priority active net which this process requested.
2832 * If there aren't any, clear it out
2833 */
Mattias Falk8b47b362011-08-23 14:15:13 +02002834 private void reassessPidDns(int pid, boolean doBump)
Robert Greenwalt42acef32009-08-12 16:08:25 -07002835 {
Mattias Falk8b47b362011-08-23 14:15:13 +02002836 if (VDBG) log("reassessPidDns for pid " + pid);
2837 Integer myPid = new Integer(pid);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002838 for(int i : mPriorityList) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002839 if (mNetConfigs[i].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002840 continue;
2841 }
2842 NetworkStateTracker nt = mNetTrackers[i];
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002843 if (nt.getNetworkInfo().isConnected() &&
2844 !nt.isTeardownRequested()) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07002845 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07002846 if (p == null) continue;
Mattias Falk8b47b362011-08-23 14:15:13 +02002847 if (mNetRequestersPids[i].contains(myPid)) {
2848 try {
Paul Jensen13e817d2014-04-10 14:16:37 -04002849 // TODO: Reimplement this via local variable in bionic.
2850 // mNetd.setDnsNetworkForPid(nt.getNetwork().netId, pid);
Mattias Falk8b47b362011-08-23 14:15:13 +02002851 } catch (Exception e) {
2852 Slog.e(TAG, "exception reasseses pid dns: " + e);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002853 }
Mattias Falk8b47b362011-08-23 14:15:13 +02002854 return;
Robert Greenwalt42acef32009-08-12 16:08:25 -07002855 }
2856 }
2857 }
2858 // nothing found - delete
Mattias Falk8b47b362011-08-23 14:15:13 +02002859 try {
Paul Jensen13e817d2014-04-10 14:16:37 -04002860 // TODO: Reimplement this via local variable in bionic.
2861 // mNetd.clearDnsNetworkForPid(pid);
Mattias Falk8b47b362011-08-23 14:15:13 +02002862 } catch (Exception e) {
2863 Slog.e(TAG, "exception clear interface from pid: " + e);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002864 }
2865 }
2866
Mattias Falk8b47b362011-08-23 14:15:13 +02002867 private void flushVmDnsCache() {
Robert Greenwalt03595d02010-11-02 14:08:23 -07002868 /*
2869 * Tell the VMs to toss their DNS caches
2870 */
2871 Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
2872 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Stan Chesnutt3d1db862011-01-05 17:14:03 -08002873 /*
2874 * Connectivity events can happen before boot has completed ...
2875 */
2876 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07002877 final long ident = Binder.clearCallingIdentity();
2878 try {
2879 mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
2880 } finally {
2881 Binder.restoreCallingIdentity(ident);
2882 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002883 }
2884
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002885 // Caller must grab mDnsLock.
Paul Jensen13e817d2014-04-10 14:16:37 -04002886 private void updateDnsLocked(String network, int netId,
2887 Collection<InetAddress> dnses, String domains) {
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002888 int last = 0;
2889 if (dnses.size() == 0 && mDefaultDns != null) {
Mattias Falk8b47b362011-08-23 14:15:13 +02002890 dnses = new ArrayList();
2891 dnses.add(mDefaultDns);
2892 if (DBG) {
2893 loge("no dns provided for " + network + " - using " + mDefaultDns.getHostAddress());
Robert Greenwalt63837f42013-01-19 00:34:07 +00002894 }
Robert Greenwalt63837f42013-01-19 00:34:07 +00002895 }
2896
Mattias Falk8b47b362011-08-23 14:15:13 +02002897 try {
Paul Jensen13e817d2014-04-10 14:16:37 -04002898 mNetd.setDnsServersForNetwork(netId, NetworkUtils.makeStrings(dnses), domains);
Chad Brubaker20a7e882013-07-23 17:13:36 -07002899
Robert Greenwalt0dd19a82013-02-11 15:25:10 -08002900 for (InetAddress dns : dnses) {
2901 ++last;
2902 String key = "net.dns" + last;
2903 String value = dns.getHostAddress();
2904 SystemProperties.set(key, value);
2905 }
2906 for (int i = last + 1; i <= mNumDnsEntries; ++i) {
2907 String key = "net.dns" + i;
2908 SystemProperties.set(key, "");
2909 }
2910 mNumDnsEntries = last;
Mattias Falk8b47b362011-08-23 14:15:13 +02002911 } catch (Exception e) {
Robert Greenwalt69887e82013-09-24 11:05:57 -07002912 loge("exception setting default dns interface: " + e);
Robert Greenwalt63837f42013-01-19 00:34:07 +00002913 }
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002914 }
2915
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002916 private void handleDnsConfigurationChange(int netType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002917 // add default net's dns entries
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002918 NetworkStateTracker nt = mNetTrackers[netType];
2919 if (nt != null && nt.getNetworkInfo().isConnected() && !nt.isTeardownRequested()) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07002920 LinkProperties p = nt.getLinkProperties();
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002921 if (p == null) return;
2922 Collection<InetAddress> dnses = p.getDnses();
Paul Jensen13e817d2014-04-10 14:16:37 -04002923 int netId = nt.getNetwork().netId;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002924 if (mNetConfigs[netType].isDefault()) {
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002925 String network = nt.getNetworkInfo().getTypeName();
2926 synchronized (mDnsLock) {
Paul Jensen13e817d2014-04-10 14:16:37 -04002927 updateDnsLocked(network, netId, dnses, p.getDomains());
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002928 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002929 } else {
Robert Greenwalta10b7fd2011-07-25 16:06:25 -07002930 try {
Paul Jensen13e817d2014-04-10 14:16:37 -04002931 mNetd.setDnsServersForNetwork(netId,
Robert Greenwalt8058f622012-11-09 10:52:27 -08002932 NetworkUtils.makeStrings(dnses), p.getDomains());
Robert Greenwalta10b7fd2011-07-25 16:06:25 -07002933 } catch (Exception e) {
Robert Greenwalt8beff952011-12-13 15:26:02 -08002934 if (DBG) loge("exception setting dns servers: " + e);
Robert Greenwalta10b7fd2011-07-25 16:06:25 -07002935 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002936 // set per-pid dns for attached secondary nets
Mattias Falk8b47b362011-08-23 14:15:13 +02002937 List<Integer> pids = mNetRequestersPids[netType];
2938 for (Integer pid : pids) {
2939 try {
Paul Jensen13e817d2014-04-10 14:16:37 -04002940 // TODO: Reimplement this via local variable in bionic.
2941 // mNetd.setDnsNetworkForPid(netId, pid);
Mattias Falk8b47b362011-08-23 14:15:13 +02002942 } catch (Exception e) {
2943 Slog.e(TAG, "exception setting interface for pid: " + e);
2944 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002945 }
2946 }
Mattias Falk8b47b362011-08-23 14:15:13 +02002947 flushVmDnsCache();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002948 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002949 }
2950
Robert Greenwaltf2102f72011-05-03 19:02:44 -07002951 private int getRestoreDefaultNetworkDelay(int networkType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002952 String restoreDefaultNetworkDelayStr = SystemProperties.get(
2953 NETWORK_RESTORE_DELAY_PROP_NAME);
2954 if(restoreDefaultNetworkDelayStr != null &&
2955 restoreDefaultNetworkDelayStr.length() != 0) {
2956 try {
2957 return Integer.valueOf(restoreDefaultNetworkDelayStr);
2958 } catch (NumberFormatException e) {
2959 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002960 }
Robert Greenwaltf2102f72011-05-03 19:02:44 -07002961 // if the system property isn't set, use the value for the apn type
2962 int ret = RESTORE_DEFAULT_NETWORK_DELAY;
2963
2964 if ((networkType <= ConnectivityManager.MAX_NETWORK_TYPE) &&
2965 (mNetConfigs[networkType] != null)) {
2966 ret = mNetConfigs[networkType].restoreTime;
2967 }
2968 return ret;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002969 }
2970
2971 @Override
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002972 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
2973 final IndentingPrintWriter pw = new IndentingPrintWriter(writer, " ");
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002974 if (mContext.checkCallingOrSelfPermission(
2975 android.Manifest.permission.DUMP)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002976 != PackageManager.PERMISSION_GRANTED) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002977 pw.println("Permission Denial: can't dump ConnectivityService " +
2978 "from from pid=" + Binder.getCallingPid() + ", uid=" +
2979 Binder.getCallingUid());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002980 return;
2981 }
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002982
2983 // TODO: add locking to get atomic snapshot
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002984 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002985 for (int i = 0; i < mNetTrackers.length; i++) {
2986 final NetworkStateTracker nst = mNetTrackers[i];
Robert Greenwaltb9285352009-12-21 18:24:07 -08002987 if (nst != null) {
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002988 pw.println("NetworkStateTracker for " + getNetworkTypeName(i) + ":");
2989 pw.increaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08002990 if (nst.getNetworkInfo().isConnected()) {
2991 pw.println("Active network: " + nst.getNetworkInfo().
2992 getTypeName());
2993 }
2994 pw.println(nst.getNetworkInfo());
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002995 pw.println(nst.getLinkProperties());
Robert Greenwaltb9285352009-12-21 18:24:07 -08002996 pw.println(nst);
2997 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002998 pw.decreaseIndent();
Robert Greenwalt42acef32009-08-12 16:08:25 -07002999 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003000 }
Robert Greenwaltb9285352009-12-21 18:24:07 -08003001
Dianne Hackborn77b987f2014-02-26 16:20:52 -08003002 pw.print("Active default network: "); pw.println(getNetworkTypeName(mActiveDefaultNetwork));
3003 pw.println();
3004
Robert Greenwaltb9285352009-12-21 18:24:07 -08003005 pw.println("Network Requester Pids:");
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003006 pw.increaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08003007 for (int net : mPriorityList) {
3008 String pidString = net + ": ";
Mattias Falk8b47b362011-08-23 14:15:13 +02003009 for (Integer pid : mNetRequestersPids[net]) {
Robert Greenwaltb9285352009-12-21 18:24:07 -08003010 pidString = pidString + pid.toString() + ", ";
3011 }
3012 pw.println(pidString);
3013 }
3014 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003015 pw.decreaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08003016
3017 pw.println("FeatureUsers:");
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003018 pw.increaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08003019 for (Object requester : mFeatureUsers) {
3020 pw.println(requester.toString());
3021 }
3022 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003023 pw.decreaseIndent();
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003024
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003025 synchronized (this) {
3026 pw.println("NetworkTranstionWakeLock is currently " +
3027 (mNetTransitionWakeLock.isHeld() ? "" : "not ") + "held.");
3028 pw.println("It was last requested for "+mNetTransitionWakeLockCausedBy);
3029 }
3030 pw.println();
3031
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003032 mTethering.dump(fd, pw, args);
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003033
3034 if (mInetLog != null) {
3035 pw.println();
3036 pw.println("Inet condition reports:");
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003037 pw.increaseIndent();
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003038 for(int i = 0; i < mInetLog.size(); i++) {
3039 pw.println(mInetLog.get(i));
3040 }
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003041 pw.decreaseIndent();
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003042 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003043 }
3044
Robert Greenwalt42acef32009-08-12 16:08:25 -07003045 // must be stateless - things change under us.
Jeff Sharkey4c628eb2012-07-23 13:19:46 -07003046 private class NetworkStateTrackerHandler extends Handler {
3047 public NetworkStateTrackerHandler(Looper looper) {
Wink Savillebb08caf2010-09-02 19:23:52 -07003048 super(looper);
3049 }
3050
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003051 @Override
3052 public void handleMessage(Message msg) {
3053 NetworkInfo info;
3054 switch (msg.what) {
Robert Greenwalte049c232014-04-11 15:53:27 -07003055 case AsyncChannel.CMD_CHANNEL_HALF_CONNECTED: {
3056 AsyncChannel ac = (AsyncChannel) msg.obj;
3057 if (mNetworkFactories.contains(ac)) {
3058 if (msg.arg1 == AsyncChannel.STATUS_SUCCESSFUL) {
3059 if (VDBG) log("NetworkFactory connected");
3060 for (int i = 0; i < mNetworkRequests.size(); i++) {
3061 ac.sendMessage(NetworkFactoryProtocol.CMD_REQUEST_NETWORK,
3062 mNetworkRequests.valueAt(i));
3063 }
3064 } else {
3065 loge("Error connecting NetworkFactory");
3066 mNetworkFactories.remove((AsyncChannel) msg.obj);
3067 }
3068 }
3069 break;
3070 }
Wink Saville948282b2013-08-29 08:55:16 -07003071 case NetworkStateTracker.EVENT_STATE_CHANGED: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003072 info = (NetworkInfo) msg.obj;
Robert Greenwalt511288a2009-12-07 11:33:18 -08003073 NetworkInfo.State state = info.getState();
Robert Greenwalt511288a2009-12-07 11:33:18 -08003074
Wink Savillec9acde92011-09-21 11:05:43 -07003075 if (VDBG || (state == NetworkInfo.State.CONNECTED) ||
Wink Saville67c38212013-09-05 12:02:25 -07003076 (state == NetworkInfo.State.DISCONNECTED) ||
3077 (state == NetworkInfo.State.SUSPENDED)) {
Wink Savillec9acde92011-09-21 11:05:43 -07003078 log("ConnectivityChange for " +
Robert Greenwalt86e9e552009-07-16 17:21:39 -07003079 info.getTypeName() + ": " +
Robert Greenwalt511288a2009-12-07 11:33:18 -08003080 state + "/" + info.getDetailedState());
Wink Savillec9acde92011-09-21 11:05:43 -07003081 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003082
Wink Saville948282b2013-08-29 08:55:16 -07003083 // Since mobile has the notion of a network/apn that can be used for
3084 // provisioning we need to check every time we're connected as
3085 // CaptiveProtalTracker won't detected it because DCT doesn't report it
3086 // as connected as ACTION_ANY_DATA_CONNECTION_STATE_CHANGED instead its
3087 // reported as ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN. Which
3088 // is received by MDST and sent here as EVENT_STATE_CHANGED.
3089 if (ConnectivityManager.isNetworkTypeMobile(info.getType())
Wink Savillefde1ac92013-07-16 17:16:37 -07003090 && (0 != Settings.Global.getInt(mContext.getContentResolver(),
3091 Settings.Global.DEVICE_PROVISIONED, 0))
Wink Saville127beff2013-09-14 09:04:53 -07003092 && (((state == NetworkInfo.State.CONNECTED)
3093 && (info.getType() == ConnectivityManager.TYPE_MOBILE))
3094 || info.isConnectedToProvisioningNetwork())) {
3095 log("ConnectivityChange checkMobileProvisioning for"
3096 + " TYPE_MOBILE or ProvisioningNetwork");
Wink Saville948282b2013-08-29 08:55:16 -07003097 checkMobileProvisioning(CheckMp.MAX_TIMEOUT_MS);
Wink Savillefde1ac92013-07-16 17:16:37 -07003098 }
3099
Jeff Sharkey2528b502012-11-09 15:57:02 -08003100 EventLogTags.writeConnectivityStateChanged(
3101 info.getType(), info.getSubtype(), info.getDetailedState().ordinal());
Robert Greenwalt86e9e552009-07-16 17:21:39 -07003102
3103 if (info.getDetailedState() ==
3104 NetworkInfo.DetailedState.FAILED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003105 handleConnectionFailure(info);
Wink Saville67c38212013-09-05 12:02:25 -07003106 } else if (info.isConnectedToProvisioningNetwork()) {
Wink Saville948282b2013-08-29 08:55:16 -07003107 /**
3108 * TODO: Create ConnectivityManager.TYPE_MOBILE_PROVISIONING
3109 * for now its an in between network, its a network that
3110 * is actually a default network but we don't want it to be
3111 * announced as such to keep background applications from
3112 * trying to use it. It turns out that some still try so we
3113 * take the additional step of clearing any default routes
3114 * to the link that may have incorrectly setup by the lower
3115 * levels.
3116 */
3117 LinkProperties lp = getLinkProperties(info.getType());
3118 if (DBG) {
3119 log("EVENT_STATE_CHANGED: connected to provisioning network, lp=" + lp);
3120 }
3121
3122 // Clear any default routes setup by the radio so
3123 // any activity by applications trying to use this
3124 // connection will fail until the provisioning network
3125 // is enabled.
3126 for (RouteInfo r : lp.getRoutes()) {
Sreeram Ramachandranb2829fa2014-04-15 19:07:12 -07003127 removeRoute(lp, r, TO_DEFAULT_TABLE,
3128 mNetTrackers[info.getType()].getNetwork().netId);
Wink Saville948282b2013-08-29 08:55:16 -07003129 }
Robert Greenwalt511288a2009-12-07 11:33:18 -08003130 } else if (state == NetworkInfo.State.DISCONNECTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003131 handleDisconnect(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08003132 } else if (state == NetworkInfo.State.SUSPENDED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003133 // TODO: need to think this over.
Robert Greenwalt86e9e552009-07-16 17:21:39 -07003134 // the logic here is, handle SUSPENDED the same as
3135 // DISCONNECTED. The only difference being we are
3136 // broadcasting an intent with NetworkInfo that's
3137 // suspended. This allows the applications an
3138 // opportunity to handle DISCONNECTED and SUSPENDED
3139 // differently, or not.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003140 handleDisconnect(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08003141 } else if (state == NetworkInfo.State.CONNECTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003142 handleConnect(info);
3143 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003144 if (mLockdownTracker != null) {
3145 mLockdownTracker.onNetworkInfoChanged(info);
3146 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003147 break;
Wink Saville948282b2013-08-29 08:55:16 -07003148 }
3149 case NetworkStateTracker.EVENT_CONFIGURATION_CHANGED: {
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07003150 info = (NetworkInfo) msg.obj;
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05003151 // TODO: Temporary allowing network configuration
3152 // change not resetting sockets.
3153 // @see bug/4455071
3154 handleConnectivityChange(info.getType(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003155 break;
Wink Saville948282b2013-08-29 08:55:16 -07003156 }
3157 case NetworkStateTracker.EVENT_NETWORK_SUBTYPE_CHANGED: {
Robert Greenwaltd14e1762012-08-20 11:15:39 -07003158 info = (NetworkInfo) msg.obj;
Wink Saville948282b2013-08-29 08:55:16 -07003159 int type = info.getType();
Robert Greenwaltd49f64c2014-02-28 16:44:00 -08003160 if (mNetConfigs[type].isDefault()) updateNetworkSettings(mNetTrackers[type]);
Robert Greenwaltd14e1762012-08-20 11:15:39 -07003161 break;
Wink Saville948282b2013-08-29 08:55:16 -07003162 }
Jeff Sharkey4c628eb2012-07-23 13:19:46 -07003163 }
3164 }
3165 }
3166
3167 private class InternalHandler extends Handler {
3168 public InternalHandler(Looper looper) {
3169 super(looper);
3170 }
3171
3172 @Override
3173 public void handleMessage(Message msg) {
3174 NetworkInfo info;
3175 switch (msg.what) {
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003176 case EVENT_CLEAR_NET_TRANSITION_WAKELOCK: {
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003177 String causedBy = null;
3178 synchronized (ConnectivityService.this) {
3179 if (msg.arg1 == mNetTransitionWakeLockSerialNumber &&
3180 mNetTransitionWakeLock.isHeld()) {
3181 mNetTransitionWakeLock.release();
3182 causedBy = mNetTransitionWakeLockCausedBy;
3183 }
3184 }
3185 if (causedBy != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08003186 log("NetTransition Wakelock for " + causedBy + " released by timeout");
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003187 }
Robert Greenwalt057d5e92010-09-09 14:05:10 -07003188 break;
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003189 }
3190 case EVENT_RESTORE_DEFAULT_NETWORK: {
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07003191 FeatureUser u = (FeatureUser)msg.obj;
3192 u.expire();
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003193 break;
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003194 }
3195 case EVENT_INET_CONDITION_CHANGE: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003196 int netType = msg.arg1;
3197 int condition = msg.arg2;
3198 handleInetConditionChange(netType, condition);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003199 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003200 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003201 case EVENT_INET_CONDITION_HOLD_END: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003202 int netType = msg.arg1;
3203 int sequence = msg.arg2;
Wink Saville5b7573e2013-01-31 00:30:13 +00003204 handleInetConditionHoldEnd(netType, sequence);
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003205 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003206 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003207 case EVENT_SET_NETWORK_PREFERENCE: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003208 int preference = msg.arg1;
3209 handleSetNetworkPreference(preference);
3210 break;
3211 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003212 case EVENT_SET_MOBILE_DATA: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003213 boolean enabled = (msg.arg1 == ENABLED);
3214 handleSetMobileData(enabled);
3215 break;
3216 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003217 case EVENT_APPLY_GLOBAL_HTTP_PROXY: {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003218 handleDeprecatedGlobalHttpProxy();
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07003219 break;
3220 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003221 case EVENT_SET_DEPENDENCY_MET: {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07003222 boolean met = (msg.arg1 == ENABLED);
3223 handleSetDependencyMet(msg.arg2, met);
3224 break;
Robert Greenwalt434203a2010-10-11 16:00:27 -07003225 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003226 case EVENT_SEND_STICKY_BROADCAST_INTENT: {
Wink Saville628b0852011-08-04 15:01:58 -07003227 Intent intent = (Intent)msg.obj;
Wink Saville628b0852011-08-04 15:01:58 -07003228 sendStickyBroadcast(intent);
3229 break;
3230 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003231 case EVENT_SET_POLICY_DATA_ENABLE: {
3232 final int networkType = msg.arg1;
3233 final boolean enabled = msg.arg2 == ENABLED;
3234 handleSetPolicyDataEnable(networkType, enabled);
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003235 break;
3236 }
3237 case EVENT_VPN_STATE_CHANGED: {
3238 if (mLockdownTracker != null) {
3239 mLockdownTracker.onVpnStateChanged((NetworkInfo) msg.obj);
3240 }
3241 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003242 }
Wink Savilleab9321d2013-06-29 21:10:57 -07003243 case EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: {
3244 int tag = mEnableFailFastMobileDataTag.get();
3245 if (msg.arg1 == tag) {
3246 MobileDataStateTracker mobileDst =
3247 (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE];
3248 if (mobileDst != null) {
3249 mobileDst.setEnableFailFastMobileData(msg.arg2);
3250 }
3251 } else {
3252 log("EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: stale arg1:" + msg.arg1
3253 + " != tag:" + tag);
3254 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003255 break;
Wink Savilleab9321d2013-06-29 21:10:57 -07003256 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003257 case EVENT_SAMPLE_INTERVAL_ELAPSED: {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07003258 handleNetworkSamplingTimeout();
3259 break;
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003260 }
Jason Monkdecd2952013-10-10 14:02:51 -04003261 case EVENT_PROXY_HAS_CHANGED: {
Jason Monk207900c2014-04-25 15:00:09 -04003262 handleApplyDefaultProxy((ProxyInfo)msg.obj);
Jason Monkdecd2952013-10-10 14:02:51 -04003263 break;
3264 }
Robert Greenwalte049c232014-04-11 15:53:27 -07003265 case EVENT_REGISTER_NETWORK_FACTORY: {
3266 handleRegisterNetworkFactory((Messenger)msg.obj);
3267 break;
3268 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003269 }
3270 }
3271 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003272
3273 // javadoc from interface
Robert Greenwalt5a735062010-03-02 17:25:02 -08003274 public int tether(String iface) {
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003275 enforceTetherChangePermission();
Robert Greenwalt5a735062010-03-02 17:25:02 -08003276
3277 if (isTetheringSupported()) {
3278 return mTethering.tether(iface);
3279 } else {
3280 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3281 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003282 }
3283
3284 // javadoc from interface
Robert Greenwalt5a735062010-03-02 17:25:02 -08003285 public int untether(String iface) {
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003286 enforceTetherChangePermission();
Robert Greenwalt5a735062010-03-02 17:25:02 -08003287
3288 if (isTetheringSupported()) {
3289 return mTethering.untether(iface);
3290 } else {
3291 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3292 }
3293 }
3294
3295 // javadoc from interface
3296 public int getLastTetherError(String iface) {
3297 enforceTetherAccessPermission();
3298
3299 if (isTetheringSupported()) {
3300 return mTethering.getLastTetherError(iface);
3301 } else {
3302 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3303 }
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003304 }
3305
3306 // TODO - proper iface API for selection by property, inspection, etc
3307 public String[] getTetherableUsbRegexs() {
3308 enforceTetherAccessPermission();
3309 if (isTetheringSupported()) {
3310 return mTethering.getTetherableUsbRegexs();
3311 } else {
3312 return new String[0];
3313 }
3314 }
3315
3316 public String[] getTetherableWifiRegexs() {
3317 enforceTetherAccessPermission();
3318 if (isTetheringSupported()) {
3319 return mTethering.getTetherableWifiRegexs();
3320 } else {
3321 return new String[0];
3322 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003323 }
3324
Danica Chang6fdd0c62010-08-11 14:54:43 -07003325 public String[] getTetherableBluetoothRegexs() {
3326 enforceTetherAccessPermission();
3327 if (isTetheringSupported()) {
3328 return mTethering.getTetherableBluetoothRegexs();
3329 } else {
3330 return new String[0];
3331 }
3332 }
3333
Mike Lockwood6c2260b2011-07-19 13:04:47 -07003334 public int setUsbTethering(boolean enable) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08003335 enforceTetherChangePermission();
Mike Lockwood6c2260b2011-07-19 13:04:47 -07003336 if (isTetheringSupported()) {
3337 return mTethering.setUsbTethering(enable);
3338 } else {
3339 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3340 }
3341 }
3342
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003343 // TODO - move iface listing, queries, etc to new module
3344 // javadoc from interface
3345 public String[] getTetherableIfaces() {
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003346 enforceTetherAccessPermission();
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003347 return mTethering.getTetherableIfaces();
3348 }
3349
3350 public String[] getTetheredIfaces() {
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003351 enforceTetherAccessPermission();
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003352 return mTethering.getTetheredIfaces();
3353 }
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003354
Robert Greenwalt5a735062010-03-02 17:25:02 -08003355 public String[] getTetheringErroredIfaces() {
3356 enforceTetherAccessPermission();
3357 return mTethering.getErroredIfaces();
3358 }
3359
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003360 // if ro.tether.denied = true we default to no tethering
3361 // gservices could set the secure setting to 1 though to enable it on a build where it
3362 // had previously been turned off.
3363 public boolean isTetheringSupported() {
3364 enforceTetherAccessPermission();
3365 int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
Jeff Brownbf6f6f92012-09-25 15:03:20 -07003366 boolean tetherEnabledInSettings = (Settings.Global.getInt(mContext.getContentResolver(),
3367 Settings.Global.TETHER_SUPPORTED, defaultVal) != 0);
Robert Greenwaltc13368b2013-07-18 14:24:42 -07003368 return tetherEnabledInSettings && ((mTethering.getTetherableUsbRegexs().length != 0 ||
3369 mTethering.getTetherableWifiRegexs().length != 0 ||
3370 mTethering.getTetherableBluetoothRegexs().length != 0) &&
3371 mTethering.getUpstreamIfaceTypes().length != 0);
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003372 }
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003373
3374 // An API NetworkStateTrackers can call when they lose their network.
3375 // This will automatically be cleared after X seconds or a network becomes CONNECTED,
3376 // whichever happens first. The timer is started by the first caller and not
3377 // restarted by subsequent callers.
3378 public void requestNetworkTransitionWakelock(String forWhom) {
3379 enforceConnectivityInternalPermission();
3380 synchronized (this) {
3381 if (mNetTransitionWakeLock.isHeld()) return;
3382 mNetTransitionWakeLockSerialNumber++;
3383 mNetTransitionWakeLock.acquire();
3384 mNetTransitionWakeLockCausedBy = forWhom;
3385 }
3386 mHandler.sendMessageDelayed(mHandler.obtainMessage(
Robert Greenwaltf3331232010-09-24 14:32:21 -07003387 EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003388 mNetTransitionWakeLockSerialNumber, 0),
3389 mNetTransitionWakeLockTimeout);
3390 return;
3391 }
Robert Greenwaltca4306c2010-09-09 13:15:32 -07003392
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003393 // 100 percent is full good, 0 is full bad.
3394 public void reportInetCondition(int networkType, int percentage) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07003395 if (VDBG) log("reportNetworkCondition(" + networkType + ", " + percentage + ")");
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003396 mContext.enforceCallingOrSelfPermission(
3397 android.Manifest.permission.STATUS_BAR,
3398 "ConnectivityService");
3399
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003400 if (DBG) {
3401 int pid = getCallingPid();
3402 int uid = getCallingUid();
3403 String s = pid + "(" + uid + ") reports inet is " +
3404 (percentage > 50 ? "connected" : "disconnected") + " (" + percentage + ") on " +
3405 "network Type " + networkType + " at " + GregorianCalendar.getInstance().getTime();
3406 mInetLog.add(s);
3407 while(mInetLog.size() > INET_CONDITION_LOG_MAX_SIZE) {
3408 mInetLog.remove(0);
3409 }
3410 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003411 mHandler.sendMessage(mHandler.obtainMessage(
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003412 EVENT_INET_CONDITION_CHANGE, networkType, percentage));
3413 }
3414
3415 private void handleInetConditionChange(int netType, int condition) {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003416 if (mActiveDefaultNetwork == -1) {
Wink Savillec9acde92011-09-21 11:05:43 -07003417 if (DBG) log("handleInetConditionChange: no active default network - ignore");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003418 return;
3419 }
3420 if (mActiveDefaultNetwork != netType) {
Wink Savillec9acde92011-09-21 11:05:43 -07003421 if (DBG) log("handleInetConditionChange: net=" + netType +
3422 " != default=" + mActiveDefaultNetwork + " - ignore");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003423 return;
3424 }
Wink Savillec9acde92011-09-21 11:05:43 -07003425 if (VDBG) {
3426 log("handleInetConditionChange: net=" +
3427 netType + ", condition=" + condition +
Wink Saville5b7573e2013-01-31 00:30:13 +00003428 ",mActiveDefaultNetwork=" + mActiveDefaultNetwork);
Wink Savillec9acde92011-09-21 11:05:43 -07003429 }
Wink Saville5b7573e2013-01-31 00:30:13 +00003430 mDefaultInetCondition = condition;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003431 int delay;
3432 if (mInetConditionChangeInFlight == false) {
Wink Savillec9acde92011-09-21 11:05:43 -07003433 if (VDBG) log("handleInetConditionChange: starting a change hold");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003434 // setup a new hold to debounce this
Wink Saville5b7573e2013-01-31 00:30:13 +00003435 if (mDefaultInetCondition > 50) {
Jeff Sharkey625239a2012-09-26 22:03:49 -07003436 delay = Settings.Global.getInt(mContext.getContentResolver(),
3437 Settings.Global.INET_CONDITION_DEBOUNCE_UP_DELAY, 500);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003438 } else {
Jeff Sharkey625239a2012-09-26 22:03:49 -07003439 delay = Settings.Global.getInt(mContext.getContentResolver(),
3440 Settings.Global.INET_CONDITION_DEBOUNCE_DOWN_DELAY, 3000);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003441 }
3442 mInetConditionChangeInFlight = true;
3443 mHandler.sendMessageDelayed(mHandler.obtainMessage(EVENT_INET_CONDITION_HOLD_END,
Wink Saville5b7573e2013-01-31 00:30:13 +00003444 mActiveDefaultNetwork, mDefaultConnectionSequence), delay);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003445 } else {
Wink Savillec9acde92011-09-21 11:05:43 -07003446 // we've set the new condition, when this hold ends that will get picked up
3447 if (VDBG) log("handleInetConditionChange: currently in hold - not setting new end evt");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003448 }
3449 }
3450
Wink Saville5b7573e2013-01-31 00:30:13 +00003451 private void handleInetConditionHoldEnd(int netType, int sequence) {
Wink Savillec9acde92011-09-21 11:05:43 -07003452 if (DBG) {
Wink Saville5b7573e2013-01-31 00:30:13 +00003453 log("handleInetConditionHoldEnd: net=" + netType +
3454 ", condition=" + mDefaultInetCondition +
3455 ", published condition=" + mDefaultInetConditionPublished);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003456 }
3457 mInetConditionChangeInFlight = false;
3458
3459 if (mActiveDefaultNetwork == -1) {
Wink Savillec9acde92011-09-21 11:05:43 -07003460 if (DBG) log("handleInetConditionHoldEnd: no active default network - ignoring");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003461 return;
3462 }
3463 if (mDefaultConnectionSequence != sequence) {
Wink Savillec9acde92011-09-21 11:05:43 -07003464 if (DBG) log("handleInetConditionHoldEnd: event hold for obsolete network - ignoring");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003465 return;
3466 }
Wink Saville5b7573e2013-01-31 00:30:13 +00003467 // TODO: Figure out why this optimization sometimes causes a
3468 // change in mDefaultInetCondition to be missed and the
3469 // UI to not be updated.
3470 //if (mDefaultInetConditionPublished == mDefaultInetCondition) {
3471 // if (DBG) log("no change in condition - aborting");
3472 // return;
3473 //}
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003474 NetworkInfo networkInfo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
3475 if (networkInfo.isConnected() == false) {
Wink Savillec9acde92011-09-21 11:05:43 -07003476 if (DBG) log("handleInetConditionHoldEnd: default network not connected - ignoring");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003477 return;
3478 }
Wink Saville5b7573e2013-01-31 00:30:13 +00003479 mDefaultInetConditionPublished = mDefaultInetCondition;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003480 sendInetConditionBroadcast(networkInfo);
3481 return;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003482 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003483
Jason Monk207900c2014-04-25 15:00:09 -04003484 public ProxyInfo getProxy() {
Robert Greenwalte436e4f2013-02-22 14:57:00 -08003485 // this information is already available as a world read/writable jvm property
3486 // so this API change wouldn't have a benifit. It also breaks the passing
3487 // of proxy info to all the JVMs.
3488 // enforceAccessPermission();
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003489 synchronized (mProxyLock) {
Jason Monk207900c2014-04-25 15:00:09 -04003490 ProxyInfo ret = mGlobalProxy;
Jason Monk602b2322013-07-03 17:04:33 -04003491 if ((ret == null) && !mDefaultProxyDisabled) ret = mDefaultProxy;
3492 return ret;
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003493 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003494 }
3495
Jason Monk207900c2014-04-25 15:00:09 -04003496 public void setGlobalProxy(ProxyInfo proxyProperties) {
Robert Greenwalta9bebc22013-04-10 15:32:18 -07003497 enforceConnectivityInternalPermission();
Jason Monk602b2322013-07-03 17:04:33 -04003498
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003499 synchronized (mProxyLock) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003500 if (proxyProperties == mGlobalProxy) return;
3501 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
3502 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
3503
3504 String host = "";
3505 int port = 0;
3506 String exclList = "";
Jason Monk602b2322013-07-03 17:04:33 -04003507 String pacFileUrl = "";
3508 if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) ||
Jason Monk207900c2014-04-25 15:00:09 -04003509 (proxyProperties.getPacFileUrl() != null))) {
Raj Mamadgi92d024912013-11-11 13:52:58 -08003510 if (!proxyProperties.isValid()) {
3511 if (DBG)
3512 log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
3513 return;
3514 }
Jason Monk207900c2014-04-25 15:00:09 -04003515 mGlobalProxy = new ProxyInfo(proxyProperties);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003516 host = mGlobalProxy.getHost();
3517 port = mGlobalProxy.getPort();
Jason Monk207900c2014-04-25 15:00:09 -04003518 exclList = mGlobalProxy.getExclusionListAsString();
Jason Monk602b2322013-07-03 17:04:33 -04003519 if (proxyProperties.getPacFileUrl() != null) {
Jason Monk207900c2014-04-25 15:00:09 -04003520 pacFileUrl = proxyProperties.getPacFileUrl().toString();
Jason Monk602b2322013-07-03 17:04:33 -04003521 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003522 } else {
3523 mGlobalProxy = null;
3524 }
3525 ContentResolver res = mContext.getContentResolver();
Robert Greenwalta9bebc22013-04-10 15:32:18 -07003526 final long token = Binder.clearCallingIdentity();
3527 try {
3528 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST, host);
3529 Settings.Global.putInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, port);
3530 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST,
3531 exclList);
Jason Monk602b2322013-07-03 17:04:33 -04003532 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl);
Robert Greenwalta9bebc22013-04-10 15:32:18 -07003533 } finally {
3534 Binder.restoreCallingIdentity(token);
3535 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003536 }
3537
3538 if (mGlobalProxy == null) {
3539 proxyProperties = mDefaultProxy;
3540 }
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003541 sendProxyBroadcast(proxyProperties);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003542 }
3543
Robert Greenwaltb7090d62010-12-02 11:31:00 -08003544 private void loadGlobalProxy() {
3545 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey625239a2012-09-26 22:03:49 -07003546 String host = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST);
3547 int port = Settings.Global.getInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, 0);
3548 String exclList = Settings.Global.getString(res,
3549 Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST);
Jason Monk602b2322013-07-03 17:04:33 -04003550 String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC);
3551 if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) {
Jason Monk207900c2014-04-25 15:00:09 -04003552 ProxyInfo proxyProperties;
Jason Monk602b2322013-07-03 17:04:33 -04003553 if (!TextUtils.isEmpty(pacFileUrl)) {
Jason Monk207900c2014-04-25 15:00:09 -04003554 proxyProperties = new ProxyInfo(pacFileUrl);
Jason Monk602b2322013-07-03 17:04:33 -04003555 } else {
Jason Monk207900c2014-04-25 15:00:09 -04003556 proxyProperties = new ProxyInfo(host, port, exclList);
Jason Monk602b2322013-07-03 17:04:33 -04003557 }
Raj Mamadgi92d024912013-11-11 13:52:58 -08003558 if (!proxyProperties.isValid()) {
3559 if (DBG) log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
3560 return;
3561 }
3562
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003563 synchronized (mProxyLock) {
Robert Greenwaltb7090d62010-12-02 11:31:00 -08003564 mGlobalProxy = proxyProperties;
3565 }
3566 }
3567 }
3568
Jason Monk207900c2014-04-25 15:00:09 -04003569 public ProxyInfo getGlobalProxy() {
Robert Greenwalte436e4f2013-02-22 14:57:00 -08003570 // this information is already available as a world read/writable jvm property
3571 // so this API change wouldn't have a benifit. It also breaks the passing
3572 // of proxy info to all the JVMs.
3573 // enforceAccessPermission();
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003574 synchronized (mProxyLock) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003575 return mGlobalProxy;
3576 }
3577 }
3578
Jason Monk207900c2014-04-25 15:00:09 -04003579 private void handleApplyDefaultProxy(ProxyInfo proxy) {
Jason Monk602b2322013-07-03 17:04:33 -04003580 if (proxy != null && TextUtils.isEmpty(proxy.getHost())
Jason Monk207900c2014-04-25 15:00:09 -04003581 && (proxy.getPacFileUrl() == null)) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003582 proxy = null;
3583 }
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003584 synchronized (mProxyLock) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003585 if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003586 if (mDefaultProxy == proxy) return; // catches repeated nulls
Robert Greenwalta8dae992013-11-18 09:43:59 -08003587 if (proxy != null && !proxy.isValid()) {
Raj Mamadgi92d024912013-11-11 13:52:58 -08003588 if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
3589 return;
3590 }
Jason Monk56cf1ab2014-04-28 14:57:27 -04003591
3592 // This call could be coming from the PacManager, containing the port of the local
3593 // proxy. If this new proxy matches the global proxy then copy this proxy to the
3594 // global (to get the correct local port), and send a broadcast.
3595 // TODO: Switch PacManager to have its own message to send back rather than
3596 // reusing EVENT_HAS_CHANGED_PROXY and this call to handleApplyDefaultProxy.
3597 if ((mGlobalProxy != null) && (proxy != null) && (proxy.getPacFileUrl() != null)
3598 && proxy.getPacFileUrl().equals(mGlobalProxy.getPacFileUrl())) {
3599 mGlobalProxy = proxy;
3600 sendProxyBroadcast(mGlobalProxy);
3601 return;
3602 }
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003603 mDefaultProxy = proxy;
3604
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003605 if (mGlobalProxy != null) return;
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003606 if (!mDefaultProxyDisabled) {
3607 sendProxyBroadcast(proxy);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003608 }
3609 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003610 }
3611
3612 private void handleDeprecatedGlobalHttpProxy() {
Jeff Sharkey625239a2012-09-26 22:03:49 -07003613 String proxy = Settings.Global.getString(mContext.getContentResolver(),
3614 Settings.Global.HTTP_PROXY);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003615 if (!TextUtils.isEmpty(proxy)) {
3616 String data[] = proxy.split(":");
Andreas Huber7b8e1ea2013-05-28 15:17:37 -07003617 if (data.length == 0) {
3618 return;
3619 }
3620
Robert Greenwalt434203a2010-10-11 16:00:27 -07003621 String proxyHost = data[0];
3622 int proxyPort = 8080;
3623 if (data.length > 1) {
3624 try {
3625 proxyPort = Integer.parseInt(data[1]);
3626 } catch (NumberFormatException e) {
3627 return;
3628 }
3629 }
Jason Monk207900c2014-04-25 15:00:09 -04003630 ProxyInfo p = new ProxyInfo(data[0], proxyPort, "");
Robert Greenwalt434203a2010-10-11 16:00:27 -07003631 setGlobalProxy(p);
3632 }
3633 }
3634
Jason Monk207900c2014-04-25 15:00:09 -04003635 private void sendProxyBroadcast(ProxyInfo proxy) {
3636 if (proxy == null) proxy = new ProxyInfo("", 0, "");
Jason Monk6f8a68f2013-08-23 19:21:25 -04003637 if (mPacManager.setCurrentProxyScriptUrl(proxy)) return;
Robert Greenwalt58d4c592011-08-02 17:18:41 -07003638 if (DBG) log("sending Proxy Broadcast for " + proxy);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003639 Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
Stan Chesnuttb35d67a2011-01-06 11:00:19 -08003640 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING |
3641 Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003642 intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07003643 final long ident = Binder.clearCallingIdentity();
3644 try {
3645 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
3646 } finally {
3647 Binder.restoreCallingIdentity(ident);
3648 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003649 }
3650
3651 private static class SettingsObserver extends ContentObserver {
3652 private int mWhat;
3653 private Handler mHandler;
3654 SettingsObserver(Handler handler, int what) {
3655 super(handler);
3656 mHandler = handler;
3657 mWhat = what;
3658 }
3659
3660 void observe(Context context) {
3661 ContentResolver resolver = context.getContentResolver();
Jeff Sharkey625239a2012-09-26 22:03:49 -07003662 resolver.registerContentObserver(Settings.Global.getUriFor(
3663 Settings.Global.HTTP_PROXY), false, this);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003664 }
3665
3666 @Override
3667 public void onChange(boolean selfChange) {
3668 mHandler.obtainMessage(mWhat).sendToTarget();
3669 }
3670 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08003671
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07003672 private static void log(String s) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08003673 Slog.d(TAG, s);
3674 }
3675
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07003676 private static void loge(String s) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08003677 Slog.e(TAG, s);
3678 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003679
repo syncaea743a2011-07-29 23:55:49 -07003680 int convertFeatureToNetworkType(int networkType, String feature) {
3681 int usedNetworkType = networkType;
3682
3683 if(networkType == ConnectivityManager.TYPE_MOBILE) {
3684 if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_MMS)) {
3685 usedNetworkType = ConnectivityManager.TYPE_MOBILE_MMS;
3686 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_SUPL)) {
3687 usedNetworkType = ConnectivityManager.TYPE_MOBILE_SUPL;
3688 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN) ||
3689 TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
3690 usedNetworkType = ConnectivityManager.TYPE_MOBILE_DUN;
3691 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_HIPRI)) {
3692 usedNetworkType = ConnectivityManager.TYPE_MOBILE_HIPRI;
3693 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_FOTA)) {
3694 usedNetworkType = ConnectivityManager.TYPE_MOBILE_FOTA;
3695 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_IMS)) {
3696 usedNetworkType = ConnectivityManager.TYPE_MOBILE_IMS;
3697 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_CBS)) {
3698 usedNetworkType = ConnectivityManager.TYPE_MOBILE_CBS;
3699 } else {
3700 Slog.e(TAG, "Can't match any mobile netTracker!");
3701 }
3702 } else if (networkType == ConnectivityManager.TYPE_WIFI) {
3703 if (TextUtils.equals(feature, "p2p")) {
3704 usedNetworkType = ConnectivityManager.TYPE_WIFI_P2P;
3705 } else {
3706 Slog.e(TAG, "Can't match any wifi netTracker!");
3707 }
3708 } else {
3709 Slog.e(TAG, "Unexpected network type");
Wink Saville2b8bcfe2011-02-24 17:58:51 -08003710 }
repo syncaea743a2011-07-29 23:55:49 -07003711 return usedNetworkType;
Wink Saville2b8bcfe2011-02-24 17:58:51 -08003712 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07003713
3714 private static <T> T checkNotNull(T value, String message) {
3715 if (value == null) {
3716 throw new NullPointerException(message);
3717 }
3718 return value;
3719 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003720
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003721 /**
3722 * Protect a socket from VPN routing rules. This method is used by
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003723 * VpnBuilder and not available in ConnectivityManager. Permissions
3724 * are checked in Vpn class.
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003725 * @hide
3726 */
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003727 @Override
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -07003728 public boolean protectVpn(ParcelFileDescriptor socket) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003729 throwIfLockdownEnabled();
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -07003730 try {
3731 int type = mActiveDefaultNetwork;
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003732 int user = UserHandle.getUserId(Binder.getCallingUid());
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07003733 if (ConnectivityManager.isNetworkTypeValid(type) && mNetTrackers[type] != null) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003734 synchronized(mVpns) {
Chad Brubakerbcf12b32014-02-11 14:18:56 -08003735 mVpns.get(user).protect(socket);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003736 }
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -07003737 return true;
3738 }
3739 } catch (Exception e) {
3740 // ignore
3741 } finally {
3742 try {
3743 socket.close();
3744 } catch (Exception e) {
3745 // ignore
3746 }
3747 }
3748 return false;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003749 }
3750
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003751 /**
3752 * Prepare for a VPN application. This method is used by VpnDialogs
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003753 * and not available in ConnectivityManager. Permissions are checked
3754 * in Vpn class.
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003755 * @hide
3756 */
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003757 @Override
Chia-chi Yeh100155a2011-07-03 16:52:38 -07003758 public boolean prepareVpn(String oldPackage, String newPackage) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003759 throwIfLockdownEnabled();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003760 int user = UserHandle.getUserId(Binder.getCallingUid());
3761 synchronized(mVpns) {
3762 return mVpns.get(user).prepare(oldPackage, newPackage);
3763 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003764 }
3765
Chad Brubakerd475c702013-07-11 13:29:30 -07003766 @Override
3767 public void markSocketAsUser(ParcelFileDescriptor socket, int uid) {
3768 enforceMarkNetworkSocketPermission();
3769 final long token = Binder.clearCallingIdentity();
3770 try {
3771 int mark = mNetd.getMarkForUid(uid);
3772 // Clear the mark on the socket if no mark is needed to prevent socket reuse issues
3773 if (mark == -1) {
3774 mark = 0;
3775 }
3776 NetworkUtils.markSocket(socket.getFd(), mark);
3777 } catch (RemoteException e) {
3778 } finally {
3779 Binder.restoreCallingIdentity(token);
3780 }
3781 }
3782
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003783 /**
3784 * Configure a TUN interface and return its file descriptor. Parameters
3785 * are encoded and opaque to this class. This method is used by VpnBuilder
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003786 * and not available in ConnectivityManager. Permissions are checked in
3787 * Vpn class.
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003788 * @hide
3789 */
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003790 @Override
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003791 public ParcelFileDescriptor establishVpn(VpnConfig config) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003792 throwIfLockdownEnabled();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003793 int user = UserHandle.getUserId(Binder.getCallingUid());
3794 synchronized(mVpns) {
3795 return mVpns.get(user).establish(config);
3796 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003797 }
3798
Chia-chi Yeh77fd4852011-07-02 17:15:00 -07003799 /**
Jeff Sharkey82f85212012-08-24 11:17:25 -07003800 * Start legacy VPN, controlling native daemons as needed. Creates a
3801 * secondary thread to perform connection work, returning quickly.
Chia-chi Yeh77fd4852011-07-02 17:15:00 -07003802 */
3803 @Override
Jeff Sharkey82f85212012-08-24 11:17:25 -07003804 public void startLegacyVpn(VpnProfile profile) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003805 throwIfLockdownEnabled();
Jeff Sharkey82f85212012-08-24 11:17:25 -07003806 final LinkProperties egress = getActiveLinkProperties();
3807 if (egress == null) {
3808 throw new IllegalStateException("Missing active network connection");
3809 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003810 int user = UserHandle.getUserId(Binder.getCallingUid());
3811 synchronized(mVpns) {
3812 mVpns.get(user).startLegacyVpn(profile, mKeyStore, egress);
3813 }
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003814 }
3815
3816 /**
3817 * Return the information of the ongoing legacy VPN. This method is used
3818 * by VpnSettings and not available in ConnectivityManager. Permissions
3819 * are checked in Vpn class.
3820 * @hide
3821 */
3822 @Override
3823 public LegacyVpnInfo getLegacyVpnInfo() {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003824 throwIfLockdownEnabled();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003825 int user = UserHandle.getUserId(Binder.getCallingUid());
3826 synchronized(mVpns) {
3827 return mVpns.get(user).getLegacyVpnInfo();
3828 }
Chia-chi Yeh77fd4852011-07-02 17:15:00 -07003829 }
3830
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003831 /**
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07003832 * Returns the information of the ongoing VPN. This method is used by VpnDialogs and
3833 * not available in ConnectivityManager.
3834 * Permissions are checked in Vpn class.
3835 * @hide
3836 */
3837 @Override
3838 public VpnConfig getVpnConfig() {
3839 int user = UserHandle.getUserId(Binder.getCallingUid());
3840 synchronized(mVpns) {
3841 return mVpns.get(user).getVpnConfig();
3842 }
3843 }
3844
3845 /**
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003846 * Callback for VPN subsystem. Currently VPN is not adapted to the service
3847 * through NetworkStateTracker since it works differently. For example, it
3848 * needs to override DNS servers but never takes the default routes. It
3849 * relies on another data network, and it could keep existing connections
3850 * alive after reconnecting, switching between networks, or even resuming
3851 * from deep sleep. Calls from applications should be done synchronously
3852 * to avoid race conditions. As these are all hidden APIs, refactoring can
3853 * be done whenever a better abstraction is developed.
3854 */
3855 public class VpnCallback {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003856 private VpnCallback() {
3857 }
3858
Jeff Sharkey899223b2012-08-04 15:24:58 -07003859 public void onStateChanged(NetworkInfo info) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003860 mHandler.obtainMessage(EVENT_VPN_STATE_CHANGED, info).sendToTarget();
Jeff Sharkey899223b2012-08-04 15:24:58 -07003861 }
3862
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003863 public void override(String iface, List<String> dnsServers, List<String> searchDomains) {
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003864 if (dnsServers == null) {
3865 restore();
3866 return;
3867 }
3868
3869 // Convert DNS servers into addresses.
3870 List<InetAddress> addresses = new ArrayList<InetAddress>();
3871 for (String address : dnsServers) {
3872 // Double check the addresses and remove invalid ones.
3873 try {
3874 addresses.add(InetAddress.parseNumericAddress(address));
3875 } catch (Exception e) {
3876 // ignore
3877 }
3878 }
3879 if (addresses.isEmpty()) {
3880 restore();
3881 return;
3882 }
3883
3884 // Concatenate search domains into a string.
3885 StringBuilder buffer = new StringBuilder();
3886 if (searchDomains != null) {
3887 for (String domain : searchDomains) {
3888 buffer.append(domain).append(' ');
3889 }
3890 }
3891 String domains = buffer.toString().trim();
3892
3893 // Apply DNS changes.
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003894 synchronized (mDnsLock) {
Paul Jensen13e817d2014-04-10 14:16:37 -04003895 // TODO: Re-enable this when the netId of the VPN is known.
3896 // updateDnsLocked("VPN", netId, addresses, domains);
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003897 }
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003898
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003899 // Temporarily disable the default proxy (not global).
3900 synchronized (mProxyLock) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003901 mDefaultProxyDisabled = true;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003902 if (mGlobalProxy == null && mDefaultProxy != null) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003903 sendProxyBroadcast(null);
3904 }
3905 }
3906
3907 // TODO: support proxy per network.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003908 }
3909
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003910 public void restore() {
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003911 synchronized (mProxyLock) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003912 mDefaultProxyDisabled = false;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003913 if (mGlobalProxy == null && mDefaultProxy != null) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003914 sendProxyBroadcast(mDefaultProxy);
3915 }
3916 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003917 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003918
3919 public void protect(ParcelFileDescriptor socket) {
3920 try {
3921 final int mark = mNetd.getMarkForProtect();
3922 NetworkUtils.markSocket(socket.getFd(), mark);
3923 } catch (RemoteException e) {
3924 }
3925 }
3926
3927 public void setRoutes(String interfaze, List<RouteInfo> routes) {
3928 for (RouteInfo route : routes) {
3929 try {
3930 mNetd.setMarkedForwardingRoute(interfaze, route);
3931 } catch (RemoteException e) {
3932 }
3933 }
3934 }
3935
3936 public void setMarkedForwarding(String interfaze) {
3937 try {
3938 mNetd.setMarkedForwarding(interfaze);
3939 } catch (RemoteException e) {
3940 }
3941 }
3942
3943 public void clearMarkedForwarding(String interfaze) {
3944 try {
3945 mNetd.clearMarkedForwarding(interfaze);
3946 } catch (RemoteException e) {
3947 }
3948 }
3949
Robert Greenwalt69887e82013-09-24 11:05:57 -07003950 public void addUserForwarding(String interfaze, int uid, boolean forwardDns) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003951 int uidStart = uid * UserHandle.PER_USER_RANGE;
3952 int uidEnd = uidStart + UserHandle.PER_USER_RANGE - 1;
Robert Greenwalt69887e82013-09-24 11:05:57 -07003953 addUidForwarding(interfaze, uidStart, uidEnd, forwardDns);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003954 }
3955
Robert Greenwalt69887e82013-09-24 11:05:57 -07003956 public void clearUserForwarding(String interfaze, int uid, boolean forwardDns) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003957 int uidStart = uid * UserHandle.PER_USER_RANGE;
3958 int uidEnd = uidStart + UserHandle.PER_USER_RANGE - 1;
Robert Greenwalt69887e82013-09-24 11:05:57 -07003959 clearUidForwarding(interfaze, uidStart, uidEnd, forwardDns);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003960 }
3961
Robert Greenwalt69887e82013-09-24 11:05:57 -07003962 public void addUidForwarding(String interfaze, int uidStart, int uidEnd,
3963 boolean forwardDns) {
Paul Jensen13e817d2014-04-10 14:16:37 -04003964 // TODO: Re-enable this when the netId of the VPN is known.
3965 // try {
3966 // mNetd.setUidRangeRoute(netId, uidStart, uidEnd, forwardDns);
3967 // } catch (RemoteException e) {
3968 // }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003969
3970 }
3971
Robert Greenwalt69887e82013-09-24 11:05:57 -07003972 public void clearUidForwarding(String interfaze, int uidStart, int uidEnd,
3973 boolean forwardDns) {
Paul Jensen13e817d2014-04-10 14:16:37 -04003974 // TODO: Re-enable this when the netId of the VPN is known.
3975 // try {
3976 // mNetd.clearUidRangeRoute(interfaze, uidStart, uidEnd);
3977 // } catch (RemoteException e) {
3978 // }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003979
3980 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003981 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003982
3983 @Override
3984 public boolean updateLockdownVpn() {
Jeff Sharkey3671b1e2013-01-31 17:22:26 -08003985 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
3986 Slog.w(TAG, "Lockdown VPN only available to AID_SYSTEM");
3987 return false;
3988 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003989
3990 // Tear down existing lockdown if profile was removed
3991 mLockdownEnabled = LockdownVpnTracker.isEnabled();
3992 if (mLockdownEnabled) {
Kenny Rootb9594ce2013-02-14 10:18:38 -08003993 if (!mKeyStore.isUnlocked()) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003994 Slog.w(TAG, "KeyStore locked; unable to create LockdownTracker");
3995 return false;
3996 }
3997
3998 final String profileName = new String(mKeyStore.get(Credentials.LOCKDOWN_VPN));
3999 final VpnProfile profile = VpnProfile.decode(
4000 profileName, mKeyStore.get(Credentials.VPN + profileName));
Chad Brubaker4ca19e82013-06-14 11:16:51 -07004001 int user = UserHandle.getUserId(Binder.getCallingUid());
4002 synchronized(mVpns) {
4003 setLockdownTracker(new LockdownVpnTracker(mContext, mNetd, this, mVpns.get(user),
4004 profile));
4005 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07004006 } else {
4007 setLockdownTracker(null);
4008 }
4009
4010 return true;
4011 }
4012
4013 /**
4014 * Internally set new {@link LockdownVpnTracker}, shutting down any existing
4015 * {@link LockdownVpnTracker}. Can be {@code null} to disable lockdown.
4016 */
4017 private void setLockdownTracker(LockdownVpnTracker tracker) {
4018 // Shutdown any existing tracker
4019 final LockdownVpnTracker existing = mLockdownTracker;
4020 mLockdownTracker = null;
4021 if (existing != null) {
4022 existing.shutdown();
4023 }
4024
4025 try {
4026 if (tracker != null) {
4027 mNetd.setFirewallEnabled(true);
Jeff Sharkey812085b2013-02-28 16:57:58 -08004028 mNetd.setFirewallInterfaceRule("lo", true);
Jeff Sharkey69ddab42012-08-25 00:05:46 -07004029 mLockdownTracker = tracker;
4030 mLockdownTracker.init();
4031 } else {
4032 mNetd.setFirewallEnabled(false);
4033 }
4034 } catch (RemoteException e) {
4035 // ignored; NMS lives inside system_server
4036 }
4037 }
4038
4039 private void throwIfLockdownEnabled() {
4040 if (mLockdownEnabled) {
4041 throw new IllegalStateException("Unavailable in lockdown mode");
4042 }
4043 }
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07004044
4045 public void supplyMessenger(int networkType, Messenger messenger) {
4046 enforceConnectivityInternalPermission();
4047
4048 if (isNetworkTypeValid(networkType) && mNetTrackers[networkType] != null) {
4049 mNetTrackers[networkType].supplyMessenger(messenger);
4050 }
4051 }
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07004052
4053 public int findConnectionTypeForIface(String iface) {
4054 enforceConnectivityInternalPermission();
4055
4056 if (TextUtils.isEmpty(iface)) return ConnectivityManager.TYPE_NONE;
4057 for (NetworkStateTracker tracker : mNetTrackers) {
4058 if (tracker != null) {
4059 LinkProperties lp = tracker.getLinkProperties();
4060 if (lp != null && iface.equals(lp.getInterfaceName())) {
4061 return tracker.getNetworkInfo().getType();
4062 }
4063 }
4064 }
4065 return ConnectivityManager.TYPE_NONE;
4066 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004067
4068 /**
4069 * Have mobile data fail fast if enabled.
4070 *
4071 * @param enabled DctConstants.ENABLED/DISABLED
4072 */
4073 private void setEnableFailFastMobileData(int enabled) {
4074 int tag;
4075
4076 if (enabled == DctConstants.ENABLED) {
4077 tag = mEnableFailFastMobileDataTag.incrementAndGet();
4078 } else {
4079 tag = mEnableFailFastMobileDataTag.get();
4080 }
4081 mHandler.sendMessage(mHandler.obtainMessage(EVENT_ENABLE_FAIL_FAST_MOBILE_DATA, tag,
4082 enabled));
4083 }
4084
Wink Savilledce52cd2013-08-16 17:17:28 -07004085 private boolean isMobileDataStateTrackerReady() {
4086 MobileDataStateTracker mdst =
Wink Saville948282b2013-08-29 08:55:16 -07004087 (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
Wink Savilledce52cd2013-08-16 17:17:28 -07004088 return (mdst != null) && (mdst.isReady());
4089 }
4090
Wink Saville948282b2013-08-29 08:55:16 -07004091 /**
4092 * The ResultReceiver resultCode for checkMobileProvisioning (CMP_RESULT_CODE)
4093 */
4094
4095 /**
4096 * No connection was possible to the network.
Wink Saville4fea0412013-09-06 09:53:08 -07004097 * This is NOT a warm sim.
Wink Saville948282b2013-08-29 08:55:16 -07004098 */
Wink Saville4fea0412013-09-06 09:53:08 -07004099 private static final int CMP_RESULT_CODE_NO_CONNECTION = 0;
Wink Saville948282b2013-08-29 08:55:16 -07004100
4101 /**
4102 * A connection was made to the internet, all is well.
Wink Saville4fea0412013-09-06 09:53:08 -07004103 * This is NOT a warm sim.
Wink Saville948282b2013-08-29 08:55:16 -07004104 */
Wink Saville4fea0412013-09-06 09:53:08 -07004105 private static final int CMP_RESULT_CODE_CONNECTABLE = 1;
Wink Saville948282b2013-08-29 08:55:16 -07004106
4107 /**
4108 * A connection was made but no dns server was available to resolve a name to address.
Wink Saville4fea0412013-09-06 09:53:08 -07004109 * This is NOT a warm sim since provisioning network is supported.
Wink Saville948282b2013-08-29 08:55:16 -07004110 */
Wink Saville4fea0412013-09-06 09:53:08 -07004111 private static final int CMP_RESULT_CODE_NO_DNS = 2;
Wink Saville948282b2013-08-29 08:55:16 -07004112
4113 /**
4114 * A connection was made but could not open a TCP connection.
Wink Saville4fea0412013-09-06 09:53:08 -07004115 * This is NOT a warm sim since provisioning network is supported.
Wink Saville948282b2013-08-29 08:55:16 -07004116 */
Wink Saville4fea0412013-09-06 09:53:08 -07004117 private static final int CMP_RESULT_CODE_NO_TCP_CONNECTION = 3;
4118
4119 /**
4120 * A connection was made but there was a redirection, we appear to be in walled garden.
4121 * This is an indication of a warm sim on a mobile network such as T-Mobile.
4122 */
4123 private static final int CMP_RESULT_CODE_REDIRECTED = 4;
Wink Saville948282b2013-08-29 08:55:16 -07004124
4125 /**
4126 * The mobile network is a provisioning network.
Wink Saville4fea0412013-09-06 09:53:08 -07004127 * This is an indication of a warm sim on a mobile network such as AT&T.
Wink Saville948282b2013-08-29 08:55:16 -07004128 */
Wink Saville4fea0412013-09-06 09:53:08 -07004129 private static final int CMP_RESULT_CODE_PROVISIONING_NETWORK = 5;
Wink Saville948282b2013-08-29 08:55:16 -07004130
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004131 /**
4132 * The mobile network is provisioning
4133 */
4134 private static final int CMP_RESULT_CODE_IS_PROVISIONING = 6;
4135
4136 private AtomicBoolean mIsProvisioningNetwork = new AtomicBoolean(false);
4137 private AtomicBoolean mIsStartingProvisioning = new AtomicBoolean(false);
4138
Wink Saville4fea0412013-09-06 09:53:08 -07004139 private AtomicBoolean mIsCheckingMobileProvisioning = new AtomicBoolean(false);
Wink Saville948282b2013-08-29 08:55:16 -07004140
Wink Savilleab9321d2013-06-29 21:10:57 -07004141 @Override
Wink Saville948282b2013-08-29 08:55:16 -07004142 public int checkMobileProvisioning(int suggestedTimeOutMs) {
4143 int timeOutMs = -1;
4144 if (DBG) log("checkMobileProvisioning: E suggestedTimeOutMs=" + suggestedTimeOutMs);
4145 enforceConnectivityInternalPermission();
Wink Saville68e6c642013-07-02 10:55:14 -07004146
Wink Savilleab9321d2013-06-29 21:10:57 -07004147 final long token = Binder.clearCallingIdentity();
4148 try {
Wink Saville948282b2013-08-29 08:55:16 -07004149 timeOutMs = suggestedTimeOutMs;
4150 if (suggestedTimeOutMs > CheckMp.MAX_TIMEOUT_MS) {
4151 timeOutMs = CheckMp.MAX_TIMEOUT_MS;
4152 }
4153
4154 // Check that mobile networks are supported
4155 if (!isNetworkSupported(ConnectivityManager.TYPE_MOBILE)
4156 || !isNetworkSupported(ConnectivityManager.TYPE_MOBILE_HIPRI)) {
4157 if (DBG) log("checkMobileProvisioning: X no mobile network");
4158 return timeOutMs;
4159 }
4160
4161 // If we're already checking don't do it again
4162 // TODO: Add a queue of results...
4163 if (mIsCheckingMobileProvisioning.getAndSet(true)) {
4164 if (DBG) log("checkMobileProvisioning: X already checking ignore for the moment");
4165 return timeOutMs;
4166 }
4167
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004168 // Start off with mobile notification off
4169 setProvNotificationVisible(false, ConnectivityManager.TYPE_MOBILE_HIPRI, null, null);
Wink Saville948282b2013-08-29 08:55:16 -07004170
Wink Savilleab9321d2013-06-29 21:10:57 -07004171 CheckMp checkMp = new CheckMp(mContext, this);
4172 CheckMp.CallBack cb = new CheckMp.CallBack() {
4173 @Override
4174 void onComplete(Integer result) {
Wink Saville948282b2013-08-29 08:55:16 -07004175 if (DBG) log("CheckMp.onComplete: result=" + result);
Wink Savilleab9321d2013-06-29 21:10:57 -07004176 NetworkInfo ni =
4177 mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI].getNetworkInfo();
4178 switch(result) {
Wink Saville948282b2013-08-29 08:55:16 -07004179 case CMP_RESULT_CODE_CONNECTABLE:
Wink Saville4fea0412013-09-06 09:53:08 -07004180 case CMP_RESULT_CODE_NO_CONNECTION:
4181 case CMP_RESULT_CODE_NO_DNS:
4182 case CMP_RESULT_CODE_NO_TCP_CONNECTION: {
Wink Saville948282b2013-08-29 08:55:16 -07004183 if (DBG) log("CheckMp.onComplete: ignore, connected or no connection");
Wink Savilleab9321d2013-06-29 21:10:57 -07004184 break;
4185 }
Wink Saville948282b2013-08-29 08:55:16 -07004186 case CMP_RESULT_CODE_REDIRECTED: {
4187 if (DBG) log("CheckMp.onComplete: warm sim");
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004188 String url = getMobileProvisioningUrl();
Wink Savilleab9321d2013-06-29 21:10:57 -07004189 if (TextUtils.isEmpty(url)) {
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004190 url = getMobileRedirectedProvisioningUrl();
Wink Savilleab9321d2013-06-29 21:10:57 -07004191 }
4192 if (TextUtils.isEmpty(url) == false) {
Wink Saville948282b2013-08-29 08:55:16 -07004193 if (DBG) log("CheckMp.onComplete: warm (redirected), url=" + url);
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004194 setProvNotificationVisible(true,
4195 ConnectivityManager.TYPE_MOBILE_HIPRI, ni.getExtraInfo(),
Wink Saville948282b2013-08-29 08:55:16 -07004196 url);
Wink Savilleab9321d2013-06-29 21:10:57 -07004197 } else {
Wink Saville948282b2013-08-29 08:55:16 -07004198 if (DBG) log("CheckMp.onComplete: warm (redirected), no url");
Wink Savilleab9321d2013-06-29 21:10:57 -07004199 }
4200 break;
4201 }
Wink Saville4fea0412013-09-06 09:53:08 -07004202 case CMP_RESULT_CODE_PROVISIONING_NETWORK: {
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004203 String url = getMobileProvisioningUrl();
Wink Savilleab9321d2013-06-29 21:10:57 -07004204 if (TextUtils.isEmpty(url) == false) {
Wink Saville948282b2013-08-29 08:55:16 -07004205 if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), url=" + url);
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004206 setProvNotificationVisible(true,
4207 ConnectivityManager.TYPE_MOBILE_HIPRI, ni.getExtraInfo(),
Wink Saville948282b2013-08-29 08:55:16 -07004208 url);
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004209 // Mark that we've got a provisioning network and
4210 // Disable Mobile Data until user actually starts provisioning.
4211 mIsProvisioningNetwork.set(true);
4212 MobileDataStateTracker mdst = (MobileDataStateTracker)
4213 mNetTrackers[ConnectivityManager.TYPE_MOBILE];
4214 mdst.setInternalDataEnable(false);
Wink Savilleab9321d2013-06-29 21:10:57 -07004215 } else {
Wink Saville948282b2013-08-29 08:55:16 -07004216 if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), no url");
Wink Savilleab9321d2013-06-29 21:10:57 -07004217 }
4218 break;
4219 }
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004220 case CMP_RESULT_CODE_IS_PROVISIONING: {
4221 // FIXME: Need to know when provisioning is done. Probably we can
4222 // check the completion status if successful we're done if we
4223 // "timedout" or still connected to provisioning APN turn off data?
4224 if (DBG) log("CheckMp.onComplete: provisioning started");
4225 mIsStartingProvisioning.set(false);
4226 break;
4227 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004228 default: {
4229 loge("CheckMp.onComplete: ignore unexpected result=" + result);
4230 break;
4231 }
4232 }
Wink Saville948282b2013-08-29 08:55:16 -07004233 mIsCheckingMobileProvisioning.set(false);
Wink Savilleab9321d2013-06-29 21:10:57 -07004234 }
4235 };
4236 CheckMp.Params params =
4237 new CheckMp.Params(checkMp.getDefaultUrl(), timeOutMs, cb);
Wink Saville948282b2013-08-29 08:55:16 -07004238 if (DBG) log("checkMobileProvisioning: params=" + params);
Wink Savilleab9321d2013-06-29 21:10:57 -07004239 checkMp.execute(params);
4240 } finally {
4241 Binder.restoreCallingIdentity(token);
Wink Saville948282b2013-08-29 08:55:16 -07004242 if (DBG) log("checkMobileProvisioning: X");
Wink Savilleab9321d2013-06-29 21:10:57 -07004243 }
4244 return timeOutMs;
4245 }
4246
4247 static class CheckMp extends
4248 AsyncTask<CheckMp.Params, Void, Integer> {
4249 private static final String CHECKMP_TAG = "CheckMp";
Wink Saville1d3a89e2013-10-31 06:35:22 -07004250
4251 // adb shell setprop persist.checkmp.testfailures 1 to enable testing failures
4252 private static boolean mTestingFailures;
4253
4254 // Choosing 4 loops as half of them will use HTTPS and the other half HTTP
4255 private static final int MAX_LOOPS = 4;
4256
4257 // Number of milli-seconds to complete all of the retires
Wink Savilleab9321d2013-06-29 21:10:57 -07004258 public static final int MAX_TIMEOUT_MS = 60000;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004259
4260 // The socket should retry only 5 seconds, the default is longer
Wink Savilleab9321d2013-06-29 21:10:57 -07004261 private static final int SOCKET_TIMEOUT_MS = 5000;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004262
4263 // Sleep time for network errors
4264 private static final int NET_ERROR_SLEEP_SEC = 3;
4265
4266 // Sleep time for network route establishment
4267 private static final int NET_ROUTE_ESTABLISHMENT_SLEEP_SEC = 3;
4268
4269 // Short sleep time for polling :(
4270 private static final int POLLING_SLEEP_SEC = 1;
4271
Wink Savilleab9321d2013-06-29 21:10:57 -07004272 private Context mContext;
4273 private ConnectivityService mCs;
4274 private TelephonyManager mTm;
4275 private Params mParams;
4276
4277 /**
4278 * Parameters for AsyncTask.execute
4279 */
4280 static class Params {
4281 private String mUrl;
4282 private long mTimeOutMs;
4283 private CallBack mCb;
4284
4285 Params(String url, long timeOutMs, CallBack cb) {
4286 mUrl = url;
4287 mTimeOutMs = timeOutMs;
4288 mCb = cb;
4289 }
4290
4291 @Override
4292 public String toString() {
4293 return "{" + " url=" + mUrl + " mTimeOutMs=" + mTimeOutMs + " mCb=" + mCb + "}";
4294 }
4295 }
4296
Wink Saville1d3a89e2013-10-31 06:35:22 -07004297 // As explained to me by Brian Carlstrom and Kenny Root, Certificates can be
4298 // issued by name or ip address, for Google its by name so when we construct
4299 // this HostnameVerifier we'll pass the original Uri and use it to verify
4300 // the host. If the host name in the original uril fails we'll test the
4301 // hostname parameter just incase things change.
4302 static class CheckMpHostnameVerifier implements HostnameVerifier {
4303 Uri mOrgUri;
4304
4305 CheckMpHostnameVerifier(Uri orgUri) {
4306 mOrgUri = orgUri;
4307 }
4308
4309 @Override
4310 public boolean verify(String hostname, SSLSession session) {
4311 HostnameVerifier hv = HttpsURLConnection.getDefaultHostnameVerifier();
4312 String orgUriHost = mOrgUri.getHost();
4313 boolean retVal = hv.verify(orgUriHost, session) || hv.verify(hostname, session);
4314 if (DBG) {
4315 log("isMobileOk: hostnameVerify retVal=" + retVal + " hostname=" + hostname
4316 + " orgUriHost=" + orgUriHost);
4317 }
4318 return retVal;
4319 }
4320 }
4321
Wink Savilleab9321d2013-06-29 21:10:57 -07004322 /**
4323 * The call back object passed in Params. onComplete will be called
4324 * on the main thread.
4325 */
4326 abstract static class CallBack {
4327 // Called on the main thread.
4328 abstract void onComplete(Integer result);
4329 }
4330
4331 public CheckMp(Context context, ConnectivityService cs) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004332 if (Build.IS_DEBUGGABLE) {
4333 mTestingFailures =
4334 SystemProperties.getInt("persist.checkmp.testfailures", 0) == 1;
4335 } else {
4336 mTestingFailures = false;
4337 }
4338
Wink Savilleab9321d2013-06-29 21:10:57 -07004339 mContext = context;
4340 mCs = cs;
4341
4342 // Setup access to TelephonyService we'll be using.
4343 mTm = (TelephonyManager) mContext.getSystemService(
4344 Context.TELEPHONY_SERVICE);
4345 }
4346
4347 /**
4348 * Get the default url to use for the test.
4349 */
4350 public String getDefaultUrl() {
4351 // See http://go/clientsdns for usage approval
4352 String server = Settings.Global.getString(mContext.getContentResolver(),
4353 Settings.Global.CAPTIVE_PORTAL_SERVER);
4354 if (server == null) {
4355 server = "clients3.google.com";
4356 }
4357 return "http://" + server + "/generate_204";
4358 }
4359
4360 /**
4361 * Detect if its possible to connect to the http url. DNS based detection techniques
4362 * do not work at all hotspots. The best way to check is to perform a request to
4363 * a known address that fetches the data we expect.
4364 */
4365 private synchronized Integer isMobileOk(Params params) {
Wink Saville948282b2013-08-29 08:55:16 -07004366 Integer result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Savilleab9321d2013-06-29 21:10:57 -07004367 Uri orgUri = Uri.parse(params.mUrl);
4368 Random rand = new Random();
4369 mParams = params;
4370
Wink Savilleafe58b02013-08-13 12:41:06 -07004371 if (mCs.isNetworkSupported(ConnectivityManager.TYPE_MOBILE) == false) {
Wink Saville948282b2013-08-29 08:55:16 -07004372 result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Savilled95ccc52013-09-13 12:40:11 -07004373 log("isMobileOk: X not mobile capable result=" + result);
4374 return result;
4375 }
4376
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004377 if (mCs.mIsStartingProvisioning.get()) {
4378 result = CMP_RESULT_CODE_IS_PROVISIONING;
4379 log("isMobileOk: X is provisioning result=" + result);
4380 return result;
4381 }
4382
Wink Savilled95ccc52013-09-13 12:40:11 -07004383 // See if we've already determined we've got a provisioning connection,
4384 // if so we don't need to do anything active.
4385 MobileDataStateTracker mdstDefault = (MobileDataStateTracker)
4386 mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE];
4387 boolean isDefaultProvisioning = mdstDefault.isProvisioningNetwork();
4388 log("isMobileOk: isDefaultProvisioning=" + isDefaultProvisioning);
4389
4390 MobileDataStateTracker mdstHipri = (MobileDataStateTracker)
4391 mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
4392 boolean isHipriProvisioning = mdstHipri.isProvisioningNetwork();
4393 log("isMobileOk: isHipriProvisioning=" + isHipriProvisioning);
4394
4395 if (isDefaultProvisioning || isHipriProvisioning) {
4396 result = CMP_RESULT_CODE_PROVISIONING_NETWORK;
4397 log("isMobileOk: X default || hipri is provisioning result=" + result);
Wink Savilleafe58b02013-08-13 12:41:06 -07004398 return result;
4399 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004400
Wink Savilleafe58b02013-08-13 12:41:06 -07004401 try {
Wink Savilleab9321d2013-06-29 21:10:57 -07004402 // Continue trying to connect until time has run out
4403 long endTime = SystemClock.elapsedRealtime() + params.mTimeOutMs;
Wink Saville7f6ee2e2013-08-07 11:02:57 -07004404
Wink Savilledce52cd2013-08-16 17:17:28 -07004405 if (!mCs.isMobileDataStateTrackerReady()) {
4406 // Wait for MobileDataStateTracker to be ready.
4407 if (DBG) log("isMobileOk: mdst is not ready");
4408 while(SystemClock.elapsedRealtime() < endTime) {
4409 if (mCs.isMobileDataStateTrackerReady()) {
4410 // Enable fail fast as we'll do retries here and use a
4411 // hipri connection so the default connection stays active.
4412 if (DBG) log("isMobileOk: mdst ready, enable fail fast of mobile data");
4413 mCs.setEnableFailFastMobileData(DctConstants.ENABLED);
4414 break;
4415 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004416 sleep(POLLING_SLEEP_SEC);
Wink Savilledce52cd2013-08-16 17:17:28 -07004417 }
4418 }
4419
4420 log("isMobileOk: start hipri url=" + params.mUrl);
4421
Wink Saville7f6ee2e2013-08-07 11:02:57 -07004422 // First wait until we can start using hipri
4423 Binder binder = new Binder();
4424 while(SystemClock.elapsedRealtime() < endTime) {
4425 int ret = mCs.startUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
4426 Phone.FEATURE_ENABLE_HIPRI, binder);
4427 if ((ret == PhoneConstants.APN_ALREADY_ACTIVE)
4428 || (ret == PhoneConstants.APN_REQUEST_STARTED)) {
4429 log("isMobileOk: hipri started");
4430 break;
4431 }
4432 if (VDBG) log("isMobileOk: hipri not started yet");
Wink Saville948282b2013-08-29 08:55:16 -07004433 result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004434 sleep(POLLING_SLEEP_SEC);
Wink Saville7f6ee2e2013-08-07 11:02:57 -07004435 }
4436
4437 // Continue trying to connect until time has run out
Wink Savilleab9321d2013-06-29 21:10:57 -07004438 while(SystemClock.elapsedRealtime() < endTime) {
4439 try {
4440 // Wait for hipri to connect.
4441 // TODO: Don't poll and handle situation where hipri fails
4442 // because default is retrying. See b/9569540
4443 NetworkInfo.State state = mCs
4444 .getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
4445 if (state != NetworkInfo.State.CONNECTED) {
Wink Saville948282b2013-08-29 08:55:16 -07004446 if (true/*VDBG*/) {
Wink Saville1aef7fc2013-07-31 15:49:04 -07004447 log("isMobileOk: not connected ni=" +
Wink Savilleab9321d2013-06-29 21:10:57 -07004448 mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
Wink Saville1aef7fc2013-07-31 15:49:04 -07004449 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004450 sleep(POLLING_SLEEP_SEC);
Wink Saville948282b2013-08-29 08:55:16 -07004451 result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Savilleab9321d2013-06-29 21:10:57 -07004452 continue;
4453 }
4454
Wink Saville948282b2013-08-29 08:55:16 -07004455 // Hipri has started check if this is a provisioning url
4456 MobileDataStateTracker mdst = (MobileDataStateTracker)
4457 mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
4458 if (mdst.isProvisioningNetwork()) {
Wink Saville4fea0412013-09-06 09:53:08 -07004459 result = CMP_RESULT_CODE_PROVISIONING_NETWORK;
Wink Savilled95ccc52013-09-13 12:40:11 -07004460 if (DBG) log("isMobileOk: X isProvisioningNetwork result=" + result);
Wink Saville948282b2013-08-29 08:55:16 -07004461 return result;
4462 } else {
4463 if (DBG) log("isMobileOk: isProvisioningNetwork is false, continue");
4464 }
4465
Wink Savilleab9321d2013-06-29 21:10:57 -07004466 // Get of the addresses associated with the url host. We need to use the
4467 // address otherwise HttpURLConnection object will use the name to get
Wink Saville1d3a89e2013-10-31 06:35:22 -07004468 // the addresses and will try every address but that will bypass the
Wink Savilleab9321d2013-06-29 21:10:57 -07004469 // route to host we setup and the connection could succeed as the default
4470 // interface might be connected to the internet via wifi or other interface.
4471 InetAddress[] addresses;
4472 try {
4473 addresses = InetAddress.getAllByName(orgUri.getHost());
4474 } catch (UnknownHostException e) {
Wink Saville948282b2013-08-29 08:55:16 -07004475 result = CMP_RESULT_CODE_NO_DNS;
Wink Savilled95ccc52013-09-13 12:40:11 -07004476 log("isMobileOk: X UnknownHostException result=" + result);
Wink Savilleab9321d2013-06-29 21:10:57 -07004477 return result;
4478 }
4479 log("isMobileOk: addresses=" + inetAddressesToString(addresses));
4480
4481 // Get the type of addresses supported by this link
4482 LinkProperties lp = mCs.getLinkProperties(
4483 ConnectivityManager.TYPE_MOBILE_HIPRI);
Lorenzo Colitti4faa0272013-08-08 11:00:12 +09004484 boolean linkHasIpv4 = lp.hasIPv4Address();
4485 boolean linkHasIpv6 = lp.hasIPv6Address();
Wink Savilleab9321d2013-06-29 21:10:57 -07004486 log("isMobileOk: linkHasIpv4=" + linkHasIpv4
4487 + " linkHasIpv6=" + linkHasIpv6);
4488
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004489 final ArrayList<InetAddress> validAddresses =
4490 new ArrayList<InetAddress>(addresses.length);
Wink Savilleab9321d2013-06-29 21:10:57 -07004491
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004492 for (InetAddress addr : addresses) {
4493 if (((addr instanceof Inet4Address) && linkHasIpv4) ||
4494 ((addr instanceof Inet6Address) && linkHasIpv6)) {
4495 validAddresses.add(addr);
Wink Savilleab9321d2013-06-29 21:10:57 -07004496 }
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004497 }
4498
4499 if (validAddresses.size() == 0) {
4500 return CMP_RESULT_CODE_NO_CONNECTION;
4501 }
4502
4503 int addrTried = 0;
4504 while (true) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004505 // Loop through at most MAX_LOOPS valid addresses or until
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004506 // we run out of time
Wink Saville1d3a89e2013-10-31 06:35:22 -07004507 if (addrTried++ >= MAX_LOOPS) {
4508 log("isMobileOk: too many loops tried - giving up");
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004509 break;
4510 }
4511 if (SystemClock.elapsedRealtime() >= endTime) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004512 log("isMobileOk: spend too much time - giving up");
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004513 break;
4514 }
4515
4516 InetAddress hostAddr = validAddresses.get(rand.nextInt(
4517 validAddresses.size()));
Wink Savilleab9321d2013-06-29 21:10:57 -07004518
4519 // Make a route to host so we check the specific interface.
4520 if (mCs.requestRouteToHostAddress(ConnectivityManager.TYPE_MOBILE_HIPRI,
Chad Brubakerf81daa92014-02-14 13:22:34 -08004521 hostAddr.getAddress(), null)) {
Wink Savilleab9321d2013-06-29 21:10:57 -07004522 // Wait a short time to be sure the route is established ??
4523 log("isMobileOk:"
4524 + " wait to establish route to hostAddr=" + hostAddr);
Wink Saville1d3a89e2013-10-31 06:35:22 -07004525 sleep(NET_ROUTE_ESTABLISHMENT_SLEEP_SEC);
Wink Savilleab9321d2013-06-29 21:10:57 -07004526 } else {
4527 log("isMobileOk:"
4528 + " could not establish route to hostAddr=" + hostAddr);
Wink Saville1d3a89e2013-10-31 06:35:22 -07004529 // Wait a short time before the next attempt
4530 sleep(NET_ERROR_SLEEP_SEC);
Wink Savilleab9321d2013-06-29 21:10:57 -07004531 continue;
4532 }
4533
Wink Saville1d3a89e2013-10-31 06:35:22 -07004534 // Rewrite the url to have numeric address to use the specific route
4535 // using http for half the attempts and https for the other half.
4536 // Doing https first and http second as on a redirected walled garden
4537 // such as t-mobile uses we get a SocketTimeoutException: "SSL
4538 // handshake timed out" which we declare as
4539 // CMP_RESULT_CODE_NO_TCP_CONNECTION. We could change this, but by
4540 // having http second we will be using logic used for some time.
4541 URL newUrl;
4542 String scheme = (addrTried <= (MAX_LOOPS/2)) ? "https" : "http";
4543 newUrl = new URL(scheme, hostAddr.getHostAddress(),
4544 orgUri.getPath());
Wink Savilleab9321d2013-06-29 21:10:57 -07004545 log("isMobileOk: newUrl=" + newUrl);
4546
4547 HttpURLConnection urlConn = null;
4548 try {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004549 // Open the connection set the request headers and get the response
4550 urlConn = (HttpURLConnection)newUrl.openConnection(
Wink Savilleab9321d2013-06-29 21:10:57 -07004551 java.net.Proxy.NO_PROXY);
Wink Saville1d3a89e2013-10-31 06:35:22 -07004552 if (scheme.equals("https")) {
4553 ((HttpsURLConnection)urlConn).setHostnameVerifier(
4554 new CheckMpHostnameVerifier(orgUri));
4555 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004556 urlConn.setInstanceFollowRedirects(false);
4557 urlConn.setConnectTimeout(SOCKET_TIMEOUT_MS);
4558 urlConn.setReadTimeout(SOCKET_TIMEOUT_MS);
4559 urlConn.setUseCaches(false);
4560 urlConn.setAllowUserInteraction(false);
Lorenzo Colitti143a2cf2013-10-08 10:41:25 +09004561 // Set the "Connection" to "Close" as by default "Keep-Alive"
4562 // is used which is useless in this case.
Wink Savilleab9321d2013-06-29 21:10:57 -07004563 urlConn.setRequestProperty("Connection", "close");
4564 int responseCode = urlConn.getResponseCode();
Wink Saville4fea0412013-09-06 09:53:08 -07004565
4566 // For debug display the headers
4567 Map<String, List<String>> headers = urlConn.getHeaderFields();
4568 log("isMobileOk: headers=" + headers);
4569
4570 // Close the connection
Wink Savilleab9321d2013-06-29 21:10:57 -07004571 urlConn.disconnect();
4572 urlConn = null;
Wink Saville4fea0412013-09-06 09:53:08 -07004573
Wink Saville1d3a89e2013-10-31 06:35:22 -07004574 if (mTestingFailures) {
4575 // Pretend no connection, this tests using http and https
4576 result = CMP_RESULT_CODE_NO_CONNECTION;
4577 log("isMobileOk: TESTING_FAILURES, pretend no connction");
4578 continue;
4579 }
4580
Wink Saville4fea0412013-09-06 09:53:08 -07004581 if (responseCode == 204) {
4582 // Return
Wink Saville4fea0412013-09-06 09:53:08 -07004583 result = CMP_RESULT_CODE_CONNECTABLE;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004584 log("isMobileOk: X got expected responseCode=" + responseCode
Wink Savilled95ccc52013-09-13 12:40:11 -07004585 + " result=" + result);
Wink Saville4fea0412013-09-06 09:53:08 -07004586 return result;
4587 } else {
4588 // Retry to be sure this was redirected, we've gotten
4589 // occasions where a server returned 200 even though
4590 // the device didn't have a "warm" sim.
4591 log("isMobileOk: not expected responseCode=" + responseCode);
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004592 // TODO - it would be nice in the single-address case to do
4593 // another DNS resolve here, but flushing the cache is a bit
4594 // heavy-handed.
Wink Saville4fea0412013-09-06 09:53:08 -07004595 result = CMP_RESULT_CODE_REDIRECTED;
4596 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004597 } catch (Exception e) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004598 log("isMobileOk: HttpURLConnection Exception" + e);
Wink Saville4fea0412013-09-06 09:53:08 -07004599 result = CMP_RESULT_CODE_NO_TCP_CONNECTION;
Wink Savilleab9321d2013-06-29 21:10:57 -07004600 if (urlConn != null) {
4601 urlConn.disconnect();
4602 urlConn = null;
4603 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004604 sleep(NET_ERROR_SLEEP_SEC);
4605 continue;
Wink Savilleab9321d2013-06-29 21:10:57 -07004606 }
4607 }
Wink Savilled95ccc52013-09-13 12:40:11 -07004608 log("isMobileOk: X loops|timed out result=" + result);
Wink Savilleab9321d2013-06-29 21:10:57 -07004609 return result;
4610 } catch (Exception e) {
4611 log("isMobileOk: Exception e=" + e);
4612 continue;
4613 }
4614 }
4615 log("isMobileOk: timed out");
4616 } finally {
4617 log("isMobileOk: F stop hipri");
4618 mCs.setEnableFailFastMobileData(DctConstants.DISABLED);
4619 mCs.stopUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
4620 Phone.FEATURE_ENABLE_HIPRI);
Wink Saville948282b2013-08-29 08:55:16 -07004621
4622 // Wait for hipri to disconnect.
4623 long endTime = SystemClock.elapsedRealtime() + 5000;
4624
4625 while(SystemClock.elapsedRealtime() < endTime) {
4626 NetworkInfo.State state = mCs
4627 .getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
4628 if (state != NetworkInfo.State.DISCONNECTED) {
4629 if (VDBG) {
4630 log("isMobileOk: connected ni=" +
4631 mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
4632 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004633 sleep(POLLING_SLEEP_SEC);
Wink Saville948282b2013-08-29 08:55:16 -07004634 continue;
4635 }
4636 }
4637
Wink Savilleab9321d2013-06-29 21:10:57 -07004638 log("isMobileOk: X result=" + result);
4639 }
4640 return result;
4641 }
4642
4643 @Override
4644 protected Integer doInBackground(Params... params) {
4645 return isMobileOk(params[0]);
4646 }
4647
4648 @Override
4649 protected void onPostExecute(Integer result) {
4650 log("onPostExecute: result=" + result);
4651 if ((mParams != null) && (mParams.mCb != null)) {
4652 mParams.mCb.onComplete(result);
4653 }
4654 }
4655
4656 private String inetAddressesToString(InetAddress[] addresses) {
4657 StringBuffer sb = new StringBuffer();
4658 boolean firstTime = true;
4659 for(InetAddress addr : addresses) {
4660 if (firstTime) {
4661 firstTime = false;
4662 } else {
4663 sb.append(",");
4664 }
4665 sb.append(addr);
4666 }
4667 return sb.toString();
4668 }
4669
4670 private void printNetworkInfo() {
4671 boolean hasIccCard = mTm.hasIccCard();
4672 int simState = mTm.getSimState();
4673 log("hasIccCard=" + hasIccCard
4674 + " simState=" + simState);
4675 NetworkInfo[] ni = mCs.getAllNetworkInfo();
4676 if (ni != null) {
4677 log("ni.length=" + ni.length);
4678 for (NetworkInfo netInfo: ni) {
4679 log("netInfo=" + netInfo.toString());
4680 }
4681 } else {
4682 log("no network info ni=null");
4683 }
4684 }
4685
4686 /**
4687 * Sleep for a few seconds then return.
4688 * @param seconds
4689 */
4690 private static void sleep(int seconds) {
Jake Hamby8f9b33e2014-01-15 13:08:03 -08004691 long stopTime = System.nanoTime() + (seconds * 1000000000);
4692 long sleepTime;
4693 while ((sleepTime = stopTime - System.nanoTime()) > 0) {
4694 try {
4695 Thread.sleep(sleepTime / 1000000);
4696 } catch (InterruptedException ignored) {
4697 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004698 }
4699 }
4700
Wink Saville1d3a89e2013-10-31 06:35:22 -07004701 private static void log(String s) {
Wink Savilleab9321d2013-06-29 21:10:57 -07004702 Slog.d(ConnectivityService.TAG, "[" + CHECKMP_TAG + "] " + s);
4703 }
4704 }
4705
Wink Saville948282b2013-08-29 08:55:16 -07004706 // TODO: Move to ConnectivityManager and make public?
4707 private static final String CONNECTED_TO_PROVISIONING_NETWORK_ACTION =
4708 "com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION";
Wink Savilleab9321d2013-06-29 21:10:57 -07004709
Wink Saville948282b2013-08-29 08:55:16 -07004710 private BroadcastReceiver mProvisioningReceiver = new BroadcastReceiver() {
4711 @Override
4712 public void onReceive(Context context, Intent intent) {
4713 if (intent.getAction().equals(CONNECTED_TO_PROVISIONING_NETWORK_ACTION)) {
4714 handleMobileProvisioningAction(intent.getStringExtra("EXTRA_URL"));
4715 }
4716 }
4717 };
4718
4719 private void handleMobileProvisioningAction(String url) {
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004720 // Mark notification as not visible
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004721 setProvNotificationVisible(false, ConnectivityManager.TYPE_MOBILE_HIPRI, null, null);
Wink Saville948282b2013-08-29 08:55:16 -07004722
4723 // If provisioning network handle as a special case,
4724 // otherwise launch browser with the intent directly.
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004725 if (mIsProvisioningNetwork.get()) {
4726 if (DBG) log("handleMobileProvisioningAction: on prov network enable then launch");
4727 mIsStartingProvisioning.set(true);
Wink Saville948282b2013-08-29 08:55:16 -07004728 MobileDataStateTracker mdst = (MobileDataStateTracker)
4729 mNetTrackers[ConnectivityManager.TYPE_MOBILE];
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004730 mdst.setEnableFailFastMobileData(DctConstants.ENABLED);
Wink Saville948282b2013-08-29 08:55:16 -07004731 mdst.enableMobileProvisioning(url);
4732 } else {
Robert Greenwalt1b98e902014-03-19 12:41:54 -07004733 if (DBG) log("handleMobileProvisioningAction: not prov network");
Andrew Flynn0c3e1df2013-10-11 10:16:31 -07004734 // Check for apps that can handle provisioning first
4735 Intent provisioningIntent = new Intent(TelephonyIntents.ACTION_CARRIER_SETUP);
4736 provisioningIntent.addCategory(TelephonyIntents.CATEGORY_MCCMNC_PREFIX
4737 + mTelephonyManager.getSimOperator());
4738 if (mContext.getPackageManager().resolveActivity(provisioningIntent, 0 /* flags */)
4739 != null) {
4740 provisioningIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4741 Intent.FLAG_ACTIVITY_NEW_TASK);
4742 mContext.startActivity(provisioningIntent);
4743 } else {
4744 // If no apps exist, use standard URL ACTION_VIEW method
4745 Intent newIntent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN,
4746 Intent.CATEGORY_APP_BROWSER);
4747 newIntent.setData(Uri.parse(url));
4748 newIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4749 Intent.FLAG_ACTIVITY_NEW_TASK);
4750 try {
4751 mContext.startActivity(newIntent);
4752 } catch (ActivityNotFoundException e) {
4753 loge("handleMobileProvisioningAction: startActivity failed" + e);
4754 }
Wink Saville948282b2013-08-29 08:55:16 -07004755 }
4756 }
4757 }
4758
4759 private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
4760 private volatile boolean mIsNotificationVisible = false;
4761
4762 private void setProvNotificationVisible(boolean visible, int networkType, String extraInfo,
4763 String url) {
4764 if (DBG) {
4765 log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
4766 + " extraInfo=" + extraInfo + " url=" + url);
4767 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004768
4769 Resources r = Resources.getSystem();
4770 NotificationManager notificationManager = (NotificationManager) mContext
4771 .getSystemService(Context.NOTIFICATION_SERVICE);
4772
4773 if (visible) {
4774 CharSequence title;
4775 CharSequence details;
4776 int icon;
Wink Saville948282b2013-08-29 08:55:16 -07004777 Intent intent;
4778 Notification notification = new Notification();
4779 switch (networkType) {
Wink Savilleab9321d2013-06-29 21:10:57 -07004780 case ConnectivityManager.TYPE_WIFI:
Wink Savilleab9321d2013-06-29 21:10:57 -07004781 title = r.getString(R.string.wifi_available_sign_in, 0);
4782 details = r.getString(R.string.network_available_sign_in_detailed,
Wink Saville948282b2013-08-29 08:55:16 -07004783 extraInfo);
Wink Savilleab9321d2013-06-29 21:10:57 -07004784 icon = R.drawable.stat_notify_wifi_in_range;
Wink Saville948282b2013-08-29 08:55:16 -07004785 intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
4786 intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4787 Intent.FLAG_ACTIVITY_NEW_TASK);
4788 notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
Wink Savilleab9321d2013-06-29 21:10:57 -07004789 break;
4790 case ConnectivityManager.TYPE_MOBILE:
4791 case ConnectivityManager.TYPE_MOBILE_HIPRI:
Wink Savilleab9321d2013-06-29 21:10:57 -07004792 title = r.getString(R.string.network_available_sign_in, 0);
4793 // TODO: Change this to pull from NetworkInfo once a printable
4794 // name has been added to it
4795 details = mTelephonyManager.getNetworkOperatorName();
4796 icon = R.drawable.stat_notify_rssi_in_range;
Wink Saville948282b2013-08-29 08:55:16 -07004797 intent = new Intent(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
4798 intent.putExtra("EXTRA_URL", url);
4799 intent.setFlags(0);
4800 notification.contentIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
Wink Savilleab9321d2013-06-29 21:10:57 -07004801 break;
4802 default:
Wink Savilleab9321d2013-06-29 21:10:57 -07004803 title = r.getString(R.string.network_available_sign_in, 0);
4804 details = r.getString(R.string.network_available_sign_in_detailed,
Wink Saville948282b2013-08-29 08:55:16 -07004805 extraInfo);
Wink Savilleab9321d2013-06-29 21:10:57 -07004806 icon = R.drawable.stat_notify_rssi_in_range;
Wink Saville948282b2013-08-29 08:55:16 -07004807 intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
4808 intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4809 Intent.FLAG_ACTIVITY_NEW_TASK);
4810 notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
Wink Savilleab9321d2013-06-29 21:10:57 -07004811 break;
4812 }
4813
Wink Savilleab9321d2013-06-29 21:10:57 -07004814 notification.when = 0;
4815 notification.icon = icon;
4816 notification.flags = Notification.FLAG_AUTO_CANCEL;
Wink Savilleab9321d2013-06-29 21:10:57 -07004817 notification.tickerText = title;
4818 notification.setLatestEventInfo(mContext, title, details, notification.contentIntent);
4819
Wink Saville948282b2013-08-29 08:55:16 -07004820 try {
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004821 notificationManager.notify(NOTIFICATION_ID, networkType, notification);
Wink Saville948282b2013-08-29 08:55:16 -07004822 } catch (NullPointerException npe) {
4823 loge("setNotificaitionVisible: visible notificationManager npe=" + npe);
4824 npe.printStackTrace();
4825 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004826 } else {
Wink Saville948282b2013-08-29 08:55:16 -07004827 try {
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004828 notificationManager.cancel(NOTIFICATION_ID, networkType);
Wink Saville948282b2013-08-29 08:55:16 -07004829 } catch (NullPointerException npe) {
4830 loge("setNotificaitionVisible: cancel notificationManager npe=" + npe);
4831 npe.printStackTrace();
4832 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004833 }
Wink Saville948282b2013-08-29 08:55:16 -07004834 mIsNotificationVisible = visible;
Wink Savilleab9321d2013-06-29 21:10:57 -07004835 }
4836
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004837 /** Location to an updatable file listing carrier provisioning urls.
4838 * An example:
4839 *
4840 * <?xml version="1.0" encoding="utf-8"?>
4841 * <provisioningUrls>
4842 * <provisioningUrl mcc="310" mnc="4">http://myserver.com/foo?mdn=%3$s&amp;iccid=%1$s&amp;imei=%2$s</provisioningUrl>
4843 * <redirectedUrl mcc="310" mnc="4">http://www.google.com</redirectedUrl>
4844 * </provisioningUrls>
4845 */
4846 private static final String PROVISIONING_URL_PATH =
4847 "/data/misc/radio/provisioning_urls.xml";
4848 private final File mProvisioningUrlFile = new File(PROVISIONING_URL_PATH);
Wink Savilleab9321d2013-06-29 21:10:57 -07004849
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004850 /** XML tag for root element. */
4851 private static final String TAG_PROVISIONING_URLS = "provisioningUrls";
4852 /** XML tag for individual url */
4853 private static final String TAG_PROVISIONING_URL = "provisioningUrl";
4854 /** XML tag for redirected url */
4855 private static final String TAG_REDIRECTED_URL = "redirectedUrl";
4856 /** XML attribute for mcc */
4857 private static final String ATTR_MCC = "mcc";
4858 /** XML attribute for mnc */
4859 private static final String ATTR_MNC = "mnc";
4860
4861 private static final int REDIRECTED_PROVISIONING = 1;
4862 private static final int PROVISIONING = 2;
4863
4864 private String getProvisioningUrlBaseFromFile(int type) {
4865 FileReader fileReader = null;
4866 XmlPullParser parser = null;
4867 Configuration config = mContext.getResources().getConfiguration();
4868 String tagType;
4869
4870 switch (type) {
4871 case PROVISIONING:
4872 tagType = TAG_PROVISIONING_URL;
4873 break;
4874 case REDIRECTED_PROVISIONING:
4875 tagType = TAG_REDIRECTED_URL;
4876 break;
4877 default:
4878 throw new RuntimeException("getProvisioningUrlBaseFromFile: Unexpected parameter " +
4879 type);
4880 }
4881
4882 try {
4883 fileReader = new FileReader(mProvisioningUrlFile);
4884 parser = Xml.newPullParser();
4885 parser.setInput(fileReader);
4886 XmlUtils.beginDocument(parser, TAG_PROVISIONING_URLS);
4887
4888 while (true) {
4889 XmlUtils.nextElement(parser);
4890
4891 String element = parser.getName();
4892 if (element == null) break;
4893
4894 if (element.equals(tagType)) {
4895 String mcc = parser.getAttributeValue(null, ATTR_MCC);
4896 try {
4897 if (mcc != null && Integer.parseInt(mcc) == config.mcc) {
4898 String mnc = parser.getAttributeValue(null, ATTR_MNC);
4899 if (mnc != null && Integer.parseInt(mnc) == config.mnc) {
4900 parser.next();
4901 if (parser.getEventType() == XmlPullParser.TEXT) {
4902 return parser.getText();
4903 }
4904 }
4905 }
4906 } catch (NumberFormatException e) {
4907 loge("NumberFormatException in getProvisioningUrlBaseFromFile: " + e);
4908 }
4909 }
4910 }
4911 return null;
4912 } catch (FileNotFoundException e) {
4913 loge("Carrier Provisioning Urls file not found");
4914 } catch (XmlPullParserException e) {
4915 loge("Xml parser exception reading Carrier Provisioning Urls file: " + e);
4916 } catch (IOException e) {
4917 loge("I/O exception reading Carrier Provisioning Urls file: " + e);
4918 } finally {
4919 if (fileReader != null) {
4920 try {
4921 fileReader.close();
4922 } catch (IOException e) {}
4923 }
4924 }
4925 return null;
4926 }
4927
Wink Saville42d4f082013-07-20 20:31:59 -07004928 @Override
4929 public String getMobileRedirectedProvisioningUrl() {
4930 enforceConnectivityInternalPermission();
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004931 String url = getProvisioningUrlBaseFromFile(REDIRECTED_PROVISIONING);
4932 if (TextUtils.isEmpty(url)) {
4933 url = mContext.getResources().getString(R.string.mobile_redirected_provisioning_url);
4934 }
4935 return url;
4936 }
4937
Wink Saville42d4f082013-07-20 20:31:59 -07004938 @Override
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004939 public String getMobileProvisioningUrl() {
4940 enforceConnectivityInternalPermission();
4941 String url = getProvisioningUrlBaseFromFile(PROVISIONING);
4942 if (TextUtils.isEmpty(url)) {
4943 url = mContext.getResources().getString(R.string.mobile_provisioning_url);
Wink Saville42d4f082013-07-20 20:31:59 -07004944 log("getMobileProvisioningUrl: mobile_provisioining_url from resource =" + url);
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004945 } else {
Wink Saville42d4f082013-07-20 20:31:59 -07004946 log("getMobileProvisioningUrl: mobile_provisioning_url from File =" + url);
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004947 }
Wink Saville8cf35602013-07-10 23:00:07 -07004948 // populate the iccid, imei and phone number in the provisioning url.
Wink Savilleab9321d2013-06-29 21:10:57 -07004949 if (!TextUtils.isEmpty(url)) {
Wink Saville8cf35602013-07-10 23:00:07 -07004950 String phoneNumber = mTelephonyManager.getLine1Number();
4951 if (TextUtils.isEmpty(phoneNumber)) {
4952 phoneNumber = "0000000000";
4953 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004954 url = String.format(url,
4955 mTelephonyManager.getSimSerialNumber() /* ICCID */,
4956 mTelephonyManager.getDeviceId() /* IMEI */,
Wink Saville8cf35602013-07-10 23:00:07 -07004957 phoneNumber /* Phone numer */);
Wink Savilleab9321d2013-06-29 21:10:57 -07004958 }
4959
Wink Savilleab9321d2013-06-29 21:10:57 -07004960 return url;
4961 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07004962
Wink Saville948282b2013-08-29 08:55:16 -07004963 @Override
4964 public void setProvisioningNotificationVisible(boolean visible, int networkType,
4965 String extraInfo, String url) {
4966 enforceConnectivityInternalPermission();
4967 setProvNotificationVisible(visible, networkType, extraInfo, url);
4968 }
Wink Saville7788c612013-08-29 14:57:08 -07004969
Yuhao Zheng5cd1a0e2013-09-09 17:00:04 -07004970 @Override
4971 public void setAirplaneMode(boolean enable) {
4972 enforceConnectivityInternalPermission();
Yuhao Zheng5cd1a0e2013-09-09 17:00:04 -07004973 final long ident = Binder.clearCallingIdentity();
4974 try {
Yuhao Zheng5530e4b2013-09-11 09:36:41 -07004975 final ContentResolver cr = mContext.getContentResolver();
4976 Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, enable ? 1 : 0);
4977 Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
4978 intent.putExtra("state", enable);
Yuhao Zheng5cd1a0e2013-09-09 17:00:04 -07004979 mContext.sendBroadcast(intent);
4980 } finally {
4981 Binder.restoreCallingIdentity(ident);
4982 }
4983 }
4984
Chad Brubaker4ca19e82013-06-14 11:16:51 -07004985 private void onUserStart(int userId) {
4986 synchronized(mVpns) {
4987 Vpn userVpn = mVpns.get(userId);
4988 if (userVpn != null) {
4989 loge("Starting user already has a VPN");
4990 return;
4991 }
4992 userVpn = new Vpn(mContext, mVpnCallback, mNetd, this, userId);
4993 mVpns.put(userId, userVpn);
4994 userVpn.startMonitoring(mContext, mTrackerHandler);
4995 }
4996 }
4997
4998 private void onUserStop(int userId) {
4999 synchronized(mVpns) {
5000 Vpn userVpn = mVpns.get(userId);
5001 if (userVpn == null) {
5002 loge("Stopping user has no VPN");
5003 return;
5004 }
5005 mVpns.delete(userId);
5006 }
5007 }
5008
5009 private BroadcastReceiver mUserIntentReceiver = new BroadcastReceiver() {
5010 @Override
5011 public void onReceive(Context context, Intent intent) {
5012 final String action = intent.getAction();
5013 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
5014 if (userId == UserHandle.USER_NULL) return;
5015
5016 if (Intent.ACTION_USER_STARTING.equals(action)) {
5017 onUserStart(userId);
5018 } else if (Intent.ACTION_USER_STOPPING.equals(action)) {
5019 onUserStop(userId);
5020 }
5021 }
5022 };
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005023
5024 @Override
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005025 public LinkQualityInfo getLinkQualityInfo(int networkType) {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005026 enforceAccessPermission();
5027 if (isNetworkTypeValid(networkType)) {
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005028 return mNetTrackers[networkType].getLinkQualityInfo();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005029 } else {
5030 return null;
5031 }
5032 }
5033
5034 @Override
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005035 public LinkQualityInfo getActiveLinkQualityInfo() {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005036 enforceAccessPermission();
5037 if (isNetworkTypeValid(mActiveDefaultNetwork)) {
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005038 return mNetTrackers[mActiveDefaultNetwork].getLinkQualityInfo();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005039 } else {
5040 return null;
5041 }
5042 }
5043
5044 @Override
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005045 public LinkQualityInfo[] getAllLinkQualityInfo() {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005046 enforceAccessPermission();
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005047 final ArrayList<LinkQualityInfo> result = Lists.newArrayList();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005048 for (NetworkStateTracker tracker : mNetTrackers) {
5049 if (tracker != null) {
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005050 LinkQualityInfo li = tracker.getLinkQualityInfo();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005051 if (li != null) {
5052 result.add(li);
5053 }
5054 }
5055 }
5056
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005057 return result.toArray(new LinkQualityInfo[result.size()]);
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005058 }
5059
5060 /* Infrastructure for network sampling */
5061
5062 private void handleNetworkSamplingTimeout() {
5063
5064 log("Sampling interval elapsed, updating statistics ..");
5065
5066 // initialize list of interfaces ..
5067 Map<String, SamplingDataTracker.SamplingSnapshot> mapIfaceToSample =
5068 new HashMap<String, SamplingDataTracker.SamplingSnapshot>();
5069 for (NetworkStateTracker tracker : mNetTrackers) {
5070 if (tracker != null) {
5071 String ifaceName = tracker.getNetworkInterfaceName();
5072 if (ifaceName != null) {
5073 mapIfaceToSample.put(ifaceName, null);
5074 }
5075 }
5076 }
5077
5078 // Read samples for all interfaces
5079 SamplingDataTracker.getSamplingSnapshots(mapIfaceToSample);
5080
5081 // process samples for all networks
5082 for (NetworkStateTracker tracker : mNetTrackers) {
5083 if (tracker != null) {
5084 String ifaceName = tracker.getNetworkInterfaceName();
5085 SamplingDataTracker.SamplingSnapshot ss = mapIfaceToSample.get(ifaceName);
5086 if (ss != null) {
5087 // end the previous sampling cycle
5088 tracker.stopSampling(ss);
5089 // start a new sampling cycle ..
5090 tracker.startSampling(ss);
5091 }
5092 }
5093 }
5094
5095 log("Done.");
5096
5097 int samplingIntervalInSeconds = Settings.Global.getInt(mContext.getContentResolver(),
5098 Settings.Global.CONNECTIVITY_SAMPLING_INTERVAL_IN_SECONDS,
5099 DEFAULT_SAMPLING_INTERVAL_IN_SECONDS);
5100
5101 if (DBG) log("Setting timer for " + String.valueOf(samplingIntervalInSeconds) + "seconds");
5102
5103 setAlarm(samplingIntervalInSeconds * 1000, mSampleIntervalElapsedIntent);
5104 }
5105
5106 void setAlarm(int timeoutInMilliseconds, PendingIntent intent) {
5107 long wakeupTime = SystemClock.elapsedRealtime() + timeoutInMilliseconds;
5108 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, wakeupTime, intent);
5109 }
Robert Greenwalte049c232014-04-11 15:53:27 -07005110
5111 private final ArrayList<AsyncChannel> mNetworkFactories = new ArrayList<AsyncChannel>();
5112
5113 public void registerNetworkFactory(Messenger messenger) {
5114 enforceConnectivityInternalPermission();
5115
5116 mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_FACTORY, messenger));
5117 }
5118
5119 private void handleRegisterNetworkFactory(Messenger messenger) {
5120 if (VDBG) log("Got NetworkFactory Messenger");
5121 AsyncChannel ac = new AsyncChannel();
5122 mNetworkFactories.add(ac);
5123 ac.connect(mContext, mTrackerHandler, messenger);
5124 }
5125
5126 private final SparseArray<NetworkRequest> mNetworkRequests = new SparseArray<NetworkRequest>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005127}