blob: 6eb89facca76d17d741b93c23f37c27f8c4e3d4b [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 Jensen49e3edf2015-05-22 10:50:39 -040019import static android.net.CaptivePortal.APP_RETURN_DISMISSED;
20import static android.net.CaptivePortal.APP_RETURN_UNWANTED;
21import static android.net.CaptivePortal.APP_RETURN_WANTED_AS_IS;
22
Paul Jensen79a08052014-08-21 12:44:07 -040023import android.app.AlarmManager;
Paul Jensen869868be2014-05-15 10:33:05 -040024import android.app.PendingIntent;
25import android.content.BroadcastReceiver;
Paul Jensenca8f16a2014-05-09 12:47:55 -040026import android.content.Context;
Paul Jensen869868be2014-05-15 10:33:05 -040027import android.content.Intent;
28import android.content.IntentFilter;
Paul Jensen49e3edf2015-05-22 10:50:39 -040029import android.net.CaptivePortal;
Paul Jensen869868be2014-05-15 10:33:05 -040030import android.net.ConnectivityManager;
Paul Jensen49e3edf2015-05-22 10:50:39 -040031import android.net.ICaptivePortal;
Paul Jensen2c311d62014-11-17 12:34:51 -050032import android.net.NetworkRequest;
Paul Jensen8fe17422015-02-02 11:03:03 -050033import android.net.ProxyInfo;
Paul Jensen7ccd3df2014-08-29 09:54:01 -040034import android.net.TrafficStats;
Paul Jensen71b645f2014-10-13 14:13:07 -040035import android.net.Uri;
Hugo Benichicfddd682016-05-31 16:28:06 +090036import android.net.metrics.IpConnectivityLog;
Hugo Benichicc92c6e2016-04-21 15:02:38 +090037import android.net.metrics.NetworkEvent;
Hugo Benichicfddd682016-05-31 16:28:06 +090038import android.net.metrics.ValidationProbeEvent;
Hugo Benichid953bf82016-09-27 09:22:35 +090039import android.net.util.Stopwatch;
Paul Jensen306f1a42014-08-04 10:59:01 -040040import android.net.wifi.WifiInfo;
41import android.net.wifi.WifiManager;
Paul Jensenca8f16a2014-05-09 12:47:55 -040042import android.os.Handler;
43import android.os.Message;
Paul Jensen306f1a42014-08-04 10:59:01 -040044import android.os.SystemClock;
Paul Jensen869868be2014-05-15 10:33:05 -040045import android.os.UserHandle;
Paul Jensenca8f16a2014-05-09 12:47:55 -040046import android.provider.Settings;
Paul Jensen306f1a42014-08-04 10:59:01 -040047import android.telephony.CellIdentityCdma;
48import android.telephony.CellIdentityGsm;
49import android.telephony.CellIdentityLte;
50import android.telephony.CellIdentityWcdma;
51import android.telephony.CellInfo;
52import android.telephony.CellInfoCdma;
53import android.telephony.CellInfoGsm;
54import android.telephony.CellInfoLte;
55import android.telephony.CellInfoWcdma;
56import android.telephony.TelephonyManager;
Paul Jensen2f0a8972015-06-25 10:07:14 -040057import android.text.TextUtils;
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -070058import android.util.LocalLog;
59import android.util.LocalLog.ReadOnlyLocalLog;
Paul Jensen532b61432014-11-10 09:50:02 -050060import android.util.Log;
Paul Jensenca8f16a2014-05-09 12:47:55 -040061
Paul Jensend7b6ca92015-05-13 14:05:12 -040062import com.android.internal.annotations.VisibleForTesting;
Paul Jensenca8f16a2014-05-09 12:47:55 -040063import com.android.internal.util.Protocol;
64import com.android.internal.util.State;
65import com.android.internal.util.StateMachine;
Paul Jensenca8f16a2014-05-09 12:47:55 -040066
Paul Jensenca8f16a2014-05-09 12:47:55 -040067import java.io.IOException;
Paul Jensenca8f16a2014-05-09 12:47:55 -040068import java.net.HttpURLConnection;
Paul Jensen2f0a8972015-06-25 10:07:14 -040069import java.net.InetAddress;
Lorenzo Colittic5be12e2016-04-19 21:57:31 +090070import java.net.MalformedURLException;
Paul Jensenca8f16a2014-05-09 12:47:55 -040071import java.net.URL;
Hugo Benichid953bf82016-09-27 09:22:35 +090072import java.net.UnknownHostException;
Paul Jensen306f1a42014-08-04 10:59:01 -040073import java.util.List;
Paul Jensen71b645f2014-10-13 14:13:07 -040074import java.util.Random;
Hugo Benichid953bf82016-09-27 09:22:35 +090075import java.util.concurrent.CountDownLatch;
76import java.util.concurrent.TimeUnit;
Paul Jensenca8f16a2014-05-09 12:47:55 -040077
78/**
79 * {@hide}
80 */
81public class NetworkMonitor extends StateMachine {
Erik Klinea488c232016-04-15 15:49:42 +090082 private static final String TAG = NetworkMonitor.class.getSimpleName();
Hugo Benichi92eb22fd2016-09-27 13:01:41 +090083 private static final boolean DBG = false;
84
Hugo Benichi11ae28f2016-09-27 13:16:19 +090085 // Default configuration values for captive portal detection probes.
86 // TODO: append a random length parameter to the default HTTPS url.
87 // TODO: randomize browser version ids in the default User-Agent String.
88 private static final String DEFAULT_HTTPS_URL = "https://www.google.com/generate_204";
Hugo Benichi92eb22fd2016-09-27 13:01:41 +090089 private static final String DEFAULT_HTTP_URL =
90 "http://connectivitycheck.gstatic.com/generate_204";
Hugo Benichi11ae28f2016-09-27 13:16:19 +090091 private static final String DEFAULT_FALLBACK_URL = "http://www.google.com/gen_204";
92 private static final String DEFAULT_USER_AGENT = "Mozilla/5.0 (X11; Linux x86_64) "
93 + "AppleWebKit/537.36 (KHTML, like Gecko) "
94 + "Chrome/52.0.2743.82 Safari/537.36";
Hugo Benichi92eb22fd2016-09-27 13:01:41 +090095
Paul Jensenca8f16a2014-05-09 12:47:55 -040096 private static final int SOCKET_TIMEOUT_MS = 10000;
Hugo Benichi92eb22fd2016-09-27 13:01:41 +090097 private static final int PROBE_TIMEOUT_MS = 3000;
98
Paul Jensen306f1a42014-08-04 10:59:01 -040099 public static final String ACTION_NETWORK_CONDITIONS_MEASURED =
100 "android.net.conn.NETWORK_CONDITIONS_MEASURED";
101 public static final String EXTRA_CONNECTIVITY_TYPE = "extra_connectivity_type";
102 public static final String EXTRA_NETWORK_TYPE = "extra_network_type";
103 public static final String EXTRA_RESPONSE_RECEIVED = "extra_response_received";
104 public static final String EXTRA_IS_CAPTIVE_PORTAL = "extra_is_captive_portal";
105 public static final String EXTRA_CELL_ID = "extra_cellid";
106 public static final String EXTRA_SSID = "extra_ssid";
107 public static final String EXTRA_BSSID = "extra_bssid";
108 /** real time since boot */
109 public static final String EXTRA_REQUEST_TIMESTAMP_MS = "extra_request_timestamp_ms";
110 public static final String EXTRA_RESPONSE_TIMESTAMP_MS = "extra_response_timestamp_ms";
111
112 private static final String PERMISSION_ACCESS_NETWORK_CONDITIONS =
113 "android.permission.ACCESS_NETWORK_CONDITIONS";
Paul Jensenca8f16a2014-05-09 12:47:55 -0400114
Paul Jensenad50a1f2014-09-05 12:06:44 -0400115 // After a network has been tested this result can be sent with EVENT_NETWORK_TESTED.
116 // The network should be used as a default internet connection. It was found to be:
117 // 1. a functioning network providing internet access, or
118 // 2. a captive portal and the user decided to use it as is.
119 public static final int NETWORK_TEST_RESULT_VALID = 0;
120 // After a network has been tested this result can be sent with EVENT_NETWORK_TESTED.
121 // The network should not be used as a default internet connection. It was found to be:
122 // 1. a captive portal and the user is prompted to sign-in, or
123 // 2. a captive portal and the user did not want to use it, or
124 // 3. a broken network (e.g. DNS failed, connect failed, HTTP request failed).
125 public static final int NETWORK_TEST_RESULT_INVALID = 1;
126
Paul Jensenca8f16a2014-05-09 12:47:55 -0400127 private static final int BASE = Protocol.BASE_NETWORK_MONITOR;
128
129 /**
130 * Inform NetworkMonitor that their network is connected.
131 * Initiates Network Validation.
132 */
133 public static final int CMD_NETWORK_CONNECTED = BASE + 1;
134
135 /**
Paul Jensenad50a1f2014-09-05 12:06:44 -0400136 * Inform ConnectivityService that the network has been tested.
Paul Jensen232437312016-04-06 09:51:26 -0400137 * obj = String representing URL that Internet probe was redirect to, if it was redirected.
Paul Jensenad50a1f2014-09-05 12:06:44 -0400138 * arg1 = One of the NETWORK_TESTED_RESULT_* constants.
Paul Jensen232437312016-04-06 09:51:26 -0400139 * arg2 = NetID.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400140 */
Paul Jensenad50a1f2014-09-05 12:06:44 -0400141 public static final int EVENT_NETWORK_TESTED = BASE + 2;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400142
143 /**
Paul Jensenca8f16a2014-05-09 12:47:55 -0400144 * Message to self indicating it's time to evaluate a network's connectivity.
145 * arg1 = Token to ignore old messages.
146 */
Paul Jensen869868be2014-05-15 10:33:05 -0400147 private static final int CMD_REEVALUATE = BASE + 6;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400148
149 /**
Paul Jensenca8f16a2014-05-09 12:47:55 -0400150 * Inform NetworkMonitor that the network has disconnected.
151 */
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400152 public static final int CMD_NETWORK_DISCONNECTED = BASE + 7;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400153
154 /**
155 * Force evaluation even if it has succeeded in the past.
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400156 * arg1 = UID responsible for requesting this reeval. Will be billed for data.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400157 */
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400158 public static final int CMD_FORCE_REEVALUATION = BASE + 8;
Paul Jensen869868be2014-05-15 10:33:05 -0400159
160 /**
Paul Jensen71b645f2014-10-13 14:13:07 -0400161 * Message to self indicating captive portal app finished.
Paul Jensen49e3edf2015-05-22 10:50:39 -0400162 * arg1 = one of: APP_RETURN_DISMISSED,
163 * APP_RETURN_UNWANTED,
164 * APP_RETURN_WANTED_AS_IS
Paul Jensen25a217c2015-02-27 22:55:47 -0500165 * obj = mCaptivePortalLoggedInResponseToken as String
Paul Jensen869868be2014-05-15 10:33:05 -0400166 */
Paul Jensen49e3edf2015-05-22 10:50:39 -0400167 private static final int CMD_CAPTIVE_PORTAL_APP_FINISHED = BASE + 9;
Paul Jensen869868be2014-05-15 10:33:05 -0400168
169 /**
170 * Request ConnectivityService display provisioning notification.
171 * arg1 = Whether to make the notification visible.
Paul Jensenfdc4e4a2014-07-15 12:07:36 -0400172 * arg2 = NetID.
173 * obj = Intent to be launched when notification selected by user, null if !arg1.
Paul Jensen869868be2014-05-15 10:33:05 -0400174 */
Paul Jensen71b645f2014-10-13 14:13:07 -0400175 public static final int EVENT_PROVISIONING_NOTIFICATION = BASE + 10;
Paul Jensen869868be2014-05-15 10:33:05 -0400176
177 /**
Paul Jensen25a217c2015-02-27 22:55:47 -0500178 * Message to self indicating sign-in app should be launched.
179 * Sent by mLaunchCaptivePortalAppBroadcastReceiver when the
180 * user touches the sign in notification.
Paul Jensen869868be2014-05-15 10:33:05 -0400181 */
Paul Jensen25a217c2015-02-27 22:55:47 -0500182 private static final int CMD_LAUNCH_CAPTIVE_PORTAL_APP = BASE + 11;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400183
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400184 /**
185 * Retest network to see if captive portal is still in place.
186 * arg1 = UID responsible for requesting this reeval. Will be billed for data.
187 * 0 indicates self-initiated, so nobody to blame.
188 */
189 private static final int CMD_CAPTIVE_PORTAL_RECHECK = BASE + 12;
190
Paul Jensend0491e9a2015-05-05 14:52:22 -0400191 // Start mReevaluateDelayMs at this value and double.
192 private static final int INITIAL_REEVALUATE_DELAY_MS = 1000;
193 private static final int MAX_REEVALUATE_DELAY_MS = 10*60*1000;
194 // Before network has been evaluated this many times, ignore repeated reevaluate requests.
195 private static final int IGNORE_REEVALUATE_ATTEMPTS = 5;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400196 private int mReevaluateToken = 0;
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400197 private static final int INVALID_UID = -1;
198 private int mUidResponsibleForReeval = INVALID_UID;
Paul Jensend9be23f2015-05-19 14:51:47 -0400199 // Stop blaming UID that requested re-evaluation after this many attempts.
200 private static final int BLAME_FOR_EVALUATION_ATTEMPTS = 5;
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400201 // Delay between reevaluations once a captive portal has been found.
202 private static final int CAPTIVE_PORTAL_REEVALUATE_DELAY_MS = 10*60*1000;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400203
204 private final Context mContext;
205 private final Handler mConnectivityServiceHandler;
206 private final NetworkAgentInfo mNetworkAgentInfo;
Erik Klinea488c232016-04-15 15:49:42 +0900207 private final int mNetId;
Paul Jensen306f1a42014-08-04 10:59:01 -0400208 private final TelephonyManager mTelephonyManager;
209 private final WifiManager mWifiManager;
Paul Jensen79a08052014-08-21 12:44:07 -0400210 private final AlarmManager mAlarmManager;
Paul Jensen2c311d62014-11-17 12:34:51 -0500211 private final NetworkRequest mDefaultRequest;
Hugo Benichif9fdf872016-07-28 17:53:06 +0900212 private final IpConnectivityLog mMetricsLog;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400213
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900214 private boolean mIsCaptivePortalCheckEnabled;
215 private boolean mUseHttps;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400216
Paul Jensenad50a1f2014-09-05 12:06:44 -0400217 // Set if the user explicitly selected "Do not use this network" in captive portal sign-in app.
218 private boolean mUserDoesNotWant = false;
Paul Jensen700f2362015-05-05 14:56:10 -0400219 // Avoids surfacing "Sign in to network" notification.
220 private boolean mDontDisplaySigninNotification = false;
Paul Jensenad50a1f2014-09-05 12:06:44 -0400221
Robert Greenwaltfb68f8f2014-08-13 13:43:32 -0700222 public boolean systemReady = false;
223
Paul Jensen71b645f2014-10-13 14:13:07 -0400224 private final State mDefaultState = new DefaultState();
Paul Jensen71b645f2014-10-13 14:13:07 -0400225 private final State mValidatedState = new ValidatedState();
226 private final State mMaybeNotifyState = new MaybeNotifyState();
227 private final State mEvaluatingState = new EvaluatingState();
228 private final State mCaptivePortalState = new CaptivePortalState();
Paul Jensen71b645f2014-10-13 14:13:07 -0400229
Paul Jensen25a217c2015-02-27 22:55:47 -0500230 private CustomIntentReceiver mLaunchCaptivePortalAppBroadcastReceiver = null;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400231
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -0700232 private final LocalLog validationLogs = new LocalLog(20); // 20 lines
233
Erik Klinea488c232016-04-15 15:49:42 +0900234 private final Stopwatch mEvaluationTimer = new Stopwatch();
235
Hugo Benichid953bf82016-09-27 09:22:35 +0900236 // This variable is set before transitioning to the mCaptivePortalState.
237 private CaptivePortalProbeResult mLastPortalProbeResult = CaptivePortalProbeResult.FAILED;
238
Paul Jensen2c311d62014-11-17 12:34:51 -0500239 public NetworkMonitor(Context context, Handler handler, NetworkAgentInfo networkAgentInfo,
240 NetworkRequest defaultRequest) {
Hugo Benichif9fdf872016-07-28 17:53:06 +0900241 this(context, handler, networkAgentInfo, defaultRequest, new IpConnectivityLog());
242 }
243
244 @VisibleForTesting
245 protected NetworkMonitor(Context context, Handler handler, NetworkAgentInfo networkAgentInfo,
246 NetworkRequest defaultRequest, IpConnectivityLog logger) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400247 // Add suffix indicating which NetworkMonitor we're talking about.
248 super(TAG + networkAgentInfo.name());
249
250 mContext = context;
Hugo Benichif9fdf872016-07-28 17:53:06 +0900251 mMetricsLog = logger;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400252 mConnectivityServiceHandler = handler;
253 mNetworkAgentInfo = networkAgentInfo;
Erik Klinea488c232016-04-15 15:49:42 +0900254 mNetId = mNetworkAgentInfo.network.netId;
Paul Jensen306f1a42014-08-04 10:59:01 -0400255 mTelephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
256 mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
Paul Jensen79a08052014-08-21 12:44:07 -0400257 mAlarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Paul Jensen2c311d62014-11-17 12:34:51 -0500258 mDefaultRequest = defaultRequest;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400259
260 addState(mDefaultState);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400261 addState(mValidatedState, mDefaultState);
Paul Jensen71b645f2014-10-13 14:13:07 -0400262 addState(mMaybeNotifyState, mDefaultState);
263 addState(mEvaluatingState, mMaybeNotifyState);
264 addState(mCaptivePortalState, mMaybeNotifyState);
Robert Greenwalt49f63fb2014-09-13 12:04:12 -0700265 setInitialState(mDefaultState);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400266
Paul Jensen869868be2014-05-15 10:33:05 -0400267 mIsCaptivePortalCheckEnabled = Settings.Global.getInt(mContext.getContentResolver(),
268 Settings.Global.CAPTIVE_PORTAL_DETECTION_ENABLED, 1) == 1;
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900269 mUseHttps = Settings.Global.getInt(mContext.getContentResolver(),
270 Settings.Global.CAPTIVE_PORTAL_USE_HTTPS, 1) == 1;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400271
272 start();
273 }
274
Paul Jensen532b61432014-11-10 09:50:02 -0500275 @Override
276 protected void log(String s) {
Paul Jensen22e547a2015-06-25 09:17:53 -0400277 if (DBG) Log.d(TAG + "/" + mNetworkAgentInfo.name(), s);
Paul Jensen532b61432014-11-10 09:50:02 -0500278 }
279
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -0700280 private void validationLog(String s) {
281 if (DBG) log(s);
282 validationLogs.log(s);
283 }
284
285 public ReadOnlyLocalLog getValidationLogs() {
286 return validationLogs.readOnlyLocalLog();
287 }
288
Paul Jensen71b645f2014-10-13 14:13:07 -0400289 // DefaultState is the parent of all States. It exists only to handle CMD_* messages but
290 // does not entail any real state (hence no enter() or exit() routines).
Paul Jensenca8f16a2014-05-09 12:47:55 -0400291 private class DefaultState extends State {
292 @Override
293 public boolean processMessage(Message message) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400294 switch (message.what) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400295 case CMD_NETWORK_CONNECTED:
Hugo Benichicfddd682016-05-31 16:28:06 +0900296 logNetworkEvent(NetworkEvent.NETWORK_CONNECTED);
Paul Jensenca8f16a2014-05-09 12:47:55 -0400297 transitionTo(mEvaluatingState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400298 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400299 case CMD_NETWORK_DISCONNECTED:
Hugo Benichicfddd682016-05-31 16:28:06 +0900300 logNetworkEvent(NetworkEvent.NETWORK_DISCONNECTED);
Paul Jensen25a217c2015-02-27 22:55:47 -0500301 if (mLaunchCaptivePortalAppBroadcastReceiver != null) {
302 mContext.unregisterReceiver(mLaunchCaptivePortalAppBroadcastReceiver);
303 mLaunchCaptivePortalAppBroadcastReceiver = null;
Paul Jensen71b645f2014-10-13 14:13:07 -0400304 }
Robert Greenwalt1fd9aee2014-07-17 16:11:38 -0700305 quit();
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400306 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400307 case CMD_FORCE_REEVALUATION:
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400308 case CMD_CAPTIVE_PORTAL_RECHECK:
Paul Jensen22e547a2015-06-25 09:17:53 -0400309 log("Forcing reevaluation for UID " + message.arg1);
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400310 mUidResponsibleForReeval = message.arg1;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400311 transitionTo(mEvaluatingState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400312 return HANDLED;
Paul Jensen71b645f2014-10-13 14:13:07 -0400313 case CMD_CAPTIVE_PORTAL_APP_FINISHED:
Paul Jensen22e547a2015-06-25 09:17:53 -0400314 log("CaptivePortal App responded with " + message.arg1);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900315
316 // If the user has seen and acted on a captive portal notification, and the
317 // captive portal app is now closed, disable HTTPS probes. This avoids the
318 // following pathological situation:
319 //
320 // 1. HTTP probe returns a captive portal, HTTPS probe fails or times out.
321 // 2. User opens the app and logs into the captive portal.
322 // 3. HTTP starts working, but HTTPS still doesn't work for some other reason -
323 // perhaps due to the network blocking HTTPS?
324 //
325 // In this case, we'll fail to validate the network even after the app is
326 // dismissed. There is now no way to use this network, because the app is now
327 // gone, so the user cannot select "Use this network as is".
328 mUseHttps = false;
329
Paul Jensen71b645f2014-10-13 14:13:07 -0400330 switch (message.arg1) {
Paul Jensen49e3edf2015-05-22 10:50:39 -0400331 case APP_RETURN_DISMISSED:
Paul Jensend0491e9a2015-05-05 14:52:22 -0400332 sendMessage(CMD_FORCE_REEVALUATION, 0 /* no UID */, 0);
Paul Jensen25a217c2015-02-27 22:55:47 -0500333 break;
Paul Jensen49e3edf2015-05-22 10:50:39 -0400334 case APP_RETURN_WANTED_AS_IS:
Paul Jensen700f2362015-05-05 14:56:10 -0400335 mDontDisplaySigninNotification = true;
Paul Jensen25a217c2015-02-27 22:55:47 -0500336 // TODO: Distinguish this from a network that actually validates.
337 // Displaying the "!" on the system UI icon may still be a good idea.
Paul Jensen71b645f2014-10-13 14:13:07 -0400338 transitionTo(mValidatedState);
339 break;
Paul Jensen49e3edf2015-05-22 10:50:39 -0400340 case APP_RETURN_UNWANTED:
Paul Jensen700f2362015-05-05 14:56:10 -0400341 mDontDisplaySigninNotification = true;
Paul Jensen71b645f2014-10-13 14:13:07 -0400342 mUserDoesNotWant = true;
Paul Jensend0491e9a2015-05-05 14:52:22 -0400343 mConnectivityServiceHandler.sendMessage(obtainMessage(
Paul Jensen232437312016-04-06 09:51:26 -0400344 EVENT_NETWORK_TESTED, NETWORK_TEST_RESULT_INVALID,
Erik Klinea488c232016-04-15 15:49:42 +0900345 mNetId, null));
Paul Jensen71b645f2014-10-13 14:13:07 -0400346 // TODO: Should teardown network.
Paul Jensend0491e9a2015-05-05 14:52:22 -0400347 mUidResponsibleForReeval = 0;
348 transitionTo(mEvaluatingState);
Paul Jensen71b645f2014-10-13 14:13:07 -0400349 break;
350 }
351 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400352 default:
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400353 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400354 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400355 }
356 }
357
Paul Jensen71b645f2014-10-13 14:13:07 -0400358 // Being in the ValidatedState State indicates a Network is:
359 // - Successfully validated, or
360 // - Wanted "as is" by the user, or
Paul Jensencf4c2c62015-07-01 14:16:32 -0400361 // - Does not satisfy the default NetworkRequest and so validation has been skipped.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400362 private class ValidatedState extends State {
363 @Override
364 public void enter() {
Hugo Benichicfddd682016-05-31 16:28:06 +0900365 maybeLogEvaluationResult(NetworkEvent.NETWORK_VALIDATED);
Paul Jensenad50a1f2014-09-05 12:06:44 -0400366 mConnectivityServiceHandler.sendMessage(obtainMessage(EVENT_NETWORK_TESTED,
Paul Jensen232437312016-04-06 09:51:26 -0400367 NETWORK_TEST_RESULT_VALID, mNetworkAgentInfo.network.netId, null));
Paul Jensenca8f16a2014-05-09 12:47:55 -0400368 }
369
370 @Override
371 public boolean processMessage(Message message) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400372 switch (message.what) {
373 case CMD_NETWORK_CONNECTED:
374 transitionTo(mValidatedState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400375 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400376 default:
377 return NOT_HANDLED;
378 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400379 }
380 }
381
Paul Jensen71b645f2014-10-13 14:13:07 -0400382 // Being in the MaybeNotifyState State indicates the user may have been notified that sign-in
383 // is required. This State takes care to clear the notification upon exit from the State.
384 private class MaybeNotifyState extends State {
385 @Override
Paul Jensen25a217c2015-02-27 22:55:47 -0500386 public boolean processMessage(Message message) {
Paul Jensen25a217c2015-02-27 22:55:47 -0500387 switch (message.what) {
388 case CMD_LAUNCH_CAPTIVE_PORTAL_APP:
389 final Intent intent = new Intent(
390 ConnectivityManager.ACTION_CAPTIVE_PORTAL_SIGN_IN);
391 intent.putExtra(ConnectivityManager.EXTRA_NETWORK, mNetworkAgentInfo.network);
Paul Jensen49e3edf2015-05-22 10:50:39 -0400392 intent.putExtra(ConnectivityManager.EXTRA_CAPTIVE_PORTAL,
393 new CaptivePortal(new ICaptivePortal.Stub() {
394 @Override
395 public void appResponse(int response) {
396 if (response == APP_RETURN_WANTED_AS_IS) {
397 mContext.enforceCallingPermission(
398 android.Manifest.permission.CONNECTIVITY_INTERNAL,
399 "CaptivePortal");
400 }
401 sendMessage(CMD_CAPTIVE_PORTAL_APP_FINISHED, response);
402 }
403 }));
Hugo Benichid953bf82016-09-27 09:22:35 +0900404 intent.putExtra(ConnectivityManager.EXTRA_CAPTIVE_PORTAL_URL,
405 mLastPortalProbeResult.detectUrl);
Paul Jensen25a217c2015-02-27 22:55:47 -0500406 intent.setFlags(
407 Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT | Intent.FLAG_ACTIVITY_NEW_TASK);
408 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
409 return HANDLED;
410 default:
411 return NOT_HANDLED;
412 }
413 }
414
415 @Override
Paul Jensen71b645f2014-10-13 14:13:07 -0400416 public void exit() {
417 Message message = obtainMessage(EVENT_PROVISIONING_NOTIFICATION, 0,
418 mNetworkAgentInfo.network.netId, null);
419 mConnectivityServiceHandler.sendMessage(message);
420 }
421 }
422
Paul Jensen232437312016-04-06 09:51:26 -0400423 /**
424 * Result of calling isCaptivePortal().
425 * @hide
426 */
427 @VisibleForTesting
428 public static final class CaptivePortalProbeResult {
Hugo Benichid953bf82016-09-27 09:22:35 +0900429 static final CaptivePortalProbeResult FAILED = new CaptivePortalProbeResult(599);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900430
Hugo Benichid953bf82016-09-27 09:22:35 +0900431 private final int mHttpResponseCode; // HTTP response code returned from Internet probe.
432 final String redirectUrl; // Redirect destination returned from Internet probe.
433 final String detectUrl; // URL where a 204 response code indicates
434 // captive portal has been appeased.
Paul Jensen232437312016-04-06 09:51:26 -0400435
Hugo Benichid953bf82016-09-27 09:22:35 +0900436 public CaptivePortalProbeResult(
437 int httpResponseCode, String redirectUrl, String detectUrl) {
Paul Jensen232437312016-04-06 09:51:26 -0400438 mHttpResponseCode = httpResponseCode;
Hugo Benichid953bf82016-09-27 09:22:35 +0900439 this.redirectUrl = redirectUrl;
440 this.detectUrl = detectUrl;
441 }
442
443 public CaptivePortalProbeResult(int httpResponseCode) {
444 this(httpResponseCode, null, null);
Paul Jensen232437312016-04-06 09:51:26 -0400445 }
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900446
447 boolean isSuccessful() { return mHttpResponseCode == 204; }
448 boolean isPortal() {
449 return !isSuccessful() && mHttpResponseCode >= 200 && mHttpResponseCode <= 399;
450 }
Paul Jensen232437312016-04-06 09:51:26 -0400451 }
452
Paul Jensen71b645f2014-10-13 14:13:07 -0400453 // Being in the EvaluatingState State indicates the Network is being evaluated for internet
Paul Jensend0491e9a2015-05-05 14:52:22 -0400454 // connectivity, or that the user has indicated that this network is unwanted.
Paul Jensenca8f16a2014-05-09 12:47:55 -0400455 private class EvaluatingState extends State {
Paul Jensend0491e9a2015-05-05 14:52:22 -0400456 private int mReevaluateDelayMs;
457 private int mAttempts;
Paul Jensen869868be2014-05-15 10:33:05 -0400458
Paul Jensenca8f16a2014-05-09 12:47:55 -0400459 @Override
460 public void enter() {
Erik Klinea488c232016-04-15 15:49:42 +0900461 // If we have already started to track time spent in EvaluatingState
462 // don't reset the timer due simply to, say, commands or events that
463 // cause us to exit and re-enter EvaluatingState.
464 if (!mEvaluationTimer.isStarted()) {
465 mEvaluationTimer.start();
466 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400467 sendMessage(CMD_REEVALUATE, ++mReevaluateToken, 0);
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400468 if (mUidResponsibleForReeval != INVALID_UID) {
469 TrafficStats.setThreadStatsUid(mUidResponsibleForReeval);
470 mUidResponsibleForReeval = INVALID_UID;
471 }
Paul Jensend0491e9a2015-05-05 14:52:22 -0400472 mReevaluateDelayMs = INITIAL_REEVALUATE_DELAY_MS;
473 mAttempts = 0;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400474 }
475
476 @Override
477 public boolean processMessage(Message message) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400478 switch (message.what) {
479 case CMD_REEVALUATE:
Paul Jensend0491e9a2015-05-05 14:52:22 -0400480 if (message.arg1 != mReevaluateToken || mUserDoesNotWant)
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400481 return HANDLED;
Paul Jensen2c311d62014-11-17 12:34:51 -0500482 // Don't bother validating networks that don't satisify the default request.
483 // This includes:
484 // - VPNs which can be considered explicitly desired by the user and the
485 // user's desire trumps whether the network validates.
486 // - Networks that don't provide internet access. It's unclear how to
487 // validate such networks.
488 // - Untrusted networks. It's unsafe to prompt the user to sign-in to
489 // such networks and the user didn't express interest in connecting to
490 // such networks (an app did) so the user may be unhappily surprised when
491 // asked to sign-in to a network they didn't want to connect to in the
492 // first place. Validation could be done to adjust the network scores
493 // however these networks are app-requested and may not be intended for
494 // general usage, in which case general validation may not be an accurate
495 // measure of the network's quality. Only the app knows how to evaluate
496 // the network so don't bother validating here. Furthermore sending HTTP
497 // packets over the network may be undesirable, for example an extremely
498 // expensive metered network, or unwanted leaking of the User Agent string.
499 if (!mDefaultRequest.networkCapabilities.satisfiedByNetworkCapabilities(
500 mNetworkAgentInfo.networkCapabilities)) {
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900501 validationLog("Network would not satisfy default request, not validating");
Paul Jensenca8f16a2014-05-09 12:47:55 -0400502 transitionTo(mValidatedState);
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400503 return HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400504 }
Paul Jensend0491e9a2015-05-05 14:52:22 -0400505 mAttempts++;
Lorenzo Colitti351bfad2015-01-22 22:36:50 +0900506 // Note: This call to isCaptivePortal() could take up to a minute. Resolving the
507 // server's IP addresses could hit the DNS timeout, and attempting connections
508 // to each of the server's several IP addresses (currently one IPv4 and one
509 // IPv6) could each take SOCKET_TIMEOUT_MS. During this time this StateMachine
510 // will be unresponsive. isCaptivePortal() could be executed on another Thread
511 // if this is found to cause problems.
Paul Jensen232437312016-04-06 09:51:26 -0400512 CaptivePortalProbeResult probeResult = isCaptivePortal();
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900513 if (probeResult.isSuccessful()) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400514 transitionTo(mValidatedState);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900515 } else if (probeResult.isPortal()) {
Paul Jensen232437312016-04-06 09:51:26 -0400516 mConnectivityServiceHandler.sendMessage(obtainMessage(EVENT_NETWORK_TESTED,
Hugo Benichid953bf82016-09-27 09:22:35 +0900517 NETWORK_TEST_RESULT_INVALID, mNetId, probeResult.redirectUrl));
518 mLastPortalProbeResult = probeResult;
Paul Jensen71b645f2014-10-13 14:13:07 -0400519 transitionTo(mCaptivePortalState);
Paul Jensend0491e9a2015-05-05 14:52:22 -0400520 } else {
Paul Jensend9be23f2015-05-19 14:51:47 -0400521 final Message msg = obtainMessage(CMD_REEVALUATE, ++mReevaluateToken, 0);
Paul Jensen869868be2014-05-15 10:33:05 -0400522 sendMessageDelayed(msg, mReevaluateDelayMs);
Hugo Benichicfddd682016-05-31 16:28:06 +0900523 logNetworkEvent(NetworkEvent.NETWORK_VALIDATION_FAILED);
Paul Jensend9be23f2015-05-19 14:51:47 -0400524 mConnectivityServiceHandler.sendMessage(obtainMessage(
Erik Klinea488c232016-04-15 15:49:42 +0900525 EVENT_NETWORK_TESTED, NETWORK_TEST_RESULT_INVALID, mNetId,
Hugo Benichid953bf82016-09-27 09:22:35 +0900526 probeResult.redirectUrl));
Paul Jensend9be23f2015-05-19 14:51:47 -0400527 if (mAttempts >= BLAME_FOR_EVALUATION_ATTEMPTS) {
Paul Jensend0491e9a2015-05-05 14:52:22 -0400528 // Don't continue to blame UID forever.
529 TrafficStats.clearThreadStatsUid();
530 }
531 mReevaluateDelayMs *= 2;
532 if (mReevaluateDelayMs > MAX_REEVALUATE_DELAY_MS) {
533 mReevaluateDelayMs = MAX_REEVALUATE_DELAY_MS;
534 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400535 }
Paul Jensend6a3f7e2014-08-19 09:40:11 -0400536 return HANDLED;
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400537 case CMD_FORCE_REEVALUATION:
Paul Jensend0491e9a2015-05-05 14:52:22 -0400538 // Before IGNORE_REEVALUATE_ATTEMPTS attempts are made,
539 // ignore any re-evaluation requests. After, restart the
540 // evaluation process via EvaluatingState#enter.
Erik Klinea488c232016-04-15 15:49:42 +0900541 return (mAttempts < IGNORE_REEVALUATE_ATTEMPTS) ? HANDLED : NOT_HANDLED;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400542 default:
543 return NOT_HANDLED;
544 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400545 }
Paul Jensen7ccd3df2014-08-29 09:54:01 -0400546
547 @Override
548 public void exit() {
549 TrafficStats.clearThreadStatsUid();
550 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400551 }
552
Paul Jensendcbe8352014-09-16 16:28:34 -0400553 // BroadcastReceiver that waits for a particular Intent and then posts a message.
554 private class CustomIntentReceiver extends BroadcastReceiver {
Paul Jensen71b645f2014-10-13 14:13:07 -0400555 private final int mToken;
556 private final int mWhat;
Paul Jensendcbe8352014-09-16 16:28:34 -0400557 private final String mAction;
Paul Jensen71b645f2014-10-13 14:13:07 -0400558 CustomIntentReceiver(String action, int token, int what) {
559 mToken = token;
560 mWhat = what;
Paul Jensendcbe8352014-09-16 16:28:34 -0400561 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token;
562 mContext.registerReceiver(this, new IntentFilter(mAction));
Paul Jensen869868be2014-05-15 10:33:05 -0400563 }
Paul Jensendcbe8352014-09-16 16:28:34 -0400564 public PendingIntent getPendingIntent() {
Paul Jensen25a217c2015-02-27 22:55:47 -0500565 final Intent intent = new Intent(mAction);
566 intent.setPackage(mContext.getPackageName());
567 return PendingIntent.getBroadcast(mContext, 0, intent, 0);
Paul Jensendcbe8352014-09-16 16:28:34 -0400568 }
569 @Override
570 public void onReceive(Context context, Intent intent) {
Paul Jensen71b645f2014-10-13 14:13:07 -0400571 if (intent.getAction().equals(mAction)) sendMessage(obtainMessage(mWhat, mToken));
Paul Jensendcbe8352014-09-16 16:28:34 -0400572 }
573 }
Paul Jensen869868be2014-05-15 10:33:05 -0400574
Paul Jensen71b645f2014-10-13 14:13:07 -0400575 // Being in the CaptivePortalState State indicates a captive portal was detected and the user
576 // has been shown a notification to sign-in.
577 private class CaptivePortalState extends State {
Paul Jensen25a217c2015-02-27 22:55:47 -0500578 private static final String ACTION_LAUNCH_CAPTIVE_PORTAL_APP =
579 "android.net.netmon.launchCaptivePortalApp";
580
Paul Jensen869868be2014-05-15 10:33:05 -0400581 @Override
582 public void enter() {
Hugo Benichicfddd682016-05-31 16:28:06 +0900583 maybeLogEvaluationResult(NetworkEvent.NETWORK_CAPTIVE_PORTAL_FOUND);
Paul Jensend0491e9a2015-05-05 14:52:22 -0400584 // Don't annoy user with sign-in notifications.
Paul Jensen700f2362015-05-05 14:56:10 -0400585 if (mDontDisplaySigninNotification) return;
Paul Jensen25a217c2015-02-27 22:55:47 -0500586 // Create a CustomIntentReceiver that sends us a
587 // CMD_LAUNCH_CAPTIVE_PORTAL_APP message when the user
588 // touches the notification.
589 if (mLaunchCaptivePortalAppBroadcastReceiver == null) {
Paul Jensen71b645f2014-10-13 14:13:07 -0400590 // Wait for result.
Paul Jensen25a217c2015-02-27 22:55:47 -0500591 mLaunchCaptivePortalAppBroadcastReceiver = new CustomIntentReceiver(
592 ACTION_LAUNCH_CAPTIVE_PORTAL_APP, new Random().nextInt(),
593 CMD_LAUNCH_CAPTIVE_PORTAL_APP);
Paul Jensen71b645f2014-10-13 14:13:07 -0400594 }
Paul Jensen25a217c2015-02-27 22:55:47 -0500595 // Display the sign in notification.
Paul Jensen71b645f2014-10-13 14:13:07 -0400596 Message message = obtainMessage(EVENT_PROVISIONING_NOTIFICATION, 1,
597 mNetworkAgentInfo.network.netId,
Paul Jensen25a217c2015-02-27 22:55:47 -0500598 mLaunchCaptivePortalAppBroadcastReceiver.getPendingIntent());
Paul Jensen71b645f2014-10-13 14:13:07 -0400599 mConnectivityServiceHandler.sendMessage(message);
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400600 // Retest for captive portal occasionally.
601 sendMessageDelayed(CMD_CAPTIVE_PORTAL_RECHECK, 0 /* no UID */,
602 CAPTIVE_PORTAL_REEVALUATE_DELAY_MS);
Paul Jensen869868be2014-05-15 10:33:05 -0400603 }
604
605 @Override
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400606 public void exit() {
fionaxu1bf6ec22016-05-23 16:33:16 -0700607 removeMessages(CMD_CAPTIVE_PORTAL_RECHECK);
Paul Jensenee3e2ce2015-06-17 15:02:54 -0400608 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400609 }
610
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900611 private static String getCaptivePortalServerHttpsUrl(Context context) {
612 return getSetting(context, Settings.Global.CAPTIVE_PORTAL_HTTPS_URL, DEFAULT_HTTPS_URL);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900613 }
614
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900615 public static String getCaptivePortalServerHttpUrl(Context context) {
616 return getSetting(context, Settings.Global.CAPTIVE_PORTAL_HTTP_URL, DEFAULT_HTTP_URL);
617 }
618
619 private static String getCaptivePortalFallbackUrl(Context context) {
620 return getSetting(context,
621 Settings.Global.CAPTIVE_PORTAL_FALLBACK_URL, DEFAULT_FALLBACK_URL);
622 }
623
624 private static String getCaptivePortalUserAgent(Context context) {
625 return getSetting(context, Settings.Global.CAPTIVE_PORTAL_USER_AGENT, DEFAULT_USER_AGENT);
626 }
627
628 private static String getSetting(Context context, String symbol, String defaultValue) {
629 final String value = Settings.Global.getString(context.getContentResolver(), symbol);
630 return value != null ? value : defaultValue;
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900631 }
632
633 @VisibleForTesting
634 protected CaptivePortalProbeResult isCaptivePortal() {
Hugo Benichid953bf82016-09-27 09:22:35 +0900635 if (!mIsCaptivePortalCheckEnabled) return new CaptivePortalProbeResult(204);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900636
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900637 URL pacUrl = null, httpsUrl = null, httpUrl = null, fallbackUrl = null;
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900638
639 // On networks with a PAC instead of fetching a URL that should result in a 204
640 // response, we instead simply fetch the PAC script. This is done for a few reasons:
641 // 1. At present our PAC code does not yet handle multiple PACs on multiple networks
642 // until something like https://android-review.googlesource.com/#/c/115180/ lands.
643 // Network.openConnection() will ignore network-specific PACs and instead fetch
644 // using NO_PROXY. If a PAC is in place, the only fetch we know will succeed with
645 // NO_PROXY is the fetch of the PAC itself.
646 // 2. To proxy the generate_204 fetch through a PAC would require a number of things
647 // happen before the fetch can commence, namely:
648 // a) the PAC script be fetched
649 // b) a PAC script resolver service be fired up and resolve the captive portal
650 // server.
651 // Network validation could be delayed until these prerequisities are satisifed or
652 // could simply be left to race them. Neither is an optimal solution.
653 // 3. PAC scripts are sometimes used to block or restrict Internet access and may in
654 // fact block fetching of the generate_204 URL which would lead to false negative
655 // results for network validation.
656 final ProxyInfo proxyInfo = mNetworkAgentInfo.linkProperties.getHttpProxy();
657 if (proxyInfo != null && !Uri.EMPTY.equals(proxyInfo.getPacFileUrl())) {
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900658 pacUrl = makeURL(proxyInfo.getPacFileUrl().toString());
659 if (pacUrl == null) {
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900660 return CaptivePortalProbeResult.FAILED;
661 }
662 }
663
664 if (pacUrl == null) {
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900665 httpsUrl = makeURL(getCaptivePortalServerHttpsUrl(mContext));
666 httpUrl = makeURL(getCaptivePortalServerHttpUrl(mContext));
667 fallbackUrl = makeURL(getCaptivePortalFallbackUrl(mContext));
668 if (httpUrl == null || httpsUrl == null) {
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900669 return CaptivePortalProbeResult.FAILED;
670 }
671 }
672
673 long startTime = SystemClock.elapsedRealtime();
674
675 // Pre-resolve the captive portal server host so we can log it.
676 // Only do this if HttpURLConnection is about to, to avoid any potentially
677 // unnecessary resolution.
678 String hostToResolve = null;
679 if (pacUrl != null) {
680 hostToResolve = pacUrl.getHost();
681 } else if (proxyInfo != null) {
682 hostToResolve = proxyInfo.getHost();
683 } else {
684 hostToResolve = httpUrl.getHost();
685 }
686
687 if (!TextUtils.isEmpty(hostToResolve)) {
688 String probeName = ValidationProbeEvent.getProbeName(ValidationProbeEvent.PROBE_DNS);
689 final Stopwatch dnsTimer = new Stopwatch().start();
Hugo Benichicfddd682016-05-31 16:28:06 +0900690 int dnsResult;
691 long dnsLatency;
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900692 try {
693 InetAddress[] addresses = mNetworkAgentInfo.network.getAllByName(hostToResolve);
Hugo Benichicfddd682016-05-31 16:28:06 +0900694 dnsResult = ValidationProbeEvent.DNS_SUCCESS;
695 dnsLatency = dnsTimer.stop();
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900696 final StringBuffer connectInfo = new StringBuffer(", " + hostToResolve + "=");
697 for (InetAddress address : addresses) {
698 connectInfo.append(address.getHostAddress());
699 if (address != addresses[addresses.length-1]) connectInfo.append(",");
700 }
701 validationLog(probeName + " OK " + dnsLatency + "ms" + connectInfo);
702 } catch (UnknownHostException e) {
Hugo Benichicfddd682016-05-31 16:28:06 +0900703 dnsResult = ValidationProbeEvent.DNS_FAILURE;
704 dnsLatency = dnsTimer.stop();
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900705 validationLog(probeName + " FAIL " + dnsLatency + "ms, " + hostToResolve);
706 }
Hugo Benichicfddd682016-05-31 16:28:06 +0900707 logValidationProbe(dnsLatency, ValidationProbeEvent.PROBE_DNS, dnsResult);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900708 }
709
710 CaptivePortalProbeResult result;
711 if (pacUrl != null) {
712 result = sendHttpProbe(pacUrl, ValidationProbeEvent.PROBE_PAC);
713 } else if (mUseHttps) {
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900714 result = sendParallelHttpProbes(httpsUrl, httpUrl, fallbackUrl);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900715 } else {
716 result = sendHttpProbe(httpUrl, ValidationProbeEvent.PROBE_HTTP);
717 }
718
719 long endTime = SystemClock.elapsedRealtime();
720
721 sendNetworkConditionsBroadcast(true /* response received */,
722 result.isPortal() /* isCaptivePortal */,
723 startTime, endTime);
724
725 return result;
Udam Sainib7c24872016-01-04 12:16:14 -0800726 }
727
Paul Jensenca8f16a2014-05-09 12:47:55 -0400728 /**
729 * Do a URL fetch on a known server to see if we get the data we expect.
730 * Returns HTTP response code.
731 */
Paul Jensencf4c2c62015-07-01 14:16:32 -0400732 @VisibleForTesting
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900733 protected CaptivePortalProbeResult sendHttpProbe(URL url, int probeType) {
Paul Jensenca8f16a2014-05-09 12:47:55 -0400734 HttpURLConnection urlConnection = null;
Paul Jensen869868be2014-05-15 10:33:05 -0400735 int httpResponseCode = 599;
Paul Jensen232437312016-04-06 09:51:26 -0400736 String redirectUrl = null;
Erik Klinea488c232016-04-15 15:49:42 +0900737 final Stopwatch probeTimer = new Stopwatch().start();
Paul Jensenca8f16a2014-05-09 12:47:55 -0400738 try {
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700739 urlConnection = (HttpURLConnection) mNetworkAgentInfo.network.openConnection(url);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900740 urlConnection.setInstanceFollowRedirects(probeType == ValidationProbeEvent.PROBE_PAC);
Paul Jensene547ff22014-08-04 09:12:24 -0400741 urlConnection.setConnectTimeout(SOCKET_TIMEOUT_MS);
742 urlConnection.setReadTimeout(SOCKET_TIMEOUT_MS);
743 urlConnection.setUseCaches(false);
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900744 final String userAgent = getCaptivePortalUserAgent(mContext);
745 if (userAgent != null) {
746 urlConnection.setRequestProperty("User-Agent", userAgent);
747 }
Paul Jensen306f1a42014-08-04 10:59:01 -0400748
749 // Time how long it takes to get a response to our request
750 long requestTimestamp = SystemClock.elapsedRealtime();
751
Pierre Imaibe12d762016-03-10 17:00:50 +0900752 httpResponseCode = urlConnection.getResponseCode();
Paul Jensen232437312016-04-06 09:51:26 -0400753 redirectUrl = urlConnection.getHeaderField("location");
Paul Jensen306f1a42014-08-04 10:59:01 -0400754
755 // Time how long it takes to get a response to our request
756 long responseTimestamp = SystemClock.elapsedRealtime();
757
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900758 validationLog(ValidationProbeEvent.getProbeName(probeType) + " " + url +
759 " time=" + (responseTimestamp - requestTimestamp) + "ms" +
760 " ret=" + httpResponseCode +
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -0700761 " headers=" + urlConnection.getHeaderFields());
Paul Jensene547ff22014-08-04 09:12:24 -0400762 // NOTE: We may want to consider an "HTTP/1.0 204" response to be a captive
763 // portal. The only example of this seen so far was a captive portal. For
764 // the time being go with prior behavior of assuming it's not a captive
765 // portal. If it is considered a captive portal, a different sign-in URL
766 // is needed (i.e. can't browse a 204). This could be the result of an HTTP
767 // proxy server.
768
769 // Consider 200 response with "Content-length=0" to not be a captive portal.
770 // There's no point in considering this a captive portal as the user cannot
771 // sign-in to an empty page. Probably the result of a broken transparent proxy.
772 // See http://b/9972012.
773 if (httpResponseCode == 200 && urlConnection.getContentLength() == 0) {
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -0700774 validationLog("Empty 200 response interpreted as 204 response.");
Paul Jensene547ff22014-08-04 09:12:24 -0400775 httpResponseCode = 204;
776 }
Paul Jensen306f1a42014-08-04 10:59:01 -0400777
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900778 if (httpResponseCode == 200 && probeType == ValidationProbeEvent.PROBE_PAC) {
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -0700779 validationLog("PAC fetch 200 response interpreted as 204 response.");
Paul Jensen8fe17422015-02-02 11:03:03 -0500780 httpResponseCode = 204;
781 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400782 } catch (IOException e) {
Robert Greenwalt22b4c6a2015-06-23 15:03:33 -0700783 validationLog("Probably not a portal: exception " + e);
Paul Jensen869868be2014-05-15 10:33:05 -0400784 if (httpResponseCode == 599) {
785 // TODO: Ping gateway and DNS server and log results.
786 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400787 } finally {
788 if (urlConnection != null) {
789 urlConnection.disconnect();
790 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400791 }
Hugo Benichicfddd682016-05-31 16:28:06 +0900792 logValidationProbe(probeTimer.stop(), probeType, httpResponseCode);
Hugo Benichid953bf82016-09-27 09:22:35 +0900793 return new CaptivePortalProbeResult(httpResponseCode, redirectUrl, url.toString());
Paul Jensenca8f16a2014-05-09 12:47:55 -0400794 }
Paul Jensen306f1a42014-08-04 10:59:01 -0400795
Hugo Benichid953bf82016-09-27 09:22:35 +0900796 private CaptivePortalProbeResult sendParallelHttpProbes(
797 URL httpsUrl, URL httpUrl, URL fallbackUrl) {
798 // Number of probes to wait for. If a probe completes with a conclusive answer
799 // it shortcuts the latch immediately by forcing the count to 0.
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900800 final CountDownLatch latch = new CountDownLatch(2);
801
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900802 final class ProbeThread extends Thread {
803 private final boolean mIsHttps;
Hugo Benichid953bf82016-09-27 09:22:35 +0900804 private volatile CaptivePortalProbeResult mResult = CaptivePortalProbeResult.FAILED;
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900805
806 public ProbeThread(boolean isHttps) {
807 mIsHttps = isHttps;
808 }
809
Hugo Benichid953bf82016-09-27 09:22:35 +0900810 public CaptivePortalProbeResult result() {
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900811 return mResult;
812 }
813
814 @Override
815 public void run() {
816 if (mIsHttps) {
817 mResult = sendHttpProbe(httpsUrl, ValidationProbeEvent.PROBE_HTTPS);
818 } else {
819 mResult = sendHttpProbe(httpUrl, ValidationProbeEvent.PROBE_HTTP);
820 }
821 if ((mIsHttps && mResult.isSuccessful()) || (!mIsHttps && mResult.isPortal())) {
Hugo Benichid953bf82016-09-27 09:22:35 +0900822 // Stop waiting immediately if https succeeds or if http finds a portal.
823 while (latch.getCount() > 0) {
824 latch.countDown();
825 }
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900826 }
Hugo Benichid953bf82016-09-27 09:22:35 +0900827 // Signal this probe has completed.
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900828 latch.countDown();
829 }
830 }
831
Hugo Benichid953bf82016-09-27 09:22:35 +0900832 final ProbeThread httpsProbe = new ProbeThread(true);
833 final ProbeThread httpProbe = new ProbeThread(false);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900834
835 try {
Hugo Benichid953bf82016-09-27 09:22:35 +0900836 httpsProbe.start();
837 httpProbe.start();
838 latch.await(PROBE_TIMEOUT_MS, TimeUnit.MILLISECONDS);
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900839 } catch (InterruptedException e) {
Hugo Benichid953bf82016-09-27 09:22:35 +0900840 validationLog("Error: probes wait interrupted!");
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900841 return CaptivePortalProbeResult.FAILED;
842 }
843
Hugo Benichid953bf82016-09-27 09:22:35 +0900844 final CaptivePortalProbeResult httpsResult = httpsProbe.result();
845 final CaptivePortalProbeResult httpResult = httpProbe.result();
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900846
Hugo Benichid953bf82016-09-27 09:22:35 +0900847 // Look for a conclusive probe result first.
848 if (httpResult.isPortal()) {
849 return httpResult;
850 }
851 // httpsResult.isPortal() is not expected, but check it nonetheless.
852 if (httpsResult.isPortal() || httpsResult.isSuccessful()) {
853 return httpsResult;
854 }
855 // If a fallback url is specified, use a fallback probe to try again portal detection.
856 if (fallbackUrl != null) {
857 CaptivePortalProbeResult result =
858 sendHttpProbe(fallbackUrl, ValidationProbeEvent.PROBE_FALLBACK);
859 if (result.isPortal()) {
860 return result;
861 }
862 }
863 // Otherwise wait until https probe completes and use its result.
864 try {
865 httpsProbe.join();
866 } catch (InterruptedException e) {
867 validationLog("Error: https probe wait interrupted!");
868 return CaptivePortalProbeResult.FAILED;
869 }
870 return httpsProbe.result();
Lorenzo Colittic5be12e2016-04-19 21:57:31 +0900871 }
872
Hugo Benichi92eb22fd2016-09-27 13:01:41 +0900873 private URL makeURL(String url) {
874 if (url != null) {
875 try {
876 return new URL(url);
877 } catch (MalformedURLException e) {
878 validationLog("Bad URL: " + url);
879 }
880 }
881 return null;
882 }
883
Paul Jensen306f1a42014-08-04 10:59:01 -0400884 /**
885 * @param responseReceived - whether or not we received a valid HTTP response to our request.
886 * If false, isCaptivePortal and responseTimestampMs are ignored
887 * TODO: This should be moved to the transports. The latency could be passed to the transports
888 * along with the captive portal result. Currently the TYPE_MOBILE broadcasts appear unused so
889 * perhaps this could just be added to the WiFi transport only.
890 */
891 private void sendNetworkConditionsBroadcast(boolean responseReceived, boolean isCaptivePortal,
892 long requestTimestampMs, long responseTimestampMs) {
893 if (Settings.Global.getInt(mContext.getContentResolver(),
894 Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 0) == 0) {
Paul Jensen306f1a42014-08-04 10:59:01 -0400895 return;
896 }
897
Robert Greenwaltfb68f8f2014-08-13 13:43:32 -0700898 if (systemReady == false) return;
899
Paul Jensen306f1a42014-08-04 10:59:01 -0400900 Intent latencyBroadcast = new Intent(ACTION_NETWORK_CONDITIONS_MEASURED);
901 switch (mNetworkAgentInfo.networkInfo.getType()) {
902 case ConnectivityManager.TYPE_WIFI:
903 WifiInfo currentWifiInfo = mWifiManager.getConnectionInfo();
904 if (currentWifiInfo != null) {
905 // NOTE: getSSID()'s behavior changed in API 17; before that, SSIDs were not
906 // surrounded by double quotation marks (thus violating the Javadoc), but this
907 // was changed to match the Javadoc in API 17. Since clients may have started
908 // sanitizing the output of this method since API 17 was released, we should
909 // not change it here as it would become impossible to tell whether the SSID is
910 // simply being surrounded by quotes due to the API, or whether those quotes
911 // are actually part of the SSID.
912 latencyBroadcast.putExtra(EXTRA_SSID, currentWifiInfo.getSSID());
913 latencyBroadcast.putExtra(EXTRA_BSSID, currentWifiInfo.getBSSID());
914 } else {
915 if (DBG) logw("network info is TYPE_WIFI but no ConnectionInfo found");
916 return;
917 }
918 break;
919 case ConnectivityManager.TYPE_MOBILE:
920 latencyBroadcast.putExtra(EXTRA_NETWORK_TYPE, mTelephonyManager.getNetworkType());
921 List<CellInfo> info = mTelephonyManager.getAllCellInfo();
922 if (info == null) return;
923 int numRegisteredCellInfo = 0;
924 for (CellInfo cellInfo : info) {
925 if (cellInfo.isRegistered()) {
926 numRegisteredCellInfo++;
927 if (numRegisteredCellInfo > 1) {
Paul Jensen22e547a2015-06-25 09:17:53 -0400928 log("more than one registered CellInfo. Can't " +
Paul Jensen306f1a42014-08-04 10:59:01 -0400929 "tell which is active. Bailing.");
930 return;
931 }
932 if (cellInfo instanceof CellInfoCdma) {
933 CellIdentityCdma cellId = ((CellInfoCdma) cellInfo).getCellIdentity();
934 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
935 } else if (cellInfo instanceof CellInfoGsm) {
936 CellIdentityGsm cellId = ((CellInfoGsm) cellInfo).getCellIdentity();
937 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
938 } else if (cellInfo instanceof CellInfoLte) {
939 CellIdentityLte cellId = ((CellInfoLte) cellInfo).getCellIdentity();
940 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
941 } else if (cellInfo instanceof CellInfoWcdma) {
942 CellIdentityWcdma cellId = ((CellInfoWcdma) cellInfo).getCellIdentity();
943 latencyBroadcast.putExtra(EXTRA_CELL_ID, cellId);
944 } else {
945 if (DBG) logw("Registered cellinfo is unrecognized");
946 return;
947 }
948 }
949 }
950 break;
951 default:
952 return;
953 }
954 latencyBroadcast.putExtra(EXTRA_CONNECTIVITY_TYPE, mNetworkAgentInfo.networkInfo.getType());
955 latencyBroadcast.putExtra(EXTRA_RESPONSE_RECEIVED, responseReceived);
956 latencyBroadcast.putExtra(EXTRA_REQUEST_TIMESTAMP_MS, requestTimestampMs);
957
958 if (responseReceived) {
959 latencyBroadcast.putExtra(EXTRA_IS_CAPTIVE_PORTAL, isCaptivePortal);
960 latencyBroadcast.putExtra(EXTRA_RESPONSE_TIMESTAMP_MS, responseTimestampMs);
961 }
Paul Jensen55298582014-08-20 11:01:41 -0400962 mContext.sendBroadcastAsUser(latencyBroadcast, UserHandle.CURRENT,
963 PERMISSION_ACCESS_NETWORK_CONDITIONS);
Paul Jensen306f1a42014-08-04 10:59:01 -0400964 }
Paul Jensend7b6ca92015-05-13 14:05:12 -0400965
Hugo Benichicfddd682016-05-31 16:28:06 +0900966 private void logNetworkEvent(int evtype) {
967 mMetricsLog.log(new NetworkEvent(mNetId, evtype));
968 }
969
970 private void maybeLogEvaluationResult(int evtype) {
971 if (mEvaluationTimer.isRunning()) {
972 mMetricsLog.log(new NetworkEvent(mNetId, evtype, mEvaluationTimer.stop()));
973 mEvaluationTimer.reset();
974 }
975 }
976
977 private void logValidationProbe(long durationMs, int probeType, int probeResult) {
978 mMetricsLog.log(new ValidationProbeEvent(mNetId, durationMs, probeType, probeResult));
979 }
Paul Jensenca8f16a2014-05-09 12:47:55 -0400980}