AccessPoint.java revision 8a43704a26af3e82879fcf51ce2d263861010fa5
1/*
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
19import android.app.AppGlobals;
20import android.content.Context;
21import android.content.pm.ApplicationInfo;
22import android.content.pm.IPackageManager;
23import android.content.pm.PackageManager;
24import android.net.ConnectivityManager;
25import android.net.NetworkBadging;
26import android.net.NetworkCapabilities;
27import android.net.NetworkInfo;
28import android.net.NetworkInfo.DetailedState;
29import android.net.NetworkInfo.State;
30import android.net.NetworkScoreManager;
31import android.net.NetworkScorerAppData;
32import android.net.ScoredNetwork;
33import android.net.wifi.IWifiManager;
34import 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;
39import android.net.wifi.WifiNetworkScoreCache;
40import android.net.wifi.hotspot2.PasspointConfiguration;
41import android.os.Bundle;
42import android.os.RemoteException;
43import android.os.ServiceManager;
44import android.os.SystemClock;
45import android.os.UserHandle;
46import android.support.annotation.NonNull;
47import android.text.Spannable;
48import android.text.SpannableString;
49import android.text.TextUtils;
50import android.text.style.TtsSpan;
51import android.util.Log;
52
53import com.android.internal.annotations.VisibleForTesting;
54import com.android.settingslib.R;
55
56import java.util.ArrayList;
57import java.util.Iterator;
58import java.util.concurrent.ConcurrentHashMap;
59import java.util.concurrent.atomic.AtomicInteger;
60
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
85
86    /**
87     * Experimental: we should be able to show the user the list of BSSIDs and bands
88     *  for that SSID.
89     *  For now this data is used only with Verbose Logging so as to show the band and number
90     *  of BSSIDs on which that network is seen.
91     */
92    private final ConcurrentHashMap<String, ScanResult> mScanResultCache =
93            new ConcurrentHashMap<String, ScanResult>(32);
94    private static final long MAX_SCAN_RESULT_AGE_MS = 15000;
95
96    static final String KEY_NETWORKINFO = "key_networkinfo";
97    static final String KEY_WIFIINFO = "key_wifiinfo";
98    static final String KEY_SCANRESULT = "key_scanresult";
99    static final String KEY_SSID = "key_ssid";
100    static final String KEY_SECURITY = "key_security";
101    static final String KEY_PSKTYPE = "key_psktype";
102    static final String KEY_SCANRESULTCACHE = "key_scanresultcache";
103    static final String KEY_CONFIG = "key_config";
104    static final String KEY_FQDN = "key_fqdn";
105    static final String KEY_PROVIDER_FRIENDLY_NAME = "key_provider_friendly_name";
106    static final AtomicInteger sLastId = new AtomicInteger(0);
107
108    /**
109     * These values are matched in string arrays -- changes must be kept in sync
110     */
111    public static final int SECURITY_NONE = 0;
112    public static final int SECURITY_WEP = 1;
113    public static final int SECURITY_PSK = 2;
114    public static final int SECURITY_EAP = 3;
115
116    private static final int PSK_UNKNOWN = 0;
117    private static final int PSK_WPA = 1;
118    private static final int PSK_WPA2 = 2;
119    private static final int PSK_WPA_WPA2 = 3;
120
121    /**
122     * The number of distinct wifi levels.
123     *
124     * <p>Must keep in sync with {@link R.array.wifi_signal} and {@link WifiManager#RSSI_LEVELS}.
125     */
126    public static final int SIGNAL_LEVELS = 5;
127
128    public static final int UNREACHABLE_RSSI = Integer.MIN_VALUE;
129
130    private final Context mContext;
131
132    private String ssid;
133    private String bssid;
134    private int security;
135    private int networkId = WifiConfiguration.INVALID_NETWORK_ID;
136
137    private int pskType = PSK_UNKNOWN;
138
139    private WifiConfiguration mConfig;
140
141    private int mRssi = UNREACHABLE_RSSI;
142    private long mSeen = 0;
143
144    private WifiInfo mInfo;
145    private NetworkInfo mNetworkInfo;
146    AccessPointListener mAccessPointListener;
147
148    private Object mTag;
149
150    private int mRankingScore = Integer.MIN_VALUE;
151    private int mBadge = NetworkBadging.BADGING_NONE;
152    private boolean mIsScoredNetworkMetered = false;
153
154    // used to co-relate internal vs returned accesspoint.
155    int mId;
156
157    /**
158     * Information associated with the {@link PasspointConfiguration}.  Only maintaining
159     * the relevant info to preserve spaces.
160     */
161    private String mFqdn;
162    private String mProviderFriendlyName;
163
164    public AccessPoint(Context context, Bundle savedState) {
165        mContext = context;
166        mConfig = savedState.getParcelable(KEY_CONFIG);
167        if (mConfig != null) {
168            loadConfig(mConfig);
169        }
170        if (savedState.containsKey(KEY_SSID)) {
171            ssid = savedState.getString(KEY_SSID);
172        }
173        if (savedState.containsKey(KEY_SECURITY)) {
174            security = savedState.getInt(KEY_SECURITY);
175        }
176        if (savedState.containsKey(KEY_PSKTYPE)) {
177            pskType = savedState.getInt(KEY_PSKTYPE);
178        }
179        mInfo = (WifiInfo) savedState.getParcelable(KEY_WIFIINFO);
180        if (savedState.containsKey(KEY_NETWORKINFO)) {
181            mNetworkInfo = savedState.getParcelable(KEY_NETWORKINFO);
182        }
183        if (savedState.containsKey(KEY_SCANRESULTCACHE)) {
184            ArrayList<ScanResult> scanResultArrayList =
185                    savedState.getParcelableArrayList(KEY_SCANRESULTCACHE);
186            mScanResultCache.clear();
187            for (ScanResult result : scanResultArrayList) {
188                mScanResultCache.put(result.BSSID, result);
189            }
190        }
191        if (savedState.containsKey(KEY_FQDN)) {
192            mFqdn = savedState.getString(KEY_FQDN);
193        }
194        if (savedState.containsKey(KEY_PROVIDER_FRIENDLY_NAME)) {
195            mProviderFriendlyName = savedState.getString(KEY_PROVIDER_FRIENDLY_NAME);
196        }
197        update(mConfig, mInfo, mNetworkInfo);
198        updateRssi();
199        updateSeen();
200        mId = sLastId.incrementAndGet();
201    }
202
203    public AccessPoint(Context context, WifiConfiguration config) {
204        mContext = context;
205        loadConfig(config);
206        mId = sLastId.incrementAndGet();
207    }
208
209    /**
210     * Initialize an AccessPoint object for a {@link PasspointConfiguration}.  This is mainly
211     * used by "Saved Networks" page for managing the saved {@link PasspointConfiguration}.
212     */
213    public AccessPoint(Context context, PasspointConfiguration config) {
214        mContext = context;
215        mFqdn = config.getHomeSp().getFqdn();
216        mProviderFriendlyName = config.getHomeSp().getFriendlyName();
217        mId = sLastId.incrementAndGet();
218    }
219
220    AccessPoint(Context context, AccessPoint other) {
221        mContext = context;
222        copyFrom(other);
223    }
224
225    AccessPoint(Context context, ScanResult result) {
226        mContext = context;
227        initWithScanResult(result);
228        mId = sLastId.incrementAndGet();
229    }
230
231    /**
232     * Copy accesspoint information. NOTE: We do not copy tag information because that is never
233     * set on the internal copy.
234     * @param that
235     */
236    void copyFrom(AccessPoint that) {
237        that.evictOldScanResults();
238        this.ssid = that.ssid;
239        this.bssid = that.bssid;
240        this.security = that.security;
241        this.networkId = that.networkId;
242        this.pskType = that.pskType;
243        this.mConfig = that.mConfig; //TODO: Watch out, this object is mutated.
244        this.mRssi = that.mRssi;
245        this.mSeen = that.mSeen;
246        this.mInfo = that.mInfo;
247        this.mNetworkInfo = that.mNetworkInfo;
248        this.mScanResultCache.clear();
249        this.mScanResultCache.putAll(that.mScanResultCache);
250        this.mId = that.mId;
251        this.mBadge = that.mBadge;
252        this.mIsScoredNetworkMetered = that.mIsScoredNetworkMetered;
253        this.mRankingScore = that.mRankingScore;
254    }
255
256    /**
257    * Returns a negative integer, zero, or a positive integer if this AccessPoint is less than,
258    * equal to, or greater than the other AccessPoint.
259    *
260    * Sort order rules for AccessPoints:
261    *   1. Active before inactive
262    *   2. Reachable before unreachable
263    *   3. Saved before unsaved
264    *   4. (Internal only) Network ranking score
265    *   5. Stronger signal before weaker signal
266    *   6. SSID alphabetically
267    *
268    * Note that AccessPoints with a signal are usually also Reachable,
269    * and will thus appear before unreachable saved AccessPoints.
270    */
271    @Override
272    public int compareTo(@NonNull AccessPoint other) {
273        // Active one goes first.
274        if (isActive() && !other.isActive()) return -1;
275        if (!isActive() && other.isActive()) return 1;
276
277        // Reachable one goes before unreachable one.
278        if (isReachable() && !other.isReachable()) return -1;
279        if (!isReachable() && other.isReachable()) return 1;
280
281        // Configured (saved) one goes before unconfigured one.
282        if (isSaved() && !other.isSaved()) return -1;
283        if (!isSaved() && other.isSaved()) return 1;
284
285        // Higher scores go before lower scores
286        if (getRankingScore() != other.getRankingScore()) {
287            return (getRankingScore() > other.getRankingScore()) ? -1 : 1;
288        }
289
290        // Sort by signal strength, bucketed by level
291        int difference = WifiManager.calculateSignalLevel(other.mRssi, SIGNAL_LEVELS)
292                - WifiManager.calculateSignalLevel(mRssi, SIGNAL_LEVELS);
293        if (difference != 0) {
294            return difference;
295        }
296        // Sort by ssid.
297        return getSsidStr().compareToIgnoreCase(other.getSsidStr());
298    }
299
300    @Override
301    public boolean equals(Object other) {
302        if (!(other instanceof AccessPoint)) return false;
303        return (this.compareTo((AccessPoint) other) == 0);
304    }
305
306    @Override
307    public int hashCode() {
308        int result = 0;
309        if (mInfo != null) result += 13 * mInfo.hashCode();
310        result += 19 * mRssi;
311        result += 23 * networkId;
312        result += 29 * ssid.hashCode();
313        return result;
314    }
315
316    @Override
317    public String toString() {
318        StringBuilder builder = new StringBuilder().append("AccessPoint(")
319                .append(ssid);
320        if (bssid != null) {
321            builder.append(":").append(bssid);
322        }
323        if (isSaved()) {
324            builder.append(',').append("saved");
325        }
326        if (isActive()) {
327            builder.append(',').append("active");
328        }
329        if (isEphemeral()) {
330            builder.append(',').append("ephemeral");
331        }
332        if (isConnectable()) {
333            builder.append(',').append("connectable");
334        }
335        if (security != SECURITY_NONE) {
336            builder.append(',').append(securityToString(security, pskType));
337        }
338        builder.append(",mRssi=").append(mRssi);
339        builder.append(",level=").append(getLevel());
340        if (mRankingScore != Integer.MIN_VALUE) {
341            builder.append(",rankingScore=").append(mRankingScore);
342        }
343        if (mBadge != NetworkBadging.BADGING_NONE) {
344            builder.append(",badge=").append(mBadge);
345        }
346        builder.append(",metered=").append(isMetered());
347
348        return builder.append(')').toString();
349    }
350
351    /**
352     * Updates the AccessPoint rankingScore, metering, and badge, returning true if the data has
353     * changed.
354     *
355     * @param scoreCache The score cache to use to retrieve scores.
356     * @param scoringUiEnabled Whether to show scoring and badging UI.
357     */
358    boolean update(WifiNetworkScoreCache scoreCache, boolean scoringUiEnabled) {
359        boolean scoreChanged = false;
360        if (scoringUiEnabled) {
361            scoreChanged = updateScores(scoreCache);
362        }
363        return updateMetered(scoreCache) || scoreChanged;
364    }
365
366    /**
367     * Updates the AccessPoint rankingScore and badge, returning true if the data has changed.
368     *
369     * @param scoreCache The score cache to use to retrieve scores.
370     */
371    private boolean updateScores(WifiNetworkScoreCache scoreCache) {
372        int oldBadge = mBadge;
373        int oldRankingScore = mRankingScore;
374        mBadge = NetworkBadging.BADGING_NONE;
375        mRankingScore = Integer.MIN_VALUE;
376
377        for (ScanResult result : mScanResultCache.values()) {
378            ScoredNetwork score = scoreCache.getScoredNetwork(result);
379            if (score == null) {
380                continue;
381            }
382
383            if (score.hasRankingScore()) {
384                mRankingScore = Math.max(mRankingScore, score.calculateRankingScore(result.level));
385            }
386            mBadge = Math.max(mBadge, score.calculateBadge(result.level));
387        }
388
389        return (oldBadge != mBadge || oldRankingScore != mRankingScore);
390    }
391
392    /**
393     * Updates the AccessPoint's metering based on {@link ScoredNetwork#meteredHint}, returning
394     * true if the metering changed.
395     */
396    private boolean updateMetered(WifiNetworkScoreCache scoreCache) {
397        boolean oldMetering = mIsScoredNetworkMetered;
398        mIsScoredNetworkMetered = false;
399        for (ScanResult result : mScanResultCache.values()) {
400            ScoredNetwork score = scoreCache.getScoredNetwork(result);
401            if (score == null) {
402                continue;
403            }
404            mIsScoredNetworkMetered |= score.meteredHint;
405        }
406        return oldMetering == mIsScoredNetworkMetered;
407    }
408
409    private void evictOldScanResults() {
410        long nowMs = SystemClock.elapsedRealtime();
411        for (Iterator<ScanResult> iter = mScanResultCache.values().iterator(); iter.hasNext(); ) {
412            ScanResult result = iter.next();
413            // result timestamp is in microseconds
414            if (nowMs - result.timestamp / 1000 > MAX_SCAN_RESULT_AGE_MS) {
415                iter.remove();
416            }
417        }
418    }
419
420    public boolean matches(ScanResult result) {
421        return ssid.equals(result.SSID) && security == getSecurity(result);
422    }
423
424    public boolean matches(WifiConfiguration config) {
425        if (config.isPasspoint() && mConfig != null && mConfig.isPasspoint()) {
426            return ssid.equals(removeDoubleQuotes(config.SSID)) && config.FQDN.equals(mConfig.FQDN);
427        } else {
428            return ssid.equals(removeDoubleQuotes(config.SSID))
429                    && security == getSecurity(config)
430                    && (mConfig == null || mConfig.shared == config.shared);
431        }
432    }
433
434    public WifiConfiguration getConfig() {
435        return mConfig;
436    }
437
438    public String getPasspointFqdn() {
439        return mFqdn;
440    }
441
442    public void clearConfig() {
443        mConfig = null;
444        networkId = WifiConfiguration.INVALID_NETWORK_ID;
445    }
446
447    public WifiInfo getInfo() {
448        return mInfo;
449    }
450
451    /**
452     * Returns the number of levels to show for a Wifi icon, from 0 to {@link #SIGNAL_LEVELS}-1.
453     *
454     * <p>Use {@#isReachable()} to determine if an AccessPoint is in range, as this method will
455     * always return at least 0.
456     */
457    public int getLevel() {
458        return WifiManager.calculateSignalLevel(mRssi, SIGNAL_LEVELS);
459    }
460
461    public int getRssi() {
462        return mRssi;
463    }
464
465    /**
466     * Updates {@link #mRssi}.
467     *
468     * <p>If the given connection is active, the existing value of {@link #mRssi} will be returned.
469     * If the given AccessPoint is not active, a value will be calculated from previous scan
470     * results, returning the best RSSI for all matching AccessPoints averaged with the previous
471     * value. If the access point is not connected and there are no scan results, the rssi will be
472     * set to {@link #UNREACHABLE_RSSI}.
473     *
474     * <p>Old scan results will be evicted from the cache when this method is invoked.
475     */
476    private void updateRssi() {
477        evictOldScanResults();
478
479        if (this.isActive()) {
480            return;
481        }
482
483        int rssi = UNREACHABLE_RSSI;
484        for (ScanResult result : mScanResultCache.values()) {
485            if (result.level > rssi) {
486                rssi = result.level;
487            }
488        }
489
490        if (rssi != UNREACHABLE_RSSI && mRssi != UNREACHABLE_RSSI) {
491            mRssi = (mRssi + rssi) / 2; // half-life previous value
492        } else {
493            mRssi = rssi;
494        }
495    }
496
497    /**
498     * Updates {@link #mSeen} based on the scan result cache.
499     *
500     * <p>Old scan results will be evicted from the cache when this method is invoked.
501     */
502    private void updateSeen() {
503        evictOldScanResults();
504
505        // TODO(sghuman): Set to now if connected
506
507        long seen = 0;
508        for (ScanResult result : mScanResultCache.values()) {
509            if (result.timestamp > seen) {
510                seen = result.timestamp;
511            }
512        }
513
514        mSeen = seen;
515    }
516
517    /**
518     * Returns if the network is marked metered. Metering can be marked through its config in
519     * {@link WifiConfiguration}, after connection in {@link WifiInfo}, or from a score config in
520     * {@link ScoredNetwork}.
521     */
522    public boolean isMetered() {
523        return mIsScoredNetworkMetered
524                || (mConfig != null && mConfig.meteredHint)
525                || (mInfo != null && mInfo.getMeteredHint()
526                || (mNetworkInfo != null && mNetworkInfo.isMetered()));
527    }
528
529    public NetworkInfo getNetworkInfo() {
530        return mNetworkInfo;
531    }
532
533    public int getSecurity() {
534        return security;
535    }
536
537    public String getSecurityString(boolean concise) {
538        Context context = mContext;
539        if (mConfig != null && mConfig.isPasspoint()) {
540            return concise ? context.getString(R.string.wifi_security_short_eap) :
541                context.getString(R.string.wifi_security_eap);
542        }
543        switch(security) {
544            case SECURITY_EAP:
545                return concise ? context.getString(R.string.wifi_security_short_eap) :
546                    context.getString(R.string.wifi_security_eap);
547            case SECURITY_PSK:
548                switch (pskType) {
549                    case PSK_WPA:
550                        return concise ? context.getString(R.string.wifi_security_short_wpa) :
551                            context.getString(R.string.wifi_security_wpa);
552                    case PSK_WPA2:
553                        return concise ? context.getString(R.string.wifi_security_short_wpa2) :
554                            context.getString(R.string.wifi_security_wpa2);
555                    case PSK_WPA_WPA2:
556                        return concise ? context.getString(R.string.wifi_security_short_wpa_wpa2) :
557                            context.getString(R.string.wifi_security_wpa_wpa2);
558                    case PSK_UNKNOWN:
559                    default:
560                        return concise ? context.getString(R.string.wifi_security_short_psk_generic)
561                                : context.getString(R.string.wifi_security_psk_generic);
562                }
563            case SECURITY_WEP:
564                return concise ? context.getString(R.string.wifi_security_short_wep) :
565                    context.getString(R.string.wifi_security_wep);
566            case SECURITY_NONE:
567            default:
568                return concise ? "" : context.getString(R.string.wifi_security_none);
569        }
570    }
571
572    public String getSsidStr() {
573        return ssid;
574    }
575
576    public String getBssid() {
577        return bssid;
578    }
579
580    public CharSequence getSsid() {
581        final SpannableString str = new SpannableString(ssid);
582        str.setSpan(new TtsSpan.TelephoneBuilder(ssid).build(), 0, ssid.length(),
583                Spannable.SPAN_INCLUSIVE_INCLUSIVE);
584        return str;
585    }
586
587    public String getConfigName() {
588        if (mConfig != null && mConfig.isPasspoint()) {
589            return mConfig.providerFriendlyName;
590        } else if (mFqdn != null) {
591            return mProviderFriendlyName;
592        } else {
593            return ssid;
594        }
595    }
596
597    public DetailedState getDetailedState() {
598        if (mNetworkInfo != null) {
599            return mNetworkInfo.getDetailedState();
600        }
601        Log.w(TAG, "NetworkInfo is null, cannot return detailed state");
602        return null;
603    }
604
605    public String getSavedNetworkSummary() {
606        WifiConfiguration config = mConfig;
607        if (config != null) {
608            PackageManager pm = mContext.getPackageManager();
609            String systemName = pm.getNameForUid(android.os.Process.SYSTEM_UID);
610            int userId = UserHandle.getUserId(config.creatorUid);
611            ApplicationInfo appInfo = null;
612            if (config.creatorName != null && config.creatorName.equals(systemName)) {
613                appInfo = mContext.getApplicationInfo();
614            } else {
615                try {
616                    IPackageManager ipm = AppGlobals.getPackageManager();
617                    appInfo = ipm.getApplicationInfo(config.creatorName, 0 /* flags */, userId);
618                } catch (RemoteException rex) {
619                }
620            }
621            if (appInfo != null &&
622                    !appInfo.packageName.equals(mContext.getString(R.string.settings_package)) &&
623                    !appInfo.packageName.equals(
624                    mContext.getString(R.string.certinstaller_package))) {
625                return mContext.getString(R.string.saved_network, appInfo.loadLabel(pm));
626            }
627        }
628        return "";
629    }
630
631    public String getSummary() {
632        return getSettingsSummary(mConfig);
633    }
634
635    public String getSettingsSummary() {
636        return getSettingsSummary(mConfig);
637    }
638
639    private String getSettingsSummary(WifiConfiguration config) {
640        // Update to new summary
641        StringBuilder summary = new StringBuilder();
642
643        if (isActive() && config != null && config.isPasspoint()) {
644            // This is the active connection on passpoint
645            summary.append(getSummary(mContext, getDetailedState(),
646                    false, config.providerFriendlyName));
647        } else if (isActive()) {
648            // This is the active connection on non-passpoint network
649            summary.append(getSummary(mContext, getDetailedState(),
650                    mInfo != null && mInfo.isEphemeral()));
651        } else if (config != null && config.isPasspoint()
652                && config.getNetworkSelectionStatus().isNetworkEnabled()) {
653            String format = mContext.getString(R.string.available_via_passpoint);
654            summary.append(String.format(format, config.providerFriendlyName));
655        } else if (config != null && config.hasNoInternetAccess()) {
656            int messageID = config.getNetworkSelectionStatus().isNetworkPermanentlyDisabled()
657                    ? R.string.wifi_no_internet_no_reconnect
658                    : R.string.wifi_no_internet;
659            summary.append(mContext.getString(messageID));
660        } else if (config != null && !config.getNetworkSelectionStatus().isNetworkEnabled()) {
661            WifiConfiguration.NetworkSelectionStatus networkStatus =
662                    config.getNetworkSelectionStatus();
663            switch (networkStatus.getNetworkSelectionDisableReason()) {
664                case WifiConfiguration.NetworkSelectionStatus.DISABLED_AUTHENTICATION_FAILURE:
665                    summary.append(mContext.getString(R.string.wifi_disabled_password_failure));
666                    break;
667                case WifiConfiguration.NetworkSelectionStatus.DISABLED_DHCP_FAILURE:
668                case WifiConfiguration.NetworkSelectionStatus.DISABLED_DNS_FAILURE:
669                    summary.append(mContext.getString(R.string.wifi_disabled_network_failure));
670                    break;
671                case WifiConfiguration.NetworkSelectionStatus.DISABLED_ASSOCIATION_REJECTION:
672                    summary.append(mContext.getString(R.string.wifi_disabled_generic));
673                    break;
674            }
675        } else if (config != null && config.getNetworkSelectionStatus().isNotRecommended()) {
676            summary.append(mContext.getString(R.string.wifi_disabled_by_recommendation_provider));
677        } else if (!isReachable()) { // Wifi out of range
678            summary.append(mContext.getString(R.string.wifi_not_in_range));
679        } else { // In range, not disabled.
680            if (config != null) { // Is saved network
681                summary.append(mContext.getString(R.string.wifi_remembered));
682            }
683        }
684
685        if (WifiTracker.sVerboseLogging > 0) {
686            // Add RSSI/band information for this config, what was seen up to 6 seconds ago
687            // verbose WiFi Logging is only turned on thru developers settings
688            if (mInfo != null && mNetworkInfo != null) { // This is the active connection
689                summary.append(" f=" + Integer.toString(mInfo.getFrequency()));
690            }
691            summary.append(" " + getVisibilityStatus());
692            if (config != null && !config.getNetworkSelectionStatus().isNetworkEnabled()) {
693                summary.append(" (" + config.getNetworkSelectionStatus().getNetworkStatusString());
694                if (config.getNetworkSelectionStatus().getDisableTime() > 0) {
695                    long now = System.currentTimeMillis();
696                    long diff = (now - config.getNetworkSelectionStatus().getDisableTime()) / 1000;
697                    long sec = diff%60; //seconds
698                    long min = (diff/60)%60; //minutes
699                    long hour = (min/60)%60; //hours
700                    summary.append(", ");
701                    if (hour > 0) summary.append(Long.toString(hour) + "h ");
702                    summary.append( Long.toString(min) + "m ");
703                    summary.append( Long.toString(sec) + "s ");
704                }
705                summary.append(")");
706            }
707
708            if (config != null) {
709                WifiConfiguration.NetworkSelectionStatus networkStatus =
710                        config.getNetworkSelectionStatus();
711                for (int index = WifiConfiguration.NetworkSelectionStatus.NETWORK_SELECTION_ENABLE;
712                        index < WifiConfiguration.NetworkSelectionStatus
713                        .NETWORK_SELECTION_DISABLED_MAX; index++) {
714                    if (networkStatus.getDisableReasonCounter(index) != 0) {
715                        summary.append(" " + WifiConfiguration.NetworkSelectionStatus
716                                .getNetworkDisableReasonString(index) + "="
717                                + networkStatus.getDisableReasonCounter(index));
718                    }
719                }
720            }
721        }
722        return summary.toString();
723    }
724
725    /**
726     * Returns the visibility status of the WifiConfiguration.
727     *
728     * @return autojoin debugging information
729     * TODO: use a string formatter
730     * ["rssi 5Ghz", "num results on 5GHz" / "rssi 5Ghz", "num results on 5GHz"]
731     * For instance [-40,5/-30,2]
732     */
733    private String getVisibilityStatus() {
734        StringBuilder visibility = new StringBuilder();
735        StringBuilder scans24GHz = null;
736        StringBuilder scans5GHz = null;
737        String bssid = null;
738
739        long now = System.currentTimeMillis();
740
741        if (mInfo != null) {
742            bssid = mInfo.getBSSID();
743            if (bssid != null) {
744                visibility.append(" ").append(bssid);
745            }
746            visibility.append(" rssi=").append(mInfo.getRssi());
747            visibility.append(" ");
748            visibility.append(" score=").append(mInfo.score);
749            if (mRankingScore != Integer.MIN_VALUE) {
750              visibility.append(" rankingScore=").append(getRankingScore());
751            }
752            if (mBadge != NetworkBadging.BADGING_NONE) {
753              visibility.append(" badge=").append(getBadge());
754            }
755            visibility.append(String.format(" tx=%.1f,", mInfo.txSuccessRate));
756            visibility.append(String.format("%.1f,", mInfo.txRetriesRate));
757            visibility.append(String.format("%.1f ", mInfo.txBadRate));
758            visibility.append(String.format("rx=%.1f", mInfo.rxSuccessRate));
759        }
760
761        int rssi5 = WifiConfiguration.INVALID_RSSI;
762        int rssi24 = WifiConfiguration.INVALID_RSSI;
763        int num5 = 0;
764        int num24 = 0;
765        int numBlackListed = 0;
766        int n24 = 0; // Number scan results we included in the string
767        int n5 = 0; // Number scan results we included in the string
768        evictOldScanResults();
769        // TODO: sort list by RSSI or age
770        for (ScanResult result : mScanResultCache.values()) {
771
772            if (result.frequency >= LOWER_FREQ_5GHZ
773                    && result.frequency <= HIGHER_FREQ_5GHZ) {
774                // Strictly speaking: [4915, 5825]
775                // number of known BSSID on 5GHz band
776                num5 = num5 + 1;
777            } else if (result.frequency >= LOWER_FREQ_24GHZ
778                    && result.frequency <= HIGHER_FREQ_24GHZ) {
779                // Strictly speaking: [2412, 2482]
780                // number of known BSSID on 2.4Ghz band
781                num24 = num24 + 1;
782            }
783
784
785            if (result.frequency >= LOWER_FREQ_5GHZ
786                    && result.frequency <= HIGHER_FREQ_5GHZ) {
787                if (result.level > rssi5) {
788                    rssi5 = result.level;
789                }
790                if (n5 < 4) {
791                    if (scans5GHz == null) scans5GHz = new StringBuilder();
792                    scans5GHz.append(" \n{").append(result.BSSID);
793                    if (bssid != null && result.BSSID.equals(bssid)) scans5GHz.append("*");
794                    scans5GHz.append("=").append(result.frequency);
795                    scans5GHz.append(",").append(result.level);
796                    scans5GHz.append("}");
797                    n5++;
798                }
799            } else if (result.frequency >= LOWER_FREQ_24GHZ
800                    && result.frequency <= HIGHER_FREQ_24GHZ) {
801                if (result.level > rssi24) {
802                    rssi24 = result.level;
803                }
804                if (n24 < 4) {
805                    if (scans24GHz == null) scans24GHz = new StringBuilder();
806                    scans24GHz.append(" \n{").append(result.BSSID);
807                    if (bssid != null && result.BSSID.equals(bssid)) scans24GHz.append("*");
808                    scans24GHz.append("=").append(result.frequency);
809                    scans24GHz.append(",").append(result.level);
810                    scans24GHz.append("}");
811                    n24++;
812                }
813            }
814        }
815        visibility.append(" [");
816        if (num24 > 0) {
817            visibility.append("(").append(num24).append(")");
818            if (n24 <= 4) {
819                if (scans24GHz != null) {
820                    visibility.append(scans24GHz.toString());
821                }
822            } else {
823                visibility.append("max=").append(rssi24);
824                if (scans24GHz != null) {
825                    visibility.append(",").append(scans24GHz.toString());
826                }
827            }
828        }
829        visibility.append(";");
830        if (num5 > 0) {
831            visibility.append("(").append(num5).append(")");
832            if (n5 <= 4) {
833                if (scans5GHz != null) {
834                    visibility.append(scans5GHz.toString());
835                }
836            } else {
837                visibility.append("max=").append(rssi5);
838                if (scans5GHz != null) {
839                    visibility.append(",").append(scans5GHz.toString());
840                }
841            }
842        }
843        if (numBlackListed > 0)
844            visibility.append("!").append(numBlackListed);
845        visibility.append("]");
846
847        return visibility.toString();
848    }
849
850    /**
851     * Return whether this is the active connection.
852     * For ephemeral connections (networkId is invalid), this returns false if the network is
853     * disconnected.
854     */
855    public boolean isActive() {
856        return mNetworkInfo != null &&
857                (networkId != WifiConfiguration.INVALID_NETWORK_ID ||
858                 mNetworkInfo.getState() != State.DISCONNECTED);
859    }
860
861    public boolean isConnectable() {
862        return getLevel() != -1 && getDetailedState() == null;
863    }
864
865    public boolean isEphemeral() {
866        return mInfo != null && mInfo.isEphemeral() &&
867                mNetworkInfo != null && mNetworkInfo.getState() != State.DISCONNECTED;
868    }
869
870    /**
871     * Return true if this AccessPoint represents a Passpoint AP.
872     */
873    public boolean isPasspoint() {
874        return mConfig != null && mConfig.isPasspoint();
875    }
876
877    /**
878     * Return true if this AccessPoint represents a Passpoint provider configuration.
879     */
880    public boolean isPasspointConfig() {
881        return mFqdn != null;
882    }
883
884    /**
885     * Return whether the given {@link WifiInfo} is for this access point.
886     * If the current AP does not have a network Id then the config is used to
887     * match based on SSID and security.
888     */
889    private boolean isInfoForThisAccessPoint(WifiConfiguration config, WifiInfo info) {
890        if (isPasspoint() == false && networkId != WifiConfiguration.INVALID_NETWORK_ID) {
891            return networkId == info.getNetworkId();
892        } else if (config != null) {
893            return matches(config);
894        }
895        else {
896            // Might be an ephemeral connection with no WifiConfiguration. Try matching on SSID.
897            // (Note that we only do this if the WifiConfiguration explicitly equals INVALID).
898            // TODO: Handle hex string SSIDs.
899            return ssid.equals(removeDoubleQuotes(info.getSSID()));
900        }
901    }
902
903    public boolean isSaved() {
904        return networkId != WifiConfiguration.INVALID_NETWORK_ID;
905    }
906
907    public Object getTag() {
908        return mTag;
909    }
910
911    public void setTag(Object tag) {
912        mTag = tag;
913    }
914
915    /**
916     * Generate and save a default wifiConfiguration with common values.
917     * Can only be called for unsecured networks.
918     */
919    public void generateOpenNetworkConfig() {
920        if (security != SECURITY_NONE)
921            throw new IllegalStateException();
922        if (mConfig != null)
923            return;
924        mConfig = new WifiConfiguration();
925        mConfig.SSID = AccessPoint.convertToQuotedString(ssid);
926        mConfig.allowedKeyManagement.set(KeyMgmt.NONE);
927    }
928
929    void loadConfig(WifiConfiguration config) {
930        ssid = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID));
931        bssid = config.BSSID;
932        security = getSecurity(config);
933        networkId = config.networkId;
934        mConfig = config;
935    }
936
937    private void initWithScanResult(ScanResult result) {
938        ssid = result.SSID;
939        bssid = result.BSSID;
940        security = getSecurity(result);
941        if (security == SECURITY_PSK)
942            pskType = getPskType(result);
943        mRssi = result.level;
944        mSeen = result.timestamp;
945    }
946
947    public void saveWifiState(Bundle savedState) {
948        if (ssid != null) savedState.putString(KEY_SSID, getSsidStr());
949        savedState.putInt(KEY_SECURITY, security);
950        savedState.putInt(KEY_PSKTYPE, pskType);
951        if (mConfig != null) savedState.putParcelable(KEY_CONFIG, mConfig);
952        savedState.putParcelable(KEY_WIFIINFO, mInfo);
953        evictOldScanResults();
954        savedState.putParcelableArrayList(KEY_SCANRESULTCACHE,
955                new ArrayList<ScanResult>(mScanResultCache.values()));
956        if (mNetworkInfo != null) {
957            savedState.putParcelable(KEY_NETWORKINFO, mNetworkInfo);
958        }
959        if (mFqdn != null) {
960            savedState.putString(KEY_FQDN, mFqdn);
961        }
962        if (mProviderFriendlyName != null) {
963            savedState.putString(KEY_PROVIDER_FRIENDLY_NAME, mProviderFriendlyName);
964        }
965    }
966
967    public void setListener(AccessPointListener listener) {
968        mAccessPointListener = listener;
969    }
970
971    boolean update(ScanResult result) {
972        if (matches(result)) {
973            int oldLevel = getLevel();
974
975            /* Add or update the scan result for the BSSID */
976            mScanResultCache.put(result.BSSID, result);
977            updateSeen();
978            updateRssi();
979            int newLevel = getLevel();
980
981            if (newLevel > 0 && newLevel != oldLevel && mAccessPointListener != null) {
982                mAccessPointListener.onLevelChanged(this);
983            }
984            // This flag only comes from scans, is not easily saved in config
985            if (security == SECURITY_PSK) {
986                pskType = getPskType(result);
987            }
988
989            if (mAccessPointListener != null) {
990                mAccessPointListener.onAccessPointChanged(this);
991            }
992
993            return true;
994        }
995        return false;
996    }
997
998    /** Attempt to update the AccessPoint and return true if an update occurred. */
999    public boolean update(WifiConfiguration config, WifiInfo info, NetworkInfo networkInfo) {
1000        boolean updated = false;
1001        final int oldLevel = getLevel();
1002        if (info != null && isInfoForThisAccessPoint(config, info)) {
1003            updated = (mInfo == null);
1004            if (mRssi != info.getRssi()) {
1005                mRssi = info.getRssi();
1006                updated = true;
1007            } else if (mNetworkInfo != null && networkInfo != null
1008                    && mNetworkInfo.getDetailedState() != networkInfo.getDetailedState()) {
1009                updated = true;
1010            }
1011            mInfo = info;
1012            mNetworkInfo = networkInfo;
1013        } else if (mInfo != null) {
1014            updated = true;
1015            mInfo = null;
1016            mNetworkInfo = null;
1017        }
1018        if (updated && mAccessPointListener != null) {
1019            mAccessPointListener.onAccessPointChanged(this);
1020
1021            if (oldLevel != getLevel() /* current level */) {
1022                mAccessPointListener.onLevelChanged(this);
1023            }
1024        }
1025        return updated;
1026    }
1027
1028    void update(WifiConfiguration config) {
1029        mConfig = config;
1030        networkId = config.networkId;
1031        if (mAccessPointListener != null) {
1032            mAccessPointListener.onAccessPointChanged(this);
1033        }
1034    }
1035
1036    @VisibleForTesting
1037    void setRssi(int rssi) {
1038        mRssi = rssi;
1039    }
1040
1041    /** Sets the rssi to {@link #UNREACHABLE_RSSI}. */
1042    void setUnreachable() {
1043        setRssi(AccessPoint.UNREACHABLE_RSSI);
1044    }
1045
1046    int getRankingScore() {
1047        return mRankingScore;
1048    }
1049
1050    int getBadge() {
1051        return mBadge;
1052    }
1053
1054    /** Return true if the current RSSI is reachable, and false otherwise. */
1055    public boolean isReachable() {
1056        return mRssi != UNREACHABLE_RSSI;
1057    }
1058
1059    public static String getSummary(Context context, String ssid, DetailedState state,
1060            boolean isEphemeral, String passpointProvider) {
1061        if (state == DetailedState.CONNECTED && ssid == null) {
1062            if (TextUtils.isEmpty(passpointProvider) == false) {
1063                // Special case for connected + passpoint networks.
1064                String format = context.getString(R.string.connected_via_passpoint);
1065                return String.format(format, passpointProvider);
1066            } else if (isEphemeral) {
1067                // Special case for connected + ephemeral networks.
1068                final NetworkScoreManager networkScoreManager = context.getSystemService(
1069                        NetworkScoreManager.class);
1070                NetworkScorerAppData scorer = networkScoreManager.getActiveScorer();
1071                if (scorer != null && scorer.getRecommendationServiceLabel() != null) {
1072                    String format = context.getString(R.string.connected_via_network_scorer);
1073                    return String.format(format, scorer.getRecommendationServiceLabel());
1074                } else {
1075                    return context.getString(R.string.connected_via_network_scorer_default);
1076                }
1077            }
1078        }
1079
1080        // Case when there is wifi connected without internet connectivity.
1081        final ConnectivityManager cm = (ConnectivityManager)
1082                context.getSystemService(Context.CONNECTIVITY_SERVICE);
1083        if (state == DetailedState.CONNECTED) {
1084            IWifiManager wifiManager = IWifiManager.Stub.asInterface(
1085                    ServiceManager.getService(Context.WIFI_SERVICE));
1086            NetworkCapabilities nc = null;
1087
1088            try {
1089                nc = cm.getNetworkCapabilities(wifiManager.getCurrentNetwork());
1090            } catch (RemoteException e) {}
1091
1092            if (nc != null) {
1093                if (nc.hasCapability(nc.NET_CAPABILITY_CAPTIVE_PORTAL)) {
1094                    return context.getString(
1095                        com.android.internal.R.string.network_available_sign_in);
1096                } else if (!nc.hasCapability(NetworkCapabilities.NET_CAPABILITY_VALIDATED)) {
1097                    return context.getString(R.string.wifi_connected_no_internet);
1098                }
1099            }
1100        }
1101        if (state == null) {
1102            Log.w(TAG, "state is null, returning empty summary");
1103            return "";
1104        }
1105        String[] formats = context.getResources().getStringArray((ssid == null)
1106                ? R.array.wifi_status : R.array.wifi_status_with_ssid);
1107        int index = state.ordinal();
1108
1109        if (index >= formats.length || formats[index].length() == 0) {
1110            return "";
1111        }
1112        return String.format(formats[index], ssid);
1113    }
1114
1115    public static String getSummary(Context context, DetailedState state, boolean isEphemeral) {
1116        return getSummary(context, null, state, isEphemeral, null);
1117    }
1118
1119    public static String getSummary(Context context, DetailedState state, boolean isEphemeral,
1120            String passpointProvider) {
1121        return getSummary(context, null, state, isEphemeral, passpointProvider);
1122    }
1123
1124    public static String convertToQuotedString(String string) {
1125        return "\"" + string + "\"";
1126    }
1127
1128    private static int getPskType(ScanResult result) {
1129        boolean wpa = result.capabilities.contains("WPA-PSK");
1130        boolean wpa2 = result.capabilities.contains("WPA2-PSK");
1131        if (wpa2 && wpa) {
1132            return PSK_WPA_WPA2;
1133        } else if (wpa2) {
1134            return PSK_WPA2;
1135        } else if (wpa) {
1136            return PSK_WPA;
1137        } else {
1138            Log.w(TAG, "Received abnormal flag string: " + result.capabilities);
1139            return PSK_UNKNOWN;
1140        }
1141    }
1142
1143    private static int getSecurity(ScanResult result) {
1144        if (result.capabilities.contains("WEP")) {
1145            return SECURITY_WEP;
1146        } else if (result.capabilities.contains("PSK")) {
1147            return SECURITY_PSK;
1148        } else if (result.capabilities.contains("EAP")) {
1149            return SECURITY_EAP;
1150        }
1151        return SECURITY_NONE;
1152    }
1153
1154    static int getSecurity(WifiConfiguration config) {
1155        if (config.allowedKeyManagement.get(KeyMgmt.WPA_PSK)) {
1156            return SECURITY_PSK;
1157        }
1158        if (config.allowedKeyManagement.get(KeyMgmt.WPA_EAP) ||
1159                config.allowedKeyManagement.get(KeyMgmt.IEEE8021X)) {
1160            return SECURITY_EAP;
1161        }
1162        return (config.wepKeys[0] != null) ? SECURITY_WEP : SECURITY_NONE;
1163    }
1164
1165    public static String securityToString(int security, int pskType) {
1166        if (security == SECURITY_WEP) {
1167            return "WEP";
1168        } else if (security == SECURITY_PSK) {
1169            if (pskType == PSK_WPA) {
1170                return "WPA";
1171            } else if (pskType == PSK_WPA2) {
1172                return "WPA2";
1173            } else if (pskType == PSK_WPA_WPA2) {
1174                return "WPA_WPA2";
1175            }
1176            return "PSK";
1177        } else if (security == SECURITY_EAP) {
1178            return "EAP";
1179        }
1180        return "NONE";
1181    }
1182
1183    static String removeDoubleQuotes(String string) {
1184        if (TextUtils.isEmpty(string)) {
1185            return "";
1186        }
1187        int length = string.length();
1188        if ((length > 1) && (string.charAt(0) == '"')
1189                && (string.charAt(length - 1) == '"')) {
1190            return string.substring(1, length - 1);
1191        }
1192        return string;
1193    }
1194
1195    public interface AccessPointListener {
1196        void onAccessPointChanged(AccessPoint accessPoint);
1197        void onLevelChanged(AccessPoint accessPoint);
1198    }
1199}
1200