blob: c1ffd56ae5d92a2c22d041722b01caf3bfbe6ac0 [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;
32import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070033import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070034
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -070035import android.app.AlarmManager;
Chad Brubakerc0234532014-02-14 13:24:29 -080036import android.app.AppOpsManager;
Wink Savilleab9321d2013-06-29 21:10:57 -070037import android.app.Notification;
38import android.app.NotificationManager;
39import android.app.PendingIntent;
Jaikumar Ganesh15c74392010-12-21 22:31:44 -080040import android.bluetooth.BluetoothTetheringDataTracker;
Wink Saville948282b2013-08-29 08:55:16 -070041import android.content.ActivityNotFoundException;
Jeff Sharkey69ddab42012-08-25 00:05:46 -070042import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.content.ContentResolver;
44import android.content.Context;
tk.mun148c7d02011-10-13 22:51:57 +090045import android.content.ContextWrapper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.content.Intent;
Jeff Sharkey69ddab42012-08-25 00:05:46 -070047import android.content.IntentFilter;
Chad Brubakerc0234532014-02-14 13:24:29 -080048import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import android.content.pm.PackageManager;
Chad Brubakerc0234532014-02-14 13:24:29 -080050import android.content.pm.PackageManager.NameNotFoundException;
Robert Greenwalte182bfe2013-07-16 12:06:09 -070051import android.content.res.Configuration;
tk.mun148c7d02011-10-13 22:51:57 +090052import android.content.res.Resources;
Robert Greenwalt434203a2010-10-11 16:00:27 -070053import android.database.ContentObserver;
Irfan Sheriffda6da092012-08-16 12:49:23 -070054import android.net.CaptivePortalTracker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.net.ConnectivityManager;
Robert Greenwaltda3d5e62010-12-06 13:56:24 -080056import android.net.DummyDataStateTracker;
Benoit Goby19970692010-12-22 14:29:40 -080057import android.net.EthernetDataTracker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058import android.net.IConnectivityManager;
Haoyu Baidb3c8672012-06-20 14:29:57 -070059import android.net.INetworkManagementEventObserver;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070060import android.net.INetworkPolicyListener;
61import android.net.INetworkPolicyManager;
Jeff Sharkey367d15a2011-09-22 14:59:51 -070062import android.net.INetworkStatsService;
Wink Savillec9822c52011-07-14 12:23:28 -070063import android.net.LinkAddress;
Jaikumar Ganesh15c74392010-12-21 22:31:44 -080064import android.net.LinkProperties;
Robert Greenwalt0a46db52011-07-14 14:28:05 -070065import android.net.LinkProperties.CompareResult;
Jeff Sharkeye4984be2013-09-10 21:03:27 -070066import android.net.LinkQualityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067import android.net.MobileDataStateTracker;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070068import android.net.Network;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -070069import android.net.NetworkConfig;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070import android.net.NetworkInfo;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070071import android.net.NetworkInfo.DetailedState;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070072import android.net.NetworkQuotaInfo;
Jeff Sharkeyd2a45872011-05-28 20:56:34 -070073import android.net.NetworkState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074import android.net.NetworkStateTracker;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070075import android.net.NetworkUtils;
Robert Greenwalt434203a2010-10-11 16:00:27 -070076import android.net.Proxy;
Hui Lu1c5624a2014-01-15 11:05:36 -050077import android.net.ProxyDataTracker;
Jason Monk207900c2014-04-25 15:00:09 -040078import android.net.ProxyInfo;
Robert Greenwaltaa70f102011-04-28 14:28:50 -070079import android.net.RouteInfo;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -070080import android.net.SamplingDataTracker;
Jason Monk602b2322013-07-03 17:04:33 -040081import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082import android.net.wifi.WifiStateTracker;
tk.mun148c7d02011-10-13 22:51:57 +090083import android.net.wimax.WimaxManagerConstants;
Wink Savilleab9321d2013-06-29 21:10:57 -070084import android.os.AsyncTask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085import android.os.Binder;
Wink Saville1d3a89e2013-10-31 06:35:22 -070086import android.os.Build;
Mike Lockwoodda8bb742011-05-28 13:24:04 -040087import android.os.FileUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088import android.os.Handler;
Wink Savillebb08caf2010-09-02 19:23:52 -070089import android.os.HandlerThread;
Robert Greenwalt42acef32009-08-12 16:08:25 -070090import android.os.IBinder;
Chia-chi Yehc9338302011-05-11 16:35:13 -070091import android.os.INetworkManagementService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092import android.os.Looper;
93import android.os.Message;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -070094import android.os.Messenger;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -070095import android.os.ParcelFileDescriptor;
Robert Greenwalt14f2ef42010-06-15 12:19:37 -070096import android.os.PowerManager;
Jeff Sharkeyf56e2432012-09-06 17:54:29 -070097import android.os.Process;
Robert Greenwalt42acef32009-08-12 16:08:25 -070098import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099import android.os.ServiceManager;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -0700100import android.os.SystemClock;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101import android.os.SystemProperties;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -0700102import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103import android.provider.Settings;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700104import android.security.Credentials;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700105import android.security.KeyStore;
Wink Savilleab9321d2013-06-29 21:10:57 -0700106import android.telephony.TelephonyManager;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700107import android.text.TextUtils;
Joe Onorato8a9b2202010-02-26 18:56:32 -0800108import android.util.Slog;
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700109import android.util.SparseArray;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700110import android.util.SparseIntArray;
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700111import android.util.Xml;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112
Wink Savilleab9321d2013-06-29 21:10:57 -0700113import com.android.internal.R;
Jason Monk602b2322013-07-03 17:04:33 -0400114import com.android.internal.annotations.GuardedBy;
Chia-chi Yeh2e467642011-07-04 03:23:12 -0700115import com.android.internal.net.LegacyVpnInfo;
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -0700116import com.android.internal.net.VpnConfig;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700117import com.android.internal.net.VpnProfile;
Wink Savilleab9321d2013-06-29 21:10:57 -0700118import com.android.internal.telephony.DctConstants;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700119import com.android.internal.telephony.Phone;
Wink Savillea639b312012-07-10 12:37:54 -0700120import com.android.internal.telephony.PhoneConstants;
Andrew Flynn0c3e1df2013-10-11 10:16:31 -0700121import com.android.internal.telephony.TelephonyIntents;
Jeff Sharkeye6e61972012-09-14 13:47:51 -0700122import com.android.internal.util.IndentingPrintWriter;
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700123import com.android.internal.util.XmlUtils;
Jeff Sharkey1059c3c2011-10-04 16:54:49 -0700124import com.android.server.am.BatteryStatsService;
John Spurlockbf991a82013-06-24 14:20:23 -0400125import com.android.server.connectivity.DataConnectionStats;
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900126import com.android.server.connectivity.Nat464Xlat;
Jason Monk602b2322013-07-03 17:04:33 -0400127import com.android.server.connectivity.PacManager;
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800128import com.android.server.connectivity.Tethering;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700129import com.android.server.connectivity.Vpn;
Jeff Sharkey216c1812012-08-05 14:29:23 -0700130import com.android.server.net.BaseNetworkObserver;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700131import com.android.server.net.LockdownVpnTracker;
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700132import com.google.android.collect.Lists;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700133import com.google.android.collect.Sets;
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700134
tk.mun148c7d02011-10-13 22:51:57 +0900135import dalvik.system.DexClassLoader;
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700136
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700137import org.xmlpull.v1.XmlPullParser;
138import org.xmlpull.v1.XmlPullParserException;
139
140import java.io.File;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141import java.io.FileDescriptor;
Robert Greenwalte182bfe2013-07-16 12:06:09 -0700142import java.io.FileNotFoundException;
143import java.io.FileReader;
Irfan Sheriffd649c122010-06-09 15:39:36 -0700144import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145import java.io.PrintWriter;
tk.mun148c7d02011-10-13 22:51:57 +0900146import java.lang.reflect.Constructor;
Wink Savilleab9321d2013-06-29 21:10:57 -0700147import java.net.HttpURLConnection;
Wink Savillec9822c52011-07-14 12:23:28 -0700148import java.net.Inet4Address;
Wink Savillee8222252011-07-13 13:44:13 -0700149import java.net.Inet6Address;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700150import java.net.InetAddress;
Wink Savilleab9321d2013-06-29 21:10:57 -0700151import java.net.URL;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700152import java.net.UnknownHostException;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700153import java.util.ArrayList;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700154import java.util.Arrays;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700155import java.util.Collection;
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700156import java.util.GregorianCalendar;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700157import java.util.HashMap;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700158import java.util.HashSet;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700159import java.util.List;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700160import java.util.Map;
Wink Savilleab9321d2013-06-29 21:10:57 -0700161import java.util.Random;
Wink Saville948282b2013-08-29 08:55:16 -0700162import java.util.concurrent.atomic.AtomicBoolean;
Wink Savilleab9321d2013-06-29 21:10:57 -0700163import java.util.concurrent.atomic.AtomicInteger;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164
Wink Saville1d3a89e2013-10-31 06:35:22 -0700165import javax.net.ssl.HostnameVerifier;
166import javax.net.ssl.HttpsURLConnection;
167import javax.net.ssl.SSLSession;
168
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700169import static android.net.ConnectivityManager.INVALID_NET_ID;
170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171/**
172 * @hide
173 */
174public class ConnectivityService extends IConnectivityManager.Stub {
Jeff Sharkey899223b2012-08-04 15:24:58 -0700175 private static final String TAG = "ConnectivityService";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176
Robert Greenwaltba175a52010-10-05 19:12:26 -0700177 private static final boolean DBG = true;
Jake Hamby786e71a2014-02-06 14:43:50 -0800178 private static final boolean VDBG = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179
Jake Hamby786e71a2014-02-06 14:43:50 -0800180 private static final boolean LOGD_RULES = false;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700181
Jeff Sharkey899223b2012-08-04 15:24:58 -0700182 // TODO: create better separation between radio types and network types
183
Robert Greenwalt42acef32009-08-12 16:08:25 -0700184 // how long to wait before switching back to a radio's default network
185 private static final int RESTORE_DEFAULT_NETWORK_DELAY = 1 * 60 * 1000;
186 // system property that can override the above value
187 private static final String NETWORK_RESTORE_DELAY_PROP_NAME =
188 "android.telephony.apn-restore";
189
Wink Savilleab9321d2013-06-29 21:10:57 -0700190 // Default value if FAIL_FAST_TIME_MS is not set
191 private static final int DEFAULT_FAIL_FAST_TIME_MS = 1 * 60 * 1000;
192 // system property that can override DEFAULT_FAIL_FAST_TIME_MS
193 private static final String FAIL_FAST_TIME_MS =
194 "persist.radio.fail_fast_time_ms";
195
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700196 private static final String ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED =
197 "android.net.ConnectivityService.action.PKT_CNT_SAMPLE_INTERVAL_ELAPSED";
198
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -0700199 private static final int SAMPLE_INTERVAL_ELAPSED_REQUEST_CODE = 0;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700200
201 private PendingIntent mSampleIntervalElapsedIntent;
202
203 // Set network sampling interval at 12 minutes, this way, even if the timers get
204 // aggregated, it will fire at around 15 minutes, which should allow us to
205 // aggregate this timer with other timers (specially the socket keep alive timers)
206 private static final int DEFAULT_SAMPLING_INTERVAL_IN_SECONDS = (VDBG ? 30 : 12 * 60);
207
208 // start network sampling a minute after booting ...
209 private static final int DEFAULT_START_SAMPLING_INTERVAL_IN_SECONDS = (VDBG ? 30 : 60);
210
211 AlarmManager mAlarmManager;
212
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700213 // used in recursive route setting to add gateways for the host for which
214 // a host route was requested.
215 private static final int MAX_HOSTROUTE_CYCLE_COUNT = 10;
216
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800217 private Tethering mTethering;
218
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700219 private KeyStore mKeyStore;
Jeff Sharkey82f85212012-08-24 11:17:25 -0700220
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700221 @GuardedBy("mVpns")
222 private final SparseArray<Vpn> mVpns = new SparseArray<Vpn>();
Jeff Sharkey899223b2012-08-04 15:24:58 -0700223 private VpnCallback mVpnCallback = new VpnCallback();
Chia-chi Yehff3bdca2011-05-23 17:26:46 -0700224
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700225 private boolean mLockdownEnabled;
226 private LockdownVpnTracker mLockdownTracker;
227
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900228 private Nat464Xlat mClat;
229
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700230 /** Lock around {@link #mUidRules} and {@link #mMeteredIfaces}. */
231 private Object mRulesLock = new Object();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700232 /** Currently active network rules by UID. */
233 private SparseIntArray mUidRules = new SparseIntArray();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700234 /** Set of ifaces that are costly. */
235 private HashSet<String> mMeteredIfaces = Sets.newHashSet();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700236
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 /**
238 * Sometimes we want to refer to the individual network state
239 * trackers separately, and sometimes we just want to treat them
240 * abstractly.
241 */
242 private NetworkStateTracker mNetTrackers[];
Robert Greenwalt42acef32009-08-12 16:08:25 -0700243
Irfan Sheriffda6da092012-08-16 12:49:23 -0700244 /* Handles captive portal check on a network */
245 private CaptivePortalTracker mCaptivePortalTracker;
246
Robert Greenwalt42acef32009-08-12 16:08:25 -0700247 /**
Wink Savillee8222252011-07-13 13:44:13 -0700248 * The link properties that define the current links
249 */
250 private LinkProperties mCurrentLinkProperties[];
251
252 /**
Robert Greenwalt42acef32009-08-12 16:08:25 -0700253 * A per Net list of the PID's that requested access to the net
254 * used both as a refcount and for per-PID DNS selection
255 */
Mattias Falk8b47b362011-08-23 14:15:13 +0200256 private List<Integer> mNetRequestersPids[];
Robert Greenwalt42acef32009-08-12 16:08:25 -0700257
Robert Greenwalt42acef32009-08-12 16:08:25 -0700258 // priority order of the nettrackers
259 // (excluding dynamically set mNetworkPreference)
260 // TODO - move mNetworkTypePreference into this
261 private int[] mPriorityList;
262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 private Context mContext;
264 private int mNetworkPreference;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700265 private int mActiveDefaultNetwork = -1;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -0700266 // 0 is full bad, 100 is full good
Wink Saville5b7573e2013-01-31 00:30:13 +0000267 private int mDefaultInetCondition = 0;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -0700268 private int mDefaultInetConditionPublished = 0;
269 private boolean mInetConditionChangeInFlight = false;
270 private int mDefaultConnectionSequence = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271
Chia-chi Yeh44bb2512011-07-14 18:01:57 -0700272 private Object mDnsLock = new Object();
Robert Greenwalt0dd19a82013-02-11 15:25:10 -0800273 private int mNumDnsEntries;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274
275 private boolean mTestMode;
Joe Onorato00092872010-09-01 21:18:22 -0700276 private static ConnectivityService sServiceInstance;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700278 private INetworkManagementService mNetd;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700279 private INetworkPolicyManager mPolicyManager;
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700280
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700281 private static final int ENABLED = 1;
282 private static final int DISABLED = 0;
283
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -0700284 private static final boolean ADD = true;
285 private static final boolean REMOVE = false;
286
287 private static final boolean TO_DEFAULT_TABLE = true;
288 private static final boolean TO_SECONDARY_TABLE = false;
289
Chad Brubakerf336d722013-07-15 16:34:04 -0700290 private static final boolean EXEMPT = true;
291 private static final boolean UNEXEMPT = false;
292
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700293 /**
294 * used internally as a delayed event to make us switch back to the
295 * default network
296 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700297 private static final int EVENT_RESTORE_DEFAULT_NETWORK = 1;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700298
299 /**
300 * used internally to change our mobile data enabled flag
301 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700302 private static final int EVENT_CHANGE_MOBILE_DATA_ENABLED = 2;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700303
304 /**
305 * used internally to change our network preference setting
306 * arg1 = networkType to prefer
307 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700308 private static final int EVENT_SET_NETWORK_PREFERENCE = 3;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700309
310 /**
311 * used internally to synchronize inet condition reports
312 * arg1 = networkType
313 * arg2 = condition (0 bad, 100 good)
314 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700315 private static final int EVENT_INET_CONDITION_CHANGE = 4;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700316
317 /**
318 * used internally to mark the end of inet condition hold periods
319 * arg1 = networkType
320 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700321 private static final int EVENT_INET_CONDITION_HOLD_END = 5;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700322
323 /**
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700324 * used internally to set enable/disable cellular data
325 * arg1 = ENBALED or DISABLED
326 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700327 private static final int EVENT_SET_MOBILE_DATA = 7;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700328
Robert Greenwaltf3331232010-09-24 14:32:21 -0700329 /**
330 * used internally to clear a wakelock when transitioning
331 * from one net to another
332 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700333 private static final int EVENT_CLEAR_NET_TRANSITION_WAKELOCK = 8;
Robert Greenwaltf3331232010-09-24 14:32:21 -0700334
Robert Greenwalt434203a2010-10-11 16:00:27 -0700335 /**
336 * used internally to reload global proxy settings
337 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700338 private static final int EVENT_APPLY_GLOBAL_HTTP_PROXY = 9;
Robert Greenwalt434203a2010-10-11 16:00:27 -0700339
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700340 /**
341 * used internally to set external dependency met/unmet
342 * arg1 = ENABLED (met) or DISABLED (unmet)
343 * arg2 = NetworkType
344 */
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700345 private static final int EVENT_SET_DEPENDENCY_MET = 10;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700346
Chia-chi Yeh44bb2512011-07-14 18:01:57 -0700347 /**
Wink Saville628b0852011-08-04 15:01:58 -0700348 * used internally to send a sticky broadcast delayed.
349 */
Chad Brubakerb98703e2013-07-23 17:44:41 -0700350 private static final int EVENT_SEND_STICKY_BROADCAST_INTENT = 11;
Wink Saville628b0852011-08-04 15:01:58 -0700351
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700352 /**
353 * Used internally to
354 * {@link NetworkStateTracker#setPolicyDataEnable(boolean)}.
355 */
Chad Brubakerb98703e2013-07-23 17:44:41 -0700356 private static final int EVENT_SET_POLICY_DATA_ENABLE = 12;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700357
Chad Brubakerb98703e2013-07-23 17:44:41 -0700358 private static final int EVENT_VPN_STATE_CHANGED = 13;
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700359
Wink Savilleab9321d2013-06-29 21:10:57 -0700360 /**
361 * Used internally to disable fail fast of mobile data
362 */
Chad Brubakerb98703e2013-07-23 17:44:41 -0700363 private static final int EVENT_ENABLE_FAIL_FAST_MOBILE_DATA = 14;
Wink Savilleab9321d2013-06-29 21:10:57 -0700364
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700365 /**
366 * user internally to indicate that data sampling interval is up
367 */
368 private static final int EVENT_SAMPLE_INTERVAL_ELAPSED = 15;
369
Jason Monkdecd2952013-10-10 14:02:51 -0400370 /**
371 * PAC manager has received new port.
372 */
373 private static final int EVENT_PROXY_HAS_CHANGED = 16;
374
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700375 /** Handler used for internal events. */
376 private InternalHandler mHandler;
377 /** Handler used for incoming {@link NetworkStateTracker} events. */
378 private NetworkStateTrackerHandler mTrackerHandler;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700379
380 // list of DeathRecipients used to make sure features are turned off when
381 // a process dies
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -0500382 private List<FeatureUser> mFeatureUsers;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700383
Mike Lockwood0f79b542009-08-14 14:18:49 -0400384 private boolean mSystemReady;
Dianne Hackborn1c633fc2009-12-08 19:45:14 -0800385 private Intent mInitialBroadcast;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400386
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700387 private PowerManager.WakeLock mNetTransitionWakeLock;
388 private String mNetTransitionWakeLockCausedBy = "";
389 private int mNetTransitionWakeLockSerialNumber;
390 private int mNetTransitionWakeLockTimeout;
391
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700392 private InetAddress mDefaultDns;
393
Chad Brubakerf336d722013-07-15 16:34:04 -0700394 // Lock for protecting access to mAddedRoutes and mExemptAddresses
395 private final Object mRoutesLock = new Object();
396
Robert Greenwalt0a46db52011-07-14 14:28:05 -0700397 // this collection is used to refcount the added routes - if there are none left
398 // it's time to remove the route from the route table
Chad Brubakerf336d722013-07-15 16:34:04 -0700399 @GuardedBy("mRoutesLock")
Robert Greenwalt0a46db52011-07-14 14:28:05 -0700400 private Collection<RouteInfo> mAddedRoutes = new ArrayList<RouteInfo>();
401
Chad Brubakerf336d722013-07-15 16:34:04 -0700402 // this collection corresponds to the entries of mAddedRoutes that have routing exemptions
403 // used to handle cleanup of exempt rules
404 @GuardedBy("mRoutesLock")
405 private Collection<LinkAddress> mExemptAddresses = new ArrayList<LinkAddress>();
406
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700407 // used in DBG mode to track inet condition reports
408 private static final int INET_CONDITION_LOG_MAX_SIZE = 15;
409 private ArrayList mInetLog;
410
Robert Greenwalt434203a2010-10-11 16:00:27 -0700411 // track the current default http proxy - tell the world if we get a new one (real change)
Jason Monk207900c2014-04-25 15:00:09 -0400412 private ProxyInfo mDefaultProxy = null;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -0700413 private Object mProxyLock = new Object();
Chia-chi Yeh4c12a472011-10-03 15:34:04 -0700414 private boolean mDefaultProxyDisabled = false;
415
Robert Greenwalt434203a2010-10-11 16:00:27 -0700416 // track the global proxy.
Jason Monk207900c2014-04-25 15:00:09 -0400417 private ProxyInfo mGlobalProxy = null;
Robert Greenwalt434203a2010-10-11 16:00:27 -0700418
Jason Monk602b2322013-07-03 17:04:33 -0400419 private PacManager mPacManager = null;
420
Robert Greenwalt434203a2010-10-11 16:00:27 -0700421 private SettingsObserver mSettingsObserver;
422
Chad Brubakerc0234532014-02-14 13:24:29 -0800423 private AppOpsManager mAppOpsManager;
424
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700425 NetworkConfig[] mNetConfigs;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700426 int mNetworksDefined;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700427
Robert Greenwalt511288a2009-12-07 11:33:18 -0800428 private static class RadioAttributes {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700429 public int mSimultaneity;
430 public int mType;
431 public RadioAttributes(String init) {
432 String fragments[] = init.split(",");
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700433 mType = Integer.parseInt(fragments[0]);
434 mSimultaneity = Integer.parseInt(fragments[1]);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700435 }
436 }
437 RadioAttributes[] mRadioAttributes;
438
Robert Greenwalt50393202011-06-21 17:26:14 -0700439 // the set of network types that can only be enabled by system/sig apps
440 List mProtectedNetworks;
441
John Spurlockbf991a82013-06-24 14:20:23 -0400442 private DataConnectionStats mDataConnectionStats;
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700443
Wink Savilleab9321d2013-06-29 21:10:57 -0700444 private AtomicInteger mEnableFailFastMobileDataTag = new AtomicInteger(0);
445
446 TelephonyManager mTelephonyManager;
John Spurlockbf991a82013-06-24 14:20:23 -0400447
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700448 private final static int MIN_NET_ID = 10; // some reserved marks
449 private final static int MAX_NET_ID = 65535;
450 private int mNextNetId = MIN_NET_ID;
451
Jeff Sharkey367d15a2011-09-22 14:59:51 -0700452 public ConnectivityService(Context context, INetworkManagementService netd,
453 INetworkStatsService statsService, INetworkPolicyManager policyManager) {
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700454 // Currently, omitting a NetworkFactory will create one internally
455 // TODO: create here when we have cleaner WiMAX support
456 this(context, netd, statsService, policyManager, null);
457 }
458
Jeff Sharkey899223b2012-08-04 15:24:58 -0700459 public ConnectivityService(Context context, INetworkManagementService netManager,
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700460 INetworkStatsService statsService, INetworkPolicyManager policyManager,
461 NetworkFactory netFactory) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800462 if (DBG) log("ConnectivityService starting up");
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800463
Wink Savillebb08caf2010-09-02 19:23:52 -0700464 HandlerThread handlerThread = new HandlerThread("ConnectivityServiceThread");
465 handlerThread.start();
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700466 mHandler = new InternalHandler(handlerThread.getLooper());
467 mTrackerHandler = new NetworkStateTrackerHandler(handlerThread.getLooper());
Wink Savillebb08caf2010-09-02 19:23:52 -0700468
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700469 if (netFactory == null) {
470 netFactory = new DefaultNetworkFactory(context, mTrackerHandler);
471 }
472
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800473 // setup our unique device name
Robert Greenwalt733c6292010-12-06 09:30:17 -0800474 if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
475 String id = Settings.Secure.getString(context.getContentResolver(),
476 Settings.Secure.ANDROID_ID);
477 if (id != null && id.length() > 0) {
Irfan Sheriffa10a3ad2011-09-20 15:17:07 -0700478 String name = new String("android-").concat(id);
Robert Greenwalt733c6292010-12-06 09:30:17 -0800479 SystemProperties.set("net.hostname", name);
480 }
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800481 }
482
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700483 // read our default dns server ip
Jeff Sharkey625239a2012-09-26 22:03:49 -0700484 String dns = Settings.Global.getString(context.getContentResolver(),
485 Settings.Global.DEFAULT_DNS_SERVER);
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700486 if (dns == null || dns.length() == 0) {
487 dns = context.getResources().getString(
488 com.android.internal.R.string.config_default_dns_server);
489 }
490 try {
Robert Greenwalte5903732011-02-22 16:00:42 -0800491 mDefaultDns = NetworkUtils.numericToInetAddress(dns);
492 } catch (IllegalArgumentException e) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800493 loge("Error setting defaultDns using " + dns);
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700494 }
495
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700496 mContext = checkNotNull(context, "missing Context");
Jeff Sharkey899223b2012-08-04 15:24:58 -0700497 mNetd = checkNotNull(netManager, "missing INetworkManagementService");
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700498 mPolicyManager = checkNotNull(policyManager, "missing INetworkPolicyManager");
Jeff Sharkey82f85212012-08-24 11:17:25 -0700499 mKeyStore = KeyStore.getInstance();
Wink Savilleab9321d2013-06-29 21:10:57 -0700500 mTelephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700501
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700502 try {
503 mPolicyManager.registerListener(mPolicyListener);
504 } catch (RemoteException e) {
505 // ouch, no rules updates means some processes may never get network
Robert Greenwalt58d4c592011-08-02 17:18:41 -0700506 loge("unable to register INetworkPolicyListener" + e.toString());
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700507 }
508
509 final PowerManager powerManager = (PowerManager) context.getSystemService(
510 Context.POWER_SERVICE);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700511 mNetTransitionWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
512 mNetTransitionWakeLockTimeout = mContext.getResources().getInteger(
513 com.android.internal.R.integer.config_networkTransitionTimeout);
514
Robert Greenwalt42acef32009-08-12 16:08:25 -0700515 mNetTrackers = new NetworkStateTracker[
516 ConnectivityManager.MAX_NETWORK_TYPE+1];
Wink Savillee8222252011-07-13 13:44:13 -0700517 mCurrentLinkProperties = new LinkProperties[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700518
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700519 mRadioAttributes = new RadioAttributes[ConnectivityManager.MAX_RADIO_TYPE+1];
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700520 mNetConfigs = new NetworkConfig[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700521
Robert Greenwalt42acef32009-08-12 16:08:25 -0700522 // Load device network attributes from resources
Robert Greenwalt42acef32009-08-12 16:08:25 -0700523 String[] raStrings = context.getResources().getStringArray(
524 com.android.internal.R.array.radioAttributes);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700525 for (String raString : raStrings) {
526 RadioAttributes r = new RadioAttributes(raString);
Wink Saville5e56bc52013-07-29 15:00:57 -0700527 if (VDBG) log("raString=" + raString + " r=" + r);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700528 if (r.mType > ConnectivityManager.MAX_RADIO_TYPE) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800529 loge("Error in radioAttributes - ignoring attempt to define type " + r.mType);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700530 continue;
531 }
532 if (mRadioAttributes[r.mType] != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800533 loge("Error in radioAttributes - ignoring attempt to redefine type " +
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700534 r.mType);
535 continue;
536 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700537 mRadioAttributes[r.mType] = r;
538 }
539
Wink Saville51f456f2013-04-23 14:26:51 -0700540 // TODO: What is the "correct" way to do determine if this is a wifi only device?
541 boolean wifiOnly = SystemProperties.getBoolean("ro.radio.noril", false);
542 log("wifiOnly=" + wifiOnly);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700543 String[] naStrings = context.getResources().getStringArray(
544 com.android.internal.R.array.networkAttributes);
545 for (String naString : naStrings) {
546 try {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700547 NetworkConfig n = new NetworkConfig(naString);
Wink Saville5e56bc52013-07-29 15:00:57 -0700548 if (VDBG) log("naString=" + naString + " config=" + n);
Wink Saville975c8482011-04-07 14:23:45 -0700549 if (n.type > ConnectivityManager.MAX_NETWORK_TYPE) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800550 loge("Error in networkAttributes - ignoring attempt to define type " +
Wink Saville975c8482011-04-07 14:23:45 -0700551 n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700552 continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700553 }
Wink Saville51f456f2013-04-23 14:26:51 -0700554 if (wifiOnly && ConnectivityManager.isNetworkTypeMobile(n.type)) {
555 log("networkAttributes - ignoring mobile as this dev is wifiOnly " +
556 n.type);
557 continue;
558 }
Wink Saville975c8482011-04-07 14:23:45 -0700559 if (mNetConfigs[n.type] != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800560 loge("Error in networkAttributes - ignoring attempt to redefine type " +
Wink Saville975c8482011-04-07 14:23:45 -0700561 n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700562 continue;
563 }
Wink Saville975c8482011-04-07 14:23:45 -0700564 if (mRadioAttributes[n.radio] == null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800565 loge("Error in networkAttributes - ignoring attempt to use undefined " +
Wink Saville975c8482011-04-07 14:23:45 -0700566 "radio " + n.radio + " in network type " + n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700567 continue;
568 }
Wink Saville975c8482011-04-07 14:23:45 -0700569 mNetConfigs[n.type] = n;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700570 mNetworksDefined++;
571 } catch(Exception e) {
572 // ignore it - leave the entry null
Robert Greenwalt42acef32009-08-12 16:08:25 -0700573 }
574 }
Wink Saville5e56bc52013-07-29 15:00:57 -0700575 if (VDBG) log("mNetworksDefined=" + mNetworksDefined);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700576
Robert Greenwalt50393202011-06-21 17:26:14 -0700577 mProtectedNetworks = new ArrayList<Integer>();
578 int[] protectedNetworks = context.getResources().getIntArray(
579 com.android.internal.R.array.config_protectedNetworks);
580 for (int p : protectedNetworks) {
581 if ((mNetConfigs[p] != null) && (mProtectedNetworks.contains(p) == false)) {
582 mProtectedNetworks.add(p);
583 } else {
584 if (DBG) loge("Ignoring protectedNetwork " + p);
585 }
586 }
587
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700588 // high priority first
589 mPriorityList = new int[mNetworksDefined];
590 {
591 int insertionPoint = mNetworksDefined-1;
592 int currentLowest = 0;
593 int nextLowest = 0;
594 while (insertionPoint > -1) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700595 for (NetworkConfig na : mNetConfigs) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700596 if (na == null) continue;
Wink Saville975c8482011-04-07 14:23:45 -0700597 if (na.priority < currentLowest) continue;
598 if (na.priority > currentLowest) {
599 if (na.priority < nextLowest || nextLowest == 0) {
600 nextLowest = na.priority;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700601 }
602 continue;
603 }
Wink Saville975c8482011-04-07 14:23:45 -0700604 mPriorityList[insertionPoint--] = na.type;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700605 }
606 currentLowest = nextLowest;
607 nextLowest = 0;
608 }
609 }
610
Jianzheng Zhoudcf03f32012-11-16 13:45:20 +0800611 // Update mNetworkPreference according to user mannually first then overlay config.xml
612 mNetworkPreference = getPersistedNetworkPreference();
613 if (mNetworkPreference == -1) {
614 for (int n : mPriorityList) {
615 if (mNetConfigs[n].isDefault() && ConnectivityManager.isNetworkTypeValid(n)) {
616 mNetworkPreference = n;
617 break;
618 }
619 }
620 if (mNetworkPreference == -1) {
621 throw new IllegalStateException(
622 "You should set at least one default Network in config.xml!");
623 }
624 }
625
Mattias Falk8b47b362011-08-23 14:15:13 +0200626 mNetRequestersPids =
627 (List<Integer> [])new ArrayList[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700628 for (int i : mPriorityList) {
Mattias Falk8b47b362011-08-23 14:15:13 +0200629 mNetRequestersPids[i] = new ArrayList<Integer>();
Robert Greenwalt42acef32009-08-12 16:08:25 -0700630 }
631
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -0500632 mFeatureUsers = new ArrayList<FeatureUser>();
Robert Greenwalt42acef32009-08-12 16:08:25 -0700633
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700634 mTestMode = SystemProperties.get("cm.test.mode").equals("true")
635 && SystemProperties.get("ro.build.type").equals("eng");
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700636
637 // Create and start trackers for hard-coded networks
638 for (int targetNetworkType : mPriorityList) {
639 final NetworkConfig config = mNetConfigs[targetNetworkType];
640 final NetworkStateTracker tracker;
641 try {
642 tracker = netFactory.createTracker(targetNetworkType, config);
643 mNetTrackers[targetNetworkType] = tracker;
644 } catch (IllegalArgumentException e) {
645 Slog.e(TAG, "Problem creating " + getNetworkTypeName(targetNetworkType)
646 + " tracker: " + e);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700647 continue;
648 }
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700649
650 tracker.startMonitoring(context, mTrackerHandler);
651 if (config.isDefault()) {
652 tracker.reconnect();
Robert Greenwalt6537b022011-11-10 16:55:20 -0800653 }
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700654 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800655
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700656 mTethering = new Tethering(mContext, mNetd, statsService, this, mHandler.getLooper());
Robert Greenwaltc9d5fb72010-02-25 12:29:30 -0800657
Robert Greenwaltbfc76342013-07-19 14:30:49 -0700658 //set up the listener for user state for creating user VPNs
Chad Brubaker4ca19e82013-06-14 11:16:51 -0700659 IntentFilter intentFilter = new IntentFilter();
660 intentFilter.addAction(Intent.ACTION_USER_STARTING);
661 intentFilter.addAction(Intent.ACTION_USER_STOPPING);
662 mContext.registerReceiverAsUser(
663 mUserIntentReceiver, UserHandle.ALL, intentFilter, null, null);
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900664 mClat = new Nat464Xlat(mContext, mNetd, this, mTrackerHandler);
665
Chia-chi Yeh008ff392011-05-23 15:08:29 -0700666 try {
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700667 mNetd.registerObserver(mTethering);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700668 mNetd.registerObserver(mDataActivityObserver);
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +0900669 mNetd.registerObserver(mClat);
Chia-chi Yeh008ff392011-05-23 15:08:29 -0700670 } catch (RemoteException e) {
671 loge("Error registering observer :" + e);
672 }
673
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700674 if (DBG) {
675 mInetLog = new ArrayList();
676 }
Robert Greenwalt434203a2010-10-11 16:00:27 -0700677
678 mSettingsObserver = new SettingsObserver(mHandler, EVENT_APPLY_GLOBAL_HTTP_PROXY);
679 mSettingsObserver.observe(mContext);
Robert Greenwaltb7090d62010-12-02 11:31:00 -0800680
John Spurlockbf991a82013-06-24 14:20:23 -0400681 mDataConnectionStats = new DataConnectionStats(mContext);
682 mDataConnectionStats.startMonitoring();
Jason Monk602b2322013-07-03 17:04:33 -0400683
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700684 // start network sampling ..
685 Intent intent = new Intent(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED, null);
686 mSampleIntervalElapsedIntent = PendingIntent.getBroadcast(mContext,
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -0700687 SAMPLE_INTERVAL_ELAPSED_REQUEST_CODE, intent, 0);
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -0700688
689 mAlarmManager = (AlarmManager)mContext.getSystemService(Context.ALARM_SERVICE);
690 setAlarm(DEFAULT_START_SAMPLING_INTERVAL_IN_SECONDS * 1000, mSampleIntervalElapsedIntent);
691
692 IntentFilter filter = new IntentFilter();
693 filter.addAction(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED);
694 mContext.registerReceiver(
695 new BroadcastReceiver() {
696 @Override
697 public void onReceive(Context context, Intent intent) {
698 String action = intent.getAction();
699 if (action.equals(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED)) {
700 mHandler.sendMessage(mHandler.obtainMessage
701 (EVENT_SAMPLE_INTERVAL_ELAPSED));
702 }
703 }
704 },
705 new IntentFilter(filter));
706
Jason Monkdecd2952013-10-10 14:02:51 -0400707 mPacManager = new PacManager(mContext, mHandler, EVENT_PROXY_HAS_CHANGED);
Wink Saville7788c612013-08-29 14:57:08 -0700708
709 filter = new IntentFilter();
Wink Saville948282b2013-08-29 08:55:16 -0700710 filter.addAction(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
711 mContext.registerReceiver(mProvisioningReceiver, filter);
Chad Brubakerc0234532014-02-14 13:24:29 -0800712
713 mAppOpsManager = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714 }
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700715
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700716 private synchronized int nextNetId() {
717 int netId = mNextNetId;
718 if (++mNextNetId > MAX_NET_ID) mNextNetId = MIN_NET_ID;
719 return netId;
720 }
721
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700722 /**
723 * Factory that creates {@link NetworkStateTracker} instances using given
724 * {@link NetworkConfig}.
725 */
726 public interface NetworkFactory {
727 public NetworkStateTracker createTracker(int targetNetworkType, NetworkConfig config);
728 }
729
730 private static class DefaultNetworkFactory implements NetworkFactory {
731 private final Context mContext;
732 private final Handler mTrackerHandler;
733
734 public DefaultNetworkFactory(Context context, Handler trackerHandler) {
735 mContext = context;
736 mTrackerHandler = trackerHandler;
737 }
738
739 @Override
740 public NetworkStateTracker createTracker(int targetNetworkType, NetworkConfig config) {
741 switch (config.radio) {
742 case TYPE_WIFI:
743 return new WifiStateTracker(targetNetworkType, config.name);
744 case TYPE_MOBILE:
745 return new MobileDataStateTracker(targetNetworkType, config.name);
746 case TYPE_DUMMY:
747 return new DummyDataStateTracker(targetNetworkType, config.name);
748 case TYPE_BLUETOOTH:
749 return BluetoothTetheringDataTracker.getInstance();
750 case TYPE_WIMAX:
751 return makeWimaxStateTracker(mContext, mTrackerHandler);
752 case TYPE_ETHERNET:
753 return EthernetDataTracker.getInstance();
Hui Lu1c5624a2014-01-15 11:05:36 -0500754 case TYPE_PROXY:
755 return new ProxyDataTracker();
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700756 default:
757 throw new IllegalArgumentException(
758 "Trying to create a NetworkStateTracker for an unknown radio type: "
759 + config.radio);
760 }
761 }
762 }
763
764 /**
765 * Loads external WiMAX library and registers as system service, returning a
766 * {@link NetworkStateTracker} for WiMAX. Caller is still responsible for
767 * invoking {@link NetworkStateTracker#startMonitoring(Context, Handler)}.
768 */
769 private static NetworkStateTracker makeWimaxStateTracker(
770 Context context, Handler trackerHandler) {
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700771 // Initialize Wimax
tk.mun148c7d02011-10-13 22:51:57 +0900772 DexClassLoader wimaxClassLoader;
773 Class wimaxStateTrackerClass = null;
774 Class wimaxServiceClass = null;
775 Class wimaxManagerClass;
776 String wimaxJarLocation;
777 String wimaxLibLocation;
778 String wimaxManagerClassName;
779 String wimaxServiceClassName;
780 String wimaxStateTrackerClassName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800781
tk.mun148c7d02011-10-13 22:51:57 +0900782 NetworkStateTracker wimaxStateTracker = null;
783
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700784 boolean isWimaxEnabled = context.getResources().getBoolean(
tk.mun148c7d02011-10-13 22:51:57 +0900785 com.android.internal.R.bool.config_wimaxEnabled);
786
787 if (isWimaxEnabled) {
788 try {
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700789 wimaxJarLocation = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900790 com.android.internal.R.string.config_wimaxServiceJarLocation);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700791 wimaxLibLocation = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900792 com.android.internal.R.string.config_wimaxNativeLibLocation);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700793 wimaxManagerClassName = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900794 com.android.internal.R.string.config_wimaxManagerClassname);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700795 wimaxServiceClassName = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900796 com.android.internal.R.string.config_wimaxServiceClassname);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700797 wimaxStateTrackerClassName = context.getResources().getString(
tk.mun148c7d02011-10-13 22:51:57 +0900798 com.android.internal.R.string.config_wimaxStateTrackerClassname);
799
Dianne Hackborn7ff30112012-11-08 11:12:09 -0800800 if (DBG) log("wimaxJarLocation: " + wimaxJarLocation);
tk.mun148c7d02011-10-13 22:51:57 +0900801 wimaxClassLoader = new DexClassLoader(wimaxJarLocation,
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700802 new ContextWrapper(context).getCacheDir().getAbsolutePath(),
tk.mun148c7d02011-10-13 22:51:57 +0900803 wimaxLibLocation, ClassLoader.getSystemClassLoader());
804
805 try {
806 wimaxManagerClass = wimaxClassLoader.loadClass(wimaxManagerClassName);
807 wimaxStateTrackerClass = wimaxClassLoader.loadClass(wimaxStateTrackerClassName);
808 wimaxServiceClass = wimaxClassLoader.loadClass(wimaxServiceClassName);
809 } catch (ClassNotFoundException ex) {
810 loge("Exception finding Wimax classes: " + ex.toString());
811 return null;
812 }
813 } catch(Resources.NotFoundException ex) {
814 loge("Wimax Resources does not exist!!! ");
815 return null;
816 }
817
818 try {
Dianne Hackborn7ff30112012-11-08 11:12:09 -0800819 if (DBG) log("Starting Wimax Service... ");
tk.mun148c7d02011-10-13 22:51:57 +0900820
821 Constructor wmxStTrkrConst = wimaxStateTrackerClass.getConstructor
822 (new Class[] {Context.class, Handler.class});
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700823 wimaxStateTracker = (NetworkStateTracker) wmxStTrkrConst.newInstance(
824 context, trackerHandler);
tk.mun148c7d02011-10-13 22:51:57 +0900825
826 Constructor wmxSrvConst = wimaxServiceClass.getDeclaredConstructor
827 (new Class[] {Context.class, wimaxStateTrackerClass});
828 wmxSrvConst.setAccessible(true);
Jeff Sharkeyfb878b62012-07-26 18:32:30 -0700829 IBinder svcInvoker = (IBinder)wmxSrvConst.newInstance(context, wimaxStateTracker);
tk.mun148c7d02011-10-13 22:51:57 +0900830 wmxSrvConst.setAccessible(false);
831
832 ServiceManager.addService(WimaxManagerConstants.WIMAX_SERVICE, svcInvoker);
833
834 } catch(Exception ex) {
835 loge("Exception creating Wimax classes: " + ex.toString());
836 return null;
837 }
838 } else {
839 loge("Wimax is not enabled or not added to the network attributes!!! ");
840 return null;
841 }
842
843 return wimaxStateTracker;
844 }
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700845
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800846 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700847 * Sets the preferred network.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800848 * @param preference the new preference
849 */
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700850 public void setNetworkPreference(int preference) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800851 enforceChangePermission();
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700852
Jeff Sharkey4c628eb2012-07-23 13:19:46 -0700853 mHandler.sendMessage(
854 mHandler.obtainMessage(EVENT_SET_NETWORK_PREFERENCE, preference, 0));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800855 }
856
857 public int getNetworkPreference() {
858 enforceAccessPermission();
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700859 int preference;
860 synchronized(this) {
861 preference = mNetworkPreference;
862 }
863 return preference;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800864 }
865
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700866 private void handleSetNetworkPreference(int preference) {
867 if (ConnectivityManager.isNetworkTypeValid(preference) &&
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700868 mNetConfigs[preference] != null &&
869 mNetConfigs[preference].isDefault()) {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700870 if (mNetworkPreference != preference) {
871 final ContentResolver cr = mContext.getContentResolver();
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700872 Settings.Global.putInt(cr, Settings.Global.NETWORK_PREFERENCE, preference);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700873 synchronized(this) {
874 mNetworkPreference = preference;
875 }
876 enforcePreference();
877 }
878 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800879 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700880
Wink Saville628b0852011-08-04 15:01:58 -0700881 private int getConnectivityChangeDelay() {
882 final ContentResolver cr = mContext.getContentResolver();
883
884 /** Check system properties for the default value then use secure settings value, if any. */
885 int defaultDelay = SystemProperties.getInt(
Jeff Sharkey625239a2012-09-26 22:03:49 -0700886 "conn." + Settings.Global.CONNECTIVITY_CHANGE_DELAY,
887 ConnectivityManager.CONNECTIVITY_CHANGE_DELAY_DEFAULT);
888 return Settings.Global.getInt(cr, Settings.Global.CONNECTIVITY_CHANGE_DELAY,
Wink Saville628b0852011-08-04 15:01:58 -0700889 defaultDelay);
890 }
891
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 private int getPersistedNetworkPreference() {
893 final ContentResolver cr = mContext.getContentResolver();
894
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700895 final int networkPrefSetting = Settings.Global
896 .getInt(cr, Settings.Global.NETWORK_PREFERENCE, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897
Jianzheng Zhoudcf03f32012-11-16 13:45:20 +0800898 return networkPrefSetting;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800899 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700900
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700902 * Make the state of network connectivity conform to the preference settings
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903 * In this method, we only tear down a non-preferred network. Establishing
904 * a connection to the preferred network is taken care of when we handle
905 * the disconnect event from the non-preferred network
906 * (see {@link #handleDisconnect(NetworkInfo)}).
907 */
908 private void enforcePreference() {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700909 if (mNetTrackers[mNetworkPreference].getNetworkInfo().isConnected())
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800910 return;
911
Robert Greenwalt42acef32009-08-12 16:08:25 -0700912 if (!mNetTrackers[mNetworkPreference].isAvailable())
913 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914
Robert Greenwalt42acef32009-08-12 16:08:25 -0700915 for (int t=0; t <= ConnectivityManager.MAX_RADIO_TYPE; t++) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700916 if (t != mNetworkPreference && mNetTrackers[t] != null &&
Robert Greenwalt42acef32009-08-12 16:08:25 -0700917 mNetTrackers[t].getNetworkInfo().isConnected()) {
Robert Greenwaltec9fe462009-08-20 15:25:14 -0700918 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800919 log("tearing down " + mNetTrackers[t].getNetworkInfo() +
Robert Greenwaltec9fe462009-08-20 15:25:14 -0700920 " in enforcePreference");
921 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700922 teardown(mNetTrackers[t]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 }
924 }
925 }
926
927 private boolean teardown(NetworkStateTracker netTracker) {
928 if (netTracker.teardown()) {
929 netTracker.setTeardownRequested(true);
930 return true;
931 } else {
932 return false;
933 }
934 }
935
936 /**
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700937 * Check if UID should be blocked from using the network represented by the
938 * given {@link NetworkStateTracker}.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700939 */
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700940 private boolean isNetworkBlocked(NetworkStateTracker tracker, int uid) {
941 final String iface = tracker.getLinkProperties().getInterfaceName();
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700942
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700943 final boolean networkCostly;
944 final int uidRules;
945 synchronized (mRulesLock) {
946 networkCostly = mMeteredIfaces.contains(iface);
947 uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700948 }
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700949
950 if (networkCostly && (uidRules & RULE_REJECT_METERED) != 0) {
951 return true;
952 }
953
954 // no restrictive rules; network is visible
955 return false;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700956 }
957
958 /**
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700959 * Return a filtered {@link NetworkInfo}, potentially marked
960 * {@link DetailedState#BLOCKED} based on
961 * {@link #isNetworkBlocked(NetworkStateTracker, int)}.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700962 */
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700963 private NetworkInfo getFilteredNetworkInfo(NetworkStateTracker tracker, int uid) {
964 NetworkInfo info = tracker.getNetworkInfo();
965 if (isNetworkBlocked(tracker, uid)) {
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700966 // network is blocked; clone and override state
967 info = new NetworkInfo(info);
968 info.setDetailedState(DetailedState.BLOCKED, null, null);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700969 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -0700970 if (mLockdownTracker != null) {
971 info = mLockdownTracker.augmentNetworkInfo(info);
972 }
Jeff Sharkeyd2a45872011-05-28 20:56:34 -0700973 return info;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700974 }
975
976 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977 * Return NetworkInfo for the active (i.e., connected) network interface.
978 * It is assumed that at most one network is active at a time. If more
979 * than one is active, it is indeterminate which will be returned.
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700980 * @return the info for the active network, or {@code null} if none is
981 * active
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800982 */
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700983 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800984 public NetworkInfo getActiveNetworkInfo() {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700985 enforceAccessPermission();
986 final int uid = Binder.getCallingUid();
987 return getNetworkInfo(mActiveDefaultNetwork, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988 }
989
Wink Saville948282b2013-08-29 08:55:16 -0700990 /**
991 * Find the first Provisioning network.
992 *
993 * @return NetworkInfo or null if none.
994 */
995 private NetworkInfo getProvisioningNetworkInfo() {
996 enforceAccessPermission();
997
998 // Find the first Provisioning Network
999 NetworkInfo provNi = null;
1000 for (NetworkInfo ni : getAllNetworkInfo()) {
Wink Saville67c38212013-09-05 12:02:25 -07001001 if (ni.isConnectedToProvisioningNetwork()) {
Wink Saville948282b2013-08-29 08:55:16 -07001002 provNi = ni;
1003 break;
1004 }
1005 }
1006 if (DBG) log("getProvisioningNetworkInfo: X provNi=" + provNi);
1007 return provNi;
1008 }
1009
1010 /**
1011 * Find the first Provisioning network or the ActiveDefaultNetwork
1012 * if there is no Provisioning network
1013 *
1014 * @return NetworkInfo or null if none.
1015 */
1016 @Override
1017 public NetworkInfo getProvisioningOrActiveNetworkInfo() {
1018 enforceAccessPermission();
1019
1020 NetworkInfo provNi = getProvisioningNetworkInfo();
1021 if (provNi == null) {
1022 final int uid = Binder.getCallingUid();
1023 provNi = getNetworkInfo(mActiveDefaultNetwork, uid);
1024 }
1025 if (DBG) log("getProvisioningOrActiveNetworkInfo: X provNi=" + provNi);
1026 return provNi;
1027 }
1028
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001029 public NetworkInfo getActiveNetworkInfoUnfiltered() {
1030 enforceAccessPermission();
1031 if (isNetworkTypeValid(mActiveDefaultNetwork)) {
1032 final NetworkStateTracker tracker = mNetTrackers[mActiveDefaultNetwork];
1033 if (tracker != null) {
1034 return tracker.getNetworkInfo();
1035 }
1036 }
1037 return null;
1038 }
1039
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001040 @Override
1041 public NetworkInfo getActiveNetworkInfoForUid(int uid) {
1042 enforceConnectivityInternalPermission();
1043 return getNetworkInfo(mActiveDefaultNetwork, uid);
1044 }
1045
1046 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 public NetworkInfo getNetworkInfo(int networkType) {
1048 enforceAccessPermission();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001049 final int uid = Binder.getCallingUid();
1050 return getNetworkInfo(networkType, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 }
1052
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001053 private NetworkInfo getNetworkInfo(int networkType, int uid) {
1054 NetworkInfo info = null;
1055 if (isNetworkTypeValid(networkType)) {
1056 final NetworkStateTracker tracker = mNetTrackers[networkType];
1057 if (tracker != null) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001058 info = getFilteredNetworkInfo(tracker, uid);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001059 }
1060 }
1061 return info;
1062 }
1063
1064 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001065 public NetworkInfo[] getAllNetworkInfo() {
1066 enforceAccessPermission();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001067 final int uid = Binder.getCallingUid();
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001068 final ArrayList<NetworkInfo> result = Lists.newArrayList();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001069 synchronized (mRulesLock) {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001070 for (NetworkStateTracker tracker : mNetTrackers) {
1071 if (tracker != null) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001072 result.add(getFilteredNetworkInfo(tracker, uid));
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001073 }
1074 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001075 }
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001076 return result.toArray(new NetworkInfo[result.size()]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 }
1078
Robert Greenwalt9b2886e2011-08-31 11:46:42 -07001079 @Override
1080 public boolean isNetworkSupported(int networkType) {
1081 enforceAccessPermission();
1082 return (isNetworkTypeValid(networkType) && (mNetTrackers[networkType] != null));
1083 }
1084
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001085 /**
1086 * Return LinkProperties for the active (i.e., connected) default
1087 * network interface. It is assumed that at most one default network
1088 * is active at a time. If more than one is active, it is indeterminate
1089 * which will be returned.
1090 * @return the ip properties for the active network, or {@code null} if
1091 * none is active
1092 */
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001093 @Override
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001094 public LinkProperties getActiveLinkProperties() {
Robert Greenwalt59911582011-05-20 12:23:41 -07001095 return getLinkProperties(mActiveDefaultNetwork);
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001096 }
1097
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001098 @Override
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001099 public LinkProperties getLinkProperties(int networkType) {
1100 enforceAccessPermission();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001101 if (isNetworkTypeValid(networkType)) {
1102 final NetworkStateTracker tracker = mNetTrackers[networkType];
1103 if (tracker != null) {
1104 return tracker.getLinkProperties();
1105 }
Robert Greenwaltd192dad2010-09-14 09:18:02 -07001106 }
1107 return null;
1108 }
1109
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001110 @Override
1111 public NetworkState[] getAllNetworkState() {
1112 enforceAccessPermission();
1113 final int uid = Binder.getCallingUid();
1114 final ArrayList<NetworkState> result = Lists.newArrayList();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001115 synchronized (mRulesLock) {
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001116 for (NetworkStateTracker tracker : mNetTrackers) {
1117 if (tracker != null) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001118 final NetworkInfo info = getFilteredNetworkInfo(tracker, uid);
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001119 result.add(new NetworkState(
Robert Greenwaltf9cb86a2014-04-08 17:34:00 -07001120 info, tracker.getLinkProperties(), tracker.getNetworkCapabilities()));
Jeff Sharkeyd2a45872011-05-28 20:56:34 -07001121 }
1122 }
1123 }
1124 return result.toArray(new NetworkState[result.size()]);
1125 }
1126
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001127 private NetworkState getNetworkStateUnchecked(int networkType) {
1128 if (isNetworkTypeValid(networkType)) {
1129 final NetworkStateTracker tracker = mNetTrackers[networkType];
1130 if (tracker != null) {
1131 return new NetworkState(tracker.getNetworkInfo(), tracker.getLinkProperties(),
Robert Greenwaltf9cb86a2014-04-08 17:34:00 -07001132 tracker.getNetworkCapabilities());
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001133 }
1134 }
1135 return null;
1136 }
1137
1138 @Override
1139 public NetworkQuotaInfo getActiveNetworkQuotaInfo() {
1140 enforceAccessPermission();
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001141
1142 final long token = Binder.clearCallingIdentity();
1143 try {
1144 final NetworkState state = getNetworkStateUnchecked(mActiveDefaultNetwork);
1145 if (state != null) {
1146 try {
1147 return mPolicyManager.getNetworkQuotaInfo(state);
1148 } catch (RemoteException e) {
1149 }
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001150 }
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001151 return null;
1152 } finally {
1153 Binder.restoreCallingIdentity(token);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001154 }
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001155 }
1156
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001157 @Override
1158 public boolean isActiveNetworkMetered() {
1159 enforceAccessPermission();
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001160 final long token = Binder.clearCallingIdentity();
1161 try {
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001162 return isNetworkMeteredUnchecked(mActiveDefaultNetwork);
Jeff Sharkey15ec7d62012-04-17 12:23:40 -07001163 } finally {
1164 Binder.restoreCallingIdentity(token);
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001165 }
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001166 }
1167
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001168 private boolean isNetworkMeteredUnchecked(int networkType) {
1169 final NetworkState state = getNetworkStateUnchecked(networkType);
1170 if (state != null) {
1171 try {
1172 return mPolicyManager.isNetworkMetered(state);
1173 } catch (RemoteException e) {
1174 }
1175 }
1176 return false;
1177 }
1178
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001179 public boolean setRadios(boolean turnOn) {
1180 boolean result = true;
1181 enforceChangePermission();
1182 for (NetworkStateTracker t : mNetTrackers) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001183 if (t != null) result = t.setRadio(turnOn) && result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001184 }
1185 return result;
1186 }
1187
1188 public boolean setRadio(int netType, boolean turnOn) {
1189 enforceChangePermission();
1190 if (!ConnectivityManager.isNetworkTypeValid(netType)) {
1191 return false;
1192 }
1193 NetworkStateTracker tracker = mNetTrackers[netType];
1194 return tracker != null && tracker.setRadio(turnOn);
1195 }
1196
Jeff Sharkey216c1812012-08-05 14:29:23 -07001197 private INetworkManagementEventObserver mDataActivityObserver = new BaseNetworkObserver() {
1198 @Override
Ashish Sharma0535a9f2014-03-12 18:42:23 -07001199 public void interfaceClassDataActivityChanged(String label, boolean active, long tsNanos) {
Haoyu Baidb3c8672012-06-20 14:29:57 -07001200 int deviceType = Integer.parseInt(label);
Ashish Sharma0535a9f2014-03-12 18:42:23 -07001201 sendDataActivityBroadcast(deviceType, active, tsNanos);
Haoyu Baidb3c8672012-06-20 14:29:57 -07001202 }
Jeff Sharkey216c1812012-08-05 14:29:23 -07001203 };
Haoyu Baidb3c8672012-06-20 14:29:57 -07001204
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001205 /**
1206 * Used to notice when the calling process dies so we can self-expire
1207 *
1208 * Also used to know if the process has cleaned up after itself when
1209 * our auto-expire timer goes off. The timer has a link to an object.
1210 *
1211 */
Robert Greenwalt42acef32009-08-12 16:08:25 -07001212 private class FeatureUser implements IBinder.DeathRecipient {
1213 int mNetworkType;
1214 String mFeature;
1215 IBinder mBinder;
1216 int mPid;
1217 int mUid;
Robert Greenwaltb9285352009-12-21 18:24:07 -08001218 long mCreateTime;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001219
1220 FeatureUser(int type, String feature, IBinder binder) {
1221 super();
1222 mNetworkType = type;
1223 mFeature = feature;
1224 mBinder = binder;
1225 mPid = getCallingPid();
1226 mUid = getCallingUid();
Robert Greenwaltb9285352009-12-21 18:24:07 -08001227 mCreateTime = System.currentTimeMillis();
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001228
Robert Greenwalt42acef32009-08-12 16:08:25 -07001229 try {
1230 mBinder.linkToDeath(this, 0);
1231 } catch (RemoteException e) {
1232 binderDied();
1233 }
1234 }
1235
1236 void unlinkDeathRecipient() {
1237 mBinder.unlinkToDeath(this, 0);
1238 }
1239
1240 public void binderDied() {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001241 log("ConnectivityService FeatureUser binderDied(" +
Robert Greenwaltb9285352009-12-21 18:24:07 -08001242 mNetworkType + ", " + mFeature + ", " + mBinder + "), created " +
1243 (System.currentTimeMillis() - mCreateTime) + " mSec ago");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001244 stopUsingNetworkFeature(this, false);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001245 }
1246
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001247 public void expire() {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001248 if (VDBG) {
1249 log("ConnectivityService FeatureUser expire(" +
1250 mNetworkType + ", " + mFeature + ", " + mBinder +"), created " +
1251 (System.currentTimeMillis() - mCreateTime) + " mSec ago");
1252 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001253 stopUsingNetworkFeature(this, false);
1254 }
Robert Greenwaltb9285352009-12-21 18:24:07 -08001255
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001256 public boolean isSameUser(FeatureUser u) {
1257 if (u == null) return false;
1258
1259 return isSameUser(u.mPid, u.mUid, u.mNetworkType, u.mFeature);
1260 }
1261
1262 public boolean isSameUser(int pid, int uid, int networkType, String feature) {
1263 if ((mPid == pid) && (mUid == uid) && (mNetworkType == networkType) &&
1264 TextUtils.equals(mFeature, feature)) {
1265 return true;
1266 }
1267 return false;
1268 }
1269
Robert Greenwaltb9285352009-12-21 18:24:07 -08001270 public String toString() {
1271 return "FeatureUser("+mNetworkType+","+mFeature+","+mPid+","+mUid+"), created " +
1272 (System.currentTimeMillis() - mCreateTime) + " mSec ago";
1273 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001274 }
1275
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001276 // javadoc from interface
Robert Greenwalt42acef32009-08-12 16:08:25 -07001277 public int startUsingNetworkFeature(int networkType, String feature,
1278 IBinder binder) {
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001279 long startTime = 0;
1280 if (DBG) {
1281 startTime = SystemClock.elapsedRealtime();
1282 }
Wink Savillec9acde92011-09-21 11:05:43 -07001283 if (VDBG) {
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001284 log("startUsingNetworkFeature for net " + networkType + ": " + feature + ", uid="
1285 + Binder.getCallingUid());
Robert Greenwalt42acef32009-08-12 16:08:25 -07001286 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 enforceChangePermission();
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001288 try {
1289 if (!ConnectivityManager.isNetworkTypeValid(networkType) ||
1290 mNetConfigs[networkType] == null) {
Wink Savillea639b312012-07-10 12:37:54 -07001291 return PhoneConstants.APN_REQUEST_FAILED;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001292 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001293
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001294 FeatureUser f = new FeatureUser(networkType, feature, binder);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001295
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001296 // TODO - move this into individual networktrackers
1297 int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
Robert Greenwalt50393202011-06-21 17:26:14 -07001298
Jeff Sharkey69ddab42012-08-25 00:05:46 -07001299 if (mLockdownEnabled) {
1300 // Since carrier APNs usually aren't available from VPN
1301 // endpoint, mark them as unavailable.
1302 return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
1303 }
1304
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001305 if (mProtectedNetworks.contains(usedNetworkType)) {
1306 enforceConnectivityInternalPermission();
1307 }
Robert Greenwalt50393202011-06-21 17:26:14 -07001308
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001309 // if UID is restricted, don't allow them to bring up metered APNs
1310 final boolean networkMetered = isNetworkMeteredUnchecked(usedNetworkType);
1311 final int uidRules;
1312 synchronized (mRulesLock) {
1313 uidRules = mUidRules.get(Binder.getCallingUid(), RULE_ALLOW_ALL);
1314 }
1315 if (networkMetered && (uidRules & RULE_REJECT_METERED) != 0) {
Wink Savillea639b312012-07-10 12:37:54 -07001316 return PhoneConstants.APN_REQUEST_FAILED;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001317 }
Jeff Sharkey5f4dafb2012-04-30 15:47:05 -07001318
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001319 NetworkStateTracker network = mNetTrackers[usedNetworkType];
1320 if (network != null) {
1321 Integer currentPid = new Integer(getCallingPid());
1322 if (usedNetworkType != networkType) {
1323 NetworkInfo ni = network.getNetworkInfo();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001324
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001325 if (ni.isAvailable() == false) {
1326 if (!TextUtils.equals(feature,Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
1327 if (DBG) log("special network not available ni=" + ni.getTypeName());
Wink Savillea639b312012-07-10 12:37:54 -07001328 return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001329 } else {
1330 // else make the attempt anyway - probably giving REQUEST_STARTED below
1331 if (DBG) {
1332 log("special network not available, but try anyway ni=" +
1333 ni.getTypeName());
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001334 }
1335 }
1336 }
1337
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001338 int restoreTimer = getRestoreDefaultNetworkDelay(usedNetworkType);
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001339
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001340 synchronized(this) {
1341 boolean addToList = true;
1342 if (restoreTimer < 0) {
1343 // In case there is no timer is specified for the feature,
1344 // make sure we don't add duplicate entry with the same request.
1345 for (FeatureUser u : mFeatureUsers) {
1346 if (u.isSameUser(f)) {
1347 // Duplicate user is found. Do not add.
1348 addToList = false;
1349 break;
1350 }
1351 }
Robert Greenwalt8beff952011-12-13 15:26:02 -08001352 }
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001353
1354 if (addToList) mFeatureUsers.add(f);
1355 if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
1356 // this gets used for per-pid dns when connected
1357 mNetRequestersPids[usedNetworkType].add(currentPid);
1358 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001359 }
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001360
1361 if (restoreTimer >= 0) {
1362 mHandler.sendMessageDelayed(mHandler.obtainMessage(
1363 EVENT_RESTORE_DEFAULT_NETWORK, f), restoreTimer);
1364 }
1365
1366 if ((ni.isConnectedOrConnecting() == true) &&
1367 !network.isTeardownRequested()) {
1368 if (ni.isConnected() == true) {
1369 final long token = Binder.clearCallingIdentity();
1370 try {
1371 // add the pid-specific dns
1372 handleDnsConfigurationChange(usedNetworkType);
1373 if (VDBG) log("special network already active");
1374 } finally {
1375 Binder.restoreCallingIdentity(token);
1376 }
Wink Savillea639b312012-07-10 12:37:54 -07001377 return PhoneConstants.APN_ALREADY_ACTIVE;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001378 }
1379 if (VDBG) log("special network already connecting");
Wink Savillea639b312012-07-10 12:37:54 -07001380 return PhoneConstants.APN_REQUEST_STARTED;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001381 }
1382
1383 // check if the radio in play can make another contact
1384 // assume if cannot for now
1385
1386 if (DBG) {
1387 log("startUsingNetworkFeature reconnecting to " + networkType + ": " +
1388 feature);
1389 }
Mikael Hedegren342a7cb2012-12-14 15:52:52 +01001390 if (network.reconnect()) {
Wink Saville948282b2013-08-29 08:55:16 -07001391 if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_STARTED");
Mikael Hedegren342a7cb2012-12-14 15:52:52 +01001392 return PhoneConstants.APN_REQUEST_STARTED;
1393 } else {
Wink Saville948282b2013-08-29 08:55:16 -07001394 if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_FAILED");
Mikael Hedegren342a7cb2012-12-14 15:52:52 +01001395 return PhoneConstants.APN_REQUEST_FAILED;
1396 }
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001397 } else {
1398 // need to remember this unsupported request so we respond appropriately on stop
1399 synchronized(this) {
1400 mFeatureUsers.add(f);
1401 if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
1402 // this gets used for per-pid dns when connected
1403 mNetRequestersPids[usedNetworkType].add(currentPid);
1404 }
Robert Greenwalt0be1e982010-12-15 13:26:33 -08001405 }
Wink Saville948282b2013-08-29 08:55:16 -07001406 if (DBG) log("startUsingNetworkFeature X: return -1 unsupported feature.");
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001407 return -1;
Robert Greenwalt0be1e982010-12-15 13:26:33 -08001408 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001409 }
Wink Saville948282b2013-08-29 08:55:16 -07001410 if (DBG) log("startUsingNetworkFeature X: return APN_TYPE_NOT_AVAILABLE");
Wink Savillea639b312012-07-10 12:37:54 -07001411 return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
Robert Greenwalt5a0c3202012-05-22 16:07:46 -07001412 } finally {
1413 if (DBG) {
1414 final long execTime = SystemClock.elapsedRealtime() - startTime;
1415 if (execTime > 250) {
1416 loge("startUsingNetworkFeature took too long: " + execTime + "ms");
1417 } else {
1418 if (VDBG) log("startUsingNetworkFeature took " + execTime + "ms");
1419 }
1420 }
1421 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001422 }
1423
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001424 // javadoc from interface
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425 public int stopUsingNetworkFeature(int networkType, String feature) {
Robert Greenwaltb8f16342009-10-06 17:52:40 -07001426 enforceChangePermission();
1427
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001428 int pid = getCallingPid();
1429 int uid = getCallingUid();
1430
1431 FeatureUser u = null;
1432 boolean found = false;
1433
1434 synchronized(this) {
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001435 for (FeatureUser x : mFeatureUsers) {
1436 if (x.isSameUser(pid, uid, networkType, feature)) {
1437 u = x;
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001438 found = true;
1439 break;
1440 }
1441 }
1442 }
1443 if (found && u != null) {
Wink Saville948282b2013-08-29 08:55:16 -07001444 if (VDBG) log("stopUsingNetworkFeature: X");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001445 // stop regardless of how many other time this proc had called start
1446 return stopUsingNetworkFeature(u, true);
1447 } else {
1448 // none found!
Wink Saville948282b2013-08-29 08:55:16 -07001449 if (VDBG) log("stopUsingNetworkFeature: X not a live request, ignoring");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001450 return 1;
1451 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001452 }
1453
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001454 private int stopUsingNetworkFeature(FeatureUser u, boolean ignoreDups) {
1455 int networkType = u.mNetworkType;
1456 String feature = u.mFeature;
1457 int pid = u.mPid;
1458 int uid = u.mUid;
1459
1460 NetworkStateTracker tracker = null;
1461 boolean callTeardown = false; // used to carry our decision outside of sync block
1462
Wink Savillec9acde92011-09-21 11:05:43 -07001463 if (VDBG) {
1464 log("stopUsingNetworkFeature: net " + networkType + ": " + feature);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001465 }
Robert Greenwaltb8f16342009-10-06 17:52:40 -07001466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001467 if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
Wink Savillec9acde92011-09-21 11:05:43 -07001468 if (DBG) {
1469 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1470 ", net is invalid");
1471 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001472 return -1;
1473 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001474
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001475 // need to link the mFeatureUsers list with the mNetRequestersPids state in this
1476 // sync block
1477 synchronized(this) {
1478 // check if this process still has an outstanding start request
1479 if (!mFeatureUsers.contains(u)) {
Wink Savillec9acde92011-09-21 11:05:43 -07001480 if (VDBG) {
1481 log("stopUsingNetworkFeature: this process has no outstanding requests" +
1482 ", ignoring");
1483 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001484 return 1;
1485 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001486 u.unlinkDeathRecipient();
1487 mFeatureUsers.remove(mFeatureUsers.indexOf(u));
1488 // If we care about duplicate requests, check for that here.
1489 //
1490 // This is done to support the extension of a request - the app
1491 // can request we start the network feature again and renew the
1492 // auto-shutoff delay. Normal "stop" calls from the app though
1493 // do not pay attention to duplicate requests - in effect the
1494 // API does not refcount and a single stop will counter multiple starts.
1495 if (ignoreDups == false) {
Kazuhiro Ondo3bed4c92011-07-19 11:23:37 -05001496 for (FeatureUser x : mFeatureUsers) {
1497 if (x.isSameUser(u)) {
Wink Savillec9acde92011-09-21 11:05:43 -07001498 if (VDBG) log("stopUsingNetworkFeature: dup is found, ignoring");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001499 return 1;
1500 }
1501 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001502 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001503
repo syncaea743a2011-07-29 23:55:49 -07001504 // TODO - move to individual network trackers
1505 int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
1506
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001507 tracker = mNetTrackers[usedNetworkType];
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001508 if (tracker == null) {
Wink Savillec9acde92011-09-21 11:05:43 -07001509 if (DBG) {
1510 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1511 " no known tracker for used net type " + usedNetworkType);
1512 }
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001513 return -1;
1514 }
1515 if (usedNetworkType != networkType) {
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001516 Integer currentPid = new Integer(pid);
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001517 mNetRequestersPids[usedNetworkType].remove(currentPid);
Robert Greenwalt9055ae32013-02-12 17:18:25 -08001518
1519 final long token = Binder.clearCallingIdentity();
1520 try {
1521 reassessPidDns(pid, true);
1522 } finally {
1523 Binder.restoreCallingIdentity(token);
1524 }
Mattias Falk8b47b362011-08-23 14:15:13 +02001525 flushVmDnsCache();
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001526 if (mNetRequestersPids[usedNetworkType].size() != 0) {
Wink Savillec9acde92011-09-21 11:05:43 -07001527 if (VDBG) {
1528 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1529 " others still using it");
1530 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001531 return 1;
1532 }
1533 callTeardown = true;
Robert Greenwalt19b9ab42011-01-10 11:58:31 -08001534 } else {
Wink Savillec9acde92011-09-21 11:05:43 -07001535 if (DBG) {
1536 log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1537 " not a known feature - dropping");
1538 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001539 }
1540 }
Wink Savillec9acde92011-09-21 11:05:43 -07001541
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001542 if (callTeardown) {
Wink Savillec9acde92011-09-21 11:05:43 -07001543 if (DBG) {
1544 log("stopUsingNetworkFeature: teardown net " + networkType + ": " + feature);
1545 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001546 tracker.teardown();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001547 return 1;
1548 } else {
Robert Greenwalt02648a42010-05-18 10:52:51 -07001549 return -1;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001550 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001551 }
1552
1553 /**
Chad Brubakerc0234532014-02-14 13:24:29 -08001554 * Check if the address falls into any of currently running VPN's route's.
1555 */
1556 private boolean isAddressUnderVpn(InetAddress address) {
1557 synchronized (mVpns) {
1558 synchronized (mRoutesLock) {
1559 int uid = UserHandle.getCallingUserId();
1560 Vpn vpn = mVpns.get(uid);
1561 if (vpn == null) {
1562 return false;
1563 }
1564
1565 // Check if an exemption exists for this address.
1566 for (LinkAddress destination : mExemptAddresses) {
1567 if (!NetworkUtils.addressTypeMatches(address, destination.getAddress())) {
1568 continue;
1569 }
1570
1571 int prefix = destination.getNetworkPrefixLength();
1572 InetAddress addrMasked = NetworkUtils.getNetworkPart(address, prefix);
1573 InetAddress destMasked = NetworkUtils.getNetworkPart(destination.getAddress(),
1574 prefix);
1575
1576 if (addrMasked.equals(destMasked)) {
1577 return false;
1578 }
1579 }
1580
1581 // Finally check if the address is covered by the VPN.
1582 return vpn.isAddressCovered(address);
1583 }
1584 }
1585 }
1586
1587 /**
Robert Greenwalt585ac0f2010-08-27 09:24:29 -07001588 * @deprecated use requestRouteToHostAddress instead
1589 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001590 * Ensure that a network route exists to deliver traffic to the specified
1591 * host via the specified network interface.
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001592 * @param networkType the type of the network over which traffic to the
1593 * specified host is to be routed
1594 * @param hostAddress the IP address of the host to which the route is
1595 * desired
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001596 * @return {@code true} on success, {@code false} on failure
1597 */
Chad Brubakerf81daa92014-02-14 13:22:34 -08001598 public boolean requestRouteToHost(int networkType, int hostAddress, String packageName) {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -07001599 InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
1600
1601 if (inetAddress == null) {
1602 return false;
1603 }
1604
Chad Brubakerf81daa92014-02-14 13:22:34 -08001605 return requestRouteToHostAddress(networkType, inetAddress.getAddress(), packageName);
Robert Greenwalt585ac0f2010-08-27 09:24:29 -07001606 }
1607
1608 /**
1609 * Ensure that a network route exists to deliver traffic to the specified
1610 * host via the specified network interface.
1611 * @param networkType the type of the network over which traffic to the
1612 * specified host is to be routed
1613 * @param hostAddress the IP address of the host to which the route is
1614 * desired
1615 * @return {@code true} on success, {@code false} on failure
1616 */
Chad Brubakerf81daa92014-02-14 13:22:34 -08001617 public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress,
1618 String packageName) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001619 enforceChangePermission();
Robert Greenwalt50393202011-06-21 17:26:14 -07001620 if (mProtectedNetworks.contains(networkType)) {
1621 enforceConnectivityInternalPermission();
1622 }
Chad Brubakerc0234532014-02-14 13:24:29 -08001623 boolean exempt;
1624 InetAddress addr;
1625 try {
1626 addr = InetAddress.getByAddress(hostAddress);
1627 } catch (UnknownHostException e) {
1628 if (DBG) log("requestRouteToHostAddress got " + e.toString());
1629 return false;
1630 }
1631 // System apps may request routes bypassing the VPN to keep other networks working.
1632 if (Binder.getCallingUid() == Process.SYSTEM_UID) {
1633 exempt = true;
1634 } else {
1635 mAppOpsManager.checkPackage(Binder.getCallingUid(), packageName);
1636 try {
1637 ApplicationInfo info = mContext.getPackageManager().getApplicationInfo(packageName,
1638 0);
1639 exempt = (info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
1640 } catch (NameNotFoundException e) {
1641 throw new IllegalArgumentException("Failed to find calling package details", e);
1642 }
1643 }
1644
1645 // Non-exempt routeToHost's can only be added if the host is not covered by the VPN.
1646 // This can be either because the VPN's routes do not cover the destination or a
1647 // system application added an exemption that covers this destination.
1648 if (!exempt && isAddressUnderVpn(addr)) {
1649 return false;
1650 }
Robert Greenwalt50393202011-06-21 17:26:14 -07001651
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001652 if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
Robert Greenwalt8beff952011-12-13 15:26:02 -08001653 if (DBG) log("requestRouteToHostAddress on invalid network: " + networkType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001654 return false;
1655 }
1656 NetworkStateTracker tracker = mNetTrackers[networkType];
Ken Mixter151d3032013-11-07 22:08:24 -08001657 DetailedState netState = DetailedState.DISCONNECTED;
1658 if (tracker != null) {
1659 netState = tracker.getNetworkInfo().getDetailedState();
1660 }
Robert Greenwalt8206ff32009-09-10 15:06:20 -07001661
Ken Mixter151d3032013-11-07 22:08:24 -08001662 if ((netState != DetailedState.CONNECTED &&
Irfan Sheriffda6da092012-08-16 12:49:23 -07001663 netState != DetailedState.CAPTIVE_PORTAL_CHECK) ||
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001664 tracker.isTeardownRequested()) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001665 if (VDBG) {
Wink Savilleab9321d2013-06-29 21:10:57 -07001666 log("requestRouteToHostAddress on down network "
1667 + "(" + networkType + ") - dropped"
1668 + " tracker=" + tracker
1669 + " netState=" + netState
1670 + " isTeardownRequested="
1671 + ((tracker != null) ? tracker.isTeardownRequested() : "tracker:null"));
Robert Greenwalt8206ff32009-09-10 15:06:20 -07001672 }
1673 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001674 }
Robert Greenwalt8beff952011-12-13 15:26:02 -08001675 final long token = Binder.clearCallingIdentity();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001676 try {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001677 LinkProperties lp = tracker.getLinkProperties();
Chad Brubakerc0234532014-02-14 13:24:29 -08001678 boolean ok = addRouteToAddress(lp, addr, exempt);
Wink Savilleab9321d2013-06-29 21:10:57 -07001679 if (DBG) log("requestRouteToHostAddress ok=" + ok);
1680 return ok;
Robert Greenwalt8beff952011-12-13 15:26:02 -08001681 } finally {
1682 Binder.restoreCallingIdentity(token);
1683 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001684 }
1685
Chad Brubakerf336d722013-07-15 16:34:04 -07001686 private boolean addRoute(LinkProperties p, RouteInfo r, boolean toDefaultTable,
1687 boolean exempt) {
1688 return modifyRoute(p, r, 0, ADD, toDefaultTable, exempt);
Robert Greenwaltf43396c2011-05-06 17:10:53 -07001689 }
1690
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001691 private boolean removeRoute(LinkProperties p, RouteInfo r, boolean toDefaultTable) {
Chad Brubakerf336d722013-07-15 16:34:04 -07001692 return modifyRoute(p, r, 0, REMOVE, toDefaultTable, UNEXEMPT);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001693 }
1694
Chad Brubakerf336d722013-07-15 16:34:04 -07001695 private boolean addRouteToAddress(LinkProperties lp, InetAddress addr, boolean exempt) {
1696 return modifyRouteToAddress(lp, addr, ADD, TO_DEFAULT_TABLE, exempt);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001697 }
1698
1699 private boolean removeRouteToAddress(LinkProperties lp, InetAddress addr) {
Chad Brubakerf336d722013-07-15 16:34:04 -07001700 return modifyRouteToAddress(lp, addr, REMOVE, TO_DEFAULT_TABLE, UNEXEMPT);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001701 }
1702
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001703 private boolean modifyRouteToAddress(LinkProperties lp, InetAddress addr, boolean doAdd,
Chad Brubakerf336d722013-07-15 16:34:04 -07001704 boolean toDefaultTable, boolean exempt) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001705 RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), addr);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001706 if (bestRoute == null) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001707 bestRoute = RouteInfo.makeHostRoute(addr, lp.getInterfaceName());
Robert Greenwaltad55d352011-07-22 11:55:33 -07001708 } else {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001709 String iface = bestRoute.getInterface();
Robert Greenwaltad55d352011-07-22 11:55:33 -07001710 if (bestRoute.getGateway().equals(addr)) {
1711 // if there is no better route, add the implied hostroute for our gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001712 bestRoute = RouteInfo.makeHostRoute(addr, iface);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001713 } else {
1714 // if we will connect to this through another route, add a direct route
1715 // to it's gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001716 bestRoute = RouteInfo.makeHostRoute(addr, bestRoute.getGateway(), iface);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001717 }
1718 }
Chad Brubakerf336d722013-07-15 16:34:04 -07001719 return modifyRoute(lp, bestRoute, 0, doAdd, toDefaultTable, exempt);
Robert Greenwaltad55d352011-07-22 11:55:33 -07001720 }
1721
Lorenzo Colitti2adea7f2013-03-12 07:39:59 +09001722 private boolean modifyRoute(LinkProperties lp, RouteInfo r, int cycleCount, boolean doAdd,
Chad Brubakerf336d722013-07-15 16:34:04 -07001723 boolean toDefaultTable, boolean exempt) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001724 if ((lp == null) || (r == null)) {
1725 if (DBG) log("modifyRoute got unexpected null: " + lp + ", " + r);
Robert Greenwalt8beff952011-12-13 15:26:02 -08001726 return false;
1727 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001728
1729 if (cycleCount > MAX_HOSTROUTE_CYCLE_COUNT) {
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001730 loge("Error modifying route - too much recursion");
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001731 return false;
1732 }
1733
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001734 String ifaceName = r.getInterface();
1735 if(ifaceName == null) {
1736 loge("Error modifying route - no interface name");
1737 return false;
1738 }
Robert Greenwaltca441ee2013-04-11 13:48:16 -07001739 if (r.hasGateway()) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09001740 RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), r.getGateway());
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001741 if (bestRoute != null) {
Robert Greenwalt476f5522011-07-15 09:45:08 -07001742 if (bestRoute.getGateway().equals(r.getGateway())) {
1743 // if there is no better route, add the implied hostroute for our gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001744 bestRoute = RouteInfo.makeHostRoute(r.getGateway(), ifaceName);
Robert Greenwalt476f5522011-07-15 09:45:08 -07001745 } else {
1746 // if we will connect to our gateway through another route, add a direct
1747 // route to it's gateway
Lorenzo Colittie1671352013-03-08 12:30:44 -08001748 bestRoute = RouteInfo.makeHostRoute(r.getGateway(),
1749 bestRoute.getGateway(),
1750 ifaceName);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001751 }
Chad Brubakerf336d722013-07-15 16:34:04 -07001752 modifyRoute(lp, bestRoute, cycleCount+1, doAdd, toDefaultTable, exempt);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001753 }
1754 }
1755 if (doAdd) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001756 if (VDBG) log("Adding " + r + " for interface " + ifaceName);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001757 try {
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001758 if (toDefaultTable) {
Chad Brubakerf336d722013-07-15 16:34:04 -07001759 synchronized (mRoutesLock) {
1760 // only track default table - only one apps can effect
1761 mAddedRoutes.add(r);
1762 mNetd.addRoute(ifaceName, r);
1763 if (exempt) {
1764 LinkAddress dest = r.getDestination();
1765 if (!mExemptAddresses.contains(dest)) {
1766 mNetd.setHostExemption(dest);
1767 mExemptAddresses.add(dest);
1768 }
1769 }
1770 }
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001771 } else {
1772 mNetd.addSecondaryRoute(ifaceName, r);
1773 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001774 } catch (Exception e) {
1775 // never crash - catch them all
Robert Greenwalt8beff952011-12-13 15:26:02 -08001776 if (DBG) loge("Exception trying to add a route: " + e);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001777 return false;
1778 }
1779 } else {
1780 // if we remove this one and there are no more like it, then refcount==0 and
1781 // we can remove it from the table
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001782 if (toDefaultTable) {
Chad Brubakerf336d722013-07-15 16:34:04 -07001783 synchronized (mRoutesLock) {
1784 mAddedRoutes.remove(r);
1785 if (mAddedRoutes.contains(r) == false) {
1786 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
1787 try {
1788 mNetd.removeRoute(ifaceName, r);
1789 LinkAddress dest = r.getDestination();
1790 if (mExemptAddresses.contains(dest)) {
1791 mNetd.clearHostExemption(dest);
1792 mExemptAddresses.remove(dest);
1793 }
1794 } catch (Exception e) {
1795 // never crash - catch them all
1796 if (VDBG) loge("Exception trying to remove a route: " + e);
1797 return false;
1798 }
1799 } else {
1800 if (VDBG) log("not removing " + r + " as it's still in use");
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001801 }
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001802 }
1803 } else {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001804 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001805 try {
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07001806 mNetd.removeSecondaryRoute(ifaceName, r);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001807 } catch (Exception e) {
1808 // never crash - catch them all
Robert Greenwalt2473a4ba2012-04-23 18:00:37 -07001809 if (VDBG) loge("Exception trying to remove a route: " + e);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001810 return false;
1811 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07001812 }
1813 }
1814 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001815 }
1816
1817 /**
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001818 * @see ConnectivityManager#getMobileDataEnabled()
1819 */
1820 public boolean getMobileDataEnabled() {
Wink Savillee7982682010-12-07 10:31:02 -08001821 // TODO: This detail should probably be in DataConnectionTracker's
1822 // which is where we store the value and maybe make this
1823 // asynchronous.
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001824 enforceAccessPermission();
Jeff Sharkeybdfce2e2012-09-26 15:54:06 -07001825 boolean retVal = Settings.Global.getInt(mContext.getContentResolver(),
1826 Settings.Global.MOBILE_DATA, 1) == 1;
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001827 if (VDBG) log("getMobileDataEnabled returning " + retVal);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001828 return retVal;
1829 }
1830
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001831 public void setDataDependency(int networkType, boolean met) {
Robert Greenwalt50393202011-06-21 17:26:14 -07001832 enforceConnectivityInternalPermission();
1833
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001834 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_DEPENDENCY_MET,
1835 (met ? ENABLED : DISABLED), networkType));
1836 }
1837
1838 private void handleSetDependencyMet(int networkType, boolean met) {
1839 if (mNetTrackers[networkType] != null) {
1840 if (DBG) {
1841 log("handleSetDependencyMet(" + networkType + ", " + met + ")");
1842 }
1843 mNetTrackers[networkType].setDependencyMet(met);
1844 }
1845 }
1846
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001847 private INetworkPolicyListener mPolicyListener = new INetworkPolicyListener.Stub() {
1848 @Override
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001849 public void onUidRulesChanged(int uid, int uidRules) {
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001850 // caller is NPMS, since we only register with them
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001851 if (LOGD_RULES) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001852 log("onUidRulesChanged(uid=" + uid + ", uidRules=" + uidRules + ")");
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001853 }
1854
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001855 synchronized (mRulesLock) {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001856 // skip update when we've already applied rules
1857 final int oldRules = mUidRules.get(uid, RULE_ALLOW_ALL);
1858 if (oldRules == uidRules) return;
1859
1860 mUidRules.put(uid, uidRules);
1861 }
1862
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001863 // TODO: notify UID when it has requested targeted updates
1864 }
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001865
1866 @Override
1867 public void onMeteredIfacesChanged(String[] meteredIfaces) {
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001868 // caller is NPMS, since we only register with them
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001869 if (LOGD_RULES) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001870 log("onMeteredIfacesChanged(ifaces=" + Arrays.toString(meteredIfaces) + ")");
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001871 }
1872
1873 synchronized (mRulesLock) {
1874 mMeteredIfaces.clear();
1875 for (String iface : meteredIfaces) {
1876 mMeteredIfaces.add(iface);
1877 }
1878 }
1879 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001880
1881 @Override
1882 public void onRestrictBackgroundChanged(boolean restrictBackground) {
1883 // caller is NPMS, since we only register with them
1884 if (LOGD_RULES) {
1885 log("onRestrictBackgroundChanged(restrictBackground=" + restrictBackground + ")");
1886 }
1887
1888 // kick off connectivity change broadcast for active network, since
1889 // global background policy change is radical.
1890 final int networkType = mActiveDefaultNetwork;
1891 if (isNetworkTypeValid(networkType)) {
1892 final NetworkStateTracker tracker = mNetTrackers[networkType];
1893 if (tracker != null) {
1894 final NetworkInfo info = tracker.getNetworkInfo();
1895 if (info != null && info.isConnected()) {
1896 sendConnectedBroadcast(info);
1897 }
1898 }
1899 }
1900 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001901 };
1902
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001903 /**
1904 * @see ConnectivityManager#setMobileDataEnabled(boolean)
1905 */
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001906 public void setMobileDataEnabled(boolean enabled) {
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001907 enforceChangePermission();
Wink Savilleed9c02b2010-12-03 12:01:38 -08001908 if (DBG) log("setMobileDataEnabled(" + enabled + ")");
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001909
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001910 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_MOBILE_DATA,
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001911 (enabled ? ENABLED : DISABLED), 0));
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001912 }
1913
1914 private void handleSetMobileData(boolean enabled) {
Wink Savillee7982682010-12-07 10:31:02 -08001915 if (mNetTrackers[ConnectivityManager.TYPE_MOBILE] != null) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07001916 if (VDBG) {
1917 log(mNetTrackers[ConnectivityManager.TYPE_MOBILE].toString() + enabled);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001918 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001919 mNetTrackers[ConnectivityManager.TYPE_MOBILE].setUserDataEnable(enabled);
1920 }
tk.munb97d34c2012-01-06 10:43:52 +09001921 if (mNetTrackers[ConnectivityManager.TYPE_WIMAX] != null) {
1922 if (VDBG) {
1923 log(mNetTrackers[ConnectivityManager.TYPE_WIMAX].toString() + enabled);
1924 }
1925 mNetTrackers[ConnectivityManager.TYPE_WIMAX].setUserDataEnable(enabled);
1926 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001927 }
1928
1929 @Override
1930 public void setPolicyDataEnable(int networkType, boolean enabled) {
1931 // only someone like NPMS should only be calling us
1932 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1933
1934 mHandler.sendMessage(mHandler.obtainMessage(
1935 EVENT_SET_POLICY_DATA_ENABLE, networkType, (enabled ? ENABLED : DISABLED)));
1936 }
1937
1938 private void handleSetPolicyDataEnable(int networkType, boolean enabled) {
1939 if (isNetworkTypeValid(networkType)) {
1940 final NetworkStateTracker tracker = mNetTrackers[networkType];
1941 if (tracker != null) {
1942 tracker.setPolicyDataEnable(enabled);
1943 }
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001944 }
1945 }
1946
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001947 private void enforceAccessPermission() {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001948 mContext.enforceCallingOrSelfPermission(
1949 android.Manifest.permission.ACCESS_NETWORK_STATE,
1950 "ConnectivityService");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001951 }
1952
1953 private void enforceChangePermission() {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001954 mContext.enforceCallingOrSelfPermission(
1955 android.Manifest.permission.CHANGE_NETWORK_STATE,
1956 "ConnectivityService");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001957 }
1958
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001959 // TODO Make this a special check when it goes public
1960 private void enforceTetherChangePermission() {
1961 mContext.enforceCallingOrSelfPermission(
1962 android.Manifest.permission.CHANGE_NETWORK_STATE,
1963 "ConnectivityService");
1964 }
1965
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001966 private void enforceTetherAccessPermission() {
1967 mContext.enforceCallingOrSelfPermission(
1968 android.Manifest.permission.ACCESS_NETWORK_STATE,
1969 "ConnectivityService");
1970 }
1971
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001972 private void enforceConnectivityInternalPermission() {
1973 mContext.enforceCallingOrSelfPermission(
1974 android.Manifest.permission.CONNECTIVITY_INTERNAL,
1975 "ConnectivityService");
1976 }
1977
Chad Brubakerd475c702013-07-11 13:29:30 -07001978 private void enforceMarkNetworkSocketPermission() {
1979 //Media server special case
1980 if (Binder.getCallingUid() == Process.MEDIA_UID) {
1981 return;
1982 }
1983 mContext.enforceCallingOrSelfPermission(
1984 android.Manifest.permission.MARK_NETWORK_SOCKET,
1985 "ConnectivityService");
1986 }
1987
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001988 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001989 * Handle a {@code DISCONNECTED} event. If this pertains to the non-active
1990 * network, we ignore it. If it is for the active network, we send out a
1991 * broadcast. But first, we check whether it might be possible to connect
1992 * to a different network.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001993 * @param info the {@code NetworkInfo} for the network
1994 */
1995 private void handleDisconnect(NetworkInfo info) {
1996
Robert Greenwalt42acef32009-08-12 16:08:25 -07001997 int prevNetType = info.getType();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001998
Robert Greenwalt42acef32009-08-12 16:08:25 -07001999 mNetTrackers[prevNetType].setTeardownRequested(false);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002000 int thisNetId = mNetTrackers[prevNetType].getNetwork().netId;
Haoyu Bai04124232012-06-28 15:26:19 -07002001
2002 // Remove idletimer previously setup in {@code handleConnect}
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002003 if (mNetConfigs[prevNetType].isDefault()) {
2004 removeDataActivityTracking(prevNetType);
2005 }
Haoyu Bai04124232012-06-28 15:26:19 -07002006
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002007 /*
2008 * If the disconnected network is not the active one, then don't report
2009 * this as a loss of connectivity. What probably happened is that we're
2010 * getting the disconnect for a network that we explicitly disabled
2011 * in accordance with network preference policies.
2012 */
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002013 if (!mNetConfigs[prevNetType].isDefault()) {
Mattias Falk8b47b362011-08-23 14:15:13 +02002014 List<Integer> pids = mNetRequestersPids[prevNetType];
2015 for (Integer pid : pids) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002016 // will remove them because the net's no longer connected
2017 // need to do this now as only now do we know the pids and
2018 // can properly null things that are no longer referenced.
2019 reassessPidDns(pid.intValue(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002020 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002021 }
2022
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002023 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
Irfan Sheriff9538bdd2012-09-20 09:32:41 -07002024 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
Jeff Sharkey75fbb4b2012-08-06 11:41:50 -07002025 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002026 if (info.isFailover()) {
2027 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2028 info.setFailover(false);
2029 }
2030 if (info.getReason() != null) {
2031 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
2032 }
2033 if (info.getExtraInfo() != null) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002034 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
2035 info.getExtraInfo());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002036 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002037
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002038 if (mNetConfigs[prevNetType].isDefault()) {
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002039 tryFailover(prevNetType);
2040 if (mActiveDefaultNetwork != -1) {
2041 NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002042 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
2043 } else {
Robert Greenwalt029be812010-09-20 18:01:43 -07002044 mDefaultInetConditionPublished = 0; // we're not connected anymore
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002045 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2046 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002047 }
Robert Greenwalt029be812010-09-20 18:01:43 -07002048 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Robert Greenwaltec896c62011-06-15 12:22:07 -07002049
2050 // Reset interface if no other connections are using the same interface
2051 boolean doReset = true;
2052 LinkProperties linkProperties = mNetTrackers[prevNetType].getLinkProperties();
2053 if (linkProperties != null) {
2054 String oldIface = linkProperties.getInterfaceName();
2055 if (TextUtils.isEmpty(oldIface) == false) {
2056 for (NetworkStateTracker networkStateTracker : mNetTrackers) {
2057 if (networkStateTracker == null) continue;
2058 NetworkInfo networkInfo = networkStateTracker.getNetworkInfo();
2059 if (networkInfo.isConnected() && networkInfo.getType() != prevNetType) {
2060 LinkProperties l = networkStateTracker.getLinkProperties();
2061 if (l == null) continue;
2062 if (oldIface.equals(l.getInterfaceName())) {
2063 doReset = false;
2064 break;
2065 }
2066 }
2067 }
2068 }
2069 }
2070
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002071 // do this before we broadcast the change
Robert Greenwaltec896c62011-06-15 12:22:07 -07002072 handleConnectivityChange(prevNetType, doReset);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002073
Jeff Sharkey961e3042011-08-29 16:02:57 -07002074 final Intent immediateIntent = new Intent(intent);
2075 immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
2076 sendStickyBroadcast(immediateIntent);
Wink Saville628b0852011-08-04 15:01:58 -07002077 sendStickyBroadcastDelayed(intent, getConnectivityChangeDelay());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002078 /*
2079 * If the failover network is already connected, then immediately send
2080 * out a followup broadcast indicating successful failover
2081 */
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002082 if (mActiveDefaultNetwork != -1) {
Wink Saville628b0852011-08-04 15:01:58 -07002083 sendConnectedBroadcastDelayed(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo(),
2084 getConnectivityChangeDelay());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002085 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002086 try {
2087 mNetd.removeNetwork(thisNetId);
2088 } catch (Exception e) {
2089 loge("Exception removing network: " + e);
2090 } finally {
2091 mNetTrackers[prevNetType].setNetId(INVALID_NET_ID);
2092 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002093 }
2094
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002095 private void tryFailover(int prevNetType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002096 /*
Robert Greenwaltbff90182011-01-06 15:41:07 -08002097 * If this is a default network, check if other defaults are available.
2098 * Try to reconnect on all available and let them hash it out when
2099 * more than one connects.
Robert Greenwalt42acef32009-08-12 16:08:25 -07002100 */
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002101 if (mNetConfigs[prevNetType].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002102 if (mActiveDefaultNetwork == prevNetType) {
Wink Saville948282b2013-08-29 08:55:16 -07002103 if (DBG) {
2104 log("tryFailover: set mActiveDefaultNetwork=-1, prevNetType=" + prevNetType);
2105 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002106 mActiveDefaultNetwork = -1;
2107 }
2108
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002109 // don't signal a reconnect for anything lower or equal priority than our
2110 // current connected default
2111 // TODO - don't filter by priority now - nice optimization but risky
2112// int currentPriority = -1;
2113// if (mActiveDefaultNetwork != -1) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002114// currentPriority = mNetConfigs[mActiveDefaultNetwork].mPriority;
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002115// }
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002116
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002117 for (int checkType=0; checkType <= ConnectivityManager.MAX_NETWORK_TYPE; checkType++) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -07002118 if (checkType == prevNetType) continue;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002119 if (mNetConfigs[checkType] == null) continue;
2120 if (!mNetConfigs[checkType].isDefault()) continue;
Robert Greenwalt424781e2011-11-11 09:56:03 -08002121 if (mNetTrackers[checkType] == null) continue;
Wink Saville9f7a0b22011-01-26 15:43:49 -08002122
2123// Enabling the isAvailable() optimization caused mobile to not get
2124// selected if it was in the middle of error handling. Specifically
2125// a moble connection that took 30 seconds to complete the DEACTIVATE_DATA_CALL
2126// would not be available and we wouldn't get connected to anything.
2127// So removing the isAvailable() optimization below for now. TODO: This
2128// optimization should work and we need to investigate why it doesn't work.
2129// This could be related to how DEACTIVATE_DATA_CALL is reporting its
2130// complete before it is really complete.
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002131
Wink Saville9f7a0b22011-01-26 15:43:49 -08002132// if (!mNetTrackers[checkType].isAvailable()) continue;
2133
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002134// if (currentPriority >= mNetConfigs[checkType].mPriority) continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -07002135
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002136 NetworkStateTracker checkTracker = mNetTrackers[checkType];
2137 NetworkInfo checkInfo = checkTracker.getNetworkInfo();
2138 if (!checkInfo.isConnectedOrConnecting() || checkTracker.isTeardownRequested()) {
2139 checkInfo.setFailover(true);
2140 checkTracker.reconnect();
Robert Greenwalt42acef32009-08-12 16:08:25 -07002141 }
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002142 if (DBG) log("Attempting to switch to " + checkInfo.getTypeName());
Robert Greenwalt42acef32009-08-12 16:08:25 -07002143 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002144 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002145 }
2146
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002147 public void sendConnectedBroadcast(NetworkInfo info) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08002148 enforceConnectivityInternalPermission();
Jeff Sharkey961e3042011-08-29 16:02:57 -07002149 sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
2150 sendGeneralBroadcast(info, CONNECTIVITY_ACTION);
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07002151 }
2152
Wink Saville628b0852011-08-04 15:01:58 -07002153 private void sendConnectedBroadcastDelayed(NetworkInfo info, int delayMs) {
Jeff Sharkey961e3042011-08-29 16:02:57 -07002154 sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
2155 sendGeneralBroadcastDelayed(info, CONNECTIVITY_ACTION, delayMs);
Wink Saville628b0852011-08-04 15:01:58 -07002156 }
2157
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07002158 private void sendInetConditionBroadcast(NetworkInfo info) {
2159 sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
2160 }
2161
Wink Saville628b0852011-08-04 15:01:58 -07002162 private Intent makeGeneralIntent(NetworkInfo info, String bcastType) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002163 if (mLockdownTracker != null) {
2164 info = mLockdownTracker.augmentNetworkInfo(info);
2165 }
2166
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07002167 Intent intent = new Intent(bcastType);
Irfan Sheriff9538bdd2012-09-20 09:32:41 -07002168 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
Jeff Sharkey75fbb4b2012-08-06 11:41:50 -07002169 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002170 if (info.isFailover()) {
2171 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2172 info.setFailover(false);
2173 }
2174 if (info.getReason() != null) {
2175 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
2176 }
2177 if (info.getExtraInfo() != null) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002178 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
2179 info.getExtraInfo());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002180 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002181 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Wink Saville628b0852011-08-04 15:01:58 -07002182 return intent;
2183 }
2184
2185 private void sendGeneralBroadcast(NetworkInfo info, String bcastType) {
2186 sendStickyBroadcast(makeGeneralIntent(info, bcastType));
2187 }
2188
2189 private void sendGeneralBroadcastDelayed(NetworkInfo info, String bcastType, int delayMs) {
2190 sendStickyBroadcastDelayed(makeGeneralIntent(info, bcastType), delayMs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002191 }
2192
Ashish Sharma0535a9f2014-03-12 18:42:23 -07002193 private void sendDataActivityBroadcast(int deviceType, boolean active, long tsNanos) {
Haoyu Baidb3c8672012-06-20 14:29:57 -07002194 Intent intent = new Intent(ConnectivityManager.ACTION_DATA_ACTIVITY_CHANGE);
2195 intent.putExtra(ConnectivityManager.EXTRA_DEVICE_TYPE, deviceType);
2196 intent.putExtra(ConnectivityManager.EXTRA_IS_ACTIVE, active);
Ashish Sharma0535a9f2014-03-12 18:42:23 -07002197 intent.putExtra(ConnectivityManager.EXTRA_REALTIME_NS, tsNanos);
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07002198 final long ident = Binder.clearCallingIdentity();
2199 try {
2200 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.ALL,
2201 RECEIVE_DATA_ACTIVITY_CHANGE, null, null, 0, null, null);
2202 } finally {
2203 Binder.restoreCallingIdentity(ident);
2204 }
Haoyu Baidb3c8672012-06-20 14:29:57 -07002205 }
2206
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002207 /**
2208 * Called when an attempt to fail over to another network has failed.
2209 * @param info the {@link NetworkInfo} for the failed network
2210 */
2211 private void handleConnectionFailure(NetworkInfo info) {
2212 mNetTrackers[info.getType()].setTeardownRequested(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002213
Robert Greenwalt42acef32009-08-12 16:08:25 -07002214 String reason = info.getReason();
2215 String extraInfo = info.getExtraInfo();
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002216
Robert Greenwalt572172b2010-10-08 16:35:52 -07002217 String reasonText;
2218 if (reason == null) {
2219 reasonText = ".";
2220 } else {
2221 reasonText = " (" + reason + ").";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002222 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08002223 loge("Attempt to connect to " + info.getTypeName() + " failed" + reasonText);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002224
2225 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
Irfan Sheriff9538bdd2012-09-20 09:32:41 -07002226 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
Jeff Sharkey75fbb4b2012-08-06 11:41:50 -07002227 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
Robert Greenwalt42acef32009-08-12 16:08:25 -07002228 if (getActiveNetworkInfo() == null) {
2229 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2230 }
2231 if (reason != null) {
2232 intent.putExtra(ConnectivityManager.EXTRA_REASON, reason);
2233 }
2234 if (extraInfo != null) {
2235 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO, extraInfo);
2236 }
2237 if (info.isFailover()) {
2238 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2239 info.setFailover(false);
2240 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002241
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002242 if (mNetConfigs[info.getType()].isDefault()) {
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002243 tryFailover(info.getType());
2244 if (mActiveDefaultNetwork != -1) {
2245 NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002246 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
2247 } else {
Robert Greenwalt029be812010-09-20 18:01:43 -07002248 mDefaultInetConditionPublished = 0;
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002249 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2250 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002251 }
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08002252
Robert Greenwalt029be812010-09-20 18:01:43 -07002253 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Jeff Sharkey961e3042011-08-29 16:02:57 -07002254
2255 final Intent immediateIntent = new Intent(intent);
2256 immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
2257 sendStickyBroadcast(immediateIntent);
Mike Lockwood0f79b542009-08-14 14:18:49 -04002258 sendStickyBroadcast(intent);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002259 /*
2260 * If the failover network is already connected, then immediately send
2261 * out a followup broadcast indicating successful failover
2262 */
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08002263 if (mActiveDefaultNetwork != -1) {
2264 sendConnectedBroadcast(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08002265 }
Mike Lockwood0f79b542009-08-14 14:18:49 -04002266 }
2267
2268 private void sendStickyBroadcast(Intent intent) {
2269 synchronized(this) {
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002270 if (!mSystemReady) {
2271 mInitialBroadcast = new Intent(intent);
Mike Lockwood0f79b542009-08-14 14:18:49 -04002272 }
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002273 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Wink Savillec9acde92011-09-21 11:05:43 -07002274 if (VDBG) {
Jeff Sharkey961e3042011-08-29 16:02:57 -07002275 log("sendStickyBroadcast: action=" + intent.getAction());
Wink Saville628b0852011-08-04 15:01:58 -07002276 }
2277
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07002278 final long ident = Binder.clearCallingIdentity();
2279 try {
2280 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
2281 } finally {
2282 Binder.restoreCallingIdentity(ident);
2283 }
Mike Lockwood0f79b542009-08-14 14:18:49 -04002284 }
2285 }
2286
Wink Saville628b0852011-08-04 15:01:58 -07002287 private void sendStickyBroadcastDelayed(Intent intent, int delayMs) {
2288 if (delayMs <= 0) {
2289 sendStickyBroadcast(intent);
2290 } else {
Wink Savillec9acde92011-09-21 11:05:43 -07002291 if (VDBG) {
Jeff Sharkey961e3042011-08-29 16:02:57 -07002292 log("sendStickyBroadcastDelayed: delayMs=" + delayMs + ", action="
2293 + intent.getAction());
2294 }
Wink Saville628b0852011-08-04 15:01:58 -07002295 mHandler.sendMessageDelayed(mHandler.obtainMessage(
2296 EVENT_SEND_STICKY_BROADCAST_INTENT, intent), delayMs);
2297 }
2298 }
2299
Mike Lockwood0f79b542009-08-14 14:18:49 -04002300 void systemReady() {
Wink Saville948282b2013-08-29 08:55:16 -07002301 mCaptivePortalTracker = CaptivePortalTracker.makeCaptivePortalTracker(mContext, this);
2302 loadGlobalProxy();
2303
Mike Lockwood0f79b542009-08-14 14:18:49 -04002304 synchronized(this) {
2305 mSystemReady = true;
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002306 if (mInitialBroadcast != null) {
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002307 mContext.sendStickyBroadcastAsUser(mInitialBroadcast, UserHandle.ALL);
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08002308 mInitialBroadcast = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -04002309 }
2310 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07002311 // load the global proxy at startup
2312 mHandler.sendMessage(mHandler.obtainMessage(EVENT_APPLY_GLOBAL_HTTP_PROXY));
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002313
2314 // Try bringing up tracker, but if KeyStore isn't ready yet, wait
2315 // for user to unlock device.
2316 if (!updateLockdownVpn()) {
2317 final IntentFilter filter = new IntentFilter(Intent.ACTION_USER_PRESENT);
2318 mContext.registerReceiver(mUserPresentReceiver, filter);
2319 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002320 }
2321
Jeff Sharkey69ddab42012-08-25 00:05:46 -07002322 private BroadcastReceiver mUserPresentReceiver = new BroadcastReceiver() {
2323 @Override
2324 public void onReceive(Context context, Intent intent) {
2325 // Try creating lockdown tracker, since user present usually means
2326 // unlocked keystore.
2327 if (updateLockdownVpn()) {
2328 mContext.unregisterReceiver(this);
2329 }
2330 }
2331 };
2332
Irfan Sheriffda6da092012-08-16 12:49:23 -07002333 private boolean isNewNetTypePreferredOverCurrentNetType(int type) {
Wink Saville948282b2013-08-29 08:55:16 -07002334 if (((type != mNetworkPreference)
2335 && (mNetConfigs[mActiveDefaultNetwork].priority > mNetConfigs[type].priority))
2336 || (mNetworkPreference == mActiveDefaultNetwork)) {
2337 return false;
2338 }
Irfan Sheriffda6da092012-08-16 12:49:23 -07002339 return true;
2340 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002341
Irfan Sheriffda6da092012-08-16 12:49:23 -07002342 private void handleConnect(NetworkInfo info) {
2343 final int newNetType = info.getType();
2344
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002345 // snapshot isFailover, because sendConnectedBroadcast() resets it
2346 boolean isFailover = info.isFailover();
Irfan Sheriffda6da092012-08-16 12:49:23 -07002347 final NetworkStateTracker thisNet = mNetTrackers[newNetType];
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07002348 final String thisIface = thisNet.getLinkProperties().getInterfaceName();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002349
Wink Saville948282b2013-08-29 08:55:16 -07002350 if (VDBG) {
2351 log("handleConnect: E newNetType=" + newNetType + " thisIface=" + thisIface
2352 + " isFailover" + isFailover);
2353 }
2354
Robert Greenwalt42acef32009-08-12 16:08:25 -07002355 // if this is a default net and other default is running
2356 // kill the one not preferred
Irfan Sheriffda6da092012-08-16 12:49:23 -07002357 if (mNetConfigs[newNetType].isDefault()) {
2358 if (mActiveDefaultNetwork != -1 && mActiveDefaultNetwork != newNetType) {
2359 if (isNewNetTypePreferredOverCurrentNetType(newNetType)) {
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002360 String teardownPolicy = SystemProperties.get("net.teardownPolicy");
2361 if (TextUtils.equals(teardownPolicy, "keep") == false) {
2362 // tear down the other
2363 NetworkStateTracker otherNet =
2364 mNetTrackers[mActiveDefaultNetwork];
2365 if (DBG) {
2366 log("Policy requires " + otherNet.getNetworkInfo().getTypeName() +
2367 " teardown");
2368 }
2369 if (!teardown(otherNet)) {
2370 loge("Network declined teardown request");
2371 teardown(thisNet);
2372 return;
2373 }
2374 } else {
2375 //TODO - remove
2376 loge("network teardown skipped due to net.teardownPolicy setting");
Robert Greenwalt42acef32009-08-12 16:08:25 -07002377 }
Irfan Sheriffda6da092012-08-16 12:49:23 -07002378 } else {
2379 // don't accept this one
2380 if (VDBG) {
2381 log("Not broadcasting CONNECT_ACTION " +
2382 "to torn down network " + info.getTypeName());
2383 }
2384 teardown(thisNet);
2385 return;
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002386 }
2387 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002388 int thisNetId = nextNetId();
2389 thisNet.setNetId(thisNetId);
2390 try {
2391 mNetd.createNetwork(thisNetId, thisIface);
2392 } catch (Exception e) {
2393 loge("Exception creating network :" + e);
2394 teardown(thisNet);
2395 return;
2396 }
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002397 setupDataActivityTracking(newNetType);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002398 synchronized (ConnectivityService.this) {
2399 // have a new default network, release the transition wakelock in a second
2400 // if it's held. The second pause is to allow apps to reconnect over the
2401 // new network
2402 if (mNetTransitionWakeLock.isHeld()) {
2403 mHandler.sendMessageDelayed(mHandler.obtainMessage(
Robert Greenwaltf3331232010-09-24 14:32:21 -07002404 EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002405 mNetTransitionWakeLockSerialNumber, 0),
2406 1000);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002407 }
2408 }
Irfan Sheriffda6da092012-08-16 12:49:23 -07002409 mActiveDefaultNetwork = newNetType;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002410 // this will cause us to come up initially as unconnected and switching
2411 // to connected after our normal pause unless somebody reports us as reall
2412 // disconnected
2413 mDefaultInetConditionPublished = 0;
2414 mDefaultConnectionSequence++;
2415 mInetConditionChangeInFlight = false;
2416 // Don't do this - if we never sign in stay, grey
2417 //reportNetworkCondition(mActiveDefaultNetwork, 100);
Robert Greenwaltd49f64c2014-02-28 16:44:00 -08002418 updateNetworkSettings(thisNet);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -07002419 } else {
2420 int thisNetId = nextNetId();
2421 thisNet.setNetId(thisNetId);
2422 try {
2423 mNetd.createNetwork(thisNetId, thisIface);
2424 } catch (Exception e) {
2425 loge("Exception creating network :" + e);
2426 teardown(thisNet);
2427 return;
2428 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002429 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002430 thisNet.setTeardownRequested(false);
sy.yun9d9b74a2013-09-02 05:24:09 +09002431 updateMtuSizeSettings(thisNet);
Irfan Sheriffda6da092012-08-16 12:49:23 -07002432 handleConnectivityChange(newNetType, false);
Wink Saville628b0852011-08-04 15:01:58 -07002433 sendConnectedBroadcastDelayed(info, getConnectivityChangeDelay());
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07002434
2435 // notify battery stats service about this network
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07002436 if (thisIface != null) {
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07002437 try {
Irfan Sheriffda6da092012-08-16 12:49:23 -07002438 BatteryStatsService.getService().noteNetworkInterfaceType(thisIface, newNetType);
Jeff Sharkey1059c3c2011-10-04 16:54:49 -07002439 } catch (RemoteException e) {
2440 // ignored; service lives in system_server
2441 }
2442 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002443 }
2444
Wink Savilled747cbc2013-08-07 16:22:47 -07002445 /** @hide */
2446 @Override
2447 public void captivePortalCheckCompleted(NetworkInfo info, boolean isCaptivePortal) {
2448 enforceConnectivityInternalPermission();
2449 if (DBG) log("captivePortalCheckCompleted: ni=" + info + " captive=" + isCaptivePortal);
2450 mNetTrackers[info.getType()].captivePortalCheckCompleted(isCaptivePortal);
2451 }
2452
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002453 /**
Haoyu Bai04124232012-06-28 15:26:19 -07002454 * Setup data activity tracking for the given network interface.
2455 *
2456 * Every {@code setupDataActivityTracking} should be paired with a
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002457 * {@link #removeDataActivityTracking} for cleanup.
Haoyu Bai04124232012-06-28 15:26:19 -07002458 */
2459 private void setupDataActivityTracking(int type) {
2460 final NetworkStateTracker thisNet = mNetTrackers[type];
2461 final String iface = thisNet.getLinkProperties().getInterfaceName();
2462
2463 final int timeout;
2464
2465 if (ConnectivityManager.isNetworkTypeMobile(type)) {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07002466 timeout = Settings.Global.getInt(mContext.getContentResolver(),
2467 Settings.Global.DATA_ACTIVITY_TIMEOUT_MOBILE,
Dianne Hackborne13c4c02014-02-11 17:18:35 -08002468 5);
Haoyu Bai04124232012-06-28 15:26:19 -07002469 // Canonicalize mobile network type
2470 type = ConnectivityManager.TYPE_MOBILE;
2471 } else if (ConnectivityManager.TYPE_WIFI == type) {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07002472 timeout = Settings.Global.getInt(mContext.getContentResolver(),
2473 Settings.Global.DATA_ACTIVITY_TIMEOUT_WIFI,
Haoyu Bai04124232012-06-28 15:26:19 -07002474 0);
2475 } else {
2476 // do not track any other networks
2477 timeout = 0;
2478 }
2479
2480 if (timeout > 0 && iface != null) {
2481 try {
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002482 mNetd.addIdleTimer(iface, timeout, type);
Robert Greenwaltd9cb2f32014-03-19 14:26:28 -07002483 } catch (Exception e) {
2484 // You shall not crash!
2485 loge("Exception in setupDataActivityTracking " + e);
Haoyu Bai04124232012-06-28 15:26:19 -07002486 }
2487 }
2488 }
2489
2490 /**
2491 * Remove data activity tracking when network disconnects.
2492 */
2493 private void removeDataActivityTracking(int type) {
2494 final NetworkStateTracker net = mNetTrackers[type];
2495 final String iface = net.getLinkProperties().getInterfaceName();
2496
2497 if (iface != null && (ConnectivityManager.isNetworkTypeMobile(type) ||
2498 ConnectivityManager.TYPE_WIFI == type)) {
2499 try {
2500 // the call fails silently if no idletimer setup for this interface
2501 mNetd.removeIdleTimer(iface);
Robert Greenwaltd9cb2f32014-03-19 14:26:28 -07002502 } catch (Exception e) {
2503 loge("Exception in removeDataActivityTracking " + e);
Haoyu Bai04124232012-06-28 15:26:19 -07002504 }
2505 }
2506 }
2507
2508 /**
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002509 * After a change in the connectivity state of a network. We're mainly
2510 * concerned with making sure that the list of DNS servers is set up
2511 * according to which networks are connected, and ensuring that the
2512 * right routing table entries exist.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002513 */
Robert Greenwaltec896c62011-06-15 12:22:07 -07002514 private void handleConnectivityChange(int netType, boolean doReset) {
Wink Savillee8222252011-07-13 13:44:13 -07002515 int resetMask = doReset ? NetworkUtils.RESET_ALL_ADDRESSES : 0;
Chad Brubakerf336d722013-07-15 16:34:04 -07002516 boolean exempt = ConnectivityManager.isNetworkTypeExempt(netType);
Wink Saville948282b2013-08-29 08:55:16 -07002517 if (VDBG) {
2518 log("handleConnectivityChange: netType=" + netType + " doReset=" + doReset
2519 + " resetMask=" + resetMask);
2520 }
Wink Savillee8222252011-07-13 13:44:13 -07002521
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002522 /*
Robert Greenwalt42acef32009-08-12 16:08:25 -07002523 * If a non-default network is enabled, add the host routes that
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002524 * will allow it's DNS servers to be accessed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002525 */
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002526 handleDnsConfigurationChange(netType);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002527
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002528 LinkProperties curLp = mCurrentLinkProperties[netType];
2529 LinkProperties newLp = null;
2530
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002531 if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002532 newLp = mNetTrackers[netType].getLinkProperties();
Wink Savillee8222252011-07-13 13:44:13 -07002533 if (VDBG) {
2534 log("handleConnectivityChange: changed linkProperty[" + netType + "]:" +
2535 " doReset=" + doReset + " resetMask=" + resetMask +
2536 "\n curLp=" + curLp +
2537 "\n newLp=" + newLp);
2538 }
2539
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002540 if (curLp != null) {
2541 if (curLp.isIdenticalInterfaceName(newLp)) {
2542 CompareResult<LinkAddress> car = curLp.compareAddresses(newLp);
2543 if ((car.removed.size() != 0) || (car.added.size() != 0)) {
2544 for (LinkAddress linkAddr : car.removed) {
2545 if (linkAddr.getAddress() instanceof Inet4Address) {
2546 resetMask |= NetworkUtils.RESET_IPV4_ADDRESSES;
2547 }
2548 if (linkAddr.getAddress() instanceof Inet6Address) {
2549 resetMask |= NetworkUtils.RESET_IPV6_ADDRESSES;
2550 }
Wink Savillee8222252011-07-13 13:44:13 -07002551 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002552 if (DBG) {
2553 log("handleConnectivityChange: addresses changed" +
2554 " linkProperty[" + netType + "]:" + " resetMask=" + resetMask +
2555 "\n car=" + car);
Wink Savillee8222252011-07-13 13:44:13 -07002556 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002557 } else {
Robert Greenwaltd01f8422014-01-23 16:03:04 -08002558 if (VDBG) {
2559 log("handleConnectivityChange: addresses are the same reset per" +
2560 " doReset linkProperty[" + netType + "]:" +
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002561 " resetMask=" + resetMask);
2562 }
Wink Savillee8222252011-07-13 13:44:13 -07002563 }
2564 } else {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002565 resetMask = NetworkUtils.RESET_ALL_ADDRESSES;
Robert Greenwalt58d4c592011-08-02 17:18:41 -07002566 if (DBG) {
2567 log("handleConnectivityChange: interface not not equivalent reset both" +
2568 " linkProperty[" + netType + "]:" +
2569 " resetMask=" + resetMask);
2570 }
Wink Savillee8222252011-07-13 13:44:13 -07002571 }
Wink Savillee8222252011-07-13 13:44:13 -07002572 }
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002573 if (mNetConfigs[netType].isDefault()) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07002574 handleApplyDefaultProxy(newLp.getHttpProxy());
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002575 }
2576 } else {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002577 if (VDBG) {
2578 log("handleConnectivityChange: changed linkProperty[" + netType + "]:" +
2579 " doReset=" + doReset + " resetMask=" + resetMask +
2580 "\n curLp=" + curLp +
2581 "\n newLp= null");
Robert Greenwalt42acef32009-08-12 16:08:25 -07002582 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002583 }
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002584 mCurrentLinkProperties[netType] = newLp;
Chad Brubakerf336d722013-07-15 16:34:04 -07002585 boolean resetDns = updateRoutes(newLp, curLp, mNetConfigs[netType].isDefault(), exempt);
Robert Greenwaltec896c62011-06-15 12:22:07 -07002586
Chia-chi Yeh0c074e62011-08-15 15:19:40 -07002587 if (resetMask != 0 || resetDns) {
Wink Saville948282b2013-08-29 08:55:16 -07002588 if (VDBG) log("handleConnectivityChange: resetting");
Robert Greenwalt80eb63b2013-05-23 18:33:06 -07002589 if (curLp != null) {
Wink Saville948282b2013-08-29 08:55:16 -07002590 if (VDBG) log("handleConnectivityChange: resetting curLp=" + curLp);
Robert Greenwalt80eb63b2013-05-23 18:33:06 -07002591 for (String iface : curLp.getAllInterfaceNames()) {
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002592 if (TextUtils.isEmpty(iface) == false) {
2593 if (resetMask != 0) {
2594 if (DBG) log("resetConnections(" + iface + ", " + resetMask + ")");
2595 NetworkUtils.resetConnections(iface, resetMask);
Chia-chi Yeh0c074e62011-08-15 15:19:40 -07002596
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002597 // Tell VPN the interface is down. It is a temporary
2598 // but effective fix to make VPN aware of the change.
2599 if ((resetMask & NetworkUtils.RESET_IPV4_ADDRESSES) != 0) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07002600 synchronized(mVpns) {
2601 for (int i = 0; i < mVpns.size(); i++) {
2602 mVpns.valueAt(i).interfaceStatusChanged(iface, false);
2603 }
2604 }
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002605 }
Chia-chi Yeh0c074e62011-08-15 15:19:40 -07002606 }
Lorenzo Colitti4aa9bcf2013-03-20 19:22:58 +09002607 if (resetDns) {
2608 flushVmDnsCache();
2609 if (VDBG) log("resetting DNS cache for " + iface);
2610 try {
2611 mNetd.flushInterfaceDnsCache(iface);
2612 } catch (Exception e) {
2613 // never crash - catch them all
2614 if (DBG) loge("Exception resetting dns cache: " + e);
2615 }
Robert Greenwaltf125a092011-08-15 12:31:55 -07002616 }
Robert Greenwalt80eb63b2013-05-23 18:33:06 -07002617 } else {
2618 loge("Can't reset connection for type "+netType);
Robert Greenwaltf125a092011-08-15 12:31:55 -07002619 }
Robert Greenwaltec896c62011-06-15 12:22:07 -07002620 }
2621 }
2622 }
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05002623
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +09002624 // Update 464xlat state.
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +09002625 NetworkStateTracker tracker = mNetTrackers[netType];
2626 if (mClat.requiresClat(netType, tracker)) {
Wink Saville948282b2013-08-29 08:55:16 -07002627
Lorenzo Colittid2ef1e52013-03-28 14:13:43 +09002628 // If the connection was previously using clat, but is not using it now, stop the clat
2629 // daemon. Normally, this happens automatically when the connection disconnects, but if
2630 // the disconnect is not reported, or if the connection's LinkProperties changed for
2631 // some other reason (e.g., handoff changes the IP addresses on the link), it would
2632 // still be running. If it's not running, then stopping it is a no-op.
2633 if (Nat464Xlat.isRunningClat(curLp) && !Nat464Xlat.isRunningClat(newLp)) {
2634 mClat.stopClat();
2635 }
2636 // If the link requires clat to be running, then start the daemon now.
Lorenzo Colitti13c9fde2013-03-15 04:22:37 +09002637 if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
2638 mClat.startClat(tracker);
2639 } else {
2640 mClat.stopClat();
2641 }
2642 }
2643
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05002644 // TODO: Temporary notifying upstread change to Tethering.
2645 // @see bug/4455071
2646 /** Notify TetheringService if interface name has been changed. */
2647 if (TextUtils.equals(mNetTrackers[netType].getNetworkInfo().getReason(),
Wink Savillea639b312012-07-10 12:37:54 -07002648 PhoneConstants.REASON_LINK_PROPERTIES_CHANGED)) {
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05002649 if (isTetheringSupported()) {
2650 mTethering.handleTetherIfaceChange();
2651 }
2652 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002653 }
2654
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002655 /**
2656 * Add and remove routes using the old properties (null if not previously connected),
2657 * new properties (null if becoming disconnected). May even be double null, which
2658 * is a noop.
2659 * Uses isLinkDefault to determine if default routes should be set or conversely if
2660 * host routes should be set to the dns servers
Robert Greenwaltf125a092011-08-15 12:31:55 -07002661 * returns a boolean indicating the routes changed
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002662 */
Robert Greenwaltf125a092011-08-15 12:31:55 -07002663 private boolean updateRoutes(LinkProperties newLp, LinkProperties curLp,
Chad Brubakerf336d722013-07-15 16:34:04 -07002664 boolean isLinkDefault, boolean exempt) {
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002665 Collection<RouteInfo> routesToAdd = null;
Robert Greenwaltad55d352011-07-22 11:55:33 -07002666 CompareResult<InetAddress> dnsDiff = new CompareResult<InetAddress>();
2667 CompareResult<RouteInfo> routeDiff = new CompareResult<RouteInfo>();
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002668 if (curLp != null) {
2669 // check for the delta between the current set and the new
Lorenzo Colittid1e0fae2013-07-31 23:23:21 +09002670 routeDiff = curLp.compareAllRoutes(newLp);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002671 dnsDiff = curLp.compareDnses(newLp);
Robert Greenwaltad55d352011-07-22 11:55:33 -07002672 } else if (newLp != null) {
Lorenzo Colittif83d90c2013-03-15 13:58:38 +09002673 routeDiff.added = newLp.getAllRoutes();
Robert Greenwaltad55d352011-07-22 11:55:33 -07002674 dnsDiff.added = newLp.getDnses();
Irfan Sheriffd649c122010-06-09 15:39:36 -07002675 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002676
Robert Greenwaltf125a092011-08-15 12:31:55 -07002677 boolean routesChanged = (routeDiff.removed.size() != 0 || routeDiff.added.size() != 0);
2678
Robert Greenwaltad55d352011-07-22 11:55:33 -07002679 for (RouteInfo r : routeDiff.removed) {
2680 if (isLinkDefault || ! r.isDefaultRoute()) {
Wink Saville948282b2013-08-29 08:55:16 -07002681 if (VDBG) log("updateRoutes: default remove route r=" + r);
Robert Greenwalt3b28e9a2011-11-02 14:37:19 -07002682 removeRoute(curLp, r, TO_DEFAULT_TABLE);
2683 }
2684 if (isLinkDefault == false) {
2685 // remove from a secondary route table
2686 removeRoute(curLp, r, TO_SECONDARY_TABLE);
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002687 }
Robert Greenwaltad55d352011-07-22 11:55:33 -07002688 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002689
Robert Greenwalt0a46db52011-07-14 14:28:05 -07002690 if (!isLinkDefault) {
2691 // handle DNS routes
Robert Greenwaltf125a092011-08-15 12:31:55 -07002692 if (routesChanged) {
Robert Greenwaltad55d352011-07-22 11:55:33 -07002693 // routes changed - remove all old dns entries and add new
2694 if (curLp != null) {
2695 for (InetAddress oldDns : curLp.getDnses()) {
2696 removeRouteToAddress(curLp, oldDns);
2697 }
2698 }
2699 if (newLp != null) {
2700 for (InetAddress newDns : newLp.getDnses()) {
Chad Brubakerf336d722013-07-15 16:34:04 -07002701 addRouteToAddress(newLp, newDns, exempt);
Robert Greenwaltad55d352011-07-22 11:55:33 -07002702 }
Robert Greenwaltedcb4f92011-03-22 18:47:42 -07002703 }
Robert Greenwaltf125a092011-08-15 12:31:55 -07002704 } else {
2705 // no change in routes, check for change in dns themselves
2706 for (InetAddress oldDns : dnsDiff.removed) {
2707 removeRouteToAddress(curLp, oldDns);
2708 }
2709 for (InetAddress newDns : dnsDiff.added) {
Chad Brubakerf336d722013-07-15 16:34:04 -07002710 addRouteToAddress(newLp, newDns, exempt);
Robert Greenwaltf125a092011-08-15 12:31:55 -07002711 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002712 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002713 }
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002714
2715 for (RouteInfo r : routeDiff.added) {
2716 if (isLinkDefault || ! r.isDefaultRoute()) {
Chad Brubakerf336d722013-07-15 16:34:04 -07002717 addRoute(newLp, r, TO_DEFAULT_TABLE, exempt);
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002718 } else {
2719 // add to a secondary route table
Chad Brubakerf336d722013-07-15 16:34:04 -07002720 addRoute(newLp, r, TO_SECONDARY_TABLE, UNEXEMPT);
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002721
2722 // many radios add a default route even when we don't want one.
2723 // remove the default route unless somebody else has asked for it
2724 String ifaceName = newLp.getInterfaceName();
Chad Brubakerf336d722013-07-15 16:34:04 -07002725 synchronized (mRoutesLock) {
2726 if (!TextUtils.isEmpty(ifaceName) && !mAddedRoutes.contains(r)) {
2727 if (VDBG) log("Removing " + r + " for interface " + ifaceName);
2728 try {
2729 mNetd.removeRoute(ifaceName, r);
2730 } catch (Exception e) {
2731 // never crash - catch them all
2732 if (DBG) loge("Exception trying to remove a route: " + e);
2733 }
Robert Greenwalt979ee3c2013-04-05 16:49:32 -07002734 }
2735 }
2736 }
2737 }
2738
Robert Greenwaltf125a092011-08-15 12:31:55 -07002739 return routesChanged;
Irfan Sheriffd649c122010-06-09 15:39:36 -07002740 }
2741
sy.yun9d9b74a2013-09-02 05:24:09 +09002742 /**
2743 * Reads the network specific MTU size from reources.
2744 * and set it on it's iface.
2745 */
2746 private void updateMtuSizeSettings(NetworkStateTracker nt) {
2747 final String iface = nt.getLinkProperties().getInterfaceName();
2748 final int mtu = nt.getLinkProperties().getMtu();
2749
2750 if (mtu < 68 || mtu > 10000) {
Patrick Tjina45610f2014-02-19 11:28:08 -08002751 loge("Unexpected mtu value: " + mtu + ", " + nt);
sy.yun9d9b74a2013-09-02 05:24:09 +09002752 return;
2753 }
2754
2755 try {
2756 if (VDBG) log("Setting MTU size: " + iface + ", " + mtu);
2757 mNetd.setMtu(iface, mtu);
2758 } catch (Exception e) {
2759 Slog.e(TAG, "exception in setMtu()" + e);
2760 }
2761 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002762
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002763 /**
Irfan Sheriffd649c122010-06-09 15:39:36 -07002764 * Reads the network specific TCP buffer sizes from SystemProperties
2765 * net.tcp.buffersize.[default|wifi|umts|edge|gprs] and set them for system
2766 * wide use
2767 */
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002768 private void updateNetworkSettings(NetworkStateTracker nt) {
Irfan Sheriffd649c122010-06-09 15:39:36 -07002769 String key = nt.getTcpBufferSizesPropName();
Jeff Sharkey899223b2012-08-04 15:24:58 -07002770 String bufferSizes = key == null ? null : SystemProperties.get(key);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002771
Jeff Sharkey899223b2012-08-04 15:24:58 -07002772 if (TextUtils.isEmpty(bufferSizes)) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07002773 if (VDBG) log(key + " not found in system properties. Using defaults");
Irfan Sheriffd649c122010-06-09 15:39:36 -07002774
2775 // Setting to default values so we won't be stuck to previous values
2776 key = "net.tcp.buffersize.default";
2777 bufferSizes = SystemProperties.get(key);
2778 }
2779
2780 // Set values in kernel
2781 if (bufferSizes.length() != 0) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07002782 if (VDBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002783 log("Setting TCP values: [" + bufferSizes
Irfan Sheriffd649c122010-06-09 15:39:36 -07002784 + "] which comes from [" + key + "]");
2785 }
2786 setBufferSize(bufferSizes);
2787 }
JP Abgrall32d1ac4d2014-02-21 12:05:20 -08002788
2789 final String defaultRwndKey = "net.tcp.default_init_rwnd";
2790 int defaultRwndValue = SystemProperties.getInt(defaultRwndKey, 0);
2791 Integer rwndValue = Settings.Global.getInt(mContext.getContentResolver(),
2792 Settings.Global.TCP_DEFAULT_INIT_RWND, defaultRwndValue);
2793 final String sysctlKey = "sys.sysctl.tcp_def_init_rwnd";
2794 if (rwndValue != 0) {
2795 SystemProperties.set(sysctlKey, rwndValue.toString());
2796 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07002797 }
2798
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07002799 /**
Irfan Sheriffd649c122010-06-09 15:39:36 -07002800 * Writes TCP buffer sizes to /sys/kernel/ipv4/tcp_[r/w]mem_[min/def/max]
2801 * which maps to /proc/sys/net/ipv4/tcp_rmem and tcpwmem
2802 *
2803 * @param bufferSizes in the format of "readMin, readInitial, readMax,
2804 * writeMin, writeInitial, writeMax"
2805 */
2806 private void setBufferSize(String bufferSizes) {
2807 try {
2808 String[] values = bufferSizes.split(",");
2809
2810 if (values.length == 6) {
2811 final String prefix = "/sys/kernel/ipv4/tcp_";
Mike Lockwoodda8bb742011-05-28 13:24:04 -04002812 FileUtils.stringToFile(prefix + "rmem_min", values[0]);
2813 FileUtils.stringToFile(prefix + "rmem_def", values[1]);
2814 FileUtils.stringToFile(prefix + "rmem_max", values[2]);
2815 FileUtils.stringToFile(prefix + "wmem_min", values[3]);
2816 FileUtils.stringToFile(prefix + "wmem_def", values[4]);
2817 FileUtils.stringToFile(prefix + "wmem_max", values[5]);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002818 } else {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002819 loge("Invalid buffersize string: " + bufferSizes);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002820 }
2821 } catch (IOException e) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002822 loge("Can't set tcp buffer sizes:" + e);
Irfan Sheriffd649c122010-06-09 15:39:36 -07002823 }
2824 }
2825
Robert Greenwalt42acef32009-08-12 16:08:25 -07002826 /**
2827 * Adjust the per-process dns entries (net.dns<x>.<pid>) based
2828 * on the highest priority active net which this process requested.
2829 * If there aren't any, clear it out
2830 */
Mattias Falk8b47b362011-08-23 14:15:13 +02002831 private void reassessPidDns(int pid, boolean doBump)
Robert Greenwalt42acef32009-08-12 16:08:25 -07002832 {
Mattias Falk8b47b362011-08-23 14:15:13 +02002833 if (VDBG) log("reassessPidDns for pid " + pid);
2834 Integer myPid = new Integer(pid);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002835 for(int i : mPriorityList) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002836 if (mNetConfigs[i].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002837 continue;
2838 }
2839 NetworkStateTracker nt = mNetTrackers[i];
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002840 if (nt.getNetworkInfo().isConnected() &&
2841 !nt.isTeardownRequested()) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07002842 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07002843 if (p == null) continue;
Mattias Falk8b47b362011-08-23 14:15:13 +02002844 if (mNetRequestersPids[i].contains(myPid)) {
2845 try {
2846 mNetd.setDnsInterfaceForPid(p.getInterfaceName(), pid);
2847 } catch (Exception e) {
2848 Slog.e(TAG, "exception reasseses pid dns: " + e);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002849 }
Mattias Falk8b47b362011-08-23 14:15:13 +02002850 return;
Robert Greenwalt42acef32009-08-12 16:08:25 -07002851 }
2852 }
2853 }
2854 // nothing found - delete
Mattias Falk8b47b362011-08-23 14:15:13 +02002855 try {
2856 mNetd.clearDnsInterfaceForPid(pid);
2857 } catch (Exception e) {
2858 Slog.e(TAG, "exception clear interface from pid: " + e);
Robert Greenwalt42acef32009-08-12 16:08:25 -07002859 }
2860 }
2861
Mattias Falk8b47b362011-08-23 14:15:13 +02002862 private void flushVmDnsCache() {
Robert Greenwalt03595d02010-11-02 14:08:23 -07002863 /*
2864 * Tell the VMs to toss their DNS caches
2865 */
2866 Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
2867 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Stan Chesnutt3d1db862011-01-05 17:14:03 -08002868 /*
2869 * Connectivity events can happen before boot has completed ...
2870 */
2871 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07002872 final long ident = Binder.clearCallingIdentity();
2873 try {
2874 mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
2875 } finally {
2876 Binder.restoreCallingIdentity(ident);
2877 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002878 }
2879
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002880 // Caller must grab mDnsLock.
Mattias Falk8b47b362011-08-23 14:15:13 +02002881 private void updateDnsLocked(String network, String iface,
Chad Brubaker20a7e882013-07-23 17:13:36 -07002882 Collection<InetAddress> dnses, String domains, boolean defaultDns) {
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002883 int last = 0;
2884 if (dnses.size() == 0 && mDefaultDns != null) {
Mattias Falk8b47b362011-08-23 14:15:13 +02002885 dnses = new ArrayList();
2886 dnses.add(mDefaultDns);
2887 if (DBG) {
2888 loge("no dns provided for " + network + " - using " + mDefaultDns.getHostAddress());
Robert Greenwalt63837f42013-01-19 00:34:07 +00002889 }
Robert Greenwalt63837f42013-01-19 00:34:07 +00002890 }
2891
Mattias Falk8b47b362011-08-23 14:15:13 +02002892 try {
2893 mNetd.setDnsServersForInterface(iface, NetworkUtils.makeStrings(dnses), domains);
Chad Brubaker20a7e882013-07-23 17:13:36 -07002894 if (defaultDns) {
2895 mNetd.setDefaultInterfaceForDns(iface);
2896 }
2897
Robert Greenwalt0dd19a82013-02-11 15:25:10 -08002898 for (InetAddress dns : dnses) {
2899 ++last;
2900 String key = "net.dns" + last;
2901 String value = dns.getHostAddress();
2902 SystemProperties.set(key, value);
2903 }
2904 for (int i = last + 1; i <= mNumDnsEntries; ++i) {
2905 String key = "net.dns" + i;
2906 SystemProperties.set(key, "");
2907 }
2908 mNumDnsEntries = last;
Mattias Falk8b47b362011-08-23 14:15:13 +02002909 } catch (Exception e) {
Robert Greenwalt69887e82013-09-24 11:05:57 -07002910 loge("exception setting default dns interface: " + e);
Robert Greenwalt63837f42013-01-19 00:34:07 +00002911 }
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002912 }
2913
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002914 private void handleDnsConfigurationChange(int netType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002915 // add default net's dns entries
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002916 NetworkStateTracker nt = mNetTrackers[netType];
2917 if (nt != null && nt.getNetworkInfo().isConnected() && !nt.isTeardownRequested()) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07002918 LinkProperties p = nt.getLinkProperties();
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002919 if (p == null) return;
2920 Collection<InetAddress> dnses = p.getDnses();
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07002921 if (mNetConfigs[netType].isDefault()) {
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07002922 String network = nt.getNetworkInfo().getTypeName();
2923 synchronized (mDnsLock) {
Chad Brubakerb98703e2013-07-23 17:44:41 -07002924 updateDnsLocked(network, p.getInterfaceName(), dnses, p.getDomains(), true);
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002925 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002926 } else {
Robert Greenwalta10b7fd2011-07-25 16:06:25 -07002927 try {
Robert Greenwaltc59c6da2011-07-27 10:00:36 -07002928 mNetd.setDnsServersForInterface(p.getInterfaceName(),
Robert Greenwalt8058f622012-11-09 10:52:27 -08002929 NetworkUtils.makeStrings(dnses), p.getDomains());
Robert Greenwalta10b7fd2011-07-25 16:06:25 -07002930 } catch (Exception e) {
Robert Greenwalt8beff952011-12-13 15:26:02 -08002931 if (DBG) loge("exception setting dns servers: " + e);
Robert Greenwalta10b7fd2011-07-25 16:06:25 -07002932 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07002933 // set per-pid dns for attached secondary nets
Mattias Falk8b47b362011-08-23 14:15:13 +02002934 List<Integer> pids = mNetRequestersPids[netType];
2935 for (Integer pid : pids) {
2936 try {
2937 mNetd.setDnsInterfaceForPid(p.getInterfaceName(), pid);
2938 } catch (Exception e) {
2939 Slog.e(TAG, "exception setting interface for pid: " + e);
2940 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002941 }
2942 }
Mattias Falk8b47b362011-08-23 14:15:13 +02002943 flushVmDnsCache();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002944 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07002945 }
2946
Robert Greenwaltf2102f72011-05-03 19:02:44 -07002947 private int getRestoreDefaultNetworkDelay(int networkType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07002948 String restoreDefaultNetworkDelayStr = SystemProperties.get(
2949 NETWORK_RESTORE_DELAY_PROP_NAME);
2950 if(restoreDefaultNetworkDelayStr != null &&
2951 restoreDefaultNetworkDelayStr.length() != 0) {
2952 try {
2953 return Integer.valueOf(restoreDefaultNetworkDelayStr);
2954 } catch (NumberFormatException e) {
2955 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002956 }
Robert Greenwaltf2102f72011-05-03 19:02:44 -07002957 // if the system property isn't set, use the value for the apn type
2958 int ret = RESTORE_DEFAULT_NETWORK_DELAY;
2959
2960 if ((networkType <= ConnectivityManager.MAX_NETWORK_TYPE) &&
2961 (mNetConfigs[networkType] != null)) {
2962 ret = mNetConfigs[networkType].restoreTime;
2963 }
2964 return ret;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002965 }
2966
2967 @Override
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002968 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
2969 final IndentingPrintWriter pw = new IndentingPrintWriter(writer, " ");
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002970 if (mContext.checkCallingOrSelfPermission(
2971 android.Manifest.permission.DUMP)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002972 != PackageManager.PERMISSION_GRANTED) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07002973 pw.println("Permission Denial: can't dump ConnectivityService " +
2974 "from from pid=" + Binder.getCallingPid() + ", uid=" +
2975 Binder.getCallingUid());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002976 return;
2977 }
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002978
2979 // TODO: add locking to get atomic snapshot
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002980 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002981 for (int i = 0; i < mNetTrackers.length; i++) {
2982 final NetworkStateTracker nst = mNetTrackers[i];
Robert Greenwaltb9285352009-12-21 18:24:07 -08002983 if (nst != null) {
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002984 pw.println("NetworkStateTracker for " + getNetworkTypeName(i) + ":");
2985 pw.increaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08002986 if (nst.getNetworkInfo().isConnected()) {
2987 pw.println("Active network: " + nst.getNetworkInfo().
2988 getTypeName());
2989 }
2990 pw.println(nst.getNetworkInfo());
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002991 pw.println(nst.getLinkProperties());
Robert Greenwaltb9285352009-12-21 18:24:07 -08002992 pw.println(nst);
2993 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07002994 pw.decreaseIndent();
Robert Greenwalt42acef32009-08-12 16:08:25 -07002995 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002996 }
Robert Greenwaltb9285352009-12-21 18:24:07 -08002997
Dianne Hackborn77b987f2014-02-26 16:20:52 -08002998 pw.print("Active default network: "); pw.println(getNetworkTypeName(mActiveDefaultNetwork));
2999 pw.println();
3000
Robert Greenwaltb9285352009-12-21 18:24:07 -08003001 pw.println("Network Requester Pids:");
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003002 pw.increaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08003003 for (int net : mPriorityList) {
3004 String pidString = net + ": ";
Mattias Falk8b47b362011-08-23 14:15:13 +02003005 for (Integer pid : mNetRequestersPids[net]) {
Robert Greenwaltb9285352009-12-21 18:24:07 -08003006 pidString = pidString + pid.toString() + ", ";
3007 }
3008 pw.println(pidString);
3009 }
3010 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003011 pw.decreaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08003012
3013 pw.println("FeatureUsers:");
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003014 pw.increaseIndent();
Robert Greenwaltb9285352009-12-21 18:24:07 -08003015 for (Object requester : mFeatureUsers) {
3016 pw.println(requester.toString());
3017 }
3018 pw.println();
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003019 pw.decreaseIndent();
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003020
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003021 synchronized (this) {
3022 pw.println("NetworkTranstionWakeLock is currently " +
3023 (mNetTransitionWakeLock.isHeld() ? "" : "not ") + "held.");
3024 pw.println("It was last requested for "+mNetTransitionWakeLockCausedBy);
3025 }
3026 pw.println();
3027
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003028 mTethering.dump(fd, pw, args);
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003029
3030 if (mInetLog != null) {
3031 pw.println();
3032 pw.println("Inet condition reports:");
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003033 pw.increaseIndent();
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003034 for(int i = 0; i < mInetLog.size(); i++) {
3035 pw.println(mInetLog.get(i));
3036 }
Jeff Sharkeye6e61972012-09-14 13:47:51 -07003037 pw.decreaseIndent();
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003038 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003039 }
3040
Robert Greenwalt42acef32009-08-12 16:08:25 -07003041 // must be stateless - things change under us.
Jeff Sharkey4c628eb2012-07-23 13:19:46 -07003042 private class NetworkStateTrackerHandler extends Handler {
3043 public NetworkStateTrackerHandler(Looper looper) {
Wink Savillebb08caf2010-09-02 19:23:52 -07003044 super(looper);
3045 }
3046
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003047 @Override
3048 public void handleMessage(Message msg) {
3049 NetworkInfo info;
3050 switch (msg.what) {
Wink Saville948282b2013-08-29 08:55:16 -07003051 case NetworkStateTracker.EVENT_STATE_CHANGED: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003052 info = (NetworkInfo) msg.obj;
Robert Greenwalt511288a2009-12-07 11:33:18 -08003053 NetworkInfo.State state = info.getState();
Robert Greenwalt511288a2009-12-07 11:33:18 -08003054
Wink Savillec9acde92011-09-21 11:05:43 -07003055 if (VDBG || (state == NetworkInfo.State.CONNECTED) ||
Wink Saville67c38212013-09-05 12:02:25 -07003056 (state == NetworkInfo.State.DISCONNECTED) ||
3057 (state == NetworkInfo.State.SUSPENDED)) {
Wink Savillec9acde92011-09-21 11:05:43 -07003058 log("ConnectivityChange for " +
Robert Greenwalt86e9e552009-07-16 17:21:39 -07003059 info.getTypeName() + ": " +
Robert Greenwalt511288a2009-12-07 11:33:18 -08003060 state + "/" + info.getDetailedState());
Wink Savillec9acde92011-09-21 11:05:43 -07003061 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003062
Wink Saville948282b2013-08-29 08:55:16 -07003063 // Since mobile has the notion of a network/apn that can be used for
3064 // provisioning we need to check every time we're connected as
3065 // CaptiveProtalTracker won't detected it because DCT doesn't report it
3066 // as connected as ACTION_ANY_DATA_CONNECTION_STATE_CHANGED instead its
3067 // reported as ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN. Which
3068 // is received by MDST and sent here as EVENT_STATE_CHANGED.
3069 if (ConnectivityManager.isNetworkTypeMobile(info.getType())
Wink Savillefde1ac92013-07-16 17:16:37 -07003070 && (0 != Settings.Global.getInt(mContext.getContentResolver(),
3071 Settings.Global.DEVICE_PROVISIONED, 0))
Wink Saville127beff2013-09-14 09:04:53 -07003072 && (((state == NetworkInfo.State.CONNECTED)
3073 && (info.getType() == ConnectivityManager.TYPE_MOBILE))
3074 || info.isConnectedToProvisioningNetwork())) {
3075 log("ConnectivityChange checkMobileProvisioning for"
3076 + " TYPE_MOBILE or ProvisioningNetwork");
Wink Saville948282b2013-08-29 08:55:16 -07003077 checkMobileProvisioning(CheckMp.MAX_TIMEOUT_MS);
Wink Savillefde1ac92013-07-16 17:16:37 -07003078 }
3079
Jeff Sharkey2528b502012-11-09 15:57:02 -08003080 EventLogTags.writeConnectivityStateChanged(
3081 info.getType(), info.getSubtype(), info.getDetailedState().ordinal());
Robert Greenwalt86e9e552009-07-16 17:21:39 -07003082
3083 if (info.getDetailedState() ==
3084 NetworkInfo.DetailedState.FAILED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003085 handleConnectionFailure(info);
Wink Saville67c38212013-09-05 12:02:25 -07003086 } else if (info.isConnectedToProvisioningNetwork()) {
Wink Saville948282b2013-08-29 08:55:16 -07003087 /**
3088 * TODO: Create ConnectivityManager.TYPE_MOBILE_PROVISIONING
3089 * for now its an in between network, its a network that
3090 * is actually a default network but we don't want it to be
3091 * announced as such to keep background applications from
3092 * trying to use it. It turns out that some still try so we
3093 * take the additional step of clearing any default routes
3094 * to the link that may have incorrectly setup by the lower
3095 * levels.
3096 */
3097 LinkProperties lp = getLinkProperties(info.getType());
3098 if (DBG) {
3099 log("EVENT_STATE_CHANGED: connected to provisioning network, lp=" + lp);
3100 }
3101
3102 // Clear any default routes setup by the radio so
3103 // any activity by applications trying to use this
3104 // connection will fail until the provisioning network
3105 // is enabled.
3106 for (RouteInfo r : lp.getRoutes()) {
3107 removeRoute(lp, r, TO_DEFAULT_TABLE);
3108 }
Robert Greenwalt511288a2009-12-07 11:33:18 -08003109 } else if (state == NetworkInfo.State.DISCONNECTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003110 handleDisconnect(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08003111 } else if (state == NetworkInfo.State.SUSPENDED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003112 // TODO: need to think this over.
Robert Greenwalt86e9e552009-07-16 17:21:39 -07003113 // the logic here is, handle SUSPENDED the same as
3114 // DISCONNECTED. The only difference being we are
3115 // broadcasting an intent with NetworkInfo that's
3116 // suspended. This allows the applications an
3117 // opportunity to handle DISCONNECTED and SUSPENDED
3118 // differently, or not.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003119 handleDisconnect(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08003120 } else if (state == NetworkInfo.State.CONNECTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003121 handleConnect(info);
3122 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003123 if (mLockdownTracker != null) {
3124 mLockdownTracker.onNetworkInfoChanged(info);
3125 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003126 break;
Wink Saville948282b2013-08-29 08:55:16 -07003127 }
3128 case NetworkStateTracker.EVENT_CONFIGURATION_CHANGED: {
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07003129 info = (NetworkInfo) msg.obj;
Kazuhiro Ondo1ccb10e2011-06-22 21:10:34 -05003130 // TODO: Temporary allowing network configuration
3131 // change not resetting sockets.
3132 // @see bug/4455071
3133 handleConnectivityChange(info.getType(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003134 break;
Wink Saville948282b2013-08-29 08:55:16 -07003135 }
3136 case NetworkStateTracker.EVENT_NETWORK_SUBTYPE_CHANGED: {
Robert Greenwaltd14e1762012-08-20 11:15:39 -07003137 info = (NetworkInfo) msg.obj;
Wink Saville948282b2013-08-29 08:55:16 -07003138 int type = info.getType();
Robert Greenwaltd49f64c2014-02-28 16:44:00 -08003139 if (mNetConfigs[type].isDefault()) updateNetworkSettings(mNetTrackers[type]);
Robert Greenwaltd14e1762012-08-20 11:15:39 -07003140 break;
Wink Saville948282b2013-08-29 08:55:16 -07003141 }
Jeff Sharkey4c628eb2012-07-23 13:19:46 -07003142 }
3143 }
3144 }
3145
3146 private class InternalHandler extends Handler {
3147 public InternalHandler(Looper looper) {
3148 super(looper);
3149 }
3150
3151 @Override
3152 public void handleMessage(Message msg) {
3153 NetworkInfo info;
3154 switch (msg.what) {
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003155 case EVENT_CLEAR_NET_TRANSITION_WAKELOCK: {
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003156 String causedBy = null;
3157 synchronized (ConnectivityService.this) {
3158 if (msg.arg1 == mNetTransitionWakeLockSerialNumber &&
3159 mNetTransitionWakeLock.isHeld()) {
3160 mNetTransitionWakeLock.release();
3161 causedBy = mNetTransitionWakeLockCausedBy;
3162 }
3163 }
3164 if (causedBy != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08003165 log("NetTransition Wakelock for " + causedBy + " released by timeout");
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003166 }
Robert Greenwalt057d5e92010-09-09 14:05:10 -07003167 break;
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003168 }
3169 case EVENT_RESTORE_DEFAULT_NETWORK: {
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07003170 FeatureUser u = (FeatureUser)msg.obj;
3171 u.expire();
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003172 break;
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003173 }
3174 case EVENT_INET_CONDITION_CHANGE: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003175 int netType = msg.arg1;
3176 int condition = msg.arg2;
3177 handleInetConditionChange(netType, condition);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003178 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003179 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003180 case EVENT_INET_CONDITION_HOLD_END: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003181 int netType = msg.arg1;
3182 int sequence = msg.arg2;
Wink Saville5b7573e2013-01-31 00:30:13 +00003183 handleInetConditionHoldEnd(netType, sequence);
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003184 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003185 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003186 case EVENT_SET_NETWORK_PREFERENCE: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003187 int preference = msg.arg1;
3188 handleSetNetworkPreference(preference);
3189 break;
3190 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003191 case EVENT_SET_MOBILE_DATA: {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003192 boolean enabled = (msg.arg1 == ENABLED);
3193 handleSetMobileData(enabled);
3194 break;
3195 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003196 case EVENT_APPLY_GLOBAL_HTTP_PROXY: {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003197 handleDeprecatedGlobalHttpProxy();
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07003198 break;
3199 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003200 case EVENT_SET_DEPENDENCY_MET: {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07003201 boolean met = (msg.arg1 == ENABLED);
3202 handleSetDependencyMet(msg.arg2, met);
3203 break;
Robert Greenwalt434203a2010-10-11 16:00:27 -07003204 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003205 case EVENT_SEND_STICKY_BROADCAST_INTENT: {
Wink Saville628b0852011-08-04 15:01:58 -07003206 Intent intent = (Intent)msg.obj;
Wink Saville628b0852011-08-04 15:01:58 -07003207 sendStickyBroadcast(intent);
3208 break;
3209 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003210 case EVENT_SET_POLICY_DATA_ENABLE: {
3211 final int networkType = msg.arg1;
3212 final boolean enabled = msg.arg2 == ENABLED;
3213 handleSetPolicyDataEnable(networkType, enabled);
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003214 break;
3215 }
3216 case EVENT_VPN_STATE_CHANGED: {
3217 if (mLockdownTracker != null) {
3218 mLockdownTracker.onVpnStateChanged((NetworkInfo) msg.obj);
3219 }
3220 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003221 }
Wink Savilleab9321d2013-06-29 21:10:57 -07003222 case EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: {
3223 int tag = mEnableFailFastMobileDataTag.get();
3224 if (msg.arg1 == tag) {
3225 MobileDataStateTracker mobileDst =
3226 (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE];
3227 if (mobileDst != null) {
3228 mobileDst.setEnableFailFastMobileData(msg.arg2);
3229 }
3230 } else {
3231 log("EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: stale arg1:" + msg.arg1
3232 + " != tag:" + tag);
3233 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003234 break;
Wink Savilleab9321d2013-06-29 21:10:57 -07003235 }
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003236 case EVENT_SAMPLE_INTERVAL_ELAPSED: {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07003237 handleNetworkSamplingTimeout();
3238 break;
Sreeram Ramachandranb1486ae2013-08-27 11:41:19 -07003239 }
Jason Monkdecd2952013-10-10 14:02:51 -04003240 case EVENT_PROXY_HAS_CHANGED: {
Jason Monk207900c2014-04-25 15:00:09 -04003241 handleApplyDefaultProxy((ProxyInfo)msg.obj);
Jason Monkdecd2952013-10-10 14:02:51 -04003242 break;
3243 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003244 }
3245 }
3246 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003247
3248 // javadoc from interface
Robert Greenwalt5a735062010-03-02 17:25:02 -08003249 public int tether(String iface) {
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003250 enforceTetherChangePermission();
Robert Greenwalt5a735062010-03-02 17:25:02 -08003251
3252 if (isTetheringSupported()) {
3253 return mTethering.tether(iface);
3254 } else {
3255 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3256 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003257 }
3258
3259 // javadoc from interface
Robert Greenwalt5a735062010-03-02 17:25:02 -08003260 public int untether(String iface) {
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003261 enforceTetherChangePermission();
Robert Greenwalt5a735062010-03-02 17:25:02 -08003262
3263 if (isTetheringSupported()) {
3264 return mTethering.untether(iface);
3265 } else {
3266 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3267 }
3268 }
3269
3270 // javadoc from interface
3271 public int getLastTetherError(String iface) {
3272 enforceTetherAccessPermission();
3273
3274 if (isTetheringSupported()) {
3275 return mTethering.getLastTetherError(iface);
3276 } else {
3277 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3278 }
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003279 }
3280
3281 // TODO - proper iface API for selection by property, inspection, etc
3282 public String[] getTetherableUsbRegexs() {
3283 enforceTetherAccessPermission();
3284 if (isTetheringSupported()) {
3285 return mTethering.getTetherableUsbRegexs();
3286 } else {
3287 return new String[0];
3288 }
3289 }
3290
3291 public String[] getTetherableWifiRegexs() {
3292 enforceTetherAccessPermission();
3293 if (isTetheringSupported()) {
3294 return mTethering.getTetherableWifiRegexs();
3295 } else {
3296 return new String[0];
3297 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003298 }
3299
Danica Chang6fdd0c62010-08-11 14:54:43 -07003300 public String[] getTetherableBluetoothRegexs() {
3301 enforceTetherAccessPermission();
3302 if (isTetheringSupported()) {
3303 return mTethering.getTetherableBluetoothRegexs();
3304 } else {
3305 return new String[0];
3306 }
3307 }
3308
Mike Lockwood6c2260b2011-07-19 13:04:47 -07003309 public int setUsbTethering(boolean enable) {
Robert Greenwalt5a6bdc42013-02-15 10:56:35 -08003310 enforceTetherChangePermission();
Mike Lockwood6c2260b2011-07-19 13:04:47 -07003311 if (isTetheringSupported()) {
3312 return mTethering.setUsbTethering(enable);
3313 } else {
3314 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3315 }
3316 }
3317
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003318 // TODO - move iface listing, queries, etc to new module
3319 // javadoc from interface
3320 public String[] getTetherableIfaces() {
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003321 enforceTetherAccessPermission();
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003322 return mTethering.getTetherableIfaces();
3323 }
3324
3325 public String[] getTetheredIfaces() {
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003326 enforceTetherAccessPermission();
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08003327 return mTethering.getTetheredIfaces();
3328 }
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003329
Robert Greenwalt5a735062010-03-02 17:25:02 -08003330 public String[] getTetheringErroredIfaces() {
3331 enforceTetherAccessPermission();
3332 return mTethering.getErroredIfaces();
3333 }
3334
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003335 // if ro.tether.denied = true we default to no tethering
3336 // gservices could set the secure setting to 1 though to enable it on a build where it
3337 // had previously been turned off.
3338 public boolean isTetheringSupported() {
3339 enforceTetherAccessPermission();
3340 int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
Jeff Brownbf6f6f92012-09-25 15:03:20 -07003341 boolean tetherEnabledInSettings = (Settings.Global.getInt(mContext.getContentResolver(),
3342 Settings.Global.TETHER_SUPPORTED, defaultVal) != 0);
Robert Greenwaltc13368b2013-07-18 14:24:42 -07003343 return tetherEnabledInSettings && ((mTethering.getTetherableUsbRegexs().length != 0 ||
3344 mTethering.getTetherableWifiRegexs().length != 0 ||
3345 mTethering.getTetherableBluetoothRegexs().length != 0) &&
3346 mTethering.getUpstreamIfaceTypes().length != 0);
Robert Greenwalt2a091d72010-02-11 18:18:40 -08003347 }
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003348
3349 // An API NetworkStateTrackers can call when they lose their network.
3350 // This will automatically be cleared after X seconds or a network becomes CONNECTED,
3351 // whichever happens first. The timer is started by the first caller and not
3352 // restarted by subsequent callers.
3353 public void requestNetworkTransitionWakelock(String forWhom) {
3354 enforceConnectivityInternalPermission();
3355 synchronized (this) {
3356 if (mNetTransitionWakeLock.isHeld()) return;
3357 mNetTransitionWakeLockSerialNumber++;
3358 mNetTransitionWakeLock.acquire();
3359 mNetTransitionWakeLockCausedBy = forWhom;
3360 }
3361 mHandler.sendMessageDelayed(mHandler.obtainMessage(
Robert Greenwaltf3331232010-09-24 14:32:21 -07003362 EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07003363 mNetTransitionWakeLockSerialNumber, 0),
3364 mNetTransitionWakeLockTimeout);
3365 return;
3366 }
Robert Greenwaltca4306c2010-09-09 13:15:32 -07003367
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003368 // 100 percent is full good, 0 is full bad.
3369 public void reportInetCondition(int networkType, int percentage) {
Robert Greenwalt58d4c592011-08-02 17:18:41 -07003370 if (VDBG) log("reportNetworkCondition(" + networkType + ", " + percentage + ")");
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003371 mContext.enforceCallingOrSelfPermission(
3372 android.Manifest.permission.STATUS_BAR,
3373 "ConnectivityService");
3374
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07003375 if (DBG) {
3376 int pid = getCallingPid();
3377 int uid = getCallingUid();
3378 String s = pid + "(" + uid + ") reports inet is " +
3379 (percentage > 50 ? "connected" : "disconnected") + " (" + percentage + ") on " +
3380 "network Type " + networkType + " at " + GregorianCalendar.getInstance().getTime();
3381 mInetLog.add(s);
3382 while(mInetLog.size() > INET_CONDITION_LOG_MAX_SIZE) {
3383 mInetLog.remove(0);
3384 }
3385 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003386 mHandler.sendMessage(mHandler.obtainMessage(
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003387 EVENT_INET_CONDITION_CHANGE, networkType, percentage));
3388 }
3389
3390 private void handleInetConditionChange(int netType, int condition) {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003391 if (mActiveDefaultNetwork == -1) {
Wink Savillec9acde92011-09-21 11:05:43 -07003392 if (DBG) log("handleInetConditionChange: no active default network - ignore");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003393 return;
3394 }
3395 if (mActiveDefaultNetwork != netType) {
Wink Savillec9acde92011-09-21 11:05:43 -07003396 if (DBG) log("handleInetConditionChange: net=" + netType +
3397 " != default=" + mActiveDefaultNetwork + " - ignore");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003398 return;
3399 }
Wink Savillec9acde92011-09-21 11:05:43 -07003400 if (VDBG) {
3401 log("handleInetConditionChange: net=" +
3402 netType + ", condition=" + condition +
Wink Saville5b7573e2013-01-31 00:30:13 +00003403 ",mActiveDefaultNetwork=" + mActiveDefaultNetwork);
Wink Savillec9acde92011-09-21 11:05:43 -07003404 }
Wink Saville5b7573e2013-01-31 00:30:13 +00003405 mDefaultInetCondition = condition;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003406 int delay;
3407 if (mInetConditionChangeInFlight == false) {
Wink Savillec9acde92011-09-21 11:05:43 -07003408 if (VDBG) log("handleInetConditionChange: starting a change hold");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003409 // setup a new hold to debounce this
Wink Saville5b7573e2013-01-31 00:30:13 +00003410 if (mDefaultInetCondition > 50) {
Jeff Sharkey625239a2012-09-26 22:03:49 -07003411 delay = Settings.Global.getInt(mContext.getContentResolver(),
3412 Settings.Global.INET_CONDITION_DEBOUNCE_UP_DELAY, 500);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003413 } else {
Jeff Sharkey625239a2012-09-26 22:03:49 -07003414 delay = Settings.Global.getInt(mContext.getContentResolver(),
3415 Settings.Global.INET_CONDITION_DEBOUNCE_DOWN_DELAY, 3000);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003416 }
3417 mInetConditionChangeInFlight = true;
3418 mHandler.sendMessageDelayed(mHandler.obtainMessage(EVENT_INET_CONDITION_HOLD_END,
Wink Saville5b7573e2013-01-31 00:30:13 +00003419 mActiveDefaultNetwork, mDefaultConnectionSequence), delay);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003420 } else {
Wink Savillec9acde92011-09-21 11:05:43 -07003421 // we've set the new condition, when this hold ends that will get picked up
3422 if (VDBG) log("handleInetConditionChange: currently in hold - not setting new end evt");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003423 }
3424 }
3425
Wink Saville5b7573e2013-01-31 00:30:13 +00003426 private void handleInetConditionHoldEnd(int netType, int sequence) {
Wink Savillec9acde92011-09-21 11:05:43 -07003427 if (DBG) {
Wink Saville5b7573e2013-01-31 00:30:13 +00003428 log("handleInetConditionHoldEnd: net=" + netType +
3429 ", condition=" + mDefaultInetCondition +
3430 ", published condition=" + mDefaultInetConditionPublished);
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003431 }
3432 mInetConditionChangeInFlight = false;
3433
3434 if (mActiveDefaultNetwork == -1) {
Wink Savillec9acde92011-09-21 11:05:43 -07003435 if (DBG) log("handleInetConditionHoldEnd: no active default network - ignoring");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003436 return;
3437 }
3438 if (mDefaultConnectionSequence != sequence) {
Wink Savillec9acde92011-09-21 11:05:43 -07003439 if (DBG) log("handleInetConditionHoldEnd: event hold for obsolete network - ignoring");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003440 return;
3441 }
Wink Saville5b7573e2013-01-31 00:30:13 +00003442 // TODO: Figure out why this optimization sometimes causes a
3443 // change in mDefaultInetCondition to be missed and the
3444 // UI to not be updated.
3445 //if (mDefaultInetConditionPublished == mDefaultInetCondition) {
3446 // if (DBG) log("no change in condition - aborting");
3447 // return;
3448 //}
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003449 NetworkInfo networkInfo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
3450 if (networkInfo.isConnected() == false) {
Wink Savillec9acde92011-09-21 11:05:43 -07003451 if (DBG) log("handleInetConditionHoldEnd: default network not connected - ignoring");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003452 return;
3453 }
Wink Saville5b7573e2013-01-31 00:30:13 +00003454 mDefaultInetConditionPublished = mDefaultInetCondition;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07003455 sendInetConditionBroadcast(networkInfo);
3456 return;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07003457 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003458
Jason Monk207900c2014-04-25 15:00:09 -04003459 public ProxyInfo getProxy() {
Robert Greenwalte436e4f2013-02-22 14:57:00 -08003460 // this information is already available as a world read/writable jvm property
3461 // so this API change wouldn't have a benifit. It also breaks the passing
3462 // of proxy info to all the JVMs.
3463 // enforceAccessPermission();
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003464 synchronized (mProxyLock) {
Jason Monk207900c2014-04-25 15:00:09 -04003465 ProxyInfo ret = mGlobalProxy;
Jason Monk602b2322013-07-03 17:04:33 -04003466 if ((ret == null) && !mDefaultProxyDisabled) ret = mDefaultProxy;
3467 return ret;
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003468 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003469 }
3470
Jason Monk207900c2014-04-25 15:00:09 -04003471 public void setGlobalProxy(ProxyInfo proxyProperties) {
Robert Greenwalta9bebc22013-04-10 15:32:18 -07003472 enforceConnectivityInternalPermission();
Jason Monk602b2322013-07-03 17:04:33 -04003473
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003474 synchronized (mProxyLock) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003475 if (proxyProperties == mGlobalProxy) return;
3476 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
3477 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
3478
3479 String host = "";
3480 int port = 0;
3481 String exclList = "";
Jason Monk602b2322013-07-03 17:04:33 -04003482 String pacFileUrl = "";
3483 if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) ||
Jason Monk207900c2014-04-25 15:00:09 -04003484 (proxyProperties.getPacFileUrl() != null))) {
Raj Mamadgi92d024912013-11-11 13:52:58 -08003485 if (!proxyProperties.isValid()) {
3486 if (DBG)
3487 log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
3488 return;
3489 }
Jason Monk207900c2014-04-25 15:00:09 -04003490 mGlobalProxy = new ProxyInfo(proxyProperties);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003491 host = mGlobalProxy.getHost();
3492 port = mGlobalProxy.getPort();
Jason Monk207900c2014-04-25 15:00:09 -04003493 exclList = mGlobalProxy.getExclusionListAsString();
Jason Monk602b2322013-07-03 17:04:33 -04003494 if (proxyProperties.getPacFileUrl() != null) {
Jason Monk207900c2014-04-25 15:00:09 -04003495 pacFileUrl = proxyProperties.getPacFileUrl().toString();
Jason Monk602b2322013-07-03 17:04:33 -04003496 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003497 } else {
3498 mGlobalProxy = null;
3499 }
3500 ContentResolver res = mContext.getContentResolver();
Robert Greenwalta9bebc22013-04-10 15:32:18 -07003501 final long token = Binder.clearCallingIdentity();
3502 try {
3503 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST, host);
3504 Settings.Global.putInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, port);
3505 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST,
3506 exclList);
Jason Monk602b2322013-07-03 17:04:33 -04003507 Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl);
Robert Greenwalta9bebc22013-04-10 15:32:18 -07003508 } finally {
3509 Binder.restoreCallingIdentity(token);
3510 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003511 }
3512
3513 if (mGlobalProxy == null) {
3514 proxyProperties = mDefaultProxy;
3515 }
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003516 sendProxyBroadcast(proxyProperties);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003517 }
3518
Robert Greenwaltb7090d62010-12-02 11:31:00 -08003519 private void loadGlobalProxy() {
3520 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey625239a2012-09-26 22:03:49 -07003521 String host = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST);
3522 int port = Settings.Global.getInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, 0);
3523 String exclList = Settings.Global.getString(res,
3524 Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST);
Jason Monk602b2322013-07-03 17:04:33 -04003525 String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC);
3526 if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) {
Jason Monk207900c2014-04-25 15:00:09 -04003527 ProxyInfo proxyProperties;
Jason Monk602b2322013-07-03 17:04:33 -04003528 if (!TextUtils.isEmpty(pacFileUrl)) {
Jason Monk207900c2014-04-25 15:00:09 -04003529 proxyProperties = new ProxyInfo(pacFileUrl);
Jason Monk602b2322013-07-03 17:04:33 -04003530 } else {
Jason Monk207900c2014-04-25 15:00:09 -04003531 proxyProperties = new ProxyInfo(host, port, exclList);
Jason Monk602b2322013-07-03 17:04:33 -04003532 }
Raj Mamadgi92d024912013-11-11 13:52:58 -08003533 if (!proxyProperties.isValid()) {
3534 if (DBG) log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
3535 return;
3536 }
3537
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003538 synchronized (mProxyLock) {
Robert Greenwaltb7090d62010-12-02 11:31:00 -08003539 mGlobalProxy = proxyProperties;
3540 }
3541 }
3542 }
3543
Jason Monk207900c2014-04-25 15:00:09 -04003544 public ProxyInfo getGlobalProxy() {
Robert Greenwalte436e4f2013-02-22 14:57:00 -08003545 // this information is already available as a world read/writable jvm property
3546 // so this API change wouldn't have a benifit. It also breaks the passing
3547 // of proxy info to all the JVMs.
3548 // enforceAccessPermission();
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003549 synchronized (mProxyLock) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003550 return mGlobalProxy;
3551 }
3552 }
3553
Jason Monk207900c2014-04-25 15:00:09 -04003554 private void handleApplyDefaultProxy(ProxyInfo proxy) {
Jason Monk602b2322013-07-03 17:04:33 -04003555 if (proxy != null && TextUtils.isEmpty(proxy.getHost())
Jason Monk207900c2014-04-25 15:00:09 -04003556 && (proxy.getPacFileUrl() == null)) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003557 proxy = null;
3558 }
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003559 synchronized (mProxyLock) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07003560 if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003561 if (mDefaultProxy == proxy) return; // catches repeated nulls
Robert Greenwalta8dae992013-11-18 09:43:59 -08003562 if (proxy != null && !proxy.isValid()) {
Raj Mamadgi92d024912013-11-11 13:52:58 -08003563 if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
3564 return;
3565 }
Jason Monk56cf1ab2014-04-28 14:57:27 -04003566
3567 // This call could be coming from the PacManager, containing the port of the local
3568 // proxy. If this new proxy matches the global proxy then copy this proxy to the
3569 // global (to get the correct local port), and send a broadcast.
3570 // TODO: Switch PacManager to have its own message to send back rather than
3571 // reusing EVENT_HAS_CHANGED_PROXY and this call to handleApplyDefaultProxy.
3572 if ((mGlobalProxy != null) && (proxy != null) && (proxy.getPacFileUrl() != null)
3573 && proxy.getPacFileUrl().equals(mGlobalProxy.getPacFileUrl())) {
3574 mGlobalProxy = proxy;
3575 sendProxyBroadcast(mGlobalProxy);
3576 return;
3577 }
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003578 mDefaultProxy = proxy;
3579
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003580 if (mGlobalProxy != null) return;
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003581 if (!mDefaultProxyDisabled) {
3582 sendProxyBroadcast(proxy);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003583 }
3584 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003585 }
3586
3587 private void handleDeprecatedGlobalHttpProxy() {
Jeff Sharkey625239a2012-09-26 22:03:49 -07003588 String proxy = Settings.Global.getString(mContext.getContentResolver(),
3589 Settings.Global.HTTP_PROXY);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003590 if (!TextUtils.isEmpty(proxy)) {
3591 String data[] = proxy.split(":");
Andreas Huber7b8e1ea2013-05-28 15:17:37 -07003592 if (data.length == 0) {
3593 return;
3594 }
3595
Robert Greenwalt434203a2010-10-11 16:00:27 -07003596 String proxyHost = data[0];
3597 int proxyPort = 8080;
3598 if (data.length > 1) {
3599 try {
3600 proxyPort = Integer.parseInt(data[1]);
3601 } catch (NumberFormatException e) {
3602 return;
3603 }
3604 }
Jason Monk207900c2014-04-25 15:00:09 -04003605 ProxyInfo p = new ProxyInfo(data[0], proxyPort, "");
Robert Greenwalt434203a2010-10-11 16:00:27 -07003606 setGlobalProxy(p);
3607 }
3608 }
3609
Jason Monk207900c2014-04-25 15:00:09 -04003610 private void sendProxyBroadcast(ProxyInfo proxy) {
3611 if (proxy == null) proxy = new ProxyInfo("", 0, "");
Jason Monk6f8a68f2013-08-23 19:21:25 -04003612 if (mPacManager.setCurrentProxyScriptUrl(proxy)) return;
Robert Greenwalt58d4c592011-08-02 17:18:41 -07003613 if (DBG) log("sending Proxy Broadcast for " + proxy);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003614 Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
Stan Chesnuttb35d67a2011-01-06 11:00:19 -08003615 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING |
3616 Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003617 intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
Dianne Hackbornfd8bf5c2012-09-04 18:48:37 -07003618 final long ident = Binder.clearCallingIdentity();
3619 try {
3620 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
3621 } finally {
3622 Binder.restoreCallingIdentity(ident);
3623 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07003624 }
3625
3626 private static class SettingsObserver extends ContentObserver {
3627 private int mWhat;
3628 private Handler mHandler;
3629 SettingsObserver(Handler handler, int what) {
3630 super(handler);
3631 mHandler = handler;
3632 mWhat = what;
3633 }
3634
3635 void observe(Context context) {
3636 ContentResolver resolver = context.getContentResolver();
Jeff Sharkey625239a2012-09-26 22:03:49 -07003637 resolver.registerContentObserver(Settings.Global.getUriFor(
3638 Settings.Global.HTTP_PROXY), false, this);
Robert Greenwalt434203a2010-10-11 16:00:27 -07003639 }
3640
3641 @Override
3642 public void onChange(boolean selfChange) {
3643 mHandler.obtainMessage(mWhat).sendToTarget();
3644 }
3645 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08003646
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07003647 private static void log(String s) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08003648 Slog.d(TAG, s);
3649 }
3650
Jeff Sharkeyfb878b62012-07-26 18:32:30 -07003651 private static void loge(String s) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08003652 Slog.e(TAG, s);
3653 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003654
repo syncaea743a2011-07-29 23:55:49 -07003655 int convertFeatureToNetworkType(int networkType, String feature) {
3656 int usedNetworkType = networkType;
3657
3658 if(networkType == ConnectivityManager.TYPE_MOBILE) {
3659 if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_MMS)) {
3660 usedNetworkType = ConnectivityManager.TYPE_MOBILE_MMS;
3661 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_SUPL)) {
3662 usedNetworkType = ConnectivityManager.TYPE_MOBILE_SUPL;
3663 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN) ||
3664 TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
3665 usedNetworkType = ConnectivityManager.TYPE_MOBILE_DUN;
3666 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_HIPRI)) {
3667 usedNetworkType = ConnectivityManager.TYPE_MOBILE_HIPRI;
3668 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_FOTA)) {
3669 usedNetworkType = ConnectivityManager.TYPE_MOBILE_FOTA;
3670 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_IMS)) {
3671 usedNetworkType = ConnectivityManager.TYPE_MOBILE_IMS;
3672 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_CBS)) {
3673 usedNetworkType = ConnectivityManager.TYPE_MOBILE_CBS;
3674 } else {
3675 Slog.e(TAG, "Can't match any mobile netTracker!");
3676 }
3677 } else if (networkType == ConnectivityManager.TYPE_WIFI) {
3678 if (TextUtils.equals(feature, "p2p")) {
3679 usedNetworkType = ConnectivityManager.TYPE_WIFI_P2P;
3680 } else {
3681 Slog.e(TAG, "Can't match any wifi netTracker!");
3682 }
3683 } else {
3684 Slog.e(TAG, "Unexpected network type");
Wink Saville2b8bcfe2011-02-24 17:58:51 -08003685 }
repo syncaea743a2011-07-29 23:55:49 -07003686 return usedNetworkType;
Wink Saville2b8bcfe2011-02-24 17:58:51 -08003687 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07003688
3689 private static <T> T checkNotNull(T value, String message) {
3690 if (value == null) {
3691 throw new NullPointerException(message);
3692 }
3693 return value;
3694 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003695
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003696 /**
3697 * Protect a socket from VPN routing rules. This method is used by
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003698 * VpnBuilder and not available in ConnectivityManager. Permissions
3699 * are checked in Vpn class.
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003700 * @hide
3701 */
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003702 @Override
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -07003703 public boolean protectVpn(ParcelFileDescriptor socket) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003704 throwIfLockdownEnabled();
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -07003705 try {
3706 int type = mActiveDefaultNetwork;
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003707 int user = UserHandle.getUserId(Binder.getCallingUid());
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07003708 if (ConnectivityManager.isNetworkTypeValid(type) && mNetTrackers[type] != null) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003709 synchronized(mVpns) {
Chad Brubakerbcf12b32014-02-11 14:18:56 -08003710 mVpns.get(user).protect(socket);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003711 }
Chia-chi Yeh5779c9c2011-07-14 16:19:19 -07003712 return true;
3713 }
3714 } catch (Exception e) {
3715 // ignore
3716 } finally {
3717 try {
3718 socket.close();
3719 } catch (Exception e) {
3720 // ignore
3721 }
3722 }
3723 return false;
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003724 }
3725
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003726 /**
3727 * Prepare for a VPN application. This method is used by VpnDialogs
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003728 * and not available in ConnectivityManager. Permissions are checked
3729 * in Vpn class.
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003730 * @hide
3731 */
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003732 @Override
Chia-chi Yeh100155a2011-07-03 16:52:38 -07003733 public boolean prepareVpn(String oldPackage, String newPackage) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003734 throwIfLockdownEnabled();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003735 int user = UserHandle.getUserId(Binder.getCallingUid());
3736 synchronized(mVpns) {
3737 return mVpns.get(user).prepare(oldPackage, newPackage);
3738 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003739 }
3740
Chad Brubakerd475c702013-07-11 13:29:30 -07003741 @Override
3742 public void markSocketAsUser(ParcelFileDescriptor socket, int uid) {
3743 enforceMarkNetworkSocketPermission();
3744 final long token = Binder.clearCallingIdentity();
3745 try {
3746 int mark = mNetd.getMarkForUid(uid);
3747 // Clear the mark on the socket if no mark is needed to prevent socket reuse issues
3748 if (mark == -1) {
3749 mark = 0;
3750 }
3751 NetworkUtils.markSocket(socket.getFd(), mark);
3752 } catch (RemoteException e) {
3753 } finally {
3754 Binder.restoreCallingIdentity(token);
3755 }
3756 }
3757
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003758 /**
3759 * Configure a TUN interface and return its file descriptor. Parameters
3760 * are encoded and opaque to this class. This method is used by VpnBuilder
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003761 * and not available in ConnectivityManager. Permissions are checked in
3762 * Vpn class.
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003763 * @hide
3764 */
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003765 @Override
Chia-chi Yeh04ba25c2011-06-15 17:07:27 -07003766 public ParcelFileDescriptor establishVpn(VpnConfig config) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003767 throwIfLockdownEnabled();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003768 int user = UserHandle.getUserId(Binder.getCallingUid());
3769 synchronized(mVpns) {
3770 return mVpns.get(user).establish(config);
3771 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003772 }
3773
Chia-chi Yeh77fd4852011-07-02 17:15:00 -07003774 /**
Jeff Sharkey82f85212012-08-24 11:17:25 -07003775 * Start legacy VPN, controlling native daemons as needed. Creates a
3776 * secondary thread to perform connection work, returning quickly.
Chia-chi Yeh77fd4852011-07-02 17:15:00 -07003777 */
3778 @Override
Jeff Sharkey82f85212012-08-24 11:17:25 -07003779 public void startLegacyVpn(VpnProfile profile) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003780 throwIfLockdownEnabled();
Jeff Sharkey82f85212012-08-24 11:17:25 -07003781 final LinkProperties egress = getActiveLinkProperties();
3782 if (egress == null) {
3783 throw new IllegalStateException("Missing active network connection");
3784 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003785 int user = UserHandle.getUserId(Binder.getCallingUid());
3786 synchronized(mVpns) {
3787 mVpns.get(user).startLegacyVpn(profile, mKeyStore, egress);
3788 }
Chia-chi Yeh2e467642011-07-04 03:23:12 -07003789 }
3790
3791 /**
3792 * Return the information of the ongoing legacy VPN. This method is used
3793 * by VpnSettings and not available in ConnectivityManager. Permissions
3794 * are checked in Vpn class.
3795 * @hide
3796 */
3797 @Override
3798 public LegacyVpnInfo getLegacyVpnInfo() {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003799 throwIfLockdownEnabled();
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003800 int user = UserHandle.getUserId(Binder.getCallingUid());
3801 synchronized(mVpns) {
3802 return mVpns.get(user).getLegacyVpnInfo();
3803 }
Chia-chi Yeh77fd4852011-07-02 17:15:00 -07003804 }
3805
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003806 /**
Chad Brubakerbf6ff2c2013-07-16 18:59:12 -07003807 * Returns the information of the ongoing VPN. This method is used by VpnDialogs and
3808 * not available in ConnectivityManager.
3809 * Permissions are checked in Vpn class.
3810 * @hide
3811 */
3812 @Override
3813 public VpnConfig getVpnConfig() {
3814 int user = UserHandle.getUserId(Binder.getCallingUid());
3815 synchronized(mVpns) {
3816 return mVpns.get(user).getVpnConfig();
3817 }
3818 }
3819
3820 /**
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003821 * Callback for VPN subsystem. Currently VPN is not adapted to the service
3822 * through NetworkStateTracker since it works differently. For example, it
3823 * needs to override DNS servers but never takes the default routes. It
3824 * relies on another data network, and it could keep existing connections
3825 * alive after reconnecting, switching between networks, or even resuming
3826 * from deep sleep. Calls from applications should be done synchronously
3827 * to avoid race conditions. As these are all hidden APIs, refactoring can
3828 * be done whenever a better abstraction is developed.
3829 */
3830 public class VpnCallback {
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003831 private VpnCallback() {
3832 }
3833
Jeff Sharkey899223b2012-08-04 15:24:58 -07003834 public void onStateChanged(NetworkInfo info) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003835 mHandler.obtainMessage(EVENT_VPN_STATE_CHANGED, info).sendToTarget();
Jeff Sharkey899223b2012-08-04 15:24:58 -07003836 }
3837
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003838 public void override(String iface, List<String> dnsServers, List<String> searchDomains) {
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003839 if (dnsServers == null) {
3840 restore();
3841 return;
3842 }
3843
3844 // Convert DNS servers into addresses.
3845 List<InetAddress> addresses = new ArrayList<InetAddress>();
3846 for (String address : dnsServers) {
3847 // Double check the addresses and remove invalid ones.
3848 try {
3849 addresses.add(InetAddress.parseNumericAddress(address));
3850 } catch (Exception e) {
3851 // ignore
3852 }
3853 }
3854 if (addresses.isEmpty()) {
3855 restore();
3856 return;
3857 }
3858
3859 // Concatenate search domains into a string.
3860 StringBuilder buffer = new StringBuilder();
3861 if (searchDomains != null) {
3862 for (String domain : searchDomains) {
3863 buffer.append(domain).append(' ');
3864 }
3865 }
3866 String domains = buffer.toString().trim();
3867
3868 // Apply DNS changes.
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003869 synchronized (mDnsLock) {
Chad Brubaker20a7e882013-07-23 17:13:36 -07003870 updateDnsLocked("VPN", iface, addresses, domains, false);
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003871 }
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003872
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003873 // Temporarily disable the default proxy (not global).
3874 synchronized (mProxyLock) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003875 mDefaultProxyDisabled = true;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003876 if (mGlobalProxy == null && mDefaultProxy != null) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003877 sendProxyBroadcast(null);
3878 }
3879 }
3880
3881 // TODO: support proxy per network.
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003882 }
3883
Chia-chi Yeh44bb2512011-07-14 18:01:57 -07003884 public void restore() {
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003885 synchronized (mProxyLock) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003886 mDefaultProxyDisabled = false;
Robert Greenwalt00e8d4c2013-04-05 17:14:19 -07003887 if (mGlobalProxy == null && mDefaultProxy != null) {
Chia-chi Yeh4c12a472011-10-03 15:34:04 -07003888 sendProxyBroadcast(mDefaultProxy);
3889 }
3890 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003891 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003892
3893 public void protect(ParcelFileDescriptor socket) {
3894 try {
3895 final int mark = mNetd.getMarkForProtect();
3896 NetworkUtils.markSocket(socket.getFd(), mark);
3897 } catch (RemoteException e) {
3898 }
3899 }
3900
3901 public void setRoutes(String interfaze, List<RouteInfo> routes) {
3902 for (RouteInfo route : routes) {
3903 try {
3904 mNetd.setMarkedForwardingRoute(interfaze, route);
3905 } catch (RemoteException e) {
3906 }
3907 }
3908 }
3909
3910 public void setMarkedForwarding(String interfaze) {
3911 try {
3912 mNetd.setMarkedForwarding(interfaze);
3913 } catch (RemoteException e) {
3914 }
3915 }
3916
3917 public void clearMarkedForwarding(String interfaze) {
3918 try {
3919 mNetd.clearMarkedForwarding(interfaze);
3920 } catch (RemoteException e) {
3921 }
3922 }
3923
Robert Greenwalt69887e82013-09-24 11:05:57 -07003924 public void addUserForwarding(String interfaze, int uid, boolean forwardDns) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003925 int uidStart = uid * UserHandle.PER_USER_RANGE;
3926 int uidEnd = uidStart + UserHandle.PER_USER_RANGE - 1;
Robert Greenwalt69887e82013-09-24 11:05:57 -07003927 addUidForwarding(interfaze, uidStart, uidEnd, forwardDns);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003928 }
3929
Robert Greenwalt69887e82013-09-24 11:05:57 -07003930 public void clearUserForwarding(String interfaze, int uid, boolean forwardDns) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003931 int uidStart = uid * UserHandle.PER_USER_RANGE;
3932 int uidEnd = uidStart + UserHandle.PER_USER_RANGE - 1;
Robert Greenwalt69887e82013-09-24 11:05:57 -07003933 clearUidForwarding(interfaze, uidStart, uidEnd, forwardDns);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003934 }
3935
Robert Greenwalt69887e82013-09-24 11:05:57 -07003936 public void addUidForwarding(String interfaze, int uidStart, int uidEnd,
3937 boolean forwardDns) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003938 try {
3939 mNetd.setUidRangeRoute(interfaze,uidStart, uidEnd);
Robert Greenwalt69887e82013-09-24 11:05:57 -07003940 if (forwardDns) mNetd.setDnsInterfaceForUidRange(interfaze, uidStart, uidEnd);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003941 } catch (RemoteException e) {
3942 }
3943
3944 }
3945
Robert Greenwalt69887e82013-09-24 11:05:57 -07003946 public void clearUidForwarding(String interfaze, int uidStart, int uidEnd,
3947 boolean forwardDns) {
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003948 try {
3949 mNetd.clearUidRangeRoute(interfaze, uidStart, uidEnd);
Chad Brubakerc77261472014-03-21 21:02:43 +00003950 if (forwardDns) mNetd.clearDnsInterfaceForUidRange(interfaze, uidStart, uidEnd);
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003951 } catch (RemoteException e) {
3952 }
3953
3954 }
Chia-chi Yehff3bdca2011-05-23 17:26:46 -07003955 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003956
3957 @Override
3958 public boolean updateLockdownVpn() {
Jeff Sharkey3671b1e2013-01-31 17:22:26 -08003959 if (Binder.getCallingUid() != Process.SYSTEM_UID) {
3960 Slog.w(TAG, "Lockdown VPN only available to AID_SYSTEM");
3961 return false;
3962 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003963
3964 // Tear down existing lockdown if profile was removed
3965 mLockdownEnabled = LockdownVpnTracker.isEnabled();
3966 if (mLockdownEnabled) {
Kenny Rootb9594ce2013-02-14 10:18:38 -08003967 if (!mKeyStore.isUnlocked()) {
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003968 Slog.w(TAG, "KeyStore locked; unable to create LockdownTracker");
3969 return false;
3970 }
3971
3972 final String profileName = new String(mKeyStore.get(Credentials.LOCKDOWN_VPN));
3973 final VpnProfile profile = VpnProfile.decode(
3974 profileName, mKeyStore.get(Credentials.VPN + profileName));
Chad Brubaker4ca19e82013-06-14 11:16:51 -07003975 int user = UserHandle.getUserId(Binder.getCallingUid());
3976 synchronized(mVpns) {
3977 setLockdownTracker(new LockdownVpnTracker(mContext, mNetd, this, mVpns.get(user),
3978 profile));
3979 }
Jeff Sharkey69ddab42012-08-25 00:05:46 -07003980 } else {
3981 setLockdownTracker(null);
3982 }
3983
3984 return true;
3985 }
3986
3987 /**
3988 * Internally set new {@link LockdownVpnTracker}, shutting down any existing
3989 * {@link LockdownVpnTracker}. Can be {@code null} to disable lockdown.
3990 */
3991 private void setLockdownTracker(LockdownVpnTracker tracker) {
3992 // Shutdown any existing tracker
3993 final LockdownVpnTracker existing = mLockdownTracker;
3994 mLockdownTracker = null;
3995 if (existing != null) {
3996 existing.shutdown();
3997 }
3998
3999 try {
4000 if (tracker != null) {
4001 mNetd.setFirewallEnabled(true);
Jeff Sharkey812085b2013-02-28 16:57:58 -08004002 mNetd.setFirewallInterfaceRule("lo", true);
Jeff Sharkey69ddab42012-08-25 00:05:46 -07004003 mLockdownTracker = tracker;
4004 mLockdownTracker.init();
4005 } else {
4006 mNetd.setFirewallEnabled(false);
4007 }
4008 } catch (RemoteException e) {
4009 // ignored; NMS lives inside system_server
4010 }
4011 }
4012
4013 private void throwIfLockdownEnabled() {
4014 if (mLockdownEnabled) {
4015 throw new IllegalStateException("Unavailable in lockdown mode");
4016 }
4017 }
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07004018
4019 public void supplyMessenger(int networkType, Messenger messenger) {
4020 enforceConnectivityInternalPermission();
4021
4022 if (isNetworkTypeValid(networkType) && mNetTrackers[networkType] != null) {
4023 mNetTrackers[networkType].supplyMessenger(messenger);
4024 }
4025 }
Robert Greenwalt1b0ca9d2013-04-22 11:13:02 -07004026
4027 public int findConnectionTypeForIface(String iface) {
4028 enforceConnectivityInternalPermission();
4029
4030 if (TextUtils.isEmpty(iface)) return ConnectivityManager.TYPE_NONE;
4031 for (NetworkStateTracker tracker : mNetTrackers) {
4032 if (tracker != null) {
4033 LinkProperties lp = tracker.getLinkProperties();
4034 if (lp != null && iface.equals(lp.getInterfaceName())) {
4035 return tracker.getNetworkInfo().getType();
4036 }
4037 }
4038 }
4039 return ConnectivityManager.TYPE_NONE;
4040 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004041
4042 /**
4043 * Have mobile data fail fast if enabled.
4044 *
4045 * @param enabled DctConstants.ENABLED/DISABLED
4046 */
4047 private void setEnableFailFastMobileData(int enabled) {
4048 int tag;
4049
4050 if (enabled == DctConstants.ENABLED) {
4051 tag = mEnableFailFastMobileDataTag.incrementAndGet();
4052 } else {
4053 tag = mEnableFailFastMobileDataTag.get();
4054 }
4055 mHandler.sendMessage(mHandler.obtainMessage(EVENT_ENABLE_FAIL_FAST_MOBILE_DATA, tag,
4056 enabled));
4057 }
4058
Wink Savilledce52cd2013-08-16 17:17:28 -07004059 private boolean isMobileDataStateTrackerReady() {
4060 MobileDataStateTracker mdst =
Wink Saville948282b2013-08-29 08:55:16 -07004061 (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
Wink Savilledce52cd2013-08-16 17:17:28 -07004062 return (mdst != null) && (mdst.isReady());
4063 }
4064
Wink Saville948282b2013-08-29 08:55:16 -07004065 /**
4066 * The ResultReceiver resultCode for checkMobileProvisioning (CMP_RESULT_CODE)
4067 */
4068
4069 /**
4070 * No connection was possible to the network.
Wink Saville4fea0412013-09-06 09:53:08 -07004071 * This is NOT a warm sim.
Wink Saville948282b2013-08-29 08:55:16 -07004072 */
Wink Saville4fea0412013-09-06 09:53:08 -07004073 private static final int CMP_RESULT_CODE_NO_CONNECTION = 0;
Wink Saville948282b2013-08-29 08:55:16 -07004074
4075 /**
4076 * A connection was made to the internet, all is well.
Wink Saville4fea0412013-09-06 09:53:08 -07004077 * This is NOT a warm sim.
Wink Saville948282b2013-08-29 08:55:16 -07004078 */
Wink Saville4fea0412013-09-06 09:53:08 -07004079 private static final int CMP_RESULT_CODE_CONNECTABLE = 1;
Wink Saville948282b2013-08-29 08:55:16 -07004080
4081 /**
4082 * A connection was made but no dns server was available to resolve a name to address.
Wink Saville4fea0412013-09-06 09:53:08 -07004083 * This is NOT a warm sim since provisioning network is supported.
Wink Saville948282b2013-08-29 08:55:16 -07004084 */
Wink Saville4fea0412013-09-06 09:53:08 -07004085 private static final int CMP_RESULT_CODE_NO_DNS = 2;
Wink Saville948282b2013-08-29 08:55:16 -07004086
4087 /**
4088 * A connection was made but could not open a TCP connection.
Wink Saville4fea0412013-09-06 09:53:08 -07004089 * This is NOT a warm sim since provisioning network is supported.
Wink Saville948282b2013-08-29 08:55:16 -07004090 */
Wink Saville4fea0412013-09-06 09:53:08 -07004091 private static final int CMP_RESULT_CODE_NO_TCP_CONNECTION = 3;
4092
4093 /**
4094 * A connection was made but there was a redirection, we appear to be in walled garden.
4095 * This is an indication of a warm sim on a mobile network such as T-Mobile.
4096 */
4097 private static final int CMP_RESULT_CODE_REDIRECTED = 4;
Wink Saville948282b2013-08-29 08:55:16 -07004098
4099 /**
4100 * The mobile network is a provisioning network.
Wink Saville4fea0412013-09-06 09:53:08 -07004101 * This is an indication of a warm sim on a mobile network such as AT&T.
Wink Saville948282b2013-08-29 08:55:16 -07004102 */
Wink Saville4fea0412013-09-06 09:53:08 -07004103 private static final int CMP_RESULT_CODE_PROVISIONING_NETWORK = 5;
Wink Saville948282b2013-08-29 08:55:16 -07004104
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004105 /**
4106 * The mobile network is provisioning
4107 */
4108 private static final int CMP_RESULT_CODE_IS_PROVISIONING = 6;
4109
4110 private AtomicBoolean mIsProvisioningNetwork = new AtomicBoolean(false);
4111 private AtomicBoolean mIsStartingProvisioning = new AtomicBoolean(false);
4112
Wink Saville4fea0412013-09-06 09:53:08 -07004113 private AtomicBoolean mIsCheckingMobileProvisioning = new AtomicBoolean(false);
Wink Saville948282b2013-08-29 08:55:16 -07004114
Wink Savilleab9321d2013-06-29 21:10:57 -07004115 @Override
Wink Saville948282b2013-08-29 08:55:16 -07004116 public int checkMobileProvisioning(int suggestedTimeOutMs) {
4117 int timeOutMs = -1;
4118 if (DBG) log("checkMobileProvisioning: E suggestedTimeOutMs=" + suggestedTimeOutMs);
4119 enforceConnectivityInternalPermission();
Wink Saville68e6c642013-07-02 10:55:14 -07004120
Wink Savilleab9321d2013-06-29 21:10:57 -07004121 final long token = Binder.clearCallingIdentity();
4122 try {
Wink Saville948282b2013-08-29 08:55:16 -07004123 timeOutMs = suggestedTimeOutMs;
4124 if (suggestedTimeOutMs > CheckMp.MAX_TIMEOUT_MS) {
4125 timeOutMs = CheckMp.MAX_TIMEOUT_MS;
4126 }
4127
4128 // Check that mobile networks are supported
4129 if (!isNetworkSupported(ConnectivityManager.TYPE_MOBILE)
4130 || !isNetworkSupported(ConnectivityManager.TYPE_MOBILE_HIPRI)) {
4131 if (DBG) log("checkMobileProvisioning: X no mobile network");
4132 return timeOutMs;
4133 }
4134
4135 // If we're already checking don't do it again
4136 // TODO: Add a queue of results...
4137 if (mIsCheckingMobileProvisioning.getAndSet(true)) {
4138 if (DBG) log("checkMobileProvisioning: X already checking ignore for the moment");
4139 return timeOutMs;
4140 }
4141
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004142 // Start off with mobile notification off
4143 setProvNotificationVisible(false, ConnectivityManager.TYPE_MOBILE_HIPRI, null, null);
Wink Saville948282b2013-08-29 08:55:16 -07004144
Wink Savilleab9321d2013-06-29 21:10:57 -07004145 CheckMp checkMp = new CheckMp(mContext, this);
4146 CheckMp.CallBack cb = new CheckMp.CallBack() {
4147 @Override
4148 void onComplete(Integer result) {
Wink Saville948282b2013-08-29 08:55:16 -07004149 if (DBG) log("CheckMp.onComplete: result=" + result);
Wink Savilleab9321d2013-06-29 21:10:57 -07004150 NetworkInfo ni =
4151 mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI].getNetworkInfo();
4152 switch(result) {
Wink Saville948282b2013-08-29 08:55:16 -07004153 case CMP_RESULT_CODE_CONNECTABLE:
Wink Saville4fea0412013-09-06 09:53:08 -07004154 case CMP_RESULT_CODE_NO_CONNECTION:
4155 case CMP_RESULT_CODE_NO_DNS:
4156 case CMP_RESULT_CODE_NO_TCP_CONNECTION: {
Wink Saville948282b2013-08-29 08:55:16 -07004157 if (DBG) log("CheckMp.onComplete: ignore, connected or no connection");
Wink Savilleab9321d2013-06-29 21:10:57 -07004158 break;
4159 }
Wink Saville948282b2013-08-29 08:55:16 -07004160 case CMP_RESULT_CODE_REDIRECTED: {
4161 if (DBG) log("CheckMp.onComplete: warm sim");
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004162 String url = getMobileProvisioningUrl();
Wink Savilleab9321d2013-06-29 21:10:57 -07004163 if (TextUtils.isEmpty(url)) {
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004164 url = getMobileRedirectedProvisioningUrl();
Wink Savilleab9321d2013-06-29 21:10:57 -07004165 }
4166 if (TextUtils.isEmpty(url) == false) {
Wink Saville948282b2013-08-29 08:55:16 -07004167 if (DBG) log("CheckMp.onComplete: warm (redirected), url=" + url);
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004168 setProvNotificationVisible(true,
4169 ConnectivityManager.TYPE_MOBILE_HIPRI, ni.getExtraInfo(),
Wink Saville948282b2013-08-29 08:55:16 -07004170 url);
Wink Savilleab9321d2013-06-29 21:10:57 -07004171 } else {
Wink Saville948282b2013-08-29 08:55:16 -07004172 if (DBG) log("CheckMp.onComplete: warm (redirected), no url");
Wink Savilleab9321d2013-06-29 21:10:57 -07004173 }
4174 break;
4175 }
Wink Saville4fea0412013-09-06 09:53:08 -07004176 case CMP_RESULT_CODE_PROVISIONING_NETWORK: {
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004177 String url = getMobileProvisioningUrl();
Wink Savilleab9321d2013-06-29 21:10:57 -07004178 if (TextUtils.isEmpty(url) == false) {
Wink Saville948282b2013-08-29 08:55:16 -07004179 if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), url=" + url);
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004180 setProvNotificationVisible(true,
4181 ConnectivityManager.TYPE_MOBILE_HIPRI, ni.getExtraInfo(),
Wink Saville948282b2013-08-29 08:55:16 -07004182 url);
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004183 // Mark that we've got a provisioning network and
4184 // Disable Mobile Data until user actually starts provisioning.
4185 mIsProvisioningNetwork.set(true);
4186 MobileDataStateTracker mdst = (MobileDataStateTracker)
4187 mNetTrackers[ConnectivityManager.TYPE_MOBILE];
4188 mdst.setInternalDataEnable(false);
Wink Savilleab9321d2013-06-29 21:10:57 -07004189 } else {
Wink Saville948282b2013-08-29 08:55:16 -07004190 if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), no url");
Wink Savilleab9321d2013-06-29 21:10:57 -07004191 }
4192 break;
4193 }
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004194 case CMP_RESULT_CODE_IS_PROVISIONING: {
4195 // FIXME: Need to know when provisioning is done. Probably we can
4196 // check the completion status if successful we're done if we
4197 // "timedout" or still connected to provisioning APN turn off data?
4198 if (DBG) log("CheckMp.onComplete: provisioning started");
4199 mIsStartingProvisioning.set(false);
4200 break;
4201 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004202 default: {
4203 loge("CheckMp.onComplete: ignore unexpected result=" + result);
4204 break;
4205 }
4206 }
Wink Saville948282b2013-08-29 08:55:16 -07004207 mIsCheckingMobileProvisioning.set(false);
Wink Savilleab9321d2013-06-29 21:10:57 -07004208 }
4209 };
4210 CheckMp.Params params =
4211 new CheckMp.Params(checkMp.getDefaultUrl(), timeOutMs, cb);
Wink Saville948282b2013-08-29 08:55:16 -07004212 if (DBG) log("checkMobileProvisioning: params=" + params);
Wink Savilleab9321d2013-06-29 21:10:57 -07004213 checkMp.execute(params);
4214 } finally {
4215 Binder.restoreCallingIdentity(token);
Wink Saville948282b2013-08-29 08:55:16 -07004216 if (DBG) log("checkMobileProvisioning: X");
Wink Savilleab9321d2013-06-29 21:10:57 -07004217 }
4218 return timeOutMs;
4219 }
4220
4221 static class CheckMp extends
4222 AsyncTask<CheckMp.Params, Void, Integer> {
4223 private static final String CHECKMP_TAG = "CheckMp";
Wink Saville1d3a89e2013-10-31 06:35:22 -07004224
4225 // adb shell setprop persist.checkmp.testfailures 1 to enable testing failures
4226 private static boolean mTestingFailures;
4227
4228 // Choosing 4 loops as half of them will use HTTPS and the other half HTTP
4229 private static final int MAX_LOOPS = 4;
4230
4231 // Number of milli-seconds to complete all of the retires
Wink Savilleab9321d2013-06-29 21:10:57 -07004232 public static final int MAX_TIMEOUT_MS = 60000;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004233
4234 // The socket should retry only 5 seconds, the default is longer
Wink Savilleab9321d2013-06-29 21:10:57 -07004235 private static final int SOCKET_TIMEOUT_MS = 5000;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004236
4237 // Sleep time for network errors
4238 private static final int NET_ERROR_SLEEP_SEC = 3;
4239
4240 // Sleep time for network route establishment
4241 private static final int NET_ROUTE_ESTABLISHMENT_SLEEP_SEC = 3;
4242
4243 // Short sleep time for polling :(
4244 private static final int POLLING_SLEEP_SEC = 1;
4245
Wink Savilleab9321d2013-06-29 21:10:57 -07004246 private Context mContext;
4247 private ConnectivityService mCs;
4248 private TelephonyManager mTm;
4249 private Params mParams;
4250
4251 /**
4252 * Parameters for AsyncTask.execute
4253 */
4254 static class Params {
4255 private String mUrl;
4256 private long mTimeOutMs;
4257 private CallBack mCb;
4258
4259 Params(String url, long timeOutMs, CallBack cb) {
4260 mUrl = url;
4261 mTimeOutMs = timeOutMs;
4262 mCb = cb;
4263 }
4264
4265 @Override
4266 public String toString() {
4267 return "{" + " url=" + mUrl + " mTimeOutMs=" + mTimeOutMs + " mCb=" + mCb + "}";
4268 }
4269 }
4270
Wink Saville1d3a89e2013-10-31 06:35:22 -07004271 // As explained to me by Brian Carlstrom and Kenny Root, Certificates can be
4272 // issued by name or ip address, for Google its by name so when we construct
4273 // this HostnameVerifier we'll pass the original Uri and use it to verify
4274 // the host. If the host name in the original uril fails we'll test the
4275 // hostname parameter just incase things change.
4276 static class CheckMpHostnameVerifier implements HostnameVerifier {
4277 Uri mOrgUri;
4278
4279 CheckMpHostnameVerifier(Uri orgUri) {
4280 mOrgUri = orgUri;
4281 }
4282
4283 @Override
4284 public boolean verify(String hostname, SSLSession session) {
4285 HostnameVerifier hv = HttpsURLConnection.getDefaultHostnameVerifier();
4286 String orgUriHost = mOrgUri.getHost();
4287 boolean retVal = hv.verify(orgUriHost, session) || hv.verify(hostname, session);
4288 if (DBG) {
4289 log("isMobileOk: hostnameVerify retVal=" + retVal + " hostname=" + hostname
4290 + " orgUriHost=" + orgUriHost);
4291 }
4292 return retVal;
4293 }
4294 }
4295
Wink Savilleab9321d2013-06-29 21:10:57 -07004296 /**
4297 * The call back object passed in Params. onComplete will be called
4298 * on the main thread.
4299 */
4300 abstract static class CallBack {
4301 // Called on the main thread.
4302 abstract void onComplete(Integer result);
4303 }
4304
4305 public CheckMp(Context context, ConnectivityService cs) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004306 if (Build.IS_DEBUGGABLE) {
4307 mTestingFailures =
4308 SystemProperties.getInt("persist.checkmp.testfailures", 0) == 1;
4309 } else {
4310 mTestingFailures = false;
4311 }
4312
Wink Savilleab9321d2013-06-29 21:10:57 -07004313 mContext = context;
4314 mCs = cs;
4315
4316 // Setup access to TelephonyService we'll be using.
4317 mTm = (TelephonyManager) mContext.getSystemService(
4318 Context.TELEPHONY_SERVICE);
4319 }
4320
4321 /**
4322 * Get the default url to use for the test.
4323 */
4324 public String getDefaultUrl() {
4325 // See http://go/clientsdns for usage approval
4326 String server = Settings.Global.getString(mContext.getContentResolver(),
4327 Settings.Global.CAPTIVE_PORTAL_SERVER);
4328 if (server == null) {
4329 server = "clients3.google.com";
4330 }
4331 return "http://" + server + "/generate_204";
4332 }
4333
4334 /**
4335 * Detect if its possible to connect to the http url. DNS based detection techniques
4336 * do not work at all hotspots. The best way to check is to perform a request to
4337 * a known address that fetches the data we expect.
4338 */
4339 private synchronized Integer isMobileOk(Params params) {
Wink Saville948282b2013-08-29 08:55:16 -07004340 Integer result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Savilleab9321d2013-06-29 21:10:57 -07004341 Uri orgUri = Uri.parse(params.mUrl);
4342 Random rand = new Random();
4343 mParams = params;
4344
Wink Savilleafe58b02013-08-13 12:41:06 -07004345 if (mCs.isNetworkSupported(ConnectivityManager.TYPE_MOBILE) == false) {
Wink Saville948282b2013-08-29 08:55:16 -07004346 result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Savilled95ccc52013-09-13 12:40:11 -07004347 log("isMobileOk: X not mobile capable result=" + result);
4348 return result;
4349 }
4350
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004351 if (mCs.mIsStartingProvisioning.get()) {
4352 result = CMP_RESULT_CODE_IS_PROVISIONING;
4353 log("isMobileOk: X is provisioning result=" + result);
4354 return result;
4355 }
4356
Wink Savilled95ccc52013-09-13 12:40:11 -07004357 // See if we've already determined we've got a provisioning connection,
4358 // if so we don't need to do anything active.
4359 MobileDataStateTracker mdstDefault = (MobileDataStateTracker)
4360 mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE];
4361 boolean isDefaultProvisioning = mdstDefault.isProvisioningNetwork();
4362 log("isMobileOk: isDefaultProvisioning=" + isDefaultProvisioning);
4363
4364 MobileDataStateTracker mdstHipri = (MobileDataStateTracker)
4365 mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
4366 boolean isHipriProvisioning = mdstHipri.isProvisioningNetwork();
4367 log("isMobileOk: isHipriProvisioning=" + isHipriProvisioning);
4368
4369 if (isDefaultProvisioning || isHipriProvisioning) {
4370 result = CMP_RESULT_CODE_PROVISIONING_NETWORK;
4371 log("isMobileOk: X default || hipri is provisioning result=" + result);
Wink Savilleafe58b02013-08-13 12:41:06 -07004372 return result;
4373 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004374
Wink Savilleafe58b02013-08-13 12:41:06 -07004375 try {
Wink Savilleab9321d2013-06-29 21:10:57 -07004376 // Continue trying to connect until time has run out
4377 long endTime = SystemClock.elapsedRealtime() + params.mTimeOutMs;
Wink Saville7f6ee2e2013-08-07 11:02:57 -07004378
Wink Savilledce52cd2013-08-16 17:17:28 -07004379 if (!mCs.isMobileDataStateTrackerReady()) {
4380 // Wait for MobileDataStateTracker to be ready.
4381 if (DBG) log("isMobileOk: mdst is not ready");
4382 while(SystemClock.elapsedRealtime() < endTime) {
4383 if (mCs.isMobileDataStateTrackerReady()) {
4384 // Enable fail fast as we'll do retries here and use a
4385 // hipri connection so the default connection stays active.
4386 if (DBG) log("isMobileOk: mdst ready, enable fail fast of mobile data");
4387 mCs.setEnableFailFastMobileData(DctConstants.ENABLED);
4388 break;
4389 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004390 sleep(POLLING_SLEEP_SEC);
Wink Savilledce52cd2013-08-16 17:17:28 -07004391 }
4392 }
4393
4394 log("isMobileOk: start hipri url=" + params.mUrl);
4395
Wink Saville7f6ee2e2013-08-07 11:02:57 -07004396 // First wait until we can start using hipri
4397 Binder binder = new Binder();
4398 while(SystemClock.elapsedRealtime() < endTime) {
4399 int ret = mCs.startUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
4400 Phone.FEATURE_ENABLE_HIPRI, binder);
4401 if ((ret == PhoneConstants.APN_ALREADY_ACTIVE)
4402 || (ret == PhoneConstants.APN_REQUEST_STARTED)) {
4403 log("isMobileOk: hipri started");
4404 break;
4405 }
4406 if (VDBG) log("isMobileOk: hipri not started yet");
Wink Saville948282b2013-08-29 08:55:16 -07004407 result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004408 sleep(POLLING_SLEEP_SEC);
Wink Saville7f6ee2e2013-08-07 11:02:57 -07004409 }
4410
4411 // Continue trying to connect until time has run out
Wink Savilleab9321d2013-06-29 21:10:57 -07004412 while(SystemClock.elapsedRealtime() < endTime) {
4413 try {
4414 // Wait for hipri to connect.
4415 // TODO: Don't poll and handle situation where hipri fails
4416 // because default is retrying. See b/9569540
4417 NetworkInfo.State state = mCs
4418 .getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
4419 if (state != NetworkInfo.State.CONNECTED) {
Wink Saville948282b2013-08-29 08:55:16 -07004420 if (true/*VDBG*/) {
Wink Saville1aef7fc2013-07-31 15:49:04 -07004421 log("isMobileOk: not connected ni=" +
Wink Savilleab9321d2013-06-29 21:10:57 -07004422 mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
Wink Saville1aef7fc2013-07-31 15:49:04 -07004423 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004424 sleep(POLLING_SLEEP_SEC);
Wink Saville948282b2013-08-29 08:55:16 -07004425 result = CMP_RESULT_CODE_NO_CONNECTION;
Wink Savilleab9321d2013-06-29 21:10:57 -07004426 continue;
4427 }
4428
Wink Saville948282b2013-08-29 08:55:16 -07004429 // Hipri has started check if this is a provisioning url
4430 MobileDataStateTracker mdst = (MobileDataStateTracker)
4431 mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
4432 if (mdst.isProvisioningNetwork()) {
Wink Saville4fea0412013-09-06 09:53:08 -07004433 result = CMP_RESULT_CODE_PROVISIONING_NETWORK;
Wink Savilled95ccc52013-09-13 12:40:11 -07004434 if (DBG) log("isMobileOk: X isProvisioningNetwork result=" + result);
Wink Saville948282b2013-08-29 08:55:16 -07004435 return result;
4436 } else {
4437 if (DBG) log("isMobileOk: isProvisioningNetwork is false, continue");
4438 }
4439
Wink Savilleab9321d2013-06-29 21:10:57 -07004440 // Get of the addresses associated with the url host. We need to use the
4441 // address otherwise HttpURLConnection object will use the name to get
Wink Saville1d3a89e2013-10-31 06:35:22 -07004442 // the addresses and will try every address but that will bypass the
Wink Savilleab9321d2013-06-29 21:10:57 -07004443 // route to host we setup and the connection could succeed as the default
4444 // interface might be connected to the internet via wifi or other interface.
4445 InetAddress[] addresses;
4446 try {
4447 addresses = InetAddress.getAllByName(orgUri.getHost());
4448 } catch (UnknownHostException e) {
Wink Saville948282b2013-08-29 08:55:16 -07004449 result = CMP_RESULT_CODE_NO_DNS;
Wink Savilled95ccc52013-09-13 12:40:11 -07004450 log("isMobileOk: X UnknownHostException result=" + result);
Wink Savilleab9321d2013-06-29 21:10:57 -07004451 return result;
4452 }
4453 log("isMobileOk: addresses=" + inetAddressesToString(addresses));
4454
4455 // Get the type of addresses supported by this link
4456 LinkProperties lp = mCs.getLinkProperties(
4457 ConnectivityManager.TYPE_MOBILE_HIPRI);
Lorenzo Colitti4faa0272013-08-08 11:00:12 +09004458 boolean linkHasIpv4 = lp.hasIPv4Address();
4459 boolean linkHasIpv6 = lp.hasIPv6Address();
Wink Savilleab9321d2013-06-29 21:10:57 -07004460 log("isMobileOk: linkHasIpv4=" + linkHasIpv4
4461 + " linkHasIpv6=" + linkHasIpv6);
4462
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004463 final ArrayList<InetAddress> validAddresses =
4464 new ArrayList<InetAddress>(addresses.length);
Wink Savilleab9321d2013-06-29 21:10:57 -07004465
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004466 for (InetAddress addr : addresses) {
4467 if (((addr instanceof Inet4Address) && linkHasIpv4) ||
4468 ((addr instanceof Inet6Address) && linkHasIpv6)) {
4469 validAddresses.add(addr);
Wink Savilleab9321d2013-06-29 21:10:57 -07004470 }
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004471 }
4472
4473 if (validAddresses.size() == 0) {
4474 return CMP_RESULT_CODE_NO_CONNECTION;
4475 }
4476
4477 int addrTried = 0;
4478 while (true) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004479 // Loop through at most MAX_LOOPS valid addresses or until
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004480 // we run out of time
Wink Saville1d3a89e2013-10-31 06:35:22 -07004481 if (addrTried++ >= MAX_LOOPS) {
4482 log("isMobileOk: too many loops tried - giving up");
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004483 break;
4484 }
4485 if (SystemClock.elapsedRealtime() >= endTime) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004486 log("isMobileOk: spend too much time - giving up");
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004487 break;
4488 }
4489
4490 InetAddress hostAddr = validAddresses.get(rand.nextInt(
4491 validAddresses.size()));
Wink Savilleab9321d2013-06-29 21:10:57 -07004492
4493 // Make a route to host so we check the specific interface.
4494 if (mCs.requestRouteToHostAddress(ConnectivityManager.TYPE_MOBILE_HIPRI,
Chad Brubakerf81daa92014-02-14 13:22:34 -08004495 hostAddr.getAddress(), null)) {
Wink Savilleab9321d2013-06-29 21:10:57 -07004496 // Wait a short time to be sure the route is established ??
4497 log("isMobileOk:"
4498 + " wait to establish route to hostAddr=" + hostAddr);
Wink Saville1d3a89e2013-10-31 06:35:22 -07004499 sleep(NET_ROUTE_ESTABLISHMENT_SLEEP_SEC);
Wink Savilleab9321d2013-06-29 21:10:57 -07004500 } else {
4501 log("isMobileOk:"
4502 + " could not establish route to hostAddr=" + hostAddr);
Wink Saville1d3a89e2013-10-31 06:35:22 -07004503 // Wait a short time before the next attempt
4504 sleep(NET_ERROR_SLEEP_SEC);
Wink Savilleab9321d2013-06-29 21:10:57 -07004505 continue;
4506 }
4507
Wink Saville1d3a89e2013-10-31 06:35:22 -07004508 // Rewrite the url to have numeric address to use the specific route
4509 // using http for half the attempts and https for the other half.
4510 // Doing https first and http second as on a redirected walled garden
4511 // such as t-mobile uses we get a SocketTimeoutException: "SSL
4512 // handshake timed out" which we declare as
4513 // CMP_RESULT_CODE_NO_TCP_CONNECTION. We could change this, but by
4514 // having http second we will be using logic used for some time.
4515 URL newUrl;
4516 String scheme = (addrTried <= (MAX_LOOPS/2)) ? "https" : "http";
4517 newUrl = new URL(scheme, hostAddr.getHostAddress(),
4518 orgUri.getPath());
Wink Savilleab9321d2013-06-29 21:10:57 -07004519 log("isMobileOk: newUrl=" + newUrl);
4520
4521 HttpURLConnection urlConn = null;
4522 try {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004523 // Open the connection set the request headers and get the response
4524 urlConn = (HttpURLConnection)newUrl.openConnection(
Wink Savilleab9321d2013-06-29 21:10:57 -07004525 java.net.Proxy.NO_PROXY);
Wink Saville1d3a89e2013-10-31 06:35:22 -07004526 if (scheme.equals("https")) {
4527 ((HttpsURLConnection)urlConn).setHostnameVerifier(
4528 new CheckMpHostnameVerifier(orgUri));
4529 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004530 urlConn.setInstanceFollowRedirects(false);
4531 urlConn.setConnectTimeout(SOCKET_TIMEOUT_MS);
4532 urlConn.setReadTimeout(SOCKET_TIMEOUT_MS);
4533 urlConn.setUseCaches(false);
4534 urlConn.setAllowUserInteraction(false);
Lorenzo Colitti143a2cf2013-10-08 10:41:25 +09004535 // Set the "Connection" to "Close" as by default "Keep-Alive"
4536 // is used which is useless in this case.
Wink Savilleab9321d2013-06-29 21:10:57 -07004537 urlConn.setRequestProperty("Connection", "close");
4538 int responseCode = urlConn.getResponseCode();
Wink Saville4fea0412013-09-06 09:53:08 -07004539
4540 // For debug display the headers
4541 Map<String, List<String>> headers = urlConn.getHeaderFields();
4542 log("isMobileOk: headers=" + headers);
4543
4544 // Close the connection
Wink Savilleab9321d2013-06-29 21:10:57 -07004545 urlConn.disconnect();
4546 urlConn = null;
Wink Saville4fea0412013-09-06 09:53:08 -07004547
Wink Saville1d3a89e2013-10-31 06:35:22 -07004548 if (mTestingFailures) {
4549 // Pretend no connection, this tests using http and https
4550 result = CMP_RESULT_CODE_NO_CONNECTION;
4551 log("isMobileOk: TESTING_FAILURES, pretend no connction");
4552 continue;
4553 }
4554
Wink Saville4fea0412013-09-06 09:53:08 -07004555 if (responseCode == 204) {
4556 // Return
Wink Saville4fea0412013-09-06 09:53:08 -07004557 result = CMP_RESULT_CODE_CONNECTABLE;
Wink Saville1d3a89e2013-10-31 06:35:22 -07004558 log("isMobileOk: X got expected responseCode=" + responseCode
Wink Savilled95ccc52013-09-13 12:40:11 -07004559 + " result=" + result);
Wink Saville4fea0412013-09-06 09:53:08 -07004560 return result;
4561 } else {
4562 // Retry to be sure this was redirected, we've gotten
4563 // occasions where a server returned 200 even though
4564 // the device didn't have a "warm" sim.
4565 log("isMobileOk: not expected responseCode=" + responseCode);
Robert Greenwaltb9acff32013-10-14 18:03:02 -07004566 // TODO - it would be nice in the single-address case to do
4567 // another DNS resolve here, but flushing the cache is a bit
4568 // heavy-handed.
Wink Saville4fea0412013-09-06 09:53:08 -07004569 result = CMP_RESULT_CODE_REDIRECTED;
4570 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004571 } catch (Exception e) {
Wink Saville1d3a89e2013-10-31 06:35:22 -07004572 log("isMobileOk: HttpURLConnection Exception" + e);
Wink Saville4fea0412013-09-06 09:53:08 -07004573 result = CMP_RESULT_CODE_NO_TCP_CONNECTION;
Wink Savilleab9321d2013-06-29 21:10:57 -07004574 if (urlConn != null) {
4575 urlConn.disconnect();
4576 urlConn = null;
4577 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004578 sleep(NET_ERROR_SLEEP_SEC);
4579 continue;
Wink Savilleab9321d2013-06-29 21:10:57 -07004580 }
4581 }
Wink Savilled95ccc52013-09-13 12:40:11 -07004582 log("isMobileOk: X loops|timed out result=" + result);
Wink Savilleab9321d2013-06-29 21:10:57 -07004583 return result;
4584 } catch (Exception e) {
4585 log("isMobileOk: Exception e=" + e);
4586 continue;
4587 }
4588 }
4589 log("isMobileOk: timed out");
4590 } finally {
4591 log("isMobileOk: F stop hipri");
4592 mCs.setEnableFailFastMobileData(DctConstants.DISABLED);
4593 mCs.stopUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
4594 Phone.FEATURE_ENABLE_HIPRI);
Wink Saville948282b2013-08-29 08:55:16 -07004595
4596 // Wait for hipri to disconnect.
4597 long endTime = SystemClock.elapsedRealtime() + 5000;
4598
4599 while(SystemClock.elapsedRealtime() < endTime) {
4600 NetworkInfo.State state = mCs
4601 .getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
4602 if (state != NetworkInfo.State.DISCONNECTED) {
4603 if (VDBG) {
4604 log("isMobileOk: connected ni=" +
4605 mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
4606 }
Wink Saville1d3a89e2013-10-31 06:35:22 -07004607 sleep(POLLING_SLEEP_SEC);
Wink Saville948282b2013-08-29 08:55:16 -07004608 continue;
4609 }
4610 }
4611
Wink Savilleab9321d2013-06-29 21:10:57 -07004612 log("isMobileOk: X result=" + result);
4613 }
4614 return result;
4615 }
4616
4617 @Override
4618 protected Integer doInBackground(Params... params) {
4619 return isMobileOk(params[0]);
4620 }
4621
4622 @Override
4623 protected void onPostExecute(Integer result) {
4624 log("onPostExecute: result=" + result);
4625 if ((mParams != null) && (mParams.mCb != null)) {
4626 mParams.mCb.onComplete(result);
4627 }
4628 }
4629
4630 private String inetAddressesToString(InetAddress[] addresses) {
4631 StringBuffer sb = new StringBuffer();
4632 boolean firstTime = true;
4633 for(InetAddress addr : addresses) {
4634 if (firstTime) {
4635 firstTime = false;
4636 } else {
4637 sb.append(",");
4638 }
4639 sb.append(addr);
4640 }
4641 return sb.toString();
4642 }
4643
4644 private void printNetworkInfo() {
4645 boolean hasIccCard = mTm.hasIccCard();
4646 int simState = mTm.getSimState();
4647 log("hasIccCard=" + hasIccCard
4648 + " simState=" + simState);
4649 NetworkInfo[] ni = mCs.getAllNetworkInfo();
4650 if (ni != null) {
4651 log("ni.length=" + ni.length);
4652 for (NetworkInfo netInfo: ni) {
4653 log("netInfo=" + netInfo.toString());
4654 }
4655 } else {
4656 log("no network info ni=null");
4657 }
4658 }
4659
4660 /**
4661 * Sleep for a few seconds then return.
4662 * @param seconds
4663 */
4664 private static void sleep(int seconds) {
Jake Hamby8f9b33e2014-01-15 13:08:03 -08004665 long stopTime = System.nanoTime() + (seconds * 1000000000);
4666 long sleepTime;
4667 while ((sleepTime = stopTime - System.nanoTime()) > 0) {
4668 try {
4669 Thread.sleep(sleepTime / 1000000);
4670 } catch (InterruptedException ignored) {
4671 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004672 }
4673 }
4674
Wink Saville1d3a89e2013-10-31 06:35:22 -07004675 private static void log(String s) {
Wink Savilleab9321d2013-06-29 21:10:57 -07004676 Slog.d(ConnectivityService.TAG, "[" + CHECKMP_TAG + "] " + s);
4677 }
4678 }
4679
Wink Saville948282b2013-08-29 08:55:16 -07004680 // TODO: Move to ConnectivityManager and make public?
4681 private static final String CONNECTED_TO_PROVISIONING_NETWORK_ACTION =
4682 "com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION";
Wink Savilleab9321d2013-06-29 21:10:57 -07004683
Wink Saville948282b2013-08-29 08:55:16 -07004684 private BroadcastReceiver mProvisioningReceiver = new BroadcastReceiver() {
4685 @Override
4686 public void onReceive(Context context, Intent intent) {
4687 if (intent.getAction().equals(CONNECTED_TO_PROVISIONING_NETWORK_ACTION)) {
4688 handleMobileProvisioningAction(intent.getStringExtra("EXTRA_URL"));
4689 }
4690 }
4691 };
4692
4693 private void handleMobileProvisioningAction(String url) {
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004694 // Mark notification as not visible
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004695 setProvNotificationVisible(false, ConnectivityManager.TYPE_MOBILE_HIPRI, null, null);
Wink Saville948282b2013-08-29 08:55:16 -07004696
4697 // If provisioning network handle as a special case,
4698 // otherwise launch browser with the intent directly.
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004699 if (mIsProvisioningNetwork.get()) {
4700 if (DBG) log("handleMobileProvisioningAction: on prov network enable then launch");
4701 mIsStartingProvisioning.set(true);
Wink Saville948282b2013-08-29 08:55:16 -07004702 MobileDataStateTracker mdst = (MobileDataStateTracker)
4703 mNetTrackers[ConnectivityManager.TYPE_MOBILE];
Robert Greenwalt42b746e2014-03-19 19:08:44 +00004704 mdst.setEnableFailFastMobileData(DctConstants.ENABLED);
Wink Saville948282b2013-08-29 08:55:16 -07004705 mdst.enableMobileProvisioning(url);
4706 } else {
Robert Greenwalt1b98e902014-03-19 12:41:54 -07004707 if (DBG) log("handleMobileProvisioningAction: not prov network");
Andrew Flynn0c3e1df2013-10-11 10:16:31 -07004708 // Check for apps that can handle provisioning first
4709 Intent provisioningIntent = new Intent(TelephonyIntents.ACTION_CARRIER_SETUP);
4710 provisioningIntent.addCategory(TelephonyIntents.CATEGORY_MCCMNC_PREFIX
4711 + mTelephonyManager.getSimOperator());
4712 if (mContext.getPackageManager().resolveActivity(provisioningIntent, 0 /* flags */)
4713 != null) {
4714 provisioningIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4715 Intent.FLAG_ACTIVITY_NEW_TASK);
4716 mContext.startActivity(provisioningIntent);
4717 } else {
4718 // If no apps exist, use standard URL ACTION_VIEW method
4719 Intent newIntent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN,
4720 Intent.CATEGORY_APP_BROWSER);
4721 newIntent.setData(Uri.parse(url));
4722 newIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4723 Intent.FLAG_ACTIVITY_NEW_TASK);
4724 try {
4725 mContext.startActivity(newIntent);
4726 } catch (ActivityNotFoundException e) {
4727 loge("handleMobileProvisioningAction: startActivity failed" + e);
4728 }
Wink Saville948282b2013-08-29 08:55:16 -07004729 }
4730 }
4731 }
4732
4733 private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
4734 private volatile boolean mIsNotificationVisible = false;
4735
4736 private void setProvNotificationVisible(boolean visible, int networkType, String extraInfo,
4737 String url) {
4738 if (DBG) {
4739 log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
4740 + " extraInfo=" + extraInfo + " url=" + url);
4741 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004742
4743 Resources r = Resources.getSystem();
4744 NotificationManager notificationManager = (NotificationManager) mContext
4745 .getSystemService(Context.NOTIFICATION_SERVICE);
4746
4747 if (visible) {
4748 CharSequence title;
4749 CharSequence details;
4750 int icon;
Wink Saville948282b2013-08-29 08:55:16 -07004751 Intent intent;
4752 Notification notification = new Notification();
4753 switch (networkType) {
Wink Savilleab9321d2013-06-29 21:10:57 -07004754 case ConnectivityManager.TYPE_WIFI:
Wink Savilleab9321d2013-06-29 21:10:57 -07004755 title = r.getString(R.string.wifi_available_sign_in, 0);
4756 details = r.getString(R.string.network_available_sign_in_detailed,
Wink Saville948282b2013-08-29 08:55:16 -07004757 extraInfo);
Wink Savilleab9321d2013-06-29 21:10:57 -07004758 icon = R.drawable.stat_notify_wifi_in_range;
Wink Saville948282b2013-08-29 08:55:16 -07004759 intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
4760 intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4761 Intent.FLAG_ACTIVITY_NEW_TASK);
4762 notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
Wink Savilleab9321d2013-06-29 21:10:57 -07004763 break;
4764 case ConnectivityManager.TYPE_MOBILE:
4765 case ConnectivityManager.TYPE_MOBILE_HIPRI:
Wink Savilleab9321d2013-06-29 21:10:57 -07004766 title = r.getString(R.string.network_available_sign_in, 0);
4767 // TODO: Change this to pull from NetworkInfo once a printable
4768 // name has been added to it
4769 details = mTelephonyManager.getNetworkOperatorName();
4770 icon = R.drawable.stat_notify_rssi_in_range;
Wink Saville948282b2013-08-29 08:55:16 -07004771 intent = new Intent(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
4772 intent.putExtra("EXTRA_URL", url);
4773 intent.setFlags(0);
4774 notification.contentIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
Wink Savilleab9321d2013-06-29 21:10:57 -07004775 break;
4776 default:
Wink Savilleab9321d2013-06-29 21:10:57 -07004777 title = r.getString(R.string.network_available_sign_in, 0);
4778 details = r.getString(R.string.network_available_sign_in_detailed,
Wink Saville948282b2013-08-29 08:55:16 -07004779 extraInfo);
Wink Savilleab9321d2013-06-29 21:10:57 -07004780 icon = R.drawable.stat_notify_rssi_in_range;
Wink Saville948282b2013-08-29 08:55:16 -07004781 intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
4782 intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4783 Intent.FLAG_ACTIVITY_NEW_TASK);
4784 notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
Wink Savilleab9321d2013-06-29 21:10:57 -07004785 break;
4786 }
4787
Wink Savilleab9321d2013-06-29 21:10:57 -07004788 notification.when = 0;
4789 notification.icon = icon;
4790 notification.flags = Notification.FLAG_AUTO_CANCEL;
Wink Savilleab9321d2013-06-29 21:10:57 -07004791 notification.tickerText = title;
4792 notification.setLatestEventInfo(mContext, title, details, notification.contentIntent);
4793
Wink Saville948282b2013-08-29 08:55:16 -07004794 try {
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004795 notificationManager.notify(NOTIFICATION_ID, networkType, notification);
Wink Saville948282b2013-08-29 08:55:16 -07004796 } catch (NullPointerException npe) {
4797 loge("setNotificaitionVisible: visible notificationManager npe=" + npe);
4798 npe.printStackTrace();
4799 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004800 } else {
Wink Saville948282b2013-08-29 08:55:16 -07004801 try {
Wink Saville3ec8e7f2013-10-03 08:34:46 -07004802 notificationManager.cancel(NOTIFICATION_ID, networkType);
Wink Saville948282b2013-08-29 08:55:16 -07004803 } catch (NullPointerException npe) {
4804 loge("setNotificaitionVisible: cancel notificationManager npe=" + npe);
4805 npe.printStackTrace();
4806 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004807 }
Wink Saville948282b2013-08-29 08:55:16 -07004808 mIsNotificationVisible = visible;
Wink Savilleab9321d2013-06-29 21:10:57 -07004809 }
4810
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004811 /** Location to an updatable file listing carrier provisioning urls.
4812 * An example:
4813 *
4814 * <?xml version="1.0" encoding="utf-8"?>
4815 * <provisioningUrls>
4816 * <provisioningUrl mcc="310" mnc="4">http://myserver.com/foo?mdn=%3$s&amp;iccid=%1$s&amp;imei=%2$s</provisioningUrl>
4817 * <redirectedUrl mcc="310" mnc="4">http://www.google.com</redirectedUrl>
4818 * </provisioningUrls>
4819 */
4820 private static final String PROVISIONING_URL_PATH =
4821 "/data/misc/radio/provisioning_urls.xml";
4822 private final File mProvisioningUrlFile = new File(PROVISIONING_URL_PATH);
Wink Savilleab9321d2013-06-29 21:10:57 -07004823
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004824 /** XML tag for root element. */
4825 private static final String TAG_PROVISIONING_URLS = "provisioningUrls";
4826 /** XML tag for individual url */
4827 private static final String TAG_PROVISIONING_URL = "provisioningUrl";
4828 /** XML tag for redirected url */
4829 private static final String TAG_REDIRECTED_URL = "redirectedUrl";
4830 /** XML attribute for mcc */
4831 private static final String ATTR_MCC = "mcc";
4832 /** XML attribute for mnc */
4833 private static final String ATTR_MNC = "mnc";
4834
4835 private static final int REDIRECTED_PROVISIONING = 1;
4836 private static final int PROVISIONING = 2;
4837
4838 private String getProvisioningUrlBaseFromFile(int type) {
4839 FileReader fileReader = null;
4840 XmlPullParser parser = null;
4841 Configuration config = mContext.getResources().getConfiguration();
4842 String tagType;
4843
4844 switch (type) {
4845 case PROVISIONING:
4846 tagType = TAG_PROVISIONING_URL;
4847 break;
4848 case REDIRECTED_PROVISIONING:
4849 tagType = TAG_REDIRECTED_URL;
4850 break;
4851 default:
4852 throw new RuntimeException("getProvisioningUrlBaseFromFile: Unexpected parameter " +
4853 type);
4854 }
4855
4856 try {
4857 fileReader = new FileReader(mProvisioningUrlFile);
4858 parser = Xml.newPullParser();
4859 parser.setInput(fileReader);
4860 XmlUtils.beginDocument(parser, TAG_PROVISIONING_URLS);
4861
4862 while (true) {
4863 XmlUtils.nextElement(parser);
4864
4865 String element = parser.getName();
4866 if (element == null) break;
4867
4868 if (element.equals(tagType)) {
4869 String mcc = parser.getAttributeValue(null, ATTR_MCC);
4870 try {
4871 if (mcc != null && Integer.parseInt(mcc) == config.mcc) {
4872 String mnc = parser.getAttributeValue(null, ATTR_MNC);
4873 if (mnc != null && Integer.parseInt(mnc) == config.mnc) {
4874 parser.next();
4875 if (parser.getEventType() == XmlPullParser.TEXT) {
4876 return parser.getText();
4877 }
4878 }
4879 }
4880 } catch (NumberFormatException e) {
4881 loge("NumberFormatException in getProvisioningUrlBaseFromFile: " + e);
4882 }
4883 }
4884 }
4885 return null;
4886 } catch (FileNotFoundException e) {
4887 loge("Carrier Provisioning Urls file not found");
4888 } catch (XmlPullParserException e) {
4889 loge("Xml parser exception reading Carrier Provisioning Urls file: " + e);
4890 } catch (IOException e) {
4891 loge("I/O exception reading Carrier Provisioning Urls file: " + e);
4892 } finally {
4893 if (fileReader != null) {
4894 try {
4895 fileReader.close();
4896 } catch (IOException e) {}
4897 }
4898 }
4899 return null;
4900 }
4901
Wink Saville42d4f082013-07-20 20:31:59 -07004902 @Override
4903 public String getMobileRedirectedProvisioningUrl() {
4904 enforceConnectivityInternalPermission();
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004905 String url = getProvisioningUrlBaseFromFile(REDIRECTED_PROVISIONING);
4906 if (TextUtils.isEmpty(url)) {
4907 url = mContext.getResources().getString(R.string.mobile_redirected_provisioning_url);
4908 }
4909 return url;
4910 }
4911
Wink Saville42d4f082013-07-20 20:31:59 -07004912 @Override
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004913 public String getMobileProvisioningUrl() {
4914 enforceConnectivityInternalPermission();
4915 String url = getProvisioningUrlBaseFromFile(PROVISIONING);
4916 if (TextUtils.isEmpty(url)) {
4917 url = mContext.getResources().getString(R.string.mobile_provisioning_url);
Wink Saville42d4f082013-07-20 20:31:59 -07004918 log("getMobileProvisioningUrl: mobile_provisioining_url from resource =" + url);
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004919 } else {
Wink Saville42d4f082013-07-20 20:31:59 -07004920 log("getMobileProvisioningUrl: mobile_provisioning_url from File =" + url);
Robert Greenwalte182bfe2013-07-16 12:06:09 -07004921 }
Wink Saville8cf35602013-07-10 23:00:07 -07004922 // populate the iccid, imei and phone number in the provisioning url.
Wink Savilleab9321d2013-06-29 21:10:57 -07004923 if (!TextUtils.isEmpty(url)) {
Wink Saville8cf35602013-07-10 23:00:07 -07004924 String phoneNumber = mTelephonyManager.getLine1Number();
4925 if (TextUtils.isEmpty(phoneNumber)) {
4926 phoneNumber = "0000000000";
4927 }
Wink Savilleab9321d2013-06-29 21:10:57 -07004928 url = String.format(url,
4929 mTelephonyManager.getSimSerialNumber() /* ICCID */,
4930 mTelephonyManager.getDeviceId() /* IMEI */,
Wink Saville8cf35602013-07-10 23:00:07 -07004931 phoneNumber /* Phone numer */);
Wink Savilleab9321d2013-06-29 21:10:57 -07004932 }
4933
Wink Savilleab9321d2013-06-29 21:10:57 -07004934 return url;
4935 }
Chad Brubaker4ca19e82013-06-14 11:16:51 -07004936
Wink Saville948282b2013-08-29 08:55:16 -07004937 @Override
4938 public void setProvisioningNotificationVisible(boolean visible, int networkType,
4939 String extraInfo, String url) {
4940 enforceConnectivityInternalPermission();
4941 setProvNotificationVisible(visible, networkType, extraInfo, url);
4942 }
Wink Saville7788c612013-08-29 14:57:08 -07004943
Yuhao Zheng5cd1a0e2013-09-09 17:00:04 -07004944 @Override
4945 public void setAirplaneMode(boolean enable) {
4946 enforceConnectivityInternalPermission();
Yuhao Zheng5cd1a0e2013-09-09 17:00:04 -07004947 final long ident = Binder.clearCallingIdentity();
4948 try {
Yuhao Zheng5530e4b2013-09-11 09:36:41 -07004949 final ContentResolver cr = mContext.getContentResolver();
4950 Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, enable ? 1 : 0);
4951 Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
4952 intent.putExtra("state", enable);
Yuhao Zheng5cd1a0e2013-09-09 17:00:04 -07004953 mContext.sendBroadcast(intent);
4954 } finally {
4955 Binder.restoreCallingIdentity(ident);
4956 }
4957 }
4958
Chad Brubaker4ca19e82013-06-14 11:16:51 -07004959 private void onUserStart(int userId) {
4960 synchronized(mVpns) {
4961 Vpn userVpn = mVpns.get(userId);
4962 if (userVpn != null) {
4963 loge("Starting user already has a VPN");
4964 return;
4965 }
4966 userVpn = new Vpn(mContext, mVpnCallback, mNetd, this, userId);
4967 mVpns.put(userId, userVpn);
4968 userVpn.startMonitoring(mContext, mTrackerHandler);
4969 }
4970 }
4971
4972 private void onUserStop(int userId) {
4973 synchronized(mVpns) {
4974 Vpn userVpn = mVpns.get(userId);
4975 if (userVpn == null) {
4976 loge("Stopping user has no VPN");
4977 return;
4978 }
4979 mVpns.delete(userId);
4980 }
4981 }
4982
4983 private BroadcastReceiver mUserIntentReceiver = new BroadcastReceiver() {
4984 @Override
4985 public void onReceive(Context context, Intent intent) {
4986 final String action = intent.getAction();
4987 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
4988 if (userId == UserHandle.USER_NULL) return;
4989
4990 if (Intent.ACTION_USER_STARTING.equals(action)) {
4991 onUserStart(userId);
4992 } else if (Intent.ACTION_USER_STOPPING.equals(action)) {
4993 onUserStop(userId);
4994 }
4995 }
4996 };
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07004997
4998 @Override
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07004999 public LinkQualityInfo getLinkQualityInfo(int networkType) {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005000 enforceAccessPermission();
5001 if (isNetworkTypeValid(networkType)) {
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005002 return mNetTrackers[networkType].getLinkQualityInfo();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005003 } else {
5004 return null;
5005 }
5006 }
5007
5008 @Override
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005009 public LinkQualityInfo getActiveLinkQualityInfo() {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005010 enforceAccessPermission();
5011 if (isNetworkTypeValid(mActiveDefaultNetwork)) {
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005012 return mNetTrackers[mActiveDefaultNetwork].getLinkQualityInfo();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005013 } else {
5014 return null;
5015 }
5016 }
5017
5018 @Override
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005019 public LinkQualityInfo[] getAllLinkQualityInfo() {
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005020 enforceAccessPermission();
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005021 final ArrayList<LinkQualityInfo> result = Lists.newArrayList();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005022 for (NetworkStateTracker tracker : mNetTrackers) {
5023 if (tracker != null) {
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005024 LinkQualityInfo li = tracker.getLinkQualityInfo();
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005025 if (li != null) {
5026 result.add(li);
5027 }
5028 }
5029 }
5030
Vinit Deshapnde6a2d3252013-09-04 14:11:24 -07005031 return result.toArray(new LinkQualityInfo[result.size()]);
Vinit Deshapnde1f12cb52013-08-21 13:09:01 -07005032 }
5033
5034 /* Infrastructure for network sampling */
5035
5036 private void handleNetworkSamplingTimeout() {
5037
5038 log("Sampling interval elapsed, updating statistics ..");
5039
5040 // initialize list of interfaces ..
5041 Map<String, SamplingDataTracker.SamplingSnapshot> mapIfaceToSample =
5042 new HashMap<String, SamplingDataTracker.SamplingSnapshot>();
5043 for (NetworkStateTracker tracker : mNetTrackers) {
5044 if (tracker != null) {
5045 String ifaceName = tracker.getNetworkInterfaceName();
5046 if (ifaceName != null) {
5047 mapIfaceToSample.put(ifaceName, null);
5048 }
5049 }
5050 }
5051
5052 // Read samples for all interfaces
5053 SamplingDataTracker.getSamplingSnapshots(mapIfaceToSample);
5054
5055 // process samples for all networks
5056 for (NetworkStateTracker tracker : mNetTrackers) {
5057 if (tracker != null) {
5058 String ifaceName = tracker.getNetworkInterfaceName();
5059 SamplingDataTracker.SamplingSnapshot ss = mapIfaceToSample.get(ifaceName);
5060 if (ss != null) {
5061 // end the previous sampling cycle
5062 tracker.stopSampling(ss);
5063 // start a new sampling cycle ..
5064 tracker.startSampling(ss);
5065 }
5066 }
5067 }
5068
5069 log("Done.");
5070
5071 int samplingIntervalInSeconds = Settings.Global.getInt(mContext.getContentResolver(),
5072 Settings.Global.CONNECTIVITY_SAMPLING_INTERVAL_IN_SECONDS,
5073 DEFAULT_SAMPLING_INTERVAL_IN_SECONDS);
5074
5075 if (DBG) log("Setting timer for " + String.valueOf(samplingIntervalInSeconds) + "seconds");
5076
5077 setAlarm(samplingIntervalInSeconds * 1000, mSampleIntervalElapsedIntent);
5078 }
5079
5080 void setAlarm(int timeoutInMilliseconds, PendingIntent intent) {
5081 long wakeupTime = SystemClock.elapsedRealtime() + timeoutInMilliseconds;
5082 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, wakeupTime, intent);
5083 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005084}