blob: d45ed1922aa403d0028e0ee4f62a62023f8d60c0 [file] [log] [blame]
Jason Monkd52356a2015-01-28 10:40:41 -05001/*
2 * Copyright (C) 2015 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.settingslib.wifi;
18
Sundeep Ghuman271e5de2017-05-30 14:11:39 -070019import android.annotation.Nullable;
Jason Monk6980d122015-06-15 10:07:55 -040020import android.app.AppGlobals;
Jason Monkd52356a2015-01-28 10:40:41 -050021import android.content.Context;
Jason Monk6980d122015-06-15 10:07:55 -040022import android.content.pm.ApplicationInfo;
23import android.content.pm.IPackageManager;
24import android.content.pm.PackageManager;
Sanket Padawe7094d222015-05-01 16:55:00 -070025import android.net.ConnectivityManager;
Sanket Padawe7094d222015-05-01 16:55:00 -070026import android.net.NetworkCapabilities;
Jason Monkd52356a2015-01-28 10:40:41 -050027import android.net.NetworkInfo;
28import android.net.NetworkInfo.DetailedState;
29import android.net.NetworkInfo.State;
Stephen Chen36dd5cf12017-03-20 13:27:51 -070030import android.net.NetworkScoreManager;
31import android.net.NetworkScorerAppData;
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -080032import android.net.ScoredNetwork;
Sanket Padawe7094d222015-05-01 16:55:00 -070033import android.net.wifi.IWifiManager;
Jason Monkd52356a2015-01-28 10:40:41 -050034import android.net.wifi.ScanResult;
35import android.net.wifi.WifiConfiguration;
36import android.net.wifi.WifiConfiguration.KeyMgmt;
37import android.net.wifi.WifiInfo;
38import android.net.wifi.WifiManager;
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -080039import android.net.wifi.WifiNetworkScoreCache;
Peter Qiuced37db2017-03-14 15:51:22 -070040import android.net.wifi.hotspot2.PasspointConfiguration;
Jason Monkd52356a2015-01-28 10:40:41 -050041import android.os.Bundle;
Sanket Padawe7094d222015-05-01 16:55:00 -070042import android.os.RemoteException;
43import android.os.ServiceManager;
Mitchell Wills18af4932016-08-10 13:49:21 -070044import android.os.SystemClock;
Jason Monk6980d122015-06-15 10:07:55 -040045import android.os.UserHandle;
Tony Mantlera0e03dd2016-01-27 15:57:03 -080046import android.support.annotation.NonNull;
Jason Monk6980d122015-06-15 10:07:55 -040047import android.text.Spannable;
48import android.text.SpannableString;
49import android.text.TextUtils;
50import android.text.style.TtsSpan;
Jason Monkd52356a2015-01-28 10:40:41 -050051import android.util.Log;
Jason Monkd52356a2015-01-28 10:40:41 -050052
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -080053import com.android.internal.annotations.VisibleForTesting;
Jason Monkd52356a2015-01-28 10:40:41 -050054import com.android.settingslib.R;
55
Vinit Deshpandefcd46122015-06-11 18:22:23 -070056import java.util.ArrayList;
Mitchell Wills18af4932016-08-10 13:49:21 -070057import java.util.Iterator;
Mitchell Wills18af4932016-08-10 13:49:21 -070058import java.util.concurrent.ConcurrentHashMap;
Ajay Nadathurd7b689a2016-08-31 15:07:56 -070059import java.util.concurrent.atomic.AtomicInteger;
Jason Monkd52356a2015-01-28 10:40:41 -050060
61
62public class AccessPoint implements Comparable<AccessPoint> {
63 static final String TAG = "SettingsLib.AccessPoint";
64
65 /**
66 * Lower bound on the 2.4 GHz (802.11b/g/n) WLAN channels
67 */
68 public static final int LOWER_FREQ_24GHZ = 2400;
69
70 /**
71 * Upper bound on the 2.4 GHz (802.11b/g/n) WLAN channels
72 */
73 public static final int HIGHER_FREQ_24GHZ = 2500;
74
75 /**
76 * Lower bound on the 5.0 GHz (802.11a/h/j/n/ac) WLAN channels
77 */
78 public static final int LOWER_FREQ_5GHZ = 4900;
79
80 /**
81 * Upper bound on the 5.0 GHz (802.11a/h/j/n/ac) WLAN channels
82 */
83 public static final int HIGHER_FREQ_5GHZ = 5900;
84
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -070085 /**
86 * Constant value representing an unlabeled / unscored network.
87 */
88 @VisibleForTesting
89 static final int SPEED_NONE = 0;
90
91 /**
92 * Constant value representing a slow speed network connection.
93 */
94 @VisibleForTesting
95 static final int SPEED_SLOW = 5;
96
97 /**
98 * Constant value representing a medium speed network connection.
99 */
100 @VisibleForTesting
101 static final int SPEED_MEDIUM = 10;
102
103 /**
104 * Constant value representing a fast speed network connection.
105 */
106 @VisibleForTesting
107 static final int SPEED_FAST = 20;
108
109 /**
110 * Constant value representing a very fast speed network connection.
111 */
112 @VisibleForTesting
113 static final int SPEED_VERY_FAST = 30;
Jason Monkd52356a2015-01-28 10:40:41 -0500114
115 /**
116 * Experimental: we should be able to show the user the list of BSSIDs and bands
117 * for that SSID.
118 * For now this data is used only with Verbose Logging so as to show the band and number
119 * of BSSIDs on which that network is seen.
120 */
Mitchell Wills18af4932016-08-10 13:49:21 -0700121 private final ConcurrentHashMap<String, ScanResult> mScanResultCache =
122 new ConcurrentHashMap<String, ScanResult>(32);
123 private static final long MAX_SCAN_RESULT_AGE_MS = 15000;
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700124
Dave Schaefer98537432017-02-08 11:26:08 -0800125 static final String KEY_NETWORKINFO = "key_networkinfo";
126 static final String KEY_WIFIINFO = "key_wifiinfo";
127 static final String KEY_SCANRESULT = "key_scanresult";
128 static final String KEY_SSID = "key_ssid";
129 static final String KEY_SECURITY = "key_security";
130 static final String KEY_PSKTYPE = "key_psktype";
131 static final String KEY_SCANRESULTCACHE = "key_scanresultcache";
132 static final String KEY_CONFIG = "key_config";
Peter Qiuced37db2017-03-14 15:51:22 -0700133 static final String KEY_FQDN = "key_fqdn";
134 static final String KEY_PROVIDER_FRIENDLY_NAME = "key_provider_friendly_name";
Dave Schaefer98537432017-02-08 11:26:08 -0800135 static final AtomicInteger sLastId = new AtomicInteger(0);
Jason Monkd52356a2015-01-28 10:40:41 -0500136
137 /**
138 * These values are matched in string arrays -- changes must be kept in sync
139 */
140 public static final int SECURITY_NONE = 0;
141 public static final int SECURITY_WEP = 1;
142 public static final int SECURITY_PSK = 2;
143 public static final int SECURITY_EAP = 3;
144
145 private static final int PSK_UNKNOWN = 0;
146 private static final int PSK_WPA = 1;
147 private static final int PSK_WPA2 = 2;
148 private static final int PSK_WPA_WPA2 = 3;
149
Sundeep Ghumanaaa8a1b2017-03-13 14:40:56 -0700150 /**
151 * The number of distinct wifi levels.
152 *
153 * <p>Must keep in sync with {@link R.array.wifi_signal} and {@link WifiManager#RSSI_LEVELS}.
154 */
155 public static final int SIGNAL_LEVELS = 5;
Tony Mantlera0e03dd2016-01-27 15:57:03 -0800156
Sundeep Ghumanaaa8a1b2017-03-13 14:40:56 -0700157 public static final int UNREACHABLE_RSSI = Integer.MIN_VALUE;
Dave Schaefer98537432017-02-08 11:26:08 -0800158
Jason Monkd52356a2015-01-28 10:40:41 -0500159 private final Context mContext;
160
161 private String ssid;
Jason Monk60a82ff2016-02-25 13:55:03 -0500162 private String bssid;
Jason Monkd52356a2015-01-28 10:40:41 -0500163 private int security;
164 private int networkId = WifiConfiguration.INVALID_NETWORK_ID;
165
166 private int pskType = PSK_UNKNOWN;
167
168 private WifiConfiguration mConfig;
Jason Monkd52356a2015-01-28 10:40:41 -0500169
Dave Schaefer98537432017-02-08 11:26:08 -0800170 private int mRssi = UNREACHABLE_RSSI;
Jason Monkd52356a2015-01-28 10:40:41 -0500171 private long mSeen = 0;
172
173 private WifiInfo mInfo;
174 private NetworkInfo mNetworkInfo;
Ajay Nadathurd7b689a2016-08-31 15:07:56 -0700175 AccessPointListener mAccessPointListener;
Jason Monkd52356a2015-01-28 10:40:41 -0500176
177 private Object mTag;
178
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800179 private int mRankingScore = Integer.MIN_VALUE;
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700180 private int mSpeed = AccessPoint.SPEED_NONE;
Stephen Chen21f68682017-04-04 13:23:31 -0700181 private boolean mIsScoredNetworkMetered = false;
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800182
Ajay Nadathurd7b689a2016-08-31 15:07:56 -0700183 // used to co-relate internal vs returned accesspoint.
184 int mId;
185
Peter Qiuced37db2017-03-14 15:51:22 -0700186 /**
187 * Information associated with the {@link PasspointConfiguration}. Only maintaining
188 * the relevant info to preserve spaces.
189 */
190 private String mFqdn;
191 private String mProviderFriendlyName;
192
Jason Monkd52356a2015-01-28 10:40:41 -0500193 public AccessPoint(Context context, Bundle savedState) {
194 mContext = context;
195 mConfig = savedState.getParcelable(KEY_CONFIG);
196 if (mConfig != null) {
197 loadConfig(mConfig);
198 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700199 if (savedState.containsKey(KEY_SSID)) {
200 ssid = savedState.getString(KEY_SSID);
201 }
202 if (savedState.containsKey(KEY_SECURITY)) {
203 security = savedState.getInt(KEY_SECURITY);
204 }
205 if (savedState.containsKey(KEY_PSKTYPE)) {
206 pskType = savedState.getInt(KEY_PSKTYPE);
Jason Monkd52356a2015-01-28 10:40:41 -0500207 }
208 mInfo = (WifiInfo) savedState.getParcelable(KEY_WIFIINFO);
209 if (savedState.containsKey(KEY_NETWORKINFO)) {
210 mNetworkInfo = savedState.getParcelable(KEY_NETWORKINFO);
211 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700212 if (savedState.containsKey(KEY_SCANRESULTCACHE)) {
213 ArrayList<ScanResult> scanResultArrayList =
214 savedState.getParcelableArrayList(KEY_SCANRESULTCACHE);
Mitchell Wills18af4932016-08-10 13:49:21 -0700215 mScanResultCache.clear();
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700216 for (ScanResult result : scanResultArrayList) {
217 mScanResultCache.put(result.BSSID, result);
218 }
219 }
Peter Qiuced37db2017-03-14 15:51:22 -0700220 if (savedState.containsKey(KEY_FQDN)) {
221 mFqdn = savedState.getString(KEY_FQDN);
222 }
223 if (savedState.containsKey(KEY_PROVIDER_FRIENDLY_NAME)) {
224 mProviderFriendlyName = savedState.getString(KEY_PROVIDER_FRIENDLY_NAME);
225 }
Mitchell Wills5a42db22015-08-03 09:46:08 -0700226 update(mConfig, mInfo, mNetworkInfo);
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -0800227 updateRssi();
228 updateSeen();
Ajay Nadathurd7b689a2016-08-31 15:07:56 -0700229 mId = sLastId.incrementAndGet();
Jason Monkd52356a2015-01-28 10:40:41 -0500230 }
231
Peter Qiuced37db2017-03-14 15:51:22 -0700232 public AccessPoint(Context context, WifiConfiguration config) {
Jason Monkd52356a2015-01-28 10:40:41 -0500233 mContext = context;
Peter Qiuced37db2017-03-14 15:51:22 -0700234 loadConfig(config);
Ajay Nadathurd7b689a2016-08-31 15:07:56 -0700235 mId = sLastId.incrementAndGet();
Jason Monkd52356a2015-01-28 10:40:41 -0500236 }
237
Peter Qiuced37db2017-03-14 15:51:22 -0700238 /**
239 * Initialize an AccessPoint object for a {@link PasspointConfiguration}. This is mainly
240 * used by "Saved Networks" page for managing the saved {@link PasspointConfiguration}.
241 */
242 public AccessPoint(Context context, PasspointConfiguration config) {
Jason Monkd52356a2015-01-28 10:40:41 -0500243 mContext = context;
Peter Qiuced37db2017-03-14 15:51:22 -0700244 mFqdn = config.getHomeSp().getFqdn();
245 mProviderFriendlyName = config.getHomeSp().getFriendlyName();
Ajay Nadathurd7b689a2016-08-31 15:07:56 -0700246 mId = sLastId.incrementAndGet();
247 }
248
249 AccessPoint(Context context, AccessPoint other) {
250 mContext = context;
251 copyFrom(other);
252 }
253
Peter Qiuced37db2017-03-14 15:51:22 -0700254 AccessPoint(Context context, ScanResult result) {
255 mContext = context;
256 initWithScanResult(result);
257 mId = sLastId.incrementAndGet();
258 }
259
Ajay Nadathurd7b689a2016-08-31 15:07:56 -0700260 /**
261 * Copy accesspoint information. NOTE: We do not copy tag information because that is never
262 * set on the internal copy.
263 * @param that
264 */
265 void copyFrom(AccessPoint that) {
266 that.evictOldScanResults();
267 this.ssid = that.ssid;
268 this.bssid = that.bssid;
269 this.security = that.security;
270 this.networkId = that.networkId;
271 this.pskType = that.pskType;
272 this.mConfig = that.mConfig; //TODO: Watch out, this object is mutated.
273 this.mRssi = that.mRssi;
274 this.mSeen = that.mSeen;
275 this.mInfo = that.mInfo;
276 this.mNetworkInfo = that.mNetworkInfo;
277 this.mScanResultCache.clear();
278 this.mScanResultCache.putAll(that.mScanResultCache);
279 this.mId = that.mId;
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700280 this.mSpeed = that.mSpeed;
Stephen Chen21f68682017-04-04 13:23:31 -0700281 this.mIsScoredNetworkMetered = that.mIsScoredNetworkMetered;
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800282 this.mRankingScore = that.mRankingScore;
Jason Monkd52356a2015-01-28 10:40:41 -0500283 }
284
Dave Schaefer98537432017-02-08 11:26:08 -0800285 /**
286 * Returns a negative integer, zero, or a positive integer if this AccessPoint is less than,
287 * equal to, or greater than the other AccessPoint.
288 *
289 * Sort order rules for AccessPoints:
290 * 1. Active before inactive
291 * 2. Reachable before unreachable
292 * 3. Saved before unsaved
293 * 4. (Internal only) Network ranking score
294 * 5. Stronger signal before weaker signal
295 * 6. SSID alphabetically
296 *
297 * Note that AccessPoints with a signal are usually also Reachable,
298 * and will thus appear before unreachable saved AccessPoints.
299 */
Jason Monkd52356a2015-01-28 10:40:41 -0500300 @Override
Tony Mantlera0e03dd2016-01-27 15:57:03 -0800301 public int compareTo(@NonNull AccessPoint other) {
Jason Monkd52356a2015-01-28 10:40:41 -0500302 // Active one goes first.
303 if (isActive() && !other.isActive()) return -1;
304 if (!isActive() && other.isActive()) return 1;
305
306 // Reachable one goes before unreachable one.
Dave Schaefer98537432017-02-08 11:26:08 -0800307 if (isReachable() && !other.isReachable()) return -1;
308 if (!isReachable() && other.isReachable()) return 1;
Jason Monkd52356a2015-01-28 10:40:41 -0500309
Sundeep Ghuman05c41e22017-02-01 13:27:56 -0800310 // Configured (saved) one goes before unconfigured one.
Dave Schaefer98537432017-02-08 11:26:08 -0800311 if (isSaved() && !other.isSaved()) return -1;
312 if (!isSaved() && other.isSaved()) return 1;
Jason Monkd52356a2015-01-28 10:40:41 -0500313
Sundeep Ghuman05c41e22017-02-01 13:27:56 -0800314 // Higher scores go before lower scores
Dave Schaefer98537432017-02-08 11:26:08 -0800315 if (getRankingScore() != other.getRankingScore()) {
316 return (getRankingScore() > other.getRankingScore()) ? -1 : 1;
Sundeep Ghuman05c41e22017-02-01 13:27:56 -0800317 }
318
Tony Mantlera0e03dd2016-01-27 15:57:03 -0800319 // Sort by signal strength, bucketed by level
320 int difference = WifiManager.calculateSignalLevel(other.mRssi, SIGNAL_LEVELS)
321 - WifiManager.calculateSignalLevel(mRssi, SIGNAL_LEVELS);
Jason Monkd52356a2015-01-28 10:40:41 -0500322 if (difference != 0) {
323 return difference;
324 }
325 // Sort by ssid.
Dave Schaefer98537432017-02-08 11:26:08 -0800326 return getSsidStr().compareToIgnoreCase(other.getSsidStr());
Jason Monkd52356a2015-01-28 10:40:41 -0500327 }
328
329 @Override
330 public boolean equals(Object other) {
331 if (!(other instanceof AccessPoint)) return false;
332 return (this.compareTo((AccessPoint) other) == 0);
333 }
334
335 @Override
336 public int hashCode() {
337 int result = 0;
338 if (mInfo != null) result += 13 * mInfo.hashCode();
339 result += 19 * mRssi;
340 result += 23 * networkId;
341 result += 29 * ssid.hashCode();
342 return result;
343 }
344
345 @Override
346 public String toString() {
347 StringBuilder builder = new StringBuilder().append("AccessPoint(")
348 .append(ssid);
Sundeep Ghuman2b489902017-02-22 18:17:29 -0800349 if (bssid != null) {
350 builder.append(":").append(bssid);
351 }
Jason Monkd52356a2015-01-28 10:40:41 -0500352 if (isSaved()) {
353 builder.append(',').append("saved");
354 }
355 if (isActive()) {
356 builder.append(',').append("active");
357 }
358 if (isEphemeral()) {
359 builder.append(',').append("ephemeral");
360 }
361 if (isConnectable()) {
362 builder.append(',').append("connectable");
363 }
364 if (security != SECURITY_NONE) {
365 builder.append(',').append(securityToString(security, pskType));
366 }
Sundeep Ghuman2b489902017-02-22 18:17:29 -0800367 builder.append(",level=").append(getLevel());
Sundeep Ghuman8920e9c2017-04-27 16:16:41 -0700368 if (mRankingScore != Integer.MIN_VALUE) {
369 builder.append(",rankingScore=").append(mRankingScore);
370 }
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700371 if (mSpeed != SPEED_NONE) {
372 builder.append(",speed=").append(mSpeed);
Sundeep Ghuman8920e9c2017-04-27 16:16:41 -0700373 }
Stephen Chen21f68682017-04-04 13:23:31 -0700374 builder.append(",metered=").append(isMetered());
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800375
Jason Monkd52356a2015-01-28 10:40:41 -0500376 return builder.append(')').toString();
377 }
378
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800379 /**
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700380 * Updates the AccessPoint rankingScore, metering, and speed, returning true if the data has
Stephen Chen21f68682017-04-04 13:23:31 -0700381 * changed.
382 *
383 * @param scoreCache The score cache to use to retrieve scores.
384 * @param scoringUiEnabled Whether to show scoring and badging UI.
385 */
386 boolean update(WifiNetworkScoreCache scoreCache, boolean scoringUiEnabled) {
387 boolean scoreChanged = false;
388 if (scoringUiEnabled) {
389 scoreChanged = updateScores(scoreCache);
390 }
391 return updateMetered(scoreCache) || scoreChanged;
392 }
393
394 /**
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700395 * Updates the AccessPoint rankingScore and speed, returning true if the data has changed.
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800396 *
397 * @param scoreCache The score cache to use to retrieve scores.
398 */
Stephen Chen21f68682017-04-04 13:23:31 -0700399 private boolean updateScores(WifiNetworkScoreCache scoreCache) {
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700400 int oldSpeed = mSpeed;
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800401 int oldRankingScore = mRankingScore;
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700402 mSpeed = SPEED_NONE;
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800403 mRankingScore = Integer.MIN_VALUE;
404
405 for (ScanResult result : mScanResultCache.values()) {
406 ScoredNetwork score = scoreCache.getScoredNetwork(result);
407 if (score == null) {
408 continue;
409 }
410
411 if (score.hasRankingScore()) {
412 mRankingScore = Math.max(mRankingScore, score.calculateRankingScore(result.level));
413 }
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700414 // TODO(sghuman): Rename calculateBadge API
415 mSpeed = Math.max(mSpeed, score.calculateBadge(result.level));
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800416 }
417
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700418 return (oldSpeed != mSpeed || oldRankingScore != mRankingScore);
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -0800419 }
420
Stephen Chen21f68682017-04-04 13:23:31 -0700421 /**
422 * Updates the AccessPoint's metering based on {@link ScoredNetwork#meteredHint}, returning
423 * true if the metering changed.
424 */
425 private boolean updateMetered(WifiNetworkScoreCache scoreCache) {
426 boolean oldMetering = mIsScoredNetworkMetered;
427 mIsScoredNetworkMetered = false;
428 for (ScanResult result : mScanResultCache.values()) {
429 ScoredNetwork score = scoreCache.getScoredNetwork(result);
430 if (score == null) {
431 continue;
432 }
433 mIsScoredNetworkMetered |= score.meteredHint;
434 }
435 return oldMetering == mIsScoredNetworkMetered;
436 }
437
Mitchell Wills18af4932016-08-10 13:49:21 -0700438 private void evictOldScanResults() {
439 long nowMs = SystemClock.elapsedRealtime();
440 for (Iterator<ScanResult> iter = mScanResultCache.values().iterator(); iter.hasNext(); ) {
441 ScanResult result = iter.next();
442 // result timestamp is in microseconds
443 if (nowMs - result.timestamp / 1000 > MAX_SCAN_RESULT_AGE_MS) {
444 iter.remove();
445 }
446 }
447 }
448
Jason Monkd52356a2015-01-28 10:40:41 -0500449 public boolean matches(ScanResult result) {
450 return ssid.equals(result.SSID) && security == getSecurity(result);
451 }
452
453 public boolean matches(WifiConfiguration config) {
Bartosz Fabianowski6fb07562016-01-12 15:43:19 +0100454 if (config.isPasspoint() && mConfig != null && mConfig.isPasspoint()) {
Shinji Sogof29e1222015-12-09 17:21:38 +0900455 return ssid.equals(removeDoubleQuotes(config.SSID)) && config.FQDN.equals(mConfig.FQDN);
Bartosz Fabianowski6fb07562016-01-12 15:43:19 +0100456 } else {
457 return ssid.equals(removeDoubleQuotes(config.SSID))
458 && security == getSecurity(config)
459 && (mConfig == null || mConfig.shared == config.shared);
460 }
Jason Monkd52356a2015-01-28 10:40:41 -0500461 }
462
463 public WifiConfiguration getConfig() {
464 return mConfig;
465 }
466
Peter Qiuced37db2017-03-14 15:51:22 -0700467 public String getPasspointFqdn() {
468 return mFqdn;
469 }
470
Jason Monkd52356a2015-01-28 10:40:41 -0500471 public void clearConfig() {
472 mConfig = null;
473 networkId = WifiConfiguration.INVALID_NETWORK_ID;
474 }
475
476 public WifiInfo getInfo() {
477 return mInfo;
478 }
479
Sundeep Ghumanaaa8a1b2017-03-13 14:40:56 -0700480 /**
481 * Returns the number of levels to show for a Wifi icon, from 0 to {@link #SIGNAL_LEVELS}-1.
482 *
483 * <p>Use {@#isReachable()} to determine if an AccessPoint is in range, as this method will
484 * always return at least 0.
485 */
Jason Monkd52356a2015-01-28 10:40:41 -0500486 public int getLevel() {
Tony Mantlera0e03dd2016-01-27 15:57:03 -0800487 return WifiManager.calculateSignalLevel(mRssi, SIGNAL_LEVELS);
Jason Monkd52356a2015-01-28 10:40:41 -0500488 }
489
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700490 public int getRssi() {
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -0800491 return mRssi;
492 }
493
494 /**
495 * Updates {@link #mRssi}.
496 *
497 * <p>If the given connection is active, the existing value of {@link #mRssi} will be returned.
498 * If the given AccessPoint is not active, a value will be calculated from previous scan
Sundeep Ghumance78a5f2017-03-15 19:06:14 -0700499 * results, returning the best RSSI for all matching AccessPoints averaged with the previous
500 * value. If the access point is not connected and there are no scan results, the rssi will be
501 * set to {@link #UNREACHABLE_RSSI}.
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -0800502 *
503 * <p>Old scan results will be evicted from the cache when this method is invoked.
504 */
505 private void updateRssi() {
Mitchell Wills18af4932016-08-10 13:49:21 -0700506 evictOldScanResults();
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -0800507
508 if (this.isActive()) {
509 return;
510 }
511
512 int rssi = UNREACHABLE_RSSI;
Mitchell Wills18af4932016-08-10 13:49:21 -0700513 for (ScanResult result : mScanResultCache.values()) {
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700514 if (result.level > rssi) {
515 rssi = result.level;
516 }
517 }
518
Sundeep Ghumance78a5f2017-03-15 19:06:14 -0700519 if (rssi != UNREACHABLE_RSSI && mRssi != UNREACHABLE_RSSI) {
520 mRssi = (mRssi + rssi) / 2; // half-life previous value
521 } else {
522 mRssi = rssi;
523 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700524 }
525
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -0800526 /**
527 * Updates {@link #mSeen} based on the scan result cache.
528 *
529 * <p>Old scan results will be evicted from the cache when this method is invoked.
530 */
531 private void updateSeen() {
Mitchell Wills18af4932016-08-10 13:49:21 -0700532 evictOldScanResults();
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -0800533
534 // TODO(sghuman): Set to now if connected
535
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700536 long seen = 0;
Mitchell Wills18af4932016-08-10 13:49:21 -0700537 for (ScanResult result : mScanResultCache.values()) {
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700538 if (result.timestamp > seen) {
539 seen = result.timestamp;
540 }
541 }
542
Sundeep Ghuman24128172017-06-15 17:55:21 -0700543 // Only replace the previous value if we have a recent scan result to use
544 if (seen != 0) {
545 mSeen = seen;
546 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700547 }
548
Stephen Chen21f68682017-04-04 13:23:31 -0700549 /**
550 * Returns if the network is marked metered. Metering can be marked through its config in
551 * {@link WifiConfiguration}, after connection in {@link WifiInfo}, or from a score config in
552 * {@link ScoredNetwork}.
553 */
554 public boolean isMetered() {
555 return mIsScoredNetworkMetered
556 || (mConfig != null && mConfig.meteredHint)
Stephen Chenb5bcb8d2017-05-19 15:55:02 -0700557 || (mInfo != null && mInfo.getMeteredHint()
558 || (mNetworkInfo != null && mNetworkInfo.isMetered()));
Stephen Chen21f68682017-04-04 13:23:31 -0700559 }
560
Jason Monkd52356a2015-01-28 10:40:41 -0500561 public NetworkInfo getNetworkInfo() {
562 return mNetworkInfo;
563 }
564
565 public int getSecurity() {
566 return security;
567 }
568
569 public String getSecurityString(boolean concise) {
570 Context context = mContext;
Sanket Padawed1878802015-05-12 10:27:19 -0700571 if (mConfig != null && mConfig.isPasspoint()) {
Sanket Padawe194cce62015-07-10 10:53:31 -0700572 return concise ? context.getString(R.string.wifi_security_short_eap) :
573 context.getString(R.string.wifi_security_eap);
Sanket Padawed1878802015-05-12 10:27:19 -0700574 }
Jason Monkd52356a2015-01-28 10:40:41 -0500575 switch(security) {
576 case SECURITY_EAP:
577 return concise ? context.getString(R.string.wifi_security_short_eap) :
578 context.getString(R.string.wifi_security_eap);
579 case SECURITY_PSK:
580 switch (pskType) {
581 case PSK_WPA:
582 return concise ? context.getString(R.string.wifi_security_short_wpa) :
583 context.getString(R.string.wifi_security_wpa);
584 case PSK_WPA2:
585 return concise ? context.getString(R.string.wifi_security_short_wpa2) :
586 context.getString(R.string.wifi_security_wpa2);
587 case PSK_WPA_WPA2:
588 return concise ? context.getString(R.string.wifi_security_short_wpa_wpa2) :
589 context.getString(R.string.wifi_security_wpa_wpa2);
590 case PSK_UNKNOWN:
591 default:
592 return concise ? context.getString(R.string.wifi_security_short_psk_generic)
593 : context.getString(R.string.wifi_security_psk_generic);
594 }
595 case SECURITY_WEP:
596 return concise ? context.getString(R.string.wifi_security_short_wep) :
597 context.getString(R.string.wifi_security_wep);
598 case SECURITY_NONE:
599 default:
600 return concise ? "" : context.getString(R.string.wifi_security_none);
601 }
602 }
603
Jason Monk6980d122015-06-15 10:07:55 -0400604 public String getSsidStr() {
Jason Monkd52356a2015-01-28 10:40:41 -0500605 return ssid;
606 }
607
Jason Monk60a82ff2016-02-25 13:55:03 -0500608 public String getBssid() {
609 return bssid;
610 }
611
Jason Monk6980d122015-06-15 10:07:55 -0400612 public CharSequence getSsid() {
Fan Zhangeb83a0d2016-09-21 11:34:08 -0700613 final SpannableString str = new SpannableString(ssid);
614 str.setSpan(new TtsSpan.TelephoneBuilder(ssid).build(), 0, ssid.length(),
Jason Monk6980d122015-06-15 10:07:55 -0400615 Spannable.SPAN_INCLUSIVE_INCLUSIVE);
616 return str;
617 }
618
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700619 public String getConfigName() {
620 if (mConfig != null && mConfig.isPasspoint()) {
621 return mConfig.providerFriendlyName;
Peter Qiuced37db2017-03-14 15:51:22 -0700622 } else if (mFqdn != null) {
623 return mProviderFriendlyName;
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700624 } else {
625 return ssid;
626 }
627 }
628
Jason Monkd52356a2015-01-28 10:40:41 -0500629 public DetailedState getDetailedState() {
Fan Zhang6acb7662016-10-17 12:40:03 -0700630 if (mNetworkInfo != null) {
631 return mNetworkInfo.getDetailedState();
632 }
633 Log.w(TAG, "NetworkInfo is null, cannot return detailed state");
634 return null;
Jason Monkd52356a2015-01-28 10:40:41 -0500635 }
636
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700637 public String getSavedNetworkSummary() {
Fan Zhang51365c32016-09-20 12:22:18 -0700638 WifiConfiguration config = mConfig;
639 if (config != null) {
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700640 PackageManager pm = mContext.getPackageManager();
641 String systemName = pm.getNameForUid(android.os.Process.SYSTEM_UID);
Fan Zhang51365c32016-09-20 12:22:18 -0700642 int userId = UserHandle.getUserId(config.creatorUid);
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700643 ApplicationInfo appInfo = null;
Fan Zhang51365c32016-09-20 12:22:18 -0700644 if (config.creatorName != null && config.creatorName.equals(systemName)) {
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700645 appInfo = mContext.getApplicationInfo();
646 } else {
647 try {
648 IPackageManager ipm = AppGlobals.getPackageManager();
Fan Zhang51365c32016-09-20 12:22:18 -0700649 appInfo = ipm.getApplicationInfo(config.creatorName, 0 /* flags */, userId);
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700650 } catch (RemoteException rex) {
651 }
652 }
653 if (appInfo != null &&
654 !appInfo.packageName.equals(mContext.getString(R.string.settings_package)) &&
655 !appInfo.packageName.equals(
656 mContext.getString(R.string.certinstaller_package))) {
657 return mContext.getString(R.string.saved_network, appInfo.loadLabel(pm));
658 }
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700659 }
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700660 return "";
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700661 }
662
Jason Monkd52356a2015-01-28 10:40:41 -0500663 public String getSummary() {
Fan Zhang51365c32016-09-20 12:22:18 -0700664 return getSettingsSummary(mConfig);
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700665 }
666
667 public String getSettingsSummary() {
Fan Zhang51365c32016-09-20 12:22:18 -0700668 return getSettingsSummary(mConfig);
669 }
670
671 private String getSettingsSummary(WifiConfiguration config) {
Jason Monkd52356a2015-01-28 10:40:41 -0500672 // Update to new summary
673 StringBuilder summary = new StringBuilder();
674
Sundeep Ghuman271e5de2017-05-30 14:11:39 -0700675 // TODO(b/62354743): Standardize and international delimiter usage
676 final String concatenator = " / ";
677
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700678 if (mSpeed != SPEED_NONE) {
Sundeep Ghuman271e5de2017-05-30 14:11:39 -0700679 summary.append(getSpeedLabel() + concatenator);
680 }
681
Fan Zhang51365c32016-09-20 12:22:18 -0700682 if (isActive() && config != null && config.isPasspoint()) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700683 // This is the active connection on passpoint
Jason Monkd52356a2015-01-28 10:40:41 -0500684 summary.append(getSummary(mContext, getDetailedState(),
Fan Zhang51365c32016-09-20 12:22:18 -0700685 false, config.providerFriendlyName));
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700686 } else if (isActive()) {
687 // This is the active connection on non-passpoint network
688 summary.append(getSummary(mContext, getDetailedState(),
Shirish Kalelec7a38ef2015-06-25 13:55:33 -0700689 mInfo != null && mInfo.isEphemeral()));
Yuxin Chang6b750862017-01-11 14:59:17 +0900690 } else if (config != null && config.isPasspoint()
691 && config.getNetworkSelectionStatus().isNetworkEnabled()) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700692 String format = mContext.getString(R.string.available_via_passpoint);
Fan Zhang51365c32016-09-20 12:22:18 -0700693 summary.append(String.format(format, config.providerFriendlyName));
694 } else if (config != null && config.hasNoInternetAccess()) {
Salvador Martinez5d937fc2016-09-23 08:54:20 -0700695 int messageID = config.getNetworkSelectionStatus().isNetworkPermanentlyDisabled()
696 ? R.string.wifi_no_internet_no_reconnect
697 : R.string.wifi_no_internet;
698 summary.append(mContext.getString(messageID));
Fan Zhang51365c32016-09-20 12:22:18 -0700699 } else if (config != null && !config.getNetworkSelectionStatus().isNetworkEnabled()) {
xinhef7705c32015-12-01 14:44:37 -0800700 WifiConfiguration.NetworkSelectionStatus networkStatus =
Fan Zhang51365c32016-09-20 12:22:18 -0700701 config.getNetworkSelectionStatus();
xinhef7705c32015-12-01 14:44:37 -0800702 switch (networkStatus.getNetworkSelectionDisableReason()) {
703 case WifiConfiguration.NetworkSelectionStatus.DISABLED_AUTHENTICATION_FAILURE:
Jason Monkd52356a2015-01-28 10:40:41 -0500704 summary.append(mContext.getString(R.string.wifi_disabled_password_failure));
xinhef7705c32015-12-01 14:44:37 -0800705 break;
Peter Qiu9c4c6ad2017-06-20 13:17:36 -0700706 case WifiConfiguration.NetworkSelectionStatus.DISABLED_BY_WRONG_PASSWORD:
707 summary.append(mContext.getString(R.string.wifi_check_password_try_again));
708 break;
xinhef7705c32015-12-01 14:44:37 -0800709 case WifiConfiguration.NetworkSelectionStatus.DISABLED_DHCP_FAILURE:
710 case WifiConfiguration.NetworkSelectionStatus.DISABLED_DNS_FAILURE:
711 summary.append(mContext.getString(R.string.wifi_disabled_network_failure));
712 break;
713 case WifiConfiguration.NetworkSelectionStatus.DISABLED_ASSOCIATION_REJECTION:
714 summary.append(mContext.getString(R.string.wifi_disabled_generic));
715 break;
Jason Monkd52356a2015-01-28 10:40:41 -0500716 }
Amin Shaikh98773d42017-02-02 17:50:12 -0800717 } else if (config != null && config.getNetworkSelectionStatus().isNotRecommended()) {
718 summary.append(mContext.getString(R.string.wifi_disabled_by_recommendation_provider));
Dave Schaefer98537432017-02-08 11:26:08 -0800719 } else if (!isReachable()) { // Wifi out of range
Jason Monkd52356a2015-01-28 10:40:41 -0500720 summary.append(mContext.getString(R.string.wifi_not_in_range));
721 } else { // In range, not disabled.
Fan Zhang51365c32016-09-20 12:22:18 -0700722 if (config != null) { // Is saved network
Jason Monkd52356a2015-01-28 10:40:41 -0500723 summary.append(mContext.getString(R.string.wifi_remembered));
724 }
725 }
726
727 if (WifiTracker.sVerboseLogging > 0) {
728 // Add RSSI/band information for this config, what was seen up to 6 seconds ago
729 // verbose WiFi Logging is only turned on thru developers settings
730 if (mInfo != null && mNetworkInfo != null) { // This is the active connection
731 summary.append(" f=" + Integer.toString(mInfo.getFrequency()));
732 }
733 summary.append(" " + getVisibilityStatus());
Fan Zhang51365c32016-09-20 12:22:18 -0700734 if (config != null && !config.getNetworkSelectionStatus().isNetworkEnabled()) {
735 summary.append(" (" + config.getNetworkSelectionStatus().getNetworkStatusString());
736 if (config.getNetworkSelectionStatus().getDisableTime() > 0) {
Jason Monkd52356a2015-01-28 10:40:41 -0500737 long now = System.currentTimeMillis();
Fan Zhang51365c32016-09-20 12:22:18 -0700738 long diff = (now - config.getNetworkSelectionStatus().getDisableTime()) / 1000;
Jason Monkd52356a2015-01-28 10:40:41 -0500739 long sec = diff%60; //seconds
740 long min = (diff/60)%60; //minutes
741 long hour = (min/60)%60; //hours
742 summary.append(", ");
743 if (hour > 0) summary.append(Long.toString(hour) + "h ");
744 summary.append( Long.toString(min) + "m ");
745 summary.append( Long.toString(sec) + "s ");
746 }
747 summary.append(")");
748 }
xinhef7705c32015-12-01 14:44:37 -0800749
Fan Zhang51365c32016-09-20 12:22:18 -0700750 if (config != null) {
xinhef7705c32015-12-01 14:44:37 -0800751 WifiConfiguration.NetworkSelectionStatus networkStatus =
Fan Zhang51365c32016-09-20 12:22:18 -0700752 config.getNetworkSelectionStatus();
xinhef7705c32015-12-01 14:44:37 -0800753 for (int index = WifiConfiguration.NetworkSelectionStatus.NETWORK_SELECTION_ENABLE;
754 index < WifiConfiguration.NetworkSelectionStatus
755 .NETWORK_SELECTION_DISABLED_MAX; index++) {
756 if (networkStatus.getDisableReasonCounter(index) != 0) {
757 summary.append(" " + WifiConfiguration.NetworkSelectionStatus
758 .getNetworkDisableReasonString(index) + "="
759 + networkStatus.getDisableReasonCounter(index));
760 }
761 }
Jason Monkd52356a2015-01-28 10:40:41 -0500762 }
763 }
Sundeep Ghuman271e5de2017-05-30 14:11:39 -0700764
765 // Strip trailing delimiter if applicable
766 int concatLength = concatenator.length();
767 if (summary.length() >= concatLength && summary.substring(
768 summary.length() - concatLength, summary.length()).equals(concatenator)) {
769 summary.delete(summary.length() - concatLength, summary.length());
770 }
771
Jason Monkd52356a2015-01-28 10:40:41 -0500772 return summary.toString();
773 }
774
775 /**
776 * Returns the visibility status of the WifiConfiguration.
777 *
778 * @return autojoin debugging information
779 * TODO: use a string formatter
780 * ["rssi 5Ghz", "num results on 5GHz" / "rssi 5Ghz", "num results on 5GHz"]
781 * For instance [-40,5/-30,2]
782 */
783 private String getVisibilityStatus() {
784 StringBuilder visibility = new StringBuilder();
785 StringBuilder scans24GHz = null;
786 StringBuilder scans5GHz = null;
787 String bssid = null;
788
789 long now = System.currentTimeMillis();
790
791 if (mInfo != null) {
792 bssid = mInfo.getBSSID();
793 if (bssid != null) {
794 visibility.append(" ").append(bssid);
795 }
796 visibility.append(" rssi=").append(mInfo.getRssi());
797 visibility.append(" ");
798 visibility.append(" score=").append(mInfo.score);
Sundeep Ghuman271e5de2017-05-30 14:11:39 -0700799 if (mRankingScore != Integer.MIN_VALUE) {
800 visibility.append(" rankingScore=").append(getRankingScore());
801 }
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -0700802 if (mSpeed != SPEED_NONE) {
Sundeep Ghuman271e5de2017-05-30 14:11:39 -0700803 visibility.append(" speed=").append(getSpeedLabel());
804 }
Jason Monkd52356a2015-01-28 10:40:41 -0500805 visibility.append(String.format(" tx=%.1f,", mInfo.txSuccessRate));
806 visibility.append(String.format("%.1f,", mInfo.txRetriesRate));
807 visibility.append(String.format("%.1f ", mInfo.txBadRate));
808 visibility.append(String.format("rx=%.1f", mInfo.rxSuccessRate));
809 }
810
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700811 int rssi5 = WifiConfiguration.INVALID_RSSI;
812 int rssi24 = WifiConfiguration.INVALID_RSSI;
813 int num5 = 0;
814 int num24 = 0;
815 int numBlackListed = 0;
816 int n24 = 0; // Number scan results we included in the string
817 int n5 = 0; // Number scan results we included in the string
Mitchell Wills18af4932016-08-10 13:49:21 -0700818 evictOldScanResults();
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700819 // TODO: sort list by RSSI or age
Mitchell Wills18af4932016-08-10 13:49:21 -0700820 for (ScanResult result : mScanResultCache.values()) {
Jason Monkd52356a2015-01-28 10:40:41 -0500821
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700822 if (result.frequency >= LOWER_FREQ_5GHZ
823 && result.frequency <= HIGHER_FREQ_5GHZ) {
824 // Strictly speaking: [4915, 5825]
825 // number of known BSSID on 5GHz band
826 num5 = num5 + 1;
827 } else if (result.frequency >= LOWER_FREQ_24GHZ
828 && result.frequency <= HIGHER_FREQ_24GHZ) {
829 // Strictly speaking: [2412, 2482]
830 // number of known BSSID on 2.4Ghz band
831 num24 = num24 + 1;
Jason Monkd52356a2015-01-28 10:40:41 -0500832 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700833
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700834
835 if (result.frequency >= LOWER_FREQ_5GHZ
836 && result.frequency <= HIGHER_FREQ_5GHZ) {
837 if (result.level > rssi5) {
838 rssi5 = result.level;
Jason Monkd52356a2015-01-28 10:40:41 -0500839 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700840 if (n5 < 4) {
841 if (scans5GHz == null) scans5GHz = new StringBuilder();
842 scans5GHz.append(" \n{").append(result.BSSID);
843 if (bssid != null && result.BSSID.equals(bssid)) scans5GHz.append("*");
844 scans5GHz.append("=").append(result.frequency);
845 scans5GHz.append(",").append(result.level);
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700846 scans5GHz.append("}");
847 n5++;
Jason Monkd52356a2015-01-28 10:40:41 -0500848 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700849 } else if (result.frequency >= LOWER_FREQ_24GHZ
850 && result.frequency <= HIGHER_FREQ_24GHZ) {
851 if (result.level > rssi24) {
852 rssi24 = result.level;
853 }
854 if (n24 < 4) {
855 if (scans24GHz == null) scans24GHz = new StringBuilder();
856 scans24GHz.append(" \n{").append(result.BSSID);
857 if (bssid != null && result.BSSID.equals(bssid)) scans24GHz.append("*");
858 scans24GHz.append("=").append(result.frequency);
859 scans24GHz.append(",").append(result.level);
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700860 scans24GHz.append("}");
861 n24++;
Jason Monkd52356a2015-01-28 10:40:41 -0500862 }
863 }
864 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700865 visibility.append(" [");
866 if (num24 > 0) {
867 visibility.append("(").append(num24).append(")");
868 if (n24 <= 4) {
869 if (scans24GHz != null) {
870 visibility.append(scans24GHz.toString());
871 }
872 } else {
873 visibility.append("max=").append(rssi24);
874 if (scans24GHz != null) {
875 visibility.append(",").append(scans24GHz.toString());
876 }
877 }
878 }
879 visibility.append(";");
880 if (num5 > 0) {
881 visibility.append("(").append(num5).append(")");
882 if (n5 <= 4) {
883 if (scans5GHz != null) {
884 visibility.append(scans5GHz.toString());
885 }
886 } else {
887 visibility.append("max=").append(rssi5);
888 if (scans5GHz != null) {
889 visibility.append(",").append(scans5GHz.toString());
890 }
891 }
892 }
893 if (numBlackListed > 0)
894 visibility.append("!").append(numBlackListed);
895 visibility.append("]");
Jason Monkd52356a2015-01-28 10:40:41 -0500896
897 return visibility.toString();
898 }
899
900 /**
901 * Return whether this is the active connection.
902 * For ephemeral connections (networkId is invalid), this returns false if the network is
903 * disconnected.
904 */
905 public boolean isActive() {
906 return mNetworkInfo != null &&
907 (networkId != WifiConfiguration.INVALID_NETWORK_ID ||
908 mNetworkInfo.getState() != State.DISCONNECTED);
909 }
910
911 public boolean isConnectable() {
912 return getLevel() != -1 && getDetailedState() == null;
913 }
914
915 public boolean isEphemeral() {
Shirish Kalelec7a38ef2015-06-25 13:55:33 -0700916 return mInfo != null && mInfo.isEphemeral() &&
917 mNetworkInfo != null && mNetworkInfo.getState() != State.DISCONNECTED;
Jason Monkd52356a2015-01-28 10:40:41 -0500918 }
919
Peter Qiuced37db2017-03-14 15:51:22 -0700920 /**
921 * Return true if this AccessPoint represents a Passpoint AP.
922 */
Vinit Deshpande5b7352c2015-07-09 16:53:12 -0700923 public boolean isPasspoint() {
924 return mConfig != null && mConfig.isPasspoint();
925 }
926
Mitchell Wills5a42db22015-08-03 09:46:08 -0700927 /**
Peter Qiuced37db2017-03-14 15:51:22 -0700928 * Return true if this AccessPoint represents a Passpoint provider configuration.
929 */
930 public boolean isPasspointConfig() {
931 return mFqdn != null;
932 }
933
934 /**
Mitchell Wills5a42db22015-08-03 09:46:08 -0700935 * Return whether the given {@link WifiInfo} is for this access point.
936 * If the current AP does not have a network Id then the config is used to
937 * match based on SSID and security.
938 */
939 private boolean isInfoForThisAccessPoint(WifiConfiguration config, WifiInfo info) {
Vinit Deshpande5b7352c2015-07-09 16:53:12 -0700940 if (isPasspoint() == false && networkId != WifiConfiguration.INVALID_NETWORK_ID) {
Jason Monkd52356a2015-01-28 10:40:41 -0500941 return networkId == info.getNetworkId();
Mitchell Wills5a42db22015-08-03 09:46:08 -0700942 } else if (config != null) {
943 return matches(config);
944 }
945 else {
Jason Monkd52356a2015-01-28 10:40:41 -0500946 // Might be an ephemeral connection with no WifiConfiguration. Try matching on SSID.
947 // (Note that we only do this if the WifiConfiguration explicitly equals INVALID).
948 // TODO: Handle hex string SSIDs.
949 return ssid.equals(removeDoubleQuotes(info.getSSID()));
950 }
951 }
952
953 public boolean isSaved() {
954 return networkId != WifiConfiguration.INVALID_NETWORK_ID;
955 }
956
957 public Object getTag() {
958 return mTag;
959 }
960
961 public void setTag(Object tag) {
962 mTag = tag;
963 }
964
965 /**
966 * Generate and save a default wifiConfiguration with common values.
967 * Can only be called for unsecured networks.
968 */
969 public void generateOpenNetworkConfig() {
970 if (security != SECURITY_NONE)
971 throw new IllegalStateException();
972 if (mConfig != null)
973 return;
974 mConfig = new WifiConfiguration();
975 mConfig.SSID = AccessPoint.convertToQuotedString(ssid);
976 mConfig.allowedKeyManagement.set(KeyMgmt.NONE);
977 }
978
979 void loadConfig(WifiConfiguration config) {
Peter Qiu2c3b5ee22017-02-01 11:49:15 -0800980 ssid = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID));
Jason Monk60a82ff2016-02-25 13:55:03 -0500981 bssid = config.BSSID;
Jason Monkd52356a2015-01-28 10:40:41 -0500982 security = getSecurity(config);
983 networkId = config.networkId;
984 mConfig = config;
985 }
986
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700987 private void initWithScanResult(ScanResult result) {
Jason Monkd52356a2015-01-28 10:40:41 -0500988 ssid = result.SSID;
Jason Monk60a82ff2016-02-25 13:55:03 -0500989 bssid = result.BSSID;
Jason Monkd52356a2015-01-28 10:40:41 -0500990 security = getSecurity(result);
991 if (security == SECURITY_PSK)
992 pskType = getPskType(result);
Sundeep Ghuman24128172017-06-15 17:55:21 -0700993
994 mScanResultCache.put(result.BSSID, result);
995 updateRssi();
996 mSeen = result.timestamp; // even if the timestamp is old it is still valid
Jason Monkd52356a2015-01-28 10:40:41 -0500997 }
998
999 public void saveWifiState(Bundle savedState) {
Vinit Deshpandefcd46122015-06-11 18:22:23 -07001000 if (ssid != null) savedState.putString(KEY_SSID, getSsidStr());
1001 savedState.putInt(KEY_SECURITY, security);
1002 savedState.putInt(KEY_PSKTYPE, pskType);
1003 if (mConfig != null) savedState.putParcelable(KEY_CONFIG, mConfig);
Jason Monkd52356a2015-01-28 10:40:41 -05001004 savedState.putParcelable(KEY_WIFIINFO, mInfo);
Mitchell Wills18af4932016-08-10 13:49:21 -07001005 evictOldScanResults();
Vinit Deshpandefcd46122015-06-11 18:22:23 -07001006 savedState.putParcelableArrayList(KEY_SCANRESULTCACHE,
Mitchell Wills18af4932016-08-10 13:49:21 -07001007 new ArrayList<ScanResult>(mScanResultCache.values()));
Jason Monkd52356a2015-01-28 10:40:41 -05001008 if (mNetworkInfo != null) {
1009 savedState.putParcelable(KEY_NETWORKINFO, mNetworkInfo);
1010 }
Peter Qiuced37db2017-03-14 15:51:22 -07001011 if (mFqdn != null) {
1012 savedState.putString(KEY_FQDN, mFqdn);
1013 }
1014 if (mProviderFriendlyName != null) {
1015 savedState.putString(KEY_PROVIDER_FRIENDLY_NAME, mProviderFriendlyName);
1016 }
Jason Monkd52356a2015-01-28 10:40:41 -05001017 }
1018
1019 public void setListener(AccessPointListener listener) {
1020 mAccessPointListener = listener;
1021 }
1022
1023 boolean update(ScanResult result) {
Mitchell Wills5a42db22015-08-03 09:46:08 -07001024 if (matches(result)) {
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -08001025 int oldLevel = getLevel();
1026
Vinit Deshpandefcd46122015-06-11 18:22:23 -07001027 /* Add or update the scan result for the BSSID */
1028 mScanResultCache.put(result.BSSID, result);
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -08001029 updateSeen();
1030 updateRssi();
Vinit Deshpandefcd46122015-06-11 18:22:23 -07001031 int newLevel = getLevel();
1032
1033 if (newLevel > 0 && newLevel != oldLevel && mAccessPointListener != null) {
1034 mAccessPointListener.onLevelChanged(this);
Jason Monkd52356a2015-01-28 10:40:41 -05001035 }
1036 // This flag only comes from scans, is not easily saved in config
1037 if (security == SECURITY_PSK) {
1038 pskType = getPskType(result);
1039 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -07001040
Jason Monkd52356a2015-01-28 10:40:41 -05001041 if (mAccessPointListener != null) {
1042 mAccessPointListener.onAccessPointChanged(this);
1043 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -07001044
Jason Monkd52356a2015-01-28 10:40:41 -05001045 return true;
1046 }
1047 return false;
1048 }
1049
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001050 /** Attempt to update the AccessPoint and return true if an update occurred. */
Sundeep Ghumandc6cf4b2017-03-08 16:18:29 -08001051 public boolean update(WifiConfiguration config, WifiInfo info, NetworkInfo networkInfo) {
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001052 boolean updated = false;
1053 final int oldLevel = getLevel();
Mitchell Wills5a42db22015-08-03 09:46:08 -07001054 if (info != null && isInfoForThisAccessPoint(config, info)) {
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001055 updated = (mInfo == null);
1056 if (mRssi != info.getRssi()) {
1057 mRssi = info.getRssi();
1058 updated = true;
Sundeep Ghuman5c5cd7a2017-05-03 12:45:44 -07001059 } else if (mNetworkInfo != null && networkInfo != null
1060 && mNetworkInfo.getDetailedState() != networkInfo.getDetailedState()) {
Sundeep Ghuman96a53572017-04-20 21:25:41 -07001061 updated = true;
Jason Monkd52356a2015-01-28 10:40:41 -05001062 }
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001063 mInfo = info;
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001064 mNetworkInfo = networkInfo;
Jason Monkd52356a2015-01-28 10:40:41 -05001065 } else if (mInfo != null) {
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001066 updated = true;
Jason Monkd52356a2015-01-28 10:40:41 -05001067 mInfo = null;
1068 mNetworkInfo = null;
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001069 }
1070 if (updated && mAccessPointListener != null) {
1071 mAccessPointListener.onAccessPointChanged(this);
1072
1073 if (oldLevel != getLevel() /* current level */) {
1074 mAccessPointListener.onLevelChanged(this);
Jason Monkd52356a2015-01-28 10:40:41 -05001075 }
1076 }
Sundeep Ghuman8c792882017-04-04 17:23:29 -07001077 return updated;
Jason Monkd52356a2015-01-28 10:40:41 -05001078 }
1079
Vinit Deshpandefc406002015-04-15 18:10:55 -07001080 void update(WifiConfiguration config) {
1081 mConfig = config;
Vinit Deshpandedcf00c92015-04-15 18:32:09 -07001082 networkId = config.networkId;
1083 if (mAccessPointListener != null) {
1084 mAccessPointListener.onAccessPointChanged(this);
1085 }
Vinit Deshpandefc406002015-04-15 18:10:55 -07001086 }
Shirish Kalelec7a38ef2015-06-25 13:55:33 -07001087
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -08001088 @VisibleForTesting
Sanket Padawe0775a982015-08-19 14:57:46 -07001089 void setRssi(int rssi) {
1090 mRssi = rssi;
1091 }
1092
Sundeep Ghuman54bdcfa2017-03-08 19:52:05 -08001093 /** Sets the rssi to {@link #UNREACHABLE_RSSI}. */
1094 void setUnreachable() {
1095 setRssi(AccessPoint.UNREACHABLE_RSSI);
1096 }
1097
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -08001098 int getRankingScore() {
1099 return mRankingScore;
1100 }
1101
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -07001102 int getSpeed() { return mSpeed;}
Sundeep Ghuman271e5de2017-05-30 14:11:39 -07001103
1104 @Nullable
1105 String getSpeedLabel() {
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -07001106 switch (mSpeed) {
1107 case SPEED_VERY_FAST:
Sundeep Ghuman271e5de2017-05-30 14:11:39 -07001108 return mContext.getString(R.string.speed_label_very_fast);
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -07001109 case SPEED_FAST:
Sundeep Ghuman271e5de2017-05-30 14:11:39 -07001110 return mContext.getString(R.string.speed_label_fast);
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -07001111 case SPEED_MEDIUM:
Sundeep Ghuman271e5de2017-05-30 14:11:39 -07001112 return mContext.getString(R.string.speed_label_okay);
Sundeep Ghuman55adc6b2017-06-05 16:46:59 -07001113 case SPEED_SLOW:
1114 return mContext.getString(R.string.speed_label_slow);
1115 case SPEED_NONE:
Sundeep Ghuman271e5de2017-05-30 14:11:39 -07001116 default:
1117 return null;
1118 }
Sundeep Ghuman5519b7b2016-12-14 17:53:31 -08001119 }
1120
Dave Schaefer98537432017-02-08 11:26:08 -08001121 /** Return true if the current RSSI is reachable, and false otherwise. */
Sundeep Ghumanaaa8a1b2017-03-13 14:40:56 -07001122 public boolean isReachable() {
Dave Schaefer98537432017-02-08 11:26:08 -08001123 return mRssi != UNREACHABLE_RSSI;
1124 }
1125
Jason Monkd52356a2015-01-28 10:40:41 -05001126 public static String getSummary(Context context, String ssid, DetailedState state,
Vinit Deshpandefc406002015-04-15 18:10:55 -07001127 boolean isEphemeral, String passpointProvider) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -07001128 if (state == DetailedState.CONNECTED && ssid == null) {
Vinit Deshpandefc406002015-04-15 18:10:55 -07001129 if (TextUtils.isEmpty(passpointProvider) == false) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -07001130 // Special case for connected + passpoint networks.
Vinit Deshpandefc406002015-04-15 18:10:55 -07001131 String format = context.getString(R.string.connected_via_passpoint);
1132 return String.format(format, passpointProvider);
Vinit Deshpandedcf00c92015-04-15 18:32:09 -07001133 } else if (isEphemeral) {
Vinit Deshpandefc406002015-04-15 18:10:55 -07001134 // Special case for connected + ephemeral networks.
Stephen Chen36dd5cf12017-03-20 13:27:51 -07001135 final NetworkScoreManager networkScoreManager = context.getSystemService(
1136 NetworkScoreManager.class);
1137 NetworkScorerAppData scorer = networkScoreManager.getActiveScorer();
1138 if (scorer != null && scorer.getRecommendationServiceLabel() != null) {
1139 String format = context.getString(R.string.connected_via_network_scorer);
1140 return String.format(format, scorer.getRecommendationServiceLabel());
1141 } else {
1142 return context.getString(R.string.connected_via_network_scorer_default);
1143 }
Vinit Deshpandefc406002015-04-15 18:10:55 -07001144 }
Jason Monkd52356a2015-01-28 10:40:41 -05001145 }
1146
Sanket Padawe7094d222015-05-01 16:55:00 -07001147 // Case when there is wifi connected without internet connectivity.
1148 final ConnectivityManager cm = (ConnectivityManager)
1149 context.getSystemService(Context.CONNECTIVITY_SERVICE);
1150 if (state == DetailedState.CONNECTED) {
1151 IWifiManager wifiManager = IWifiManager.Stub.asInterface(
1152 ServiceManager.getService(Context.WIFI_SERVICE));
Lorenzo Colitti1317e042016-12-13 13:30:07 +09001153 NetworkCapabilities nc = null;
Sanket Padawe7094d222015-05-01 16:55:00 -07001154
1155 try {
Lorenzo Colitti1317e042016-12-13 13:30:07 +09001156 nc = cm.getNetworkCapabilities(wifiManager.getCurrentNetwork());
1157 } catch (RemoteException e) {}
1158
1159 if (nc != null) {
1160 if (nc.hasCapability(nc.NET_CAPABILITY_CAPTIVE_PORTAL)) {
1161 return context.getString(
1162 com.android.internal.R.string.network_available_sign_in);
1163 } else if (!nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_VALIDATED)) {
1164 return context.getString(R.string.wifi_connected_no_internet);
1165 }
Sanket Padawe7094d222015-05-01 16:55:00 -07001166 }
1167 }
Fan Zhang6acb7662016-10-17 12:40:03 -07001168 if (state == null) {
1169 Log.w(TAG, "state is null, returning empty summary");
1170 return "";
1171 }
Jason Monkd52356a2015-01-28 10:40:41 -05001172 String[] formats = context.getResources().getStringArray((ssid == null)
1173 ? R.array.wifi_status : R.array.wifi_status_with_ssid);
1174 int index = state.ordinal();
1175
1176 if (index >= formats.length || formats[index].length() == 0) {
Sanket Padawe3e9e5fa2015-05-28 10:41:14 -07001177 return "";
Jason Monkd52356a2015-01-28 10:40:41 -05001178 }
1179 return String.format(formats[index], ssid);
1180 }
1181
1182 public static String getSummary(Context context, DetailedState state, boolean isEphemeral) {
Vinit Deshpandefc406002015-04-15 18:10:55 -07001183 return getSummary(context, null, state, isEphemeral, null);
1184 }
1185
1186 public static String getSummary(Context context, DetailedState state, boolean isEphemeral,
1187 String passpointProvider) {
1188 return getSummary(context, null, state, isEphemeral, passpointProvider);
Jason Monkd52356a2015-01-28 10:40:41 -05001189 }
1190
1191 public static String convertToQuotedString(String string) {
1192 return "\"" + string + "\"";
1193 }
1194
1195 private static int getPskType(ScanResult result) {
1196 boolean wpa = result.capabilities.contains("WPA-PSK");
1197 boolean wpa2 = result.capabilities.contains("WPA2-PSK");
1198 if (wpa2 && wpa) {
1199 return PSK_WPA_WPA2;
1200 } else if (wpa2) {
1201 return PSK_WPA2;
1202 } else if (wpa) {
1203 return PSK_WPA;
1204 } else {
1205 Log.w(TAG, "Received abnormal flag string: " + result.capabilities);
1206 return PSK_UNKNOWN;
1207 }
1208 }
1209
1210 private static int getSecurity(ScanResult result) {
1211 if (result.capabilities.contains("WEP")) {
1212 return SECURITY_WEP;
1213 } else if (result.capabilities.contains("PSK")) {
1214 return SECURITY_PSK;
1215 } else if (result.capabilities.contains("EAP")) {
1216 return SECURITY_EAP;
1217 }
1218 return SECURITY_NONE;
1219 }
1220
1221 static int getSecurity(WifiConfiguration config) {
1222 if (config.allowedKeyManagement.get(KeyMgmt.WPA_PSK)) {
1223 return SECURITY_PSK;
1224 }
1225 if (config.allowedKeyManagement.get(KeyMgmt.WPA_EAP) ||
1226 config.allowedKeyManagement.get(KeyMgmt.IEEE8021X)) {
1227 return SECURITY_EAP;
1228 }
1229 return (config.wepKeys[0] != null) ? SECURITY_WEP : SECURITY_NONE;
1230 }
1231
1232 public static String securityToString(int security, int pskType) {
1233 if (security == SECURITY_WEP) {
1234 return "WEP";
1235 } else if (security == SECURITY_PSK) {
1236 if (pskType == PSK_WPA) {
1237 return "WPA";
1238 } else if (pskType == PSK_WPA2) {
1239 return "WPA2";
1240 } else if (pskType == PSK_WPA_WPA2) {
1241 return "WPA_WPA2";
1242 }
1243 return "PSK";
1244 } else if (security == SECURITY_EAP) {
1245 return "EAP";
1246 }
1247 return "NONE";
1248 }
1249
1250 static String removeDoubleQuotes(String string) {
Jason Monk2b51cc32015-05-13 11:07:53 -04001251 if (TextUtils.isEmpty(string)) {
1252 return "";
1253 }
Jason Monkd52356a2015-01-28 10:40:41 -05001254 int length = string.length();
1255 if ((length > 1) && (string.charAt(0) == '"')
1256 && (string.charAt(length - 1) == '"')) {
1257 return string.substring(1, length - 1);
1258 }
1259 return string;
1260 }
1261
1262 public interface AccessPointListener {
1263 void onAccessPointChanged(AccessPoint accessPoint);
1264 void onLevelChanged(AccessPoint accessPoint);
1265 }
1266}