blob: cff8c236378e1bb5625ffc0b11946bd51030e631 [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
Jason Monk6980d122015-06-15 10:07:55 -040019import android.app.AppGlobals;
Jason Monkd52356a2015-01-28 10:40:41 -050020import android.content.Context;
Jason Monk6980d122015-06-15 10:07:55 -040021import android.content.pm.ApplicationInfo;
22import android.content.pm.IPackageManager;
23import android.content.pm.PackageManager;
Sanket Padawe7094d222015-05-01 16:55:00 -070024import android.net.ConnectivityManager;
25import android.net.Network;
26import android.net.NetworkCapabilities;
Jason Monkd52356a2015-01-28 10:40:41 -050027import android.net.NetworkInfo;
28import android.net.NetworkInfo.DetailedState;
29import android.net.NetworkInfo.State;
Sanket Padawe7094d222015-05-01 16:55:00 -070030import android.net.wifi.IWifiManager;
Jason Monkd52356a2015-01-28 10:40:41 -050031import android.net.wifi.ScanResult;
32import android.net.wifi.WifiConfiguration;
33import android.net.wifi.WifiConfiguration.KeyMgmt;
34import android.net.wifi.WifiInfo;
35import android.net.wifi.WifiManager;
36import android.os.Bundle;
Sanket Padawe7094d222015-05-01 16:55:00 -070037import android.os.RemoteException;
38import android.os.ServiceManager;
Jason Monk6980d122015-06-15 10:07:55 -040039import android.os.UserHandle;
40import android.text.Spannable;
41import android.text.SpannableString;
42import android.text.TextUtils;
43import android.text.style.TtsSpan;
Jason Monkd52356a2015-01-28 10:40:41 -050044import android.util.Log;
45import android.util.LruCache;
46
47import com.android.settingslib.R;
48
Vinit Deshpandefcd46122015-06-11 18:22:23 -070049import java.util.ArrayList;
Jason Monkd52356a2015-01-28 10:40:41 -050050import java.util.Map;
51
52
53public class AccessPoint implements Comparable<AccessPoint> {
54 static final String TAG = "SettingsLib.AccessPoint";
55
56 /**
57 * Lower bound on the 2.4 GHz (802.11b/g/n) WLAN channels
58 */
59 public static final int LOWER_FREQ_24GHZ = 2400;
60
61 /**
62 * Upper bound on the 2.4 GHz (802.11b/g/n) WLAN channels
63 */
64 public static final int HIGHER_FREQ_24GHZ = 2500;
65
66 /**
67 * Lower bound on the 5.0 GHz (802.11a/h/j/n/ac) WLAN channels
68 */
69 public static final int LOWER_FREQ_5GHZ = 4900;
70
71 /**
72 * Upper bound on the 5.0 GHz (802.11a/h/j/n/ac) WLAN channels
73 */
74 public static final int HIGHER_FREQ_5GHZ = 5900;
75
76
77 /**
78 * Experimental: we should be able to show the user the list of BSSIDs and bands
79 * for that SSID.
80 * For now this data is used only with Verbose Logging so as to show the band and number
81 * of BSSIDs on which that network is seen.
82 */
Vinit Deshpandefcd46122015-06-11 18:22:23 -070083 public LruCache<String, ScanResult> mScanResultCache = new LruCache<String, ScanResult>(32);
84
Jason Monkd52356a2015-01-28 10:40:41 -050085 private static final String KEY_NETWORKINFO = "key_networkinfo";
86 private static final String KEY_WIFIINFO = "key_wifiinfo";
87 private static final String KEY_SCANRESULT = "key_scanresult";
Vinit Deshpandefcd46122015-06-11 18:22:23 -070088 private static final String KEY_SSID = "key_ssid";
89 private static final String KEY_SECURITY = "key_security";
90 private static final String KEY_PSKTYPE = "key_psktype";
91 private static final String KEY_SCANRESULTCACHE = "key_scanresultcache";
Jason Monkd52356a2015-01-28 10:40:41 -050092 private static final String KEY_CONFIG = "key_config";
93
94 /**
95 * These values are matched in string arrays -- changes must be kept in sync
96 */
97 public static final int SECURITY_NONE = 0;
98 public static final int SECURITY_WEP = 1;
99 public static final int SECURITY_PSK = 2;
100 public static final int SECURITY_EAP = 3;
101
102 private static final int PSK_UNKNOWN = 0;
103 private static final int PSK_WPA = 1;
104 private static final int PSK_WPA2 = 2;
105 private static final int PSK_WPA_WPA2 = 3;
106
107 private static final int VISIBILITY_OUTDATED_AGE_IN_MILLI = 20000;
108 private final Context mContext;
109
110 private String ssid;
111 private int security;
112 private int networkId = WifiConfiguration.INVALID_NETWORK_ID;
113
114 private int pskType = PSK_UNKNOWN;
115
116 private WifiConfiguration mConfig;
Jason Monkd52356a2015-01-28 10:40:41 -0500117
118 private int mRssi = Integer.MAX_VALUE;
119 private long mSeen = 0;
120
121 private WifiInfo mInfo;
122 private NetworkInfo mNetworkInfo;
123 private AccessPointListener mAccessPointListener;
124
125 private Object mTag;
126
127 public AccessPoint(Context context, Bundle savedState) {
128 mContext = context;
129 mConfig = savedState.getParcelable(KEY_CONFIG);
130 if (mConfig != null) {
131 loadConfig(mConfig);
132 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700133 if (savedState.containsKey(KEY_SSID)) {
134 ssid = savedState.getString(KEY_SSID);
135 }
136 if (savedState.containsKey(KEY_SECURITY)) {
137 security = savedState.getInt(KEY_SECURITY);
138 }
139 if (savedState.containsKey(KEY_PSKTYPE)) {
140 pskType = savedState.getInt(KEY_PSKTYPE);
Jason Monkd52356a2015-01-28 10:40:41 -0500141 }
142 mInfo = (WifiInfo) savedState.getParcelable(KEY_WIFIINFO);
143 if (savedState.containsKey(KEY_NETWORKINFO)) {
144 mNetworkInfo = savedState.getParcelable(KEY_NETWORKINFO);
145 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700146 if (savedState.containsKey(KEY_SCANRESULTCACHE)) {
147 ArrayList<ScanResult> scanResultArrayList =
148 savedState.getParcelableArrayList(KEY_SCANRESULTCACHE);
149 mScanResultCache.evictAll();
150 for (ScanResult result : scanResultArrayList) {
151 mScanResultCache.put(result.BSSID, result);
152 }
153 }
Mitchell Wills5a42db22015-08-03 09:46:08 -0700154 update(mConfig, mInfo, mNetworkInfo);
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700155 mRssi = getRssi();
156 mSeen = getSeen();
Jason Monkd52356a2015-01-28 10:40:41 -0500157 }
158
159 AccessPoint(Context context, ScanResult result) {
160 mContext = context;
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700161 initWithScanResult(result);
Jason Monkd52356a2015-01-28 10:40:41 -0500162 }
163
164 AccessPoint(Context context, WifiConfiguration config) {
165 mContext = context;
166 loadConfig(config);
167 }
168
169 @Override
170 public int compareTo(AccessPoint other) {
171 // Active one goes first.
172 if (isActive() && !other.isActive()) return -1;
173 if (!isActive() && other.isActive()) return 1;
174
175 // Reachable one goes before unreachable one.
176 if (mRssi != Integer.MAX_VALUE && other.mRssi == Integer.MAX_VALUE) return -1;
177 if (mRssi == Integer.MAX_VALUE && other.mRssi != Integer.MAX_VALUE) return 1;
178
179 // Configured one goes before unconfigured one.
180 if (networkId != WifiConfiguration.INVALID_NETWORK_ID
181 && other.networkId == WifiConfiguration.INVALID_NETWORK_ID) return -1;
182 if (networkId == WifiConfiguration.INVALID_NETWORK_ID
183 && other.networkId != WifiConfiguration.INVALID_NETWORK_ID) return 1;
184
185 // Sort by signal strength.
186 int difference = WifiManager.compareSignalLevel(other.mRssi, mRssi);
187 if (difference != 0) {
188 return difference;
189 }
190 // Sort by ssid.
191 return ssid.compareToIgnoreCase(other.ssid);
192 }
193
194 @Override
195 public boolean equals(Object other) {
196 if (!(other instanceof AccessPoint)) return false;
197 return (this.compareTo((AccessPoint) other) == 0);
198 }
199
200 @Override
201 public int hashCode() {
202 int result = 0;
203 if (mInfo != null) result += 13 * mInfo.hashCode();
204 result += 19 * mRssi;
205 result += 23 * networkId;
206 result += 29 * ssid.hashCode();
207 return result;
208 }
209
210 @Override
211 public String toString() {
212 StringBuilder builder = new StringBuilder().append("AccessPoint(")
213 .append(ssid);
214 if (isSaved()) {
215 builder.append(',').append("saved");
216 }
217 if (isActive()) {
218 builder.append(',').append("active");
219 }
220 if (isEphemeral()) {
221 builder.append(',').append("ephemeral");
222 }
223 if (isConnectable()) {
224 builder.append(',').append("connectable");
225 }
226 if (security != SECURITY_NONE) {
227 builder.append(',').append(securityToString(security, pskType));
228 }
229 return builder.append(')').toString();
230 }
231
232 public boolean matches(ScanResult result) {
233 return ssid.equals(result.SSID) && security == getSecurity(result);
234 }
235
236 public boolean matches(WifiConfiguration config) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700237 if (config.isPasspoint() && mConfig != null && mConfig.isPasspoint())
238 return config.FQDN.equals(mConfig.providerFriendlyName);
239 else
240 return ssid.equals(removeDoubleQuotes(config.SSID)) && security == getSecurity(config);
Jason Monkd52356a2015-01-28 10:40:41 -0500241 }
242
243 public WifiConfiguration getConfig() {
244 return mConfig;
245 }
246
247 public void clearConfig() {
248 mConfig = null;
249 networkId = WifiConfiguration.INVALID_NETWORK_ID;
250 }
251
252 public WifiInfo getInfo() {
253 return mInfo;
254 }
255
256 public int getLevel() {
257 if (mRssi == Integer.MAX_VALUE) {
258 return -1;
259 }
260 return WifiManager.calculateSignalLevel(mRssi, 4);
261 }
262
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700263 public int getRssi() {
264 int rssi = Integer.MIN_VALUE;
265 for (ScanResult result : mScanResultCache.snapshot().values()) {
266 if (result.level > rssi) {
267 rssi = result.level;
268 }
269 }
270
271 return rssi;
272 }
273
274 public long getSeen() {
275 long seen = 0;
276 for (ScanResult result : mScanResultCache.snapshot().values()) {
277 if (result.timestamp > seen) {
278 seen = result.timestamp;
279 }
280 }
281
282 return seen;
283 }
284
Jason Monkd52356a2015-01-28 10:40:41 -0500285 public NetworkInfo getNetworkInfo() {
286 return mNetworkInfo;
287 }
288
289 public int getSecurity() {
290 return security;
291 }
292
293 public String getSecurityString(boolean concise) {
294 Context context = mContext;
Sanket Padawed1878802015-05-12 10:27:19 -0700295 if (mConfig != null && mConfig.isPasspoint()) {
Sanket Padawe194cce62015-07-10 10:53:31 -0700296 return concise ? context.getString(R.string.wifi_security_short_eap) :
297 context.getString(R.string.wifi_security_eap);
Sanket Padawed1878802015-05-12 10:27:19 -0700298 }
Jason Monkd52356a2015-01-28 10:40:41 -0500299 switch(security) {
300 case SECURITY_EAP:
301 return concise ? context.getString(R.string.wifi_security_short_eap) :
302 context.getString(R.string.wifi_security_eap);
303 case SECURITY_PSK:
304 switch (pskType) {
305 case PSK_WPA:
306 return concise ? context.getString(R.string.wifi_security_short_wpa) :
307 context.getString(R.string.wifi_security_wpa);
308 case PSK_WPA2:
309 return concise ? context.getString(R.string.wifi_security_short_wpa2) :
310 context.getString(R.string.wifi_security_wpa2);
311 case PSK_WPA_WPA2:
312 return concise ? context.getString(R.string.wifi_security_short_wpa_wpa2) :
313 context.getString(R.string.wifi_security_wpa_wpa2);
314 case PSK_UNKNOWN:
315 default:
316 return concise ? context.getString(R.string.wifi_security_short_psk_generic)
317 : context.getString(R.string.wifi_security_psk_generic);
318 }
319 case SECURITY_WEP:
320 return concise ? context.getString(R.string.wifi_security_short_wep) :
321 context.getString(R.string.wifi_security_wep);
322 case SECURITY_NONE:
323 default:
324 return concise ? "" : context.getString(R.string.wifi_security_none);
325 }
326 }
327
Jason Monk6980d122015-06-15 10:07:55 -0400328 public String getSsidStr() {
Jason Monkd52356a2015-01-28 10:40:41 -0500329 return ssid;
330 }
331
Jason Monk6980d122015-06-15 10:07:55 -0400332 public CharSequence getSsid() {
333 SpannableString str = new SpannableString(ssid);
334 str.setSpan(new TtsSpan.VerbatimBuilder(ssid).build(), 0, ssid.length(),
335 Spannable.SPAN_INCLUSIVE_INCLUSIVE);
336 return str;
337 }
338
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700339 public String getConfigName() {
340 if (mConfig != null && mConfig.isPasspoint()) {
341 return mConfig.providerFriendlyName;
342 } else {
343 return ssid;
344 }
345 }
346
Jason Monkd52356a2015-01-28 10:40:41 -0500347 public DetailedState getDetailedState() {
348 return mNetworkInfo != null ? mNetworkInfo.getDetailedState() : null;
349 }
350
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700351 public String getSavedNetworkSummary() {
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700352 if (mConfig != null) {
353 PackageManager pm = mContext.getPackageManager();
354 String systemName = pm.getNameForUid(android.os.Process.SYSTEM_UID);
355 int userId = UserHandle.getUserId(mConfig.creatorUid);
356 ApplicationInfo appInfo = null;
357 if (mConfig.creatorName != null && mConfig.creatorName.equals(systemName)) {
358 appInfo = mContext.getApplicationInfo();
359 } else {
360 try {
361 IPackageManager ipm = AppGlobals.getPackageManager();
362 appInfo = ipm.getApplicationInfo(mConfig.creatorName, 0 /* flags */, userId);
363 } catch (RemoteException rex) {
364 }
365 }
366 if (appInfo != null &&
367 !appInfo.packageName.equals(mContext.getString(R.string.settings_package)) &&
368 !appInfo.packageName.equals(
369 mContext.getString(R.string.certinstaller_package))) {
370 return mContext.getString(R.string.saved_network, appInfo.loadLabel(pm));
371 }
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700372 }
Sanket Padawe56cfbfb2015-05-05 20:10:46 -0700373 return "";
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700374 }
375
Jason Monkd52356a2015-01-28 10:40:41 -0500376 public String getSummary() {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700377 return getSettingsSummary();
378 }
379
380 public String getSettingsSummary() {
Jason Monkd52356a2015-01-28 10:40:41 -0500381 // Update to new summary
382 StringBuilder summary = new StringBuilder();
383
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700384 if (isActive() && mConfig != null && mConfig.isPasspoint()) {
385 // This is the active connection on passpoint
Jason Monkd52356a2015-01-28 10:40:41 -0500386 summary.append(getSummary(mContext, getDetailedState(),
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700387 false, mConfig.providerFriendlyName));
388 } else if (isActive()) {
389 // This is the active connection on non-passpoint network
390 summary.append(getSummary(mContext, getDetailedState(),
Shirish Kalelec7a38ef2015-06-25 13:55:33 -0700391 mInfo != null && mInfo.isEphemeral()));
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700392 } else if (mConfig != null && mConfig.isPasspoint()) {
393 String format = mContext.getString(R.string.available_via_passpoint);
394 summary.append(String.format(format, mConfig.providerFriendlyName));
395 } else if (mConfig != null && mConfig.hasNoInternetAccess()) {
Jason Monkd52356a2015-01-28 10:40:41 -0500396 summary.append(mContext.getString(R.string.wifi_no_internet));
397 } else if (mConfig != null && ((mConfig.status == WifiConfiguration.Status.DISABLED &&
398 mConfig.disableReason != WifiConfiguration.DISABLED_UNKNOWN_REASON)
399 || mConfig.autoJoinStatus
400 >= WifiConfiguration.AUTO_JOIN_DISABLED_ON_AUTH_FAILURE)) {
401 if (mConfig.autoJoinStatus
402 >= WifiConfiguration.AUTO_JOIN_DISABLED_ON_AUTH_FAILURE) {
403 if (mConfig.disableReason == WifiConfiguration.DISABLED_DHCP_FAILURE) {
404 summary.append(mContext.getString(R.string.wifi_disabled_network_failure));
405 } else if (mConfig.disableReason == WifiConfiguration.DISABLED_AUTH_FAILURE) {
406 summary.append(mContext.getString(R.string.wifi_disabled_password_failure));
407 } else {
408 summary.append(mContext.getString(R.string.wifi_disabled_wifi_failure));
409 }
410 } else {
411 switch (mConfig.disableReason) {
412 case WifiConfiguration.DISABLED_AUTH_FAILURE:
413 summary.append(mContext.getString(R.string.wifi_disabled_password_failure));
414 break;
415 case WifiConfiguration.DISABLED_DHCP_FAILURE:
416 case WifiConfiguration.DISABLED_DNS_FAILURE:
417 summary.append(mContext.getString(R.string.wifi_disabled_network_failure));
418 break;
419 case WifiConfiguration.DISABLED_UNKNOWN_REASON:
420 case WifiConfiguration.DISABLED_ASSOCIATION_REJECT:
421 summary.append(mContext.getString(R.string.wifi_disabled_generic));
422 break;
423 }
424 }
425 } else if (mRssi == Integer.MAX_VALUE) { // Wifi out of range
426 summary.append(mContext.getString(R.string.wifi_not_in_range));
427 } else { // In range, not disabled.
428 if (mConfig != null) { // Is saved network
429 summary.append(mContext.getString(R.string.wifi_remembered));
430 }
431 }
432
433 if (WifiTracker.sVerboseLogging > 0) {
434 // Add RSSI/band information for this config, what was seen up to 6 seconds ago
435 // verbose WiFi Logging is only turned on thru developers settings
436 if (mInfo != null && mNetworkInfo != null) { // This is the active connection
437 summary.append(" f=" + Integer.toString(mInfo.getFrequency()));
438 }
439 summary.append(" " + getVisibilityStatus());
440 if (mConfig != null && mConfig.autoJoinStatus > 0) {
441 summary.append(" (" + mConfig.autoJoinStatus);
442 if (mConfig.blackListTimestamp > 0) {
443 long now = System.currentTimeMillis();
444 long diff = (now - mConfig.blackListTimestamp)/1000;
445 long sec = diff%60; //seconds
446 long min = (diff/60)%60; //minutes
447 long hour = (min/60)%60; //hours
448 summary.append(", ");
449 if (hour > 0) summary.append(Long.toString(hour) + "h ");
450 summary.append( Long.toString(min) + "m ");
451 summary.append( Long.toString(sec) + "s ");
452 }
453 summary.append(")");
454 }
455 if (mConfig != null && mConfig.numIpConfigFailures > 0) {
456 summary.append(" ipf=").append(mConfig.numIpConfigFailures);
457 }
458 if (mConfig != null && mConfig.numConnectionFailures > 0) {
459 summary.append(" cf=").append(mConfig.numConnectionFailures);
460 }
461 if (mConfig != null && mConfig.numAuthFailures > 0) {
462 summary.append(" authf=").append(mConfig.numAuthFailures);
463 }
464 if (mConfig != null && mConfig.numNoInternetAccessReports > 0) {
465 summary.append(" noInt=").append(mConfig.numNoInternetAccessReports);
466 }
467 }
468 return summary.toString();
469 }
470
471 /**
472 * Returns the visibility status of the WifiConfiguration.
473 *
474 * @return autojoin debugging information
475 * TODO: use a string formatter
476 * ["rssi 5Ghz", "num results on 5GHz" / "rssi 5Ghz", "num results on 5GHz"]
477 * For instance [-40,5/-30,2]
478 */
479 private String getVisibilityStatus() {
480 StringBuilder visibility = new StringBuilder();
481 StringBuilder scans24GHz = null;
482 StringBuilder scans5GHz = null;
483 String bssid = null;
484
485 long now = System.currentTimeMillis();
486
487 if (mInfo != null) {
488 bssid = mInfo.getBSSID();
489 if (bssid != null) {
490 visibility.append(" ").append(bssid);
491 }
492 visibility.append(" rssi=").append(mInfo.getRssi());
493 visibility.append(" ");
494 visibility.append(" score=").append(mInfo.score);
495 visibility.append(String.format(" tx=%.1f,", mInfo.txSuccessRate));
496 visibility.append(String.format("%.1f,", mInfo.txRetriesRate));
497 visibility.append(String.format("%.1f ", mInfo.txBadRate));
498 visibility.append(String.format("rx=%.1f", mInfo.rxSuccessRate));
499 }
500
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700501 int rssi5 = WifiConfiguration.INVALID_RSSI;
502 int rssi24 = WifiConfiguration.INVALID_RSSI;
503 int num5 = 0;
504 int num24 = 0;
505 int numBlackListed = 0;
506 int n24 = 0; // Number scan results we included in the string
507 int n5 = 0; // Number scan results we included in the string
508 Map<String, ScanResult> list = mScanResultCache.snapshot();
509 // TODO: sort list by RSSI or age
510 for (ScanResult result : list.values()) {
511 if (result.seen == 0)
512 continue;
Jason Monkd52356a2015-01-28 10:40:41 -0500513
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700514 if (result.autoJoinStatus != ScanResult.ENABLED) numBlackListed++;
Jason Monkd52356a2015-01-28 10:40:41 -0500515
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700516 if (result.frequency >= LOWER_FREQ_5GHZ
517 && result.frequency <= HIGHER_FREQ_5GHZ) {
518 // Strictly speaking: [4915, 5825]
519 // number of known BSSID on 5GHz band
520 num5 = num5 + 1;
521 } else if (result.frequency >= LOWER_FREQ_24GHZ
522 && result.frequency <= HIGHER_FREQ_24GHZ) {
523 // Strictly speaking: [2412, 2482]
524 // number of known BSSID on 2.4Ghz band
525 num24 = num24 + 1;
Jason Monkd52356a2015-01-28 10:40:41 -0500526 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700527
528 // Ignore results seen, older than 20 seconds
529 if (now - result.seen > VISIBILITY_OUTDATED_AGE_IN_MILLI) continue;
530
531 if (result.frequency >= LOWER_FREQ_5GHZ
532 && result.frequency <= HIGHER_FREQ_5GHZ) {
533 if (result.level > rssi5) {
534 rssi5 = result.level;
Jason Monkd52356a2015-01-28 10:40:41 -0500535 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700536 if (n5 < 4) {
537 if (scans5GHz == null) scans5GHz = new StringBuilder();
538 scans5GHz.append(" \n{").append(result.BSSID);
539 if (bssid != null && result.BSSID.equals(bssid)) scans5GHz.append("*");
540 scans5GHz.append("=").append(result.frequency);
541 scans5GHz.append(",").append(result.level);
542 if (result.autoJoinStatus != 0) {
543 scans5GHz.append(",st=").append(result.autoJoinStatus);
Jason Monkd52356a2015-01-28 10:40:41 -0500544 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700545 if (result.numIpConfigFailures != 0) {
546 scans5GHz.append(",ipf=").append(result.numIpConfigFailures);
Jason Monkd52356a2015-01-28 10:40:41 -0500547 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700548 scans5GHz.append("}");
549 n5++;
Jason Monkd52356a2015-01-28 10:40:41 -0500550 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700551 } else if (result.frequency >= LOWER_FREQ_24GHZ
552 && result.frequency <= HIGHER_FREQ_24GHZ) {
553 if (result.level > rssi24) {
554 rssi24 = result.level;
555 }
556 if (n24 < 4) {
557 if (scans24GHz == null) scans24GHz = new StringBuilder();
558 scans24GHz.append(" \n{").append(result.BSSID);
559 if (bssid != null && result.BSSID.equals(bssid)) scans24GHz.append("*");
560 scans24GHz.append("=").append(result.frequency);
561 scans24GHz.append(",").append(result.level);
562 if (result.autoJoinStatus != 0) {
563 scans24GHz.append(",st=").append(result.autoJoinStatus);
564 }
565 if (result.numIpConfigFailures != 0) {
566 scans24GHz.append(",ipf=").append(result.numIpConfigFailures);
567 }
568 scans24GHz.append("}");
569 n24++;
Jason Monkd52356a2015-01-28 10:40:41 -0500570 }
571 }
572 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700573 visibility.append(" [");
574 if (num24 > 0) {
575 visibility.append("(").append(num24).append(")");
576 if (n24 <= 4) {
577 if (scans24GHz != null) {
578 visibility.append(scans24GHz.toString());
579 }
580 } else {
581 visibility.append("max=").append(rssi24);
582 if (scans24GHz != null) {
583 visibility.append(",").append(scans24GHz.toString());
584 }
585 }
586 }
587 visibility.append(";");
588 if (num5 > 0) {
589 visibility.append("(").append(num5).append(")");
590 if (n5 <= 4) {
591 if (scans5GHz != null) {
592 visibility.append(scans5GHz.toString());
593 }
594 } else {
595 visibility.append("max=").append(rssi5);
596 if (scans5GHz != null) {
597 visibility.append(",").append(scans5GHz.toString());
598 }
599 }
600 }
601 if (numBlackListed > 0)
602 visibility.append("!").append(numBlackListed);
603 visibility.append("]");
Jason Monkd52356a2015-01-28 10:40:41 -0500604
605 return visibility.toString();
606 }
607
608 /**
609 * Return whether this is the active connection.
610 * For ephemeral connections (networkId is invalid), this returns false if the network is
611 * disconnected.
612 */
613 public boolean isActive() {
614 return mNetworkInfo != null &&
615 (networkId != WifiConfiguration.INVALID_NETWORK_ID ||
616 mNetworkInfo.getState() != State.DISCONNECTED);
617 }
618
619 public boolean isConnectable() {
620 return getLevel() != -1 && getDetailedState() == null;
621 }
622
623 public boolean isEphemeral() {
Shirish Kalelec7a38ef2015-06-25 13:55:33 -0700624 return mInfo != null && mInfo.isEphemeral() &&
625 mNetworkInfo != null && mNetworkInfo.getState() != State.DISCONNECTED;
Jason Monkd52356a2015-01-28 10:40:41 -0500626 }
627
Vinit Deshpande5b7352c2015-07-09 16:53:12 -0700628 public boolean isPasspoint() {
629 return mConfig != null && mConfig.isPasspoint();
630 }
631
Mitchell Wills5a42db22015-08-03 09:46:08 -0700632 /**
633 * Return whether the given {@link WifiInfo} is for this access point.
634 * If the current AP does not have a network Id then the config is used to
635 * match based on SSID and security.
636 */
637 private boolean isInfoForThisAccessPoint(WifiConfiguration config, WifiInfo info) {
Vinit Deshpande5b7352c2015-07-09 16:53:12 -0700638 if (isPasspoint() == false && networkId != WifiConfiguration.INVALID_NETWORK_ID) {
Jason Monkd52356a2015-01-28 10:40:41 -0500639 return networkId == info.getNetworkId();
Mitchell Wills5a42db22015-08-03 09:46:08 -0700640 } else if (config != null) {
641 return matches(config);
642 }
643 else {
Jason Monkd52356a2015-01-28 10:40:41 -0500644 // Might be an ephemeral connection with no WifiConfiguration. Try matching on SSID.
645 // (Note that we only do this if the WifiConfiguration explicitly equals INVALID).
646 // TODO: Handle hex string SSIDs.
647 return ssid.equals(removeDoubleQuotes(info.getSSID()));
648 }
649 }
650
651 public boolean isSaved() {
652 return networkId != WifiConfiguration.INVALID_NETWORK_ID;
653 }
654
655 public Object getTag() {
656 return mTag;
657 }
658
659 public void setTag(Object tag) {
660 mTag = tag;
661 }
662
663 /**
664 * Generate and save a default wifiConfiguration with common values.
665 * Can only be called for unsecured networks.
666 */
667 public void generateOpenNetworkConfig() {
668 if (security != SECURITY_NONE)
669 throw new IllegalStateException();
670 if (mConfig != null)
671 return;
672 mConfig = new WifiConfiguration();
673 mConfig.SSID = AccessPoint.convertToQuotedString(ssid);
674 mConfig.allowedKeyManagement.set(KeyMgmt.NONE);
675 }
676
677 void loadConfig(WifiConfiguration config) {
Vinit Deshpandefc406002015-04-15 18:10:55 -0700678 if (config.isPasspoint())
679 ssid = config.providerFriendlyName;
680 else
681 ssid = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID));
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700682
Jason Monkd52356a2015-01-28 10:40:41 -0500683 security = getSecurity(config);
684 networkId = config.networkId;
685 mConfig = config;
686 }
687
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700688 private void initWithScanResult(ScanResult result) {
Jason Monkd52356a2015-01-28 10:40:41 -0500689 ssid = result.SSID;
690 security = getSecurity(result);
691 if (security == SECURITY_PSK)
692 pskType = getPskType(result);
693 mRssi = result.level;
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700694 mSeen = result.timestamp;
Jason Monkd52356a2015-01-28 10:40:41 -0500695 }
696
697 public void saveWifiState(Bundle savedState) {
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700698 if (ssid != null) savedState.putString(KEY_SSID, getSsidStr());
699 savedState.putInt(KEY_SECURITY, security);
700 savedState.putInt(KEY_PSKTYPE, pskType);
701 if (mConfig != null) savedState.putParcelable(KEY_CONFIG, mConfig);
Jason Monkd52356a2015-01-28 10:40:41 -0500702 savedState.putParcelable(KEY_WIFIINFO, mInfo);
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700703 savedState.putParcelableArrayList(KEY_SCANRESULTCACHE,
704 new ArrayList<ScanResult>(mScanResultCache.snapshot().values()));
Jason Monkd52356a2015-01-28 10:40:41 -0500705 if (mNetworkInfo != null) {
706 savedState.putParcelable(KEY_NETWORKINFO, mNetworkInfo);
707 }
708 }
709
710 public void setListener(AccessPointListener listener) {
711 mAccessPointListener = listener;
712 }
713
714 boolean update(ScanResult result) {
Mitchell Wills5a42db22015-08-03 09:46:08 -0700715 if (matches(result)) {
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700716 /* Update the LRU timestamp, if BSSID exists */
717 mScanResultCache.get(result.BSSID);
718
719 /* Add or update the scan result for the BSSID */
720 mScanResultCache.put(result.BSSID, result);
721
722 int oldLevel = getLevel();
723 int oldRssi = getRssi();
724 mSeen = getSeen();
725 mRssi = (getRssi() + oldRssi)/2;
726 int newLevel = getLevel();
727
728 if (newLevel > 0 && newLevel != oldLevel && mAccessPointListener != null) {
729 mAccessPointListener.onLevelChanged(this);
Jason Monkd52356a2015-01-28 10:40:41 -0500730 }
731 // This flag only comes from scans, is not easily saved in config
732 if (security == SECURITY_PSK) {
733 pskType = getPskType(result);
734 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700735
Jason Monkd52356a2015-01-28 10:40:41 -0500736 if (mAccessPointListener != null) {
737 mAccessPointListener.onAccessPointChanged(this);
738 }
Vinit Deshpandefcd46122015-06-11 18:22:23 -0700739
Jason Monkd52356a2015-01-28 10:40:41 -0500740 return true;
741 }
742 return false;
743 }
744
Mitchell Wills5a42db22015-08-03 09:46:08 -0700745 boolean update(WifiConfiguration config, WifiInfo info, NetworkInfo networkInfo) {
Jason Monkd52356a2015-01-28 10:40:41 -0500746 boolean reorder = false;
Mitchell Wills5a42db22015-08-03 09:46:08 -0700747 if (info != null && isInfoForThisAccessPoint(config, info)) {
Jason Monkd52356a2015-01-28 10:40:41 -0500748 reorder = (mInfo == null);
749 mRssi = info.getRssi();
750 mInfo = info;
751 mNetworkInfo = networkInfo;
752 if (mAccessPointListener != null) {
753 mAccessPointListener.onAccessPointChanged(this);
754 }
755 } else if (mInfo != null) {
756 reorder = true;
757 mInfo = null;
758 mNetworkInfo = null;
759 if (mAccessPointListener != null) {
760 mAccessPointListener.onAccessPointChanged(this);
761 }
762 }
763 return reorder;
764 }
765
Vinit Deshpandefc406002015-04-15 18:10:55 -0700766 void update(WifiConfiguration config) {
767 mConfig = config;
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700768 networkId = config.networkId;
769 if (mAccessPointListener != null) {
770 mAccessPointListener.onAccessPointChanged(this);
771 }
Vinit Deshpandefc406002015-04-15 18:10:55 -0700772 }
Shirish Kalelec7a38ef2015-06-25 13:55:33 -0700773
Sanket Padawe0775a982015-08-19 14:57:46 -0700774 void setRssi(int rssi) {
775 mRssi = rssi;
776 }
777
Jason Monkd52356a2015-01-28 10:40:41 -0500778 public static String getSummary(Context context, String ssid, DetailedState state,
Vinit Deshpandefc406002015-04-15 18:10:55 -0700779 boolean isEphemeral, String passpointProvider) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700780 if (state == DetailedState.CONNECTED && ssid == null) {
Vinit Deshpandefc406002015-04-15 18:10:55 -0700781 if (TextUtils.isEmpty(passpointProvider) == false) {
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700782 // Special case for connected + passpoint networks.
Vinit Deshpandefc406002015-04-15 18:10:55 -0700783 String format = context.getString(R.string.connected_via_passpoint);
784 return String.format(format, passpointProvider);
Vinit Deshpandedcf00c92015-04-15 18:32:09 -0700785 } else if (isEphemeral) {
Vinit Deshpandefc406002015-04-15 18:10:55 -0700786 // Special case for connected + ephemeral networks.
787 return context.getString(R.string.connected_via_wfa);
788 }
Jason Monkd52356a2015-01-28 10:40:41 -0500789 }
790
Sanket Padawe7094d222015-05-01 16:55:00 -0700791 // Case when there is wifi connected without internet connectivity.
792 final ConnectivityManager cm = (ConnectivityManager)
793 context.getSystemService(Context.CONNECTIVITY_SERVICE);
794 if (state == DetailedState.CONNECTED) {
795 IWifiManager wifiManager = IWifiManager.Stub.asInterface(
796 ServiceManager.getService(Context.WIFI_SERVICE));
797 Network nw;
798
799 try {
800 nw = wifiManager.getCurrentNetwork();
801 } catch (RemoteException e) {
802 nw = null;
803 }
804 NetworkCapabilities nc = cm.getNetworkCapabilities(nw);
805 if (nc != null && !nc.hasCapability(nc.NET_CAPABILITY_VALIDATED)) {
806 return context.getString(R.string.wifi_connected_no_internet);
807 }
808 }
809
Jason Monkd52356a2015-01-28 10:40:41 -0500810 String[] formats = context.getResources().getStringArray((ssid == null)
811 ? R.array.wifi_status : R.array.wifi_status_with_ssid);
812 int index = state.ordinal();
813
814 if (index >= formats.length || formats[index].length() == 0) {
Sanket Padawe3e9e5fa2015-05-28 10:41:14 -0700815 return "";
Jason Monkd52356a2015-01-28 10:40:41 -0500816 }
817 return String.format(formats[index], ssid);
818 }
819
820 public static String getSummary(Context context, DetailedState state, boolean isEphemeral) {
Vinit Deshpandefc406002015-04-15 18:10:55 -0700821 return getSummary(context, null, state, isEphemeral, null);
822 }
823
824 public static String getSummary(Context context, DetailedState state, boolean isEphemeral,
825 String passpointProvider) {
826 return getSummary(context, null, state, isEphemeral, passpointProvider);
Jason Monkd52356a2015-01-28 10:40:41 -0500827 }
828
829 public static String convertToQuotedString(String string) {
830 return "\"" + string + "\"";
831 }
832
833 private static int getPskType(ScanResult result) {
834 boolean wpa = result.capabilities.contains("WPA-PSK");
835 boolean wpa2 = result.capabilities.contains("WPA2-PSK");
836 if (wpa2 && wpa) {
837 return PSK_WPA_WPA2;
838 } else if (wpa2) {
839 return PSK_WPA2;
840 } else if (wpa) {
841 return PSK_WPA;
842 } else {
843 Log.w(TAG, "Received abnormal flag string: " + result.capabilities);
844 return PSK_UNKNOWN;
845 }
846 }
847
848 private static int getSecurity(ScanResult result) {
849 if (result.capabilities.contains("WEP")) {
850 return SECURITY_WEP;
851 } else if (result.capabilities.contains("PSK")) {
852 return SECURITY_PSK;
853 } else if (result.capabilities.contains("EAP")) {
854 return SECURITY_EAP;
855 }
856 return SECURITY_NONE;
857 }
858
859 static int getSecurity(WifiConfiguration config) {
860 if (config.allowedKeyManagement.get(KeyMgmt.WPA_PSK)) {
861 return SECURITY_PSK;
862 }
863 if (config.allowedKeyManagement.get(KeyMgmt.WPA_EAP) ||
864 config.allowedKeyManagement.get(KeyMgmt.IEEE8021X)) {
865 return SECURITY_EAP;
866 }
867 return (config.wepKeys[0] != null) ? SECURITY_WEP : SECURITY_NONE;
868 }
869
870 public static String securityToString(int security, int pskType) {
871 if (security == SECURITY_WEP) {
872 return "WEP";
873 } else if (security == SECURITY_PSK) {
874 if (pskType == PSK_WPA) {
875 return "WPA";
876 } else if (pskType == PSK_WPA2) {
877 return "WPA2";
878 } else if (pskType == PSK_WPA_WPA2) {
879 return "WPA_WPA2";
880 }
881 return "PSK";
882 } else if (security == SECURITY_EAP) {
883 return "EAP";
884 }
885 return "NONE";
886 }
887
888 static String removeDoubleQuotes(String string) {
Jason Monk2b51cc32015-05-13 11:07:53 -0400889 if (TextUtils.isEmpty(string)) {
890 return "";
891 }
Jason Monkd52356a2015-01-28 10:40:41 -0500892 int length = string.length();
893 if ((length > 1) && (string.charAt(0) == '"')
894 && (string.charAt(length - 1) == '"')) {
895 return string.substring(1, length - 1);
896 }
897 return string;
898 }
899
900 public interface AccessPointListener {
901 void onAccessPointChanged(AccessPoint accessPoint);
902 void onLevelChanged(AccessPoint accessPoint);
903 }
904}