blob: 99a0567ef406c2c681e8d3847dd3511d8402cc7c [file] [log] [blame]
Paul Jensenca8f16a2014-05-09 12:47:55 -04001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.connectivity;
18
Paul Jensen79a08052014-08-21 12:44:07 -040019import android.app.AlarmManager;
Paul Jensen869868be2014-05-15 10:33:05 -040020import android.app.PendingIntent;
21import android.content.BroadcastReceiver;
22import android.content.ComponentName;
Paul Jensenca8f16a2014-05-09 12:47:55 -040023import android.content.Context;
Paul Jensen869868be2014-05-15 10:33:05 -040024import android.content.Intent;
25import android.content.IntentFilter;
26import android.net.ConnectivityManager;
Paul Jensen2c311d62014-11-17 12:34:51 -050027import android.net.NetworkRequest;
Paul Jensen8fe17422015-02-02 11:03:03 -050028import android.net.ProxyInfo;
Paul Jensen7ccd3df2014-08-29 09:54:01 -040029import android.net.TrafficStats;
Paul Jensen71b645f2014-10-13 14:13:07 -040030import android.net.Uri;
Paul Jensen306f1a42014-08-04 10:59:01 -040031import android.net.wifi.WifiInfo;
32import android.net.wifi.WifiManager;
Paul Jensenca8f16a2014-05-09 12:47:55 -040033import android.os.Handler;
34import android.os.Message;
Paul Jensend7b6ca92015-05-13 14:05:12 -040035import android.os.Process;
Paul Jensen306f1a42014-08-04 10:59:01 -040036import android.os.SystemClock;
Paul Jensenca8f16a2014-05-09 12:47:55 -040037import android.os.SystemProperties;
Paul Jensen869868be2014-05-15 10:33:05 -040038import android.os.UserHandle;
Paul Jensenca8f16a2014-05-09 12:47:55 -040039import android.provider.Settings;
Paul Jensen306f1a42014-08-04 10:59:01 -040040import android.telephony.CellIdentityCdma;
41import android.telephony.CellIdentityGsm;
42import android.telephony.CellIdentityLte;
43import android.telephony.CellIdentityWcdma;
44import android.telephony.CellInfo;
45import android.telephony.CellInfoCdma;
46import android.telephony.CellInfoGsm;
47import android.telephony.CellInfoLte;
48import android.telephony.CellInfoWcdma;
49import android.telephony.TelephonyManager;
Paul Jensen532b61432014-11-10 09:50:02 -050050import android.util.Log;
Paul Jensenca8f16a2014-05-09 12:47:55 -040051
Paul Jensend7b6ca92015-05-13 14:05:12 -040052import com.android.internal.annotations.VisibleForTesting;
Paul Jensenca8f16a2014-05-09 12:47:55 -040053import com.android.internal.util.Protocol;
54import com.android.internal.util.State;
55import com.android.internal.util.StateMachine;
56import com.android.server.connectivity.NetworkAgentInfo;
57
Paul Jensenca8f16a2014-05-09 12:47:55 -040058import java.io.IOException;
Paul Jensenca8f16a2014-05-09 12:47:55 -040059import java.net.HttpURLConnection;
Paul Jensenca8f16a2014-05-09 12:47:55 -040060import java.net.URL;
Paul Jensen306f1a42014-08-04 10:59:01 -040061import java.util.List;
Paul Jensen71b645f2014-10-13 14:13:07 -040062import java.util.Random;
Paul Jensenca8f16a2014-05-09 12:47:55 -040063
64/**
65 * {@hide}
66 */
67public class NetworkMonitor extends StateMachine {
68 private static final boolean DBG = true;
69 private static final String TAG = "NetworkMonitor";
Lorenzo Colitticd29cb62015-01-14 00:16:03 +090070 private static final String DEFAULT_SERVER = "connectivitycheck.android.com";
Paul Jensenca8f16a2014-05-09 12:47:55 -040071 private static final int SOCKET_TIMEOUT_MS = 10000;
Paul Jensen306f1a42014-08-04 10:59:01 -040072 public static final String ACTION_NETWORK_CONDITIONS_MEASURED =
73 "android.net.conn.NETWORK_CONDITIONS_MEASURED";
74 public static final String EXTRA_CONNECTIVITY_TYPE = "extra_connectivity_type";
75 public static final String EXTRA_NETWORK_TYPE = "extra_network_type";
76 public static final String EXTRA_RESPONSE_RECEIVED = "extra_response_received";
77 public static final String EXTRA_IS_CAPTIVE_PORTAL = "extra_is_captive_portal";
78 public static final String EXTRA_CELL_ID = "extra_cellid";
79 public static final String EXTRA_SSID = "extra_ssid";
80 public static final String EXTRA_BSSID = "extra_bssid";
81 /** real time since boot */
82 public static final String EXTRA_REQUEST_TIMESTAMP_MS = "extra_request_timestamp_ms";
83 public static final String EXTRA_RESPONSE_TIMESTAMP_MS = "extra_response_timestamp_ms";
84
85 private static final String PERMISSION_ACCESS_NETWORK_CONDITIONS =
86 "android.permission.ACCESS_NETWORK_CONDITIONS";
Paul Jensenca8f16a2014-05-09 12:47:55 -040087
Paul Jensenad50a1f2014-09-05 12:06:44 -040088 // After a network has been tested this result can be sent with EVENT_NETWORK_TESTED.
89 // The network should be used as a default internet connection. It was found to be:
90 // 1. a functioning network providing internet access, or
91 // 2. a captive portal and the user decided to use it as is.
92 public static final int NETWORK_TEST_RESULT_VALID = 0;
93 // After a network has been tested this result can be sent with EVENT_NETWORK_TESTED.
94 // The network should not be used as a default internet connection. It was found to be:
95 // 1. a captive portal and the user is prompted to sign-in, or
96 // 2. a captive portal and the user did not want to use it, or
97 // 3. a broken network (e.g. DNS failed, connect failed, HTTP request failed).
98 public static final int NETWORK_TEST_RESULT_INVALID = 1;
99
Paul Jensenca8f16a2014-05-09 12:47:55 -0400100 private static final int BASE = Protocol.BASE_NETWORK_MONITOR;
101
102 /**
103 * Inform NetworkMonitor that their network is connected.
104 * Initiates Network Validation.
105 */
106 public static final int CMD_NETWORK_CONNECTED = BASE + 1;
107
108 /**
Paul Jensenad50a1f2014-09-05 12:06:44 -0400109 * Inform ConnectivityService that the network has been tested.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400110 * obj = NetworkAgentInfo
Paul Jensenad50a1f2014-09-05 12:06:44 -0400111 * arg1 = One of the NETWORK_TESTED_RESULT_* constants.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400112 */
Paul Jensenad50a1f2014-09-05 12:06:44 -0400113 public static final int EVENT_NETWORK_TESTED = BASE + 2;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400114
115 /**
116 * Inform NetworkMonitor to linger a network. The Monitor should
117 * start a timer and/or start watching for zero live connections while
118 * moving towards LINGER_COMPLETE. After the Linger period expires
119 * (or other events mark the end of the linger state) the LINGER_COMPLETE
120 * event should be sent and the network will be shut down. If a
121 * CMD_NETWORK_CONNECTED happens before the LINGER completes
122 * it indicates further desire to keep the network alive and so
123 * the LINGER is aborted.
124 */
125 public static final int CMD_NETWORK_LINGER = BASE + 3;
126
127 /**
128 * Message to self indicating linger delay has expired.
129 * arg1 = Token to ignore old messages.
130 */
131 private static final int CMD_LINGER_EXPIRED = BASE + 4;
132
133 /**
134 * Inform ConnectivityService that the network LINGER period has
135 * expired.
136 * obj = NetworkAgentInfo
137 */
138 public static final int EVENT_NETWORK_LINGER_COMPLETE = BASE + 5;
139
140 /**
Paul Jensenca8f16a2014-05-09 12:47:55 -0400141 * Message to self indicating it's time to evaluate a network's connectivity.
142 * arg1 = Token to ignore old messages.
143 */
Paul Jensen869868be2014-05-15 10:33:05 -0400144 private static final int CMD_REEVALUATE = BASE + 6;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400145
146 /**
Paul Jensenca8f16a2014-05-09 12:47:55 -0400147 * Inform NetworkMonitor that the network has disconnected.
148 */
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400149 public static final int CMD_NETWORK_DISCONNECTED = BASE + 7;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400150
151 /**
152 * Force evaluation even if it has succeeded in the past.
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400153 * arg1 = UID responsible for requesting this reeval. Will be billed for data.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400154 */
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400155 public static final int CMD_FORCE_REEVALUATION = BASE + 8;
Paul Jensen869868be2014-05-15 10:33:05 -0400156
157 /**
Paul Jensen71b645f2014-10-13 14:13:07 -0400158 * Message to self indicating captive portal app finished.
Paul Jensen25a217c2015-02-27 22:55:47 -0500159 * arg1 = one of: CAPTIVE_PORTAL_APP_RETURN_DISMISSED,
Paul Jensen71b645f2014-10-13 14:13:07 -0400160 * CAPTIVE_PORTAL_APP_RETURN_UNWANTED,
161 * CAPTIVE_PORTAL_APP_RETURN_WANTED_AS_IS
Paul Jensen25a217c2015-02-27 22:55:47 -0500162 * obj = mCaptivePortalLoggedInResponseToken as String
Paul Jensen869868be2014-05-15 10:33:05 -0400163 */
Paul Jensen25a217c2015-02-27 22:55:47 -0500164 public static final int CMD_CAPTIVE_PORTAL_APP_FINISHED = BASE + 9;
Paul Jensen869868be2014-05-15 10:33:05 -0400165
166 /**
167 * Request ConnectivityService display provisioning notification.
168 * arg1 = Whether to make the notification visible.
Paul Jensenfdc4e4a2014-07-15 12:07:36 -0400169 * arg2 = NetID.
170 * obj = Intent to be launched when notification selected by user, null if !arg1.
Paul Jensen869868be2014-05-15 10:33:05 -0400171 */
Paul Jensen71b645f2014-10-13 14:13:07 -0400172 public static final int EVENT_PROVISIONING_NOTIFICATION = BASE + 10;
Paul Jensen869868be2014-05-15 10:33:05 -0400173
174 /**
Paul Jensen25a217c2015-02-27 22:55:47 -0500175 * Message to self indicating sign-in app should be launched.
176 * Sent by mLaunchCaptivePortalAppBroadcastReceiver when the
177 * user touches the sign in notification.
Paul Jensen869868be2014-05-15 10:33:05 -0400178 */
Paul Jensen25a217c2015-02-27 22:55:47 -0500179 private static final int CMD_LAUNCH_CAPTIVE_PORTAL_APP = BASE + 11;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400180
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400181 /**
182 * Retest network to see if captive portal is still in place.
183 * arg1 = UID responsible for requesting this reeval. Will be billed for data.
184 * 0 indicates self-initiated, so nobody to blame.
185 */
186 private static final int CMD_CAPTIVE_PORTAL_RECHECK = BASE + 12;
187
Paul Jensenca8f16a2014-05-09 12:47:55 -0400188 private static final String LINGER_DELAY_PROPERTY = "persist.netmon.linger";
Paul Jensend7b6ca92015-05-13 14:05:12 -0400189 // Default to 30s linger time-out. Modifyable only for testing.
190 private static int DEFAULT_LINGER_DELAY_MS = 30000;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400191 private final int mLingerDelayMs;
192 private int mLingerToken = 0;
193
Paul Jensend0491e9a2015-05-05 14:52:22 -0400194 // Start mReevaluateDelayMs at this value and double.
195 private static final int INITIAL_REEVALUATE_DELAY_MS = 1000;
196 private static final int MAX_REEVALUATE_DELAY_MS = 10*60*1000;
197 // Before network has been evaluated this many times, ignore repeated reevaluate requests.
198 private static final int IGNORE_REEVALUATE_ATTEMPTS = 5;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400199 private int mReevaluateToken = 0;
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400200 private static final int INVALID_UID = -1;
201 private int mUidResponsibleForReeval = INVALID_UID;
Paul Jensend9be23f2015-05-19 14:51:47 -0400202 // Stop blaming UID that requested re-evaluation after this many attempts.
203 private static final int BLAME_FOR_EVALUATION_ATTEMPTS = 5;
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400204 // Delay between reevaluations once a captive portal has been found.
205 private static final int CAPTIVE_PORTAL_REEVALUATE_DELAY_MS = 10*60*1000;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400206
207 private final Context mContext;
208 private final Handler mConnectivityServiceHandler;
209 private final NetworkAgentInfo mNetworkAgentInfo;
Paul Jensen306f1a42014-08-04 10:59:01 -0400210 private final TelephonyManager mTelephonyManager;
211 private final WifiManager mWifiManager;
Paul Jensen79a08052014-08-21 12:44:07 -0400212 private final AlarmManager mAlarmManager;
Paul Jensen2c311d62014-11-17 12:34:51 -0500213 private final NetworkRequest mDefaultRequest;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400214
215 private String mServer;
216 private boolean mIsCaptivePortalCheckEnabled = false;
217
Paul Jensenad50a1f2014-09-05 12:06:44 -0400218 // Set if the user explicitly selected "Do not use this network" in captive portal sign-in app.
219 private boolean mUserDoesNotWant = false;
Paul Jensen700f2362015-05-05 14:56:10 -0400220 // Avoids surfacing "Sign in to network" notification.
221 private boolean mDontDisplaySigninNotification = false;
Paul Jensenad50a1f2014-09-05 12:06:44 -0400222
Robert Greenwaltfb68f8f2014-08-13 13:43:32 -0700223 public boolean systemReady = false;
224
Paul Jensen71b645f2014-10-13 14:13:07 -0400225 private final State mDefaultState = new DefaultState();
Paul Jensen71b645f2014-10-13 14:13:07 -0400226 private final State mValidatedState = new ValidatedState();
227 private final State mMaybeNotifyState = new MaybeNotifyState();
228 private final State mEvaluatingState = new EvaluatingState();
229 private final State mCaptivePortalState = new CaptivePortalState();
230 private final State mLingeringState = new LingeringState();
231
Paul Jensen25a217c2015-02-27 22:55:47 -0500232 private CustomIntentReceiver mLaunchCaptivePortalAppBroadcastReceiver = null;
Paul Jensen71b645f2014-10-13 14:13:07 -0400233 private String mCaptivePortalLoggedInResponseToken = null;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400234
Paul Jensen2c311d62014-11-17 12:34:51 -0500235 public NetworkMonitor(Context context, Handler handler, NetworkAgentInfo networkAgentInfo,
236 NetworkRequest defaultRequest) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400237 // Add suffix indicating which NetworkMonitor we're talking about.
238 super(TAG + networkAgentInfo.name());
239
240 mContext = context;
241 mConnectivityServiceHandler = handler;
242 mNetworkAgentInfo = networkAgentInfo;
Paul Jensen306f1a42014-08-04 10:59:01 -0400243 mTelephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
244 mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
Paul Jensen79a08052014-08-21 12:44:07 -0400245 mAlarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Paul Jensen2c311d62014-11-17 12:34:51 -0500246 mDefaultRequest = defaultRequest;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400247
248 addState(mDefaultState);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400249 addState(mValidatedState, mDefaultState);
Paul Jensen71b645f2014-10-13 14:13:07 -0400250 addState(mMaybeNotifyState, mDefaultState);
251 addState(mEvaluatingState, mMaybeNotifyState);
252 addState(mCaptivePortalState, mMaybeNotifyState);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400253 addState(mLingeringState, mDefaultState);
Robert Greenwalt49f63fb2014-09-13 12:04:12 -0700254 setInitialState(mDefaultState);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400255
256 mServer = Settings.Global.getString(mContext.getContentResolver(),
257 Settings.Global.CAPTIVE_PORTAL_SERVER);
258 if (mServer == null) mServer = DEFAULT_SERVER;
259
260 mLingerDelayMs = SystemProperties.getInt(LINGER_DELAY_PROPERTY, DEFAULT_LINGER_DELAY_MS);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400261
Paul Jensen869868be2014-05-15 10:33:05 -0400262 mIsCaptivePortalCheckEnabled = Settings.Global.getInt(mContext.getContentResolver(),
263 Settings.Global.CAPTIVE_PORTAL_DETECTION_ENABLED, 1) == 1;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400264
Paul Jensen71b645f2014-10-13 14:13:07 -0400265 mCaptivePortalLoggedInResponseToken = String.valueOf(new Random().nextLong());
266
Paul Jensenca8f16a2014-05-09 12:47:55 -0400267 start();
268 }
269
Paul Jensen532b61432014-11-10 09:50:02 -0500270 @Override
271 protected void log(String s) {
Paul Jensen71b645f2014-10-13 14:13:07 -0400272 Log.d(TAG + "/" + mNetworkAgentInfo.name(), s);
Paul Jensen532b61432014-11-10 09:50:02 -0500273 }
274
Paul Jensen71b645f2014-10-13 14:13:07 -0400275 // DefaultState is the parent of all States. It exists only to handle CMD_* messages but
276 // does not entail any real state (hence no enter() or exit() routines).
Paul Jensenca8f16a2014-05-09 12:47:55 -0400277 private class DefaultState extends State {
278 @Override
279 public boolean processMessage(Message message) {
280 if (DBG) log(getName() + message.toString());
281 switch (message.what) {
282 case CMD_NETWORK_LINGER:
283 if (DBG) log("Lingering");
284 transitionTo(mLingeringState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400285 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400286 case CMD_NETWORK_CONNECTED:
287 if (DBG) log("Connected");
288 transitionTo(mEvaluatingState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400289 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400290 case CMD_NETWORK_DISCONNECTED:
Robert Greenwalt1fd9aee2014-07-17 16:11:38 -0700291 if (DBG) log("Disconnected - quitting");
Paul Jensen25a217c2015-02-27 22:55:47 -0500292 if (mLaunchCaptivePortalAppBroadcastReceiver != null) {
293 mContext.unregisterReceiver(mLaunchCaptivePortalAppBroadcastReceiver);
294 mLaunchCaptivePortalAppBroadcastReceiver = null;
Paul Jensen71b645f2014-10-13 14:13:07 -0400295 }
Robert Greenwalt1fd9aee2014-07-17 16:11:38 -0700296 quit();
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400297 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400298 case CMD_FORCE_REEVALUATION:
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400299 case CMD_CAPTIVE_PORTAL_RECHECK:
Paul Jensenca8f16a2014-05-09 12:47:55 -0400300 if (DBG) log("Forcing reevaluation");
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400301 mUidResponsibleForReeval = message.arg1;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400302 transitionTo(mEvaluatingState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400303 return HANDLED;
Paul Jensen71b645f2014-10-13 14:13:07 -0400304 case CMD_CAPTIVE_PORTAL_APP_FINISHED:
Paul Jensen25a217c2015-02-27 22:55:47 -0500305 if (!mCaptivePortalLoggedInResponseToken.equals((String)message.obj))
306 return HANDLED;
307 // Previous token was sent out, come up with a new one.
Paul Jensen71b645f2014-10-13 14:13:07 -0400308 mCaptivePortalLoggedInResponseToken = String.valueOf(new Random().nextLong());
309 switch (message.arg1) {
Paul Jensen25a217c2015-02-27 22:55:47 -0500310 case ConnectivityManager.CAPTIVE_PORTAL_APP_RETURN_DISMISSED:
Paul Jensend0491e9a2015-05-05 14:52:22 -0400311 sendMessage(CMD_FORCE_REEVALUATION, 0 /* no UID */, 0);
Paul Jensen25a217c2015-02-27 22:55:47 -0500312 break;
313 case ConnectivityManager.CAPTIVE_PORTAL_APP_RETURN_WANTED_AS_IS:
Paul Jensen700f2362015-05-05 14:56:10 -0400314 mDontDisplaySigninNotification = true;
Paul Jensen25a217c2015-02-27 22:55:47 -0500315 // TODO: Distinguish this from a network that actually validates.
316 // Displaying the "!" on the system UI icon may still be a good idea.
Paul Jensen71b645f2014-10-13 14:13:07 -0400317 transitionTo(mValidatedState);
318 break;
Paul Jensen25a217c2015-02-27 22:55:47 -0500319 case ConnectivityManager.CAPTIVE_PORTAL_APP_RETURN_UNWANTED:
Paul Jensen700f2362015-05-05 14:56:10 -0400320 mDontDisplaySigninNotification = true;
Paul Jensen71b645f2014-10-13 14:13:07 -0400321 mUserDoesNotWant = true;
Paul Jensend0491e9a2015-05-05 14:52:22 -0400322 mConnectivityServiceHandler.sendMessage(obtainMessage(
323 EVENT_NETWORK_TESTED, NETWORK_TEST_RESULT_INVALID, 0,
324 mNetworkAgentInfo));
Paul Jensen71b645f2014-10-13 14:13:07 -0400325 // TODO: Should teardown network.
Paul Jensend0491e9a2015-05-05 14:52:22 -0400326 mUidResponsibleForReeval = 0;
327 transitionTo(mEvaluatingState);
Paul Jensen71b645f2014-10-13 14:13:07 -0400328 break;
329 }
330 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400331 default:
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400332 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400333 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400334 }
335 }
336
Paul Jensen71b645f2014-10-13 14:13:07 -0400337 // Being in the ValidatedState State indicates a Network is:
338 // - Successfully validated, or
339 // - Wanted "as is" by the user, or
340 // - Does not satsify the default NetworkRequest and so validation has been skipped.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400341 private class ValidatedState extends State {
342 @Override
343 public void enter() {
344 if (DBG) log("Validated");
Paul Jensenad50a1f2014-09-05 12:06:44 -0400345 mConnectivityServiceHandler.sendMessage(obtainMessage(EVENT_NETWORK_TESTED,
346 NETWORK_TEST_RESULT_VALID, 0, mNetworkAgentInfo));
Paul Jensenca8f16a2014-05-09 12:47:55 -0400347 }
348
349 @Override
350 public boolean processMessage(Message message) {
351 if (DBG) log(getName() + message.toString());
352 switch (message.what) {
353 case CMD_NETWORK_CONNECTED:
354 transitionTo(mValidatedState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400355 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400356 default:
357 return NOT_HANDLED;
358 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400359 }
360 }
361
Paul Jensen71b645f2014-10-13 14:13:07 -0400362 // Being in the MaybeNotifyState State indicates the user may have been notified that sign-in
363 // is required. This State takes care to clear the notification upon exit from the State.
364 private class MaybeNotifyState extends State {
365 @Override
Paul Jensen25a217c2015-02-27 22:55:47 -0500366 public boolean processMessage(Message message) {
367 if (DBG) log(getName() + message.toString());
368 switch (message.what) {
369 case CMD_LAUNCH_CAPTIVE_PORTAL_APP:
370 final Intent intent = new Intent(
371 ConnectivityManager.ACTION_CAPTIVE_PORTAL_SIGN_IN);
372 intent.putExtra(ConnectivityManager.EXTRA_NETWORK, mNetworkAgentInfo.network);
373 intent.putExtra(ConnectivityManager.EXTRA_CAPTIVE_PORTAL_TOKEN,
374 mCaptivePortalLoggedInResponseToken);
375 intent.setFlags(
376 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT | Intent.FLAG_ACTIVITY_NEW_TASK);
377 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
378 return HANDLED;
379 default:
380 return NOT_HANDLED;
381 }
382 }
383
384 @Override
Paul Jensen71b645f2014-10-13 14:13:07 -0400385 public void exit() {
386 Message message = obtainMessage(EVENT_PROVISIONING_NOTIFICATION, 0,
387 mNetworkAgentInfo.network.netId, null);
388 mConnectivityServiceHandler.sendMessage(message);
389 }
390 }
391
392 // Being in the EvaluatingState State indicates the Network is being evaluated for internet
Paul Jensend0491e9a2015-05-05 14:52:22 -0400393 // connectivity, or that the user has indicated that this network is unwanted.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400394 private class EvaluatingState extends State {
Paul Jensend0491e9a2015-05-05 14:52:22 -0400395 private int mReevaluateDelayMs;
396 private int mAttempts;
Paul Jensen869868be2014-05-15 10:33:05 -0400397
Paul Jensenca8f16a2014-05-09 12:47:55 -0400398 @Override
399 public void enter() {
400 sendMessage(CMD_REEVALUATE, ++mReevaluateToken, 0);
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400401 if (mUidResponsibleForReeval != INVALID_UID) {
402 TrafficStats.setThreadStatsUid(mUidResponsibleForReeval);
403 mUidResponsibleForReeval = INVALID_UID;
404 }
Paul Jensend0491e9a2015-05-05 14:52:22 -0400405 mReevaluateDelayMs = INITIAL_REEVALUATE_DELAY_MS;
406 mAttempts = 0;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400407 }
408
409 @Override
410 public boolean processMessage(Message message) {
411 if (DBG) log(getName() + message.toString());
412 switch (message.what) {
413 case CMD_REEVALUATE:
Paul Jensend0491e9a2015-05-05 14:52:22 -0400414 if (message.arg1 != mReevaluateToken || mUserDoesNotWant)
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400415 return HANDLED;
Paul Jensen2c311d62014-11-17 12:34:51 -0500416 // Don't bother validating networks that don't satisify the default request.
417 // This includes:
418 // - VPNs which can be considered explicitly desired by the user and the
419 // user's desire trumps whether the network validates.
420 // - Networks that don't provide internet access. It's unclear how to
421 // validate such networks.
422 // - Untrusted networks. It's unsafe to prompt the user to sign-in to
423 // such networks and the user didn't express interest in connecting to
424 // such networks (an app did) so the user may be unhappily surprised when
425 // asked to sign-in to a network they didn't want to connect to in the
426 // first place. Validation could be done to adjust the network scores
427 // however these networks are app-requested and may not be intended for
428 // general usage, in which case general validation may not be an accurate
429 // measure of the network's quality. Only the app knows how to evaluate
430 // the network so don't bother validating here. Furthermore sending HTTP
431 // packets over the network may be undesirable, for example an extremely
432 // expensive metered network, or unwanted leaking of the User Agent string.
433 if (!mDefaultRequest.networkCapabilities.satisfiedByNetworkCapabilities(
434 mNetworkAgentInfo.networkCapabilities)) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400435 transitionTo(mValidatedState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400436 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400437 }
Paul Jensend0491e9a2015-05-05 14:52:22 -0400438 mAttempts++;
Lorenzo Colitti351bfad2015-01-22 22:36:50 +0900439 // Note: This call to isCaptivePortal() could take up to a minute. Resolving the
440 // server's IP addresses could hit the DNS timeout, and attempting connections
441 // to each of the server's several IP addresses (currently one IPv4 and one
442 // IPv6) could each take SOCKET_TIMEOUT_MS. During this time this StateMachine
443 // will be unresponsive. isCaptivePortal() could be executed on another Thread
444 // if this is found to cause problems.
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400445 int httpResponseCode = isCaptivePortal();
Paul Jensenca8f16a2014-05-09 12:47:55 -0400446 if (httpResponseCode == 204) {
447 transitionTo(mValidatedState);
448 } else if (httpResponseCode >= 200 && httpResponseCode <= 399) {
Paul Jensen71b645f2014-10-13 14:13:07 -0400449 transitionTo(mCaptivePortalState);
Paul Jensend0491e9a2015-05-05 14:52:22 -0400450 } else {
Paul Jensend9be23f2015-05-19 14:51:47 -0400451 final Message msg = obtainMessage(CMD_REEVALUATE, ++mReevaluateToken, 0);
Paul Jensen869868be2014-05-15 10:33:05 -0400452 sendMessageDelayed(msg, mReevaluateDelayMs);
Paul Jensend9be23f2015-05-19 14:51:47 -0400453 mConnectivityServiceHandler.sendMessage(obtainMessage(
454 EVENT_NETWORK_TESTED, NETWORK_TEST_RESULT_INVALID, 0,
455 mNetworkAgentInfo));
456 if (mAttempts >= BLAME_FOR_EVALUATION_ATTEMPTS) {
Paul Jensend0491e9a2015-05-05 14:52:22 -0400457 // Don't continue to blame UID forever.
458 TrafficStats.clearThreadStatsUid();
459 }
460 mReevaluateDelayMs *= 2;
461 if (mReevaluateDelayMs > MAX_REEVALUATE_DELAY_MS) {
462 mReevaluateDelayMs = MAX_REEVALUATE_DELAY_MS;
463 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400464 }
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400465 return HANDLED;
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400466 case CMD_FORCE_REEVALUATION:
Paul Jensend0491e9a2015-05-05 14:52:22 -0400467 // Before IGNORE_REEVALUATE_ATTEMPTS attempts are made,
468 // ignore any re-evaluation requests. After, restart the
469 // evaluation process via EvaluatingState#enter.
470 return mAttempts < IGNORE_REEVALUATE_ATTEMPTS ? HANDLED : NOT_HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400471 default:
472 return NOT_HANDLED;
473 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400474 }
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400475
476 @Override
477 public void exit() {
478 TrafficStats.clearThreadStatsUid();
479 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400480 }
481
Paul Jensendcbe8352014-09-16 16:28:34 -0400482 // BroadcastReceiver that waits for a particular Intent and then posts a message.
483 private class CustomIntentReceiver extends BroadcastReceiver {
Paul Jensen71b645f2014-10-13 14:13:07 -0400484 private final int mToken;
485 private final int mWhat;
Paul Jensendcbe8352014-09-16 16:28:34 -0400486 private final String mAction;
Paul Jensen71b645f2014-10-13 14:13:07 -0400487 CustomIntentReceiver(String action, int token, int what) {
488 mToken = token;
489 mWhat = what;
Paul Jensendcbe8352014-09-16 16:28:34 -0400490 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token;
491 mContext.registerReceiver(this, new IntentFilter(mAction));
Paul Jensen869868be2014-05-15 10:33:05 -0400492 }
Paul Jensendcbe8352014-09-16 16:28:34 -0400493 public PendingIntent getPendingIntent() {
Paul Jensen25a217c2015-02-27 22:55:47 -0500494 final Intent intent = new Intent(mAction);
495 intent.setPackage(mContext.getPackageName());
496 return PendingIntent.getBroadcast(mContext, 0, intent, 0);
Paul Jensendcbe8352014-09-16 16:28:34 -0400497 }
498 @Override
499 public void onReceive(Context context, Intent intent) {
Paul Jensen71b645f2014-10-13 14:13:07 -0400500 if (intent.getAction().equals(mAction)) sendMessage(obtainMessage(mWhat, mToken));
Paul Jensendcbe8352014-09-16 16:28:34 -0400501 }
502 }
Paul Jensen869868be2014-05-15 10:33:05 -0400503
Paul Jensen71b645f2014-10-13 14:13:07 -0400504 // Being in the CaptivePortalState State indicates a captive portal was detected and the user
505 // has been shown a notification to sign-in.
506 private class CaptivePortalState extends State {
Paul Jensen25a217c2015-02-27 22:55:47 -0500507 private static final String ACTION_LAUNCH_CAPTIVE_PORTAL_APP =
508 "android.net.netmon.launchCaptivePortalApp";
509
Paul Jensen869868be2014-05-15 10:33:05 -0400510 @Override
511 public void enter() {
Paul Jensenad50a1f2014-09-05 12:06:44 -0400512 mConnectivityServiceHandler.sendMessage(obtainMessage(EVENT_NETWORK_TESTED,
513 NETWORK_TEST_RESULT_INVALID, 0, mNetworkAgentInfo));
Paul Jensend0491e9a2015-05-05 14:52:22 -0400514 // Don't annoy user with sign-in notifications.
Paul Jensen700f2362015-05-05 14:56:10 -0400515 if (mDontDisplaySigninNotification) return;
Paul Jensen25a217c2015-02-27 22:55:47 -0500516 // Create a CustomIntentReceiver that sends us a
517 // CMD_LAUNCH_CAPTIVE_PORTAL_APP message when the user
518 // touches the notification.
519 if (mLaunchCaptivePortalAppBroadcastReceiver == null) {
Paul Jensen71b645f2014-10-13 14:13:07 -0400520 // Wait for result.
Paul Jensen25a217c2015-02-27 22:55:47 -0500521 mLaunchCaptivePortalAppBroadcastReceiver = new CustomIntentReceiver(
522 ACTION_LAUNCH_CAPTIVE_PORTAL_APP, new Random().nextInt(),
523 CMD_LAUNCH_CAPTIVE_PORTAL_APP);
Paul Jensen71b645f2014-10-13 14:13:07 -0400524 }
Paul Jensen25a217c2015-02-27 22:55:47 -0500525 // Display the sign in notification.
Paul Jensen71b645f2014-10-13 14:13:07 -0400526 Message message = obtainMessage(EVENT_PROVISIONING_NOTIFICATION, 1,
527 mNetworkAgentInfo.network.netId,
Paul Jensen25a217c2015-02-27 22:55:47 -0500528 mLaunchCaptivePortalAppBroadcastReceiver.getPendingIntent());
Paul Jensen71b645f2014-10-13 14:13:07 -0400529 mConnectivityServiceHandler.sendMessage(message);
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400530 // Retest for captive portal occasionally.
531 sendMessageDelayed(CMD_CAPTIVE_PORTAL_RECHECK, 0 /* no UID */,
532 CAPTIVE_PORTAL_REEVALUATE_DELAY_MS);
Paul Jensen869868be2014-05-15 10:33:05 -0400533 }
534
535 @Override
536 public boolean processMessage(Message message) {
537 if (DBG) log(getName() + message.toString());
Paul Jensen71b645f2014-10-13 14:13:07 -0400538 return NOT_HANDLED;
Paul Jensen869868be2014-05-15 10:33:05 -0400539 }
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400540
541 @Override
542 public void exit() {
543 removeMessages(CMD_CAPTIVE_PORTAL_RECHECK);
544 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400545 }
546
Paul Jensen71b645f2014-10-13 14:13:07 -0400547 // Being in the LingeringState State indicates a Network's validated bit is true and it once
548 // was the highest scoring Network satisfying a particular NetworkRequest, but since then
549 // another Network satsified the NetworkRequest with a higher score and hence this Network
550 // is "lingered" for a fixed period of time before it is disconnected. This period of time
551 // allows apps to wrap up communication and allows for seamless reactivation if the other
552 // higher scoring Network happens to disconnect.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400553 private class LingeringState extends State {
Paul Jensen79a08052014-08-21 12:44:07 -0400554 private static final String ACTION_LINGER_EXPIRED = "android.net.netmon.lingerExpired";
Paul Jensen79a08052014-08-21 12:44:07 -0400555
Paul Jensendcbe8352014-09-16 16:28:34 -0400556 private CustomIntentReceiver mBroadcastReceiver;
Paul Jensen79a08052014-08-21 12:44:07 -0400557 private PendingIntent mIntent;
558
Paul Jensenca8f16a2014-05-09 12:47:55 -0400559 @Override
560 public void enter() {
Paul Jensen71b645f2014-10-13 14:13:07 -0400561 mLingerToken = new Random().nextInt();
562 mBroadcastReceiver = new CustomIntentReceiver(ACTION_LINGER_EXPIRED, mLingerToken,
Paul Jensendcbe8352014-09-16 16:28:34 -0400563 CMD_LINGER_EXPIRED);
564 mIntent = mBroadcastReceiver.getPendingIntent();
Paul Jensen79a08052014-08-21 12:44:07 -0400565 long wakeupTime = SystemClock.elapsedRealtime() + mLingerDelayMs;
566 mAlarmManager.setWindow(AlarmManager.ELAPSED_REALTIME_WAKEUP, wakeupTime,
567 // Give a specific window so we aren't subject to unknown inexactitude.
568 mLingerDelayMs / 6, mIntent);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400569 }
570
571 @Override
572 public boolean processMessage(Message message) {
573 if (DBG) log(getName() + message.toString());
574 switch (message.what) {
575 case CMD_NETWORK_CONNECTED:
576 // Go straight to active as we've already evaluated.
577 transitionTo(mValidatedState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400578 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400579 case CMD_LINGER_EXPIRED:
580 if (message.arg1 != mLingerToken)
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400581 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400582 mConnectivityServiceHandler.sendMessage(
583 obtainMessage(EVENT_NETWORK_LINGER_COMPLETE, mNetworkAgentInfo));
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400584 return HANDLED;
Paul Jensenad50a1f2014-09-05 12:06:44 -0400585 case CMD_FORCE_REEVALUATION:
586 // Ignore reevaluation attempts when lingering. A reevaluation could result
587 // in a transition to the validated state which would abort the linger
588 // timeout. Lingering is the result of score assessment; validity is
589 // irrelevant.
590 return HANDLED;
Paul Jensen71b645f2014-10-13 14:13:07 -0400591 case CMD_CAPTIVE_PORTAL_APP_FINISHED:
592 // Ignore user network determination as this could abort linger timeout.
593 // Networks are only lingered once validated because:
594 // - Unvalidated networks are never lingered (see rematchNetworkAndRequests).
595 // - Once validated, a Network's validated bit is never cleared.
596 // Since networks are only lingered after being validated a user's
597 // determination will not change the death sentence that lingering entails:
598 // - If the user wants to use the network or bypasses the captive portal,
599 // the network's score will not be increased beyond its current value
600 // because it is already validated. Without a score increase there is no
601 // chance of reactivation (i.e. aborting linger timeout).
602 // - If the user does not want the network, lingering will disconnect the
603 // network anyhow.
604 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400605 default:
606 return NOT_HANDLED;
607 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400608 }
Paul Jensen79a08052014-08-21 12:44:07 -0400609
610 @Override
611 public void exit() {
612 mAlarmManager.cancel(mIntent);
613 mContext.unregisterReceiver(mBroadcastReceiver);
614 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400615 }
616
617 /**
618 * Do a URL fetch on a known server to see if we get the data we expect.
619 * Returns HTTP response code.
620 */
621 private int isCaptivePortal() {
622 if (!mIsCaptivePortalCheckEnabled) return 204;
623
Paul Jensenca8f16a2014-05-09 12:47:55 -0400624 HttpURLConnection urlConnection = null;
Paul Jensen869868be2014-05-15 10:33:05 -0400625 int httpResponseCode = 599;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400626 try {
Paul Jensene547ff22014-08-04 09:12:24 -0400627 URL url = new URL("http", mServer, "/generate_204");
Paul Jensen8fe17422015-02-02 11:03:03 -0500628 // On networks with a PAC instead of fetching a URL that should result in a 204
629 // reponse, we instead simply fetch the PAC script. This is done for a few reasons:
630 // 1. At present our PAC code does not yet handle multiple PACs on multiple networks
631 // until something like https://android-review.googlesource.com/#/c/115180/ lands.
632 // Network.openConnection() will ignore network-specific PACs and instead fetch
633 // using NO_PROXY. If a PAC is in place, the only fetch we know will succeed with
634 // NO_PROXY is the fetch of the PAC itself.
635 // 2. To proxy the generate_204 fetch through a PAC would require a number of things
636 // happen before the fetch can commence, namely:
637 // a) the PAC script be fetched
638 // b) a PAC script resolver service be fired up and resolve mServer
639 // Network validation could be delayed until these prerequisities are satisifed or
640 // could simply be left to race them. Neither is an optimal solution.
641 // 3. PAC scripts are sometimes used to block or restrict Internet access and may in
642 // fact block fetching of the generate_204 URL which would lead to false negative
643 // results for network validation.
644 boolean fetchPac = false;
645 {
646 final ProxyInfo proxyInfo = mNetworkAgentInfo.linkProperties.getHttpProxy();
647 if (proxyInfo != null && !Uri.EMPTY.equals(proxyInfo.getPacFileUrl())) {
648 url = new URL(proxyInfo.getPacFileUrl().toString());
649 fetchPac = true;
650 }
651 }
Paul Jensene547ff22014-08-04 09:12:24 -0400652 if (DBG) {
653 log("Checking " + url.toString() + " on " +
654 mNetworkAgentInfo.networkInfo.getExtraInfo());
Paul Jensenca8f16a2014-05-09 12:47:55 -0400655 }
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700656 urlConnection = (HttpURLConnection) mNetworkAgentInfo.network.openConnection(url);
Paul Jensen8fe17422015-02-02 11:03:03 -0500657 urlConnection.setInstanceFollowRedirects(fetchPac);
Paul Jensene547ff22014-08-04 09:12:24 -0400658 urlConnection.setConnectTimeout(SOCKET_TIMEOUT_MS);
659 urlConnection.setReadTimeout(SOCKET_TIMEOUT_MS);
660 urlConnection.setUseCaches(false);
Paul Jensen306f1a42014-08-04 10:59:01 -0400661
662 // Time how long it takes to get a response to our request
663 long requestTimestamp = SystemClock.elapsedRealtime();
664
Paul Jensene547ff22014-08-04 09:12:24 -0400665 urlConnection.getInputStream();
Paul Jensen306f1a42014-08-04 10:59:01 -0400666
667 // Time how long it takes to get a response to our request
668 long responseTimestamp = SystemClock.elapsedRealtime();
669
Paul Jensene547ff22014-08-04 09:12:24 -0400670 httpResponseCode = urlConnection.getResponseCode();
671 if (DBG) {
672 log("isCaptivePortal: ret=" + httpResponseCode +
673 " headers=" + urlConnection.getHeaderFields());
674 }
675 // NOTE: We may want to consider an "HTTP/1.0 204" response to be a captive
676 // portal. The only example of this seen so far was a captive portal. For
677 // the time being go with prior behavior of assuming it's not a captive
678 // portal. If it is considered a captive portal, a different sign-in URL
679 // is needed (i.e. can't browse a 204). This could be the result of an HTTP
680 // proxy server.
681
682 // Consider 200 response with "Content-length=0" to not be a captive portal.
683 // There's no point in considering this a captive portal as the user cannot
684 // sign-in to an empty page. Probably the result of a broken transparent proxy.
685 // See http://b/9972012.
686 if (httpResponseCode == 200 && urlConnection.getContentLength() == 0) {
687 if (DBG) log("Empty 200 response interpreted as 204 response.");
688 httpResponseCode = 204;
689 }
Paul Jensen306f1a42014-08-04 10:59:01 -0400690
Paul Jensen8fe17422015-02-02 11:03:03 -0500691 if (httpResponseCode == 200 && fetchPac) {
692 if (DBG) log("PAC fetch 200 response interpreted as 204 response.");
693 httpResponseCode = 204;
694 }
695
Jeff Davidsonf9fff922014-12-05 16:56:08 -0800696 sendNetworkConditionsBroadcast(true /* response received */,
697 httpResponseCode != 204 /* isCaptivePortal */,
Paul Jensen306f1a42014-08-04 10:59:01 -0400698 requestTimestamp, responseTimestamp);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400699 } catch (IOException e) {
700 if (DBG) log("Probably not a portal: exception " + e);
Paul Jensen869868be2014-05-15 10:33:05 -0400701 if (httpResponseCode == 599) {
702 // TODO: Ping gateway and DNS server and log results.
703 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400704 } finally {
705 if (urlConnection != null) {
706 urlConnection.disconnect();
707 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400708 }
709 return httpResponseCode;
710 }
Paul Jensen306f1a42014-08-04 10:59:01 -0400711
712 /**
713 * @param responseReceived - whether or not we received a valid HTTP response to our request.
714 * If false, isCaptivePortal and responseTimestampMs are ignored
715 * TODO: This should be moved to the transports. The latency could be passed to the transports
716 * along with the captive portal result. Currently the TYPE_MOBILE broadcasts appear unused so
717 * perhaps this could just be added to the WiFi transport only.
718 */
719 private void sendNetworkConditionsBroadcast(boolean responseReceived, boolean isCaptivePortal,
720 long requestTimestampMs, long responseTimestampMs) {
721 if (Settings.Global.getInt(mContext.getContentResolver(),
722 Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 0) == 0) {
723 if (DBG) log("Don't send network conditions - lacking user consent.");
724 return;
725 }
726
Robert Greenwaltfb68f8f2014-08-13 13:43:32 -0700727 if (systemReady == false) return;
728
Paul Jensen306f1a42014-08-04 10:59:01 -0400729 Intent latencyBroadcast = new Intent(ACTION_NETWORK_CONDITIONS_MEASURED);
730 switch (mNetworkAgentInfo.networkInfo.getType()) {
731 case ConnectivityManager.TYPE_WIFI:
732 WifiInfo currentWifiInfo = mWifiManager.getConnectionInfo();
733 if (currentWifiInfo != null) {
734 // NOTE: getSSID()'s behavior changed in API 17; before that, SSIDs were not
735 // surrounded by double quotation marks (thus violating the Javadoc), but this
736 // was changed to match the Javadoc in API 17. Since clients may have started
737 // sanitizing the output of this method since API 17 was released, we should
738 // not change it here as it would become impossible to tell whether the SSID is
739 // simply being surrounded by quotes due to the API, or whether those quotes
740 // are actually part of the SSID.
741 latencyBroadcast.putExtra(EXTRA_SSID, currentWifiInfo.getSSID());
742 latencyBroadcast.putExtra(EXTRA_BSSID, currentWifiInfo.getBSSID());
743 } else {
744 if (DBG) logw("network info is TYPE_WIFI but no ConnectionInfo found");
745 return;
746 }
747 break;
748 case ConnectivityManager.TYPE_MOBILE:
749 latencyBroadcast.putExtra(EXTRA_NETWORK_TYPE, mTelephonyManager.getNetworkType());
750 List<CellInfo> info = mTelephonyManager.getAllCellInfo();
751 if (info == null) return;
752 int numRegisteredCellInfo = 0;
753 for (CellInfo cellInfo : info) {
754 if (cellInfo.isRegistered()) {
755 numRegisteredCellInfo++;
756 if (numRegisteredCellInfo > 1) {
757 if (DBG) log("more than one registered CellInfo. Can't " +
758 "tell which is active. Bailing.");
759 return;
760 }
761 if (cellInfo instanceof CellInfoCdma) {
762 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity();
763 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
764 } else if (cellInfo instanceof CellInfoGsm) {
765 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity();
766 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
767 } else if (cellInfo instanceof CellInfoLte) {
768 CellIdentityLte cellId = ((CellInfoLte) cellInfo).getCellIdentity();
769 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
770 } else if (cellInfo instanceof CellInfoWcdma) {
771 CellIdentityWcdma cellId = ((CellInfoWcdma) cellInfo).getCellIdentity();
772 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
773 } else {
774 if (DBG) logw("Registered cellinfo is unrecognized");
775 return;
776 }
777 }
778 }
779 break;
780 default:
781 return;
782 }
783 latencyBroadcast.putExtra(EXTRA_CONNECTIVITY_TYPE, mNetworkAgentInfo.networkInfo.getType());
784 latencyBroadcast.putExtra(EXTRA_RESPONSE_RECEIVED, responseReceived);
785 latencyBroadcast.putExtra(EXTRA_REQUEST_TIMESTAMP_MS, requestTimestampMs);
786
787 if (responseReceived) {
788 latencyBroadcast.putExtra(EXTRA_IS_CAPTIVE_PORTAL, isCaptivePortal);
789 latencyBroadcast.putExtra(EXTRA_RESPONSE_TIMESTAMP_MS, responseTimestampMs);
790 }
Paul Jensen55298582014-08-20 11:01:41 -0400791 mContext.sendBroadcastAsUser(latencyBroadcast, UserHandle.CURRENT,
792 PERMISSION_ACCESS_NETWORK_CONDITIONS);
Paul Jensen306f1a42014-08-04 10:59:01 -0400793 }
Paul Jensend7b6ca92015-05-13 14:05:12 -0400794
795 // Allow tests to override linger time.
796 @VisibleForTesting
797 public static void SetDefaultLingerTime(int time_ms) {
798 if (Process.myUid() == Process.SYSTEM_UID) {
799 throw new SecurityException("SetDefaultLingerTime only for internal testing.");
800 }
801 DEFAULT_LINGER_DELAY_MS = time_ms;
802 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400803}