/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.server.wifi.hotspot2; import android.text.TextUtils; import com.android.server.wifi.IMSIParameter; import com.android.server.wifi.hotspot2.anqp.CellularNetwork; import com.android.server.wifi.hotspot2.anqp.DomainNameElement; import com.android.server.wifi.hotspot2.anqp.NAIRealmData; import com.android.server.wifi.hotspot2.anqp.NAIRealmElement; import com.android.server.wifi.hotspot2.anqp.RoamingConsortiumElement; import com.android.server.wifi.hotspot2.anqp.ThreeGPPNetworkElement; import java.util.List; /** * Utility class for providing matching functions against ANQP elements. */ public class ANQPMatcher { /** * Match the domain names in the ANQP element against the provider's FQDN and SIM credential. * The Domain Name ANQP element might contain domains for 3GPP network (e.g. * wlan.mnc*.mcc*.3gppnetwork.org), so we should match that against the provider's SIM * credential if one is provided. * * @param element The Domain Name ANQP element * @param fqdn The FQDN to compare against * @param imsiParam The IMSI parameter of the provider (needed only for IMSI matching) * @param simImsi The IMSI from the installed SIM cards that best matched provider's * IMSI parameter (needed only for IMSI matching) * @return true if a match is found */ public static boolean matchDomainName(DomainNameElement element, String fqdn, IMSIParameter imsiParam, String simImsi) { if (element == null) { return false; } for (String domain : element.getDomains()) { if (DomainMatcher.arg2SubdomainOfArg1(fqdn, domain)) { return true; } if (imsiParam == null || simImsi == null) { continue; } // Try to retrieve the MCC-MNC string from the domain (for 3GPP network domain) and // match against the provider's SIM credential. if (matchMccMnc(Utils.getMccMnc(Utils.splitDomain(domain)), imsiParam, simImsi)) { return true; } } return false; } /** * Match the roaming consortium OIs in the ANQP element against the roaming consortium OIs * of a provider. * * @param element The Roaming Consortium ANQP element * @param providerOIs The roaming consortium OIs of the provider * @param matchAll Indicates if a match with all OIs must be done * @return Matched OI value if a match is found, 0 otherwise. If matchAll is true, then the * first matched OI will be returned if and only if all elements match. If the caller is * interested in matching all, the return value of non-0 can be interpreted as a positive * output and a 0 result can be interpreted as a negative result. */ public static long matchRoamingConsortium(RoamingConsortiumElement element, long[] providerOIs, boolean matchAll) { if (element == null) return 0; if (providerOIs == null) return 0; long matchedRcoi = 0; List rcOIs = element.getOIs(); for (long oi : providerOIs) { if (rcOIs.contains(oi)) { if (!matchAll) { return oi; } if (matchedRcoi == 0) matchedRcoi = oi; } else if (matchAll) { return 0; } } return matchedRcoi; } /** * Match the NAI realm in the ANQP element against the realm and authentication method of * a provider. * * @param element The NAI Realm ANQP element * @param realm The realm of the provider's credential * @return true if there is a NAI Realm match, false otherwise */ public static boolean matchNAIRealm(NAIRealmElement element, String realm) { if (element == null || element.getRealmDataList().isEmpty()) { return false; } for (NAIRealmData realmData : element.getRealmDataList()) { if (matchNAIRealmData(realmData, realm)) { return true; } } return false; } /** * Match the 3GPP Network in the ANQP element against the SIM credential of a provider. * * @param element 3GPP Network ANQP element * @param imsiParam The IMSI parameter of the provider's SIM credential * @param simImsi The IMSI from the installed SIM cards that best matched provider's * IMSI parameter * @return true if a match is found */ public static boolean matchThreeGPPNetwork(ThreeGPPNetworkElement element, IMSIParameter imsiParam, String simImsi) { if (element == null) { return false; } for (CellularNetwork network : element.getNetworks()) { if (matchCellularNetwork(network, imsiParam, simImsi)) { return true; } } return false; } /** * Match the given NAI Realm data against the realm and authentication method of a provider. * * @param realmData The NAI Realm data * @param realm The realm of the provider's credential * @return true if a match is found */ private static boolean matchNAIRealmData(NAIRealmData realmData, String realm) { // Check for realm domain name match. for (String realmStr : realmData.getRealms()) { if (DomainMatcher.arg2SubdomainOfArg1(realm, realmStr)) { return true; } } return false; } /** * Match a cellular network information in the 3GPP Network ANQP element against the SIM * credential of a provider. * * @param network The cellular network that contained list of PLMNs * @param imsiParam IMSI parameter of the provider * @param simImsi The IMSI from the installed SIM cards that best matched provider's * IMSI parameter * @return true if a match is found */ private static boolean matchCellularNetwork(CellularNetwork network, IMSIParameter imsiParam, String simImsi) { for (String plmn : network.getPlmns()) { if (matchMccMnc(plmn, imsiParam, simImsi)) { return true; } } return false; } /** * Match a MCC-MNC against the SIM credential of a provider. * * @param mccMnc The string containing MCC-MNC * @param imsiParam The IMSI parameter of the provider * @param simImsi The IMSI from the installed SIM cards that best matched provider's * IMSI parameter * @return true if a match is found */ private static boolean matchMccMnc(String mccMnc, IMSIParameter imsiParam, String simImsi) { if (imsiParam == null || TextUtils.isEmpty(simImsi) || mccMnc == null) { return false; } // Match against the IMSI parameter in the provider. if (!imsiParam.matchesMccMnc(mccMnc)) { return false; } // Additional check for verifying the match with IMSI from the SIM card, since the IMSI // parameter might not contain the full 6-digit MCC MNC (e.g. IMSI parameter is an IMSI // prefix that contained less than 6-digit of numbers "12345*"). return simImsi.startsWith(mccMnc); } }