LCOV - code coverage report
Current view: top level - wpa_supplicant - interworking.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1388338050 Lines: 984 1273 77.3 %
Date: 2013-12-29 Functions: 53 54 98.1 %
Branches: 597 967 61.7 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Interworking (IEEE 802.11u)
       3                 :            :  * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
       4                 :            :  *
       5                 :            :  * This software may be distributed under the terms of the BSD license.
       6                 :            :  * See README for more details.
       7                 :            :  */
       8                 :            : 
       9                 :            : #include "includes.h"
      10                 :            : 
      11                 :            : #include "common.h"
      12                 :            : #include "common/ieee802_11_defs.h"
      13                 :            : #include "common/gas.h"
      14                 :            : #include "common/wpa_ctrl.h"
      15                 :            : #include "utils/pcsc_funcs.h"
      16                 :            : #include "utils/eloop.h"
      17                 :            : #include "drivers/driver.h"
      18                 :            : #include "eap_common/eap_defs.h"
      19                 :            : #include "eap_peer/eap.h"
      20                 :            : #include "eap_peer/eap_methods.h"
      21                 :            : #include "eapol_supp/eapol_supp_sm.h"
      22                 :            : #include "rsn_supp/wpa.h"
      23                 :            : #include "wpa_supplicant_i.h"
      24                 :            : #include "config.h"
      25                 :            : #include "config_ssid.h"
      26                 :            : #include "bss.h"
      27                 :            : #include "scan.h"
      28                 :            : #include "notify.h"
      29                 :            : #include "gas_query.h"
      30                 :            : #include "hs20_supplicant.h"
      31                 :            : #include "interworking.h"
      32                 :            : 
      33                 :            : 
      34                 :            : #if defined(EAP_SIM) | defined(EAP_SIM_DYNAMIC)
      35                 :            : #define INTERWORKING_3GPP
      36                 :            : #else
      37                 :            : #if defined(EAP_AKA) | defined(EAP_AKA_DYNAMIC)
      38                 :            : #define INTERWORKING_3GPP
      39                 :            : #else
      40                 :            : #if defined(EAP_AKA_PRIME) | defined(EAP_AKA_PRIME_DYNAMIC)
      41                 :            : #define INTERWORKING_3GPP
      42                 :            : #endif
      43                 :            : #endif
      44                 :            : #endif
      45                 :            : 
      46                 :            : static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s);
      47                 :            : static struct wpa_cred * interworking_credentials_available_realm(
      48                 :            :         struct wpa_supplicant *wpa_s, struct wpa_bss *bss);
      49                 :            : static struct wpa_cred * interworking_credentials_available_3gpp(
      50                 :            :         struct wpa_supplicant *wpa_s, struct wpa_bss *bss);
      51                 :            : 
      52                 :            : 
      53                 :         27 : static void interworking_reconnect(struct wpa_supplicant *wpa_s)
      54                 :            : {
      55         [ -  + ]:         27 :         if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
      56                 :          0 :                 wpa_supplicant_cancel_sched_scan(wpa_s);
      57                 :          0 :                 wpa_supplicant_deauthenticate(wpa_s,
      58                 :            :                                               WLAN_REASON_DEAUTH_LEAVING);
      59                 :            :         }
      60                 :         27 :         wpa_s->disconnected = 0;
      61                 :         27 :         wpa_s->reassociate = 1;
      62                 :            : 
      63         [ +  - ]:         27 :         if (wpa_supplicant_fast_associate(wpa_s) >= 0)
      64                 :         27 :                 return;
      65                 :            : 
      66                 :          0 :         wpa_supplicant_req_scan(wpa_s, 0, 0);
      67                 :            : }
      68                 :            : 
      69                 :            : 
      70                 :         47 : static struct wpabuf * anqp_build_req(u16 info_ids[], size_t num_ids,
      71                 :            :                                       struct wpabuf *extra)
      72                 :            : {
      73                 :            :         struct wpabuf *buf;
      74                 :            :         size_t i;
      75                 :            :         u8 *len_pos;
      76                 :            : 
      77                 :         47 :         buf = gas_anqp_build_initial_req(0, 4 + num_ids * 2 +
      78         [ +  + ]:         47 :                                          (extra ? wpabuf_len(extra) : 0));
      79         [ -  + ]:         47 :         if (buf == NULL)
      80                 :          0 :                 return NULL;
      81                 :            : 
      82                 :         47 :         len_pos = gas_anqp_add_element(buf, ANQP_QUERY_LIST);
      83         [ +  + ]:        181 :         for (i = 0; i < num_ids; i++)
      84                 :        134 :                 wpabuf_put_le16(buf, info_ids[i]);
      85                 :         47 :         gas_anqp_set_element_len(buf, len_pos);
      86         [ +  + ]:         47 :         if (extra)
      87                 :         41 :                 wpabuf_put_buf(buf, extra);
      88                 :            : 
      89                 :         47 :         gas_anqp_set_len(buf);
      90                 :            : 
      91                 :         47 :         return buf;
      92                 :            : }
      93                 :            : 
      94                 :            : 
      95                 :         41 : static void interworking_anqp_resp_cb(void *ctx, const u8 *dst,
      96                 :            :                                       u8 dialog_token,
      97                 :            :                                       enum gas_query_result result,
      98                 :            :                                       const struct wpabuf *adv_proto,
      99                 :            :                                       const struct wpabuf *resp,
     100                 :            :                                       u16 status_code)
     101                 :            : {
     102                 :         41 :         struct wpa_supplicant *wpa_s = ctx;
     103                 :            : 
     104                 :         41 :         anqp_resp_cb(wpa_s, dst, dialog_token, result, adv_proto, resp,
     105                 :            :                      status_code);
     106                 :         41 :         interworking_next_anqp_fetch(wpa_s);
     107                 :         41 : }
     108                 :            : 
     109                 :            : 
     110                 :         37 : static int cred_with_roaming_consortium(struct wpa_supplicant *wpa_s)
     111                 :            : {
     112                 :            :         struct wpa_cred *cred;
     113                 :            : 
     114         [ +  + ]:         69 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
     115         [ +  + ]:         37 :                 if (cred->roaming_consortium_len)
     116                 :          1 :                         return 1;
     117         [ +  + ]:         36 :                 if (cred->required_roaming_consortium_len)
     118                 :          4 :                         return 1;
     119                 :            :         }
     120                 :         37 :         return 0;
     121                 :            : }
     122                 :            : 
     123                 :            : 
     124                 :         37 : static int cred_with_3gpp(struct wpa_supplicant *wpa_s)
     125                 :            : {
     126                 :            :         struct wpa_cred *cred;
     127                 :            : 
     128         [ +  + ]:         69 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
     129 [ +  - ][ +  + ]:         37 :                 if (cred->pcsc || cred->imsi)
     130                 :          5 :                         return 1;
     131                 :            :         }
     132                 :         37 :         return 0;
     133                 :            : }
     134                 :            : 
     135                 :            : 
     136                 :         37 : static int cred_with_nai_realm(struct wpa_supplicant *wpa_s)
     137                 :            : {
     138                 :            :         struct wpa_cred *cred;
     139                 :            : 
     140         [ +  + ]:         43 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
     141 [ +  - ][ +  + ]:         37 :                 if (cred->pcsc || cred->imsi)
     142                 :          5 :                         continue;
     143         [ +  + ]:         32 :                 if (!cred->eap_method)
     144                 :         31 :                         return 1;
     145 [ +  - ][ -  + ]:          1 :                 if (cred->realm && cred->roaming_consortium_len == 0)
     146                 :          0 :                         return 1;
     147                 :            :         }
     148                 :         37 :         return 0;
     149                 :            : }
     150                 :            : 
     151                 :            : 
     152                 :         37 : static int cred_with_domain(struct wpa_supplicant *wpa_s)
     153                 :            : {
     154                 :            :         struct wpa_cred *cred;
     155                 :            : 
     156         [ +  + ]:         54 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
     157 [ +  + ][ +  - ]:         37 :                 if (cred->domain || cred->pcsc || cred->imsi)
                 [ +  + ]
     158                 :         20 :                         return 1;
     159                 :            :         }
     160                 :         37 :         return 0;
     161                 :            : }
     162                 :            : 
     163                 :            : 
     164                 :          5 : static int additional_roaming_consortiums(struct wpa_bss *bss)
     165                 :            : {
     166                 :            :         const u8 *ie;
     167                 :          5 :         ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
     168 [ +  - ][ -  + ]:          5 :         if (ie == NULL || ie[1] == 0)
     169                 :          0 :                 return 0;
     170                 :          5 :         return ie[2]; /* Number of ANQP OIs */
     171                 :            : }
     172                 :            : 
     173                 :            : 
     174                 :          0 : static void interworking_continue_anqp(void *eloop_ctx, void *sock_ctx)
     175                 :            : {
     176                 :          0 :         struct wpa_supplicant *wpa_s = eloop_ctx;
     177                 :          0 :         interworking_next_anqp_fetch(wpa_s);
     178                 :          0 : }
     179                 :            : 
     180                 :            : 
     181                 :         41 : static int interworking_anqp_send_req(struct wpa_supplicant *wpa_s,
     182                 :            :                                       struct wpa_bss *bss)
     183                 :            : {
     184                 :            :         struct wpabuf *buf;
     185                 :         41 :         int ret = 0;
     186                 :            :         int res;
     187                 :            :         u16 info_ids[8];
     188                 :         41 :         size_t num_info_ids = 0;
     189                 :         41 :         struct wpabuf *extra = NULL;
     190                 :         41 :         int all = wpa_s->fetch_all_anqp;
     191                 :            : 
     192                 :         41 :         wpa_printf(MSG_DEBUG, "Interworking: ANQP Query Request to " MACSTR,
     193                 :        246 :                    MAC2STR(bss->bssid));
     194                 :         41 :         wpa_s->interworking_gas_bss = bss;
     195                 :            : 
     196                 :         41 :         info_ids[num_info_ids++] = ANQP_CAPABILITY_LIST;
     197         [ +  + ]:         41 :         if (all) {
     198                 :          4 :                 info_ids[num_info_ids++] = ANQP_VENUE_NAME;
     199                 :          4 :                 info_ids[num_info_ids++] = ANQP_NETWORK_AUTH_TYPE;
     200                 :            :         }
     201         [ +  + ]:         46 :         if (all || (cred_with_roaming_consortium(wpa_s) &&
           [ +  +  +  + ]
     202                 :          5 :                     additional_roaming_consortiums(bss)))
     203                 :          7 :                 info_ids[num_info_ids++] = ANQP_ROAMING_CONSORTIUM;
     204         [ +  + ]:         41 :         if (all)
     205                 :          4 :                 info_ids[num_info_ids++] = ANQP_IP_ADDR_TYPE_AVAILABILITY;
     206 [ +  + ][ +  + ]:         41 :         if (all || cred_with_nai_realm(wpa_s))
     207                 :         35 :                 info_ids[num_info_ids++] = ANQP_NAI_REALM;
     208 [ +  + ][ +  + ]:         41 :         if (all || cred_with_3gpp(wpa_s))
     209                 :          9 :                 info_ids[num_info_ids++] = ANQP_3GPP_CELLULAR_NETWORK;
     210 [ +  + ][ +  + ]:         41 :         if (all || cred_with_domain(wpa_s))
     211                 :         24 :                 info_ids[num_info_ids++] = ANQP_DOMAIN_NAME;
     212                 :         41 :         wpa_hexdump(MSG_DEBUG, "Interworking: ANQP Query info",
     213                 :            :                     (u8 *) info_ids, num_info_ids * 2);
     214                 :            : 
     215                 :            : #ifdef CONFIG_HS20
     216         [ +  - ]:         41 :         if (wpa_bss_get_vendor_ie(bss, HS20_IE_VENDOR_TYPE)) {
     217                 :            :                 u8 *len_pos;
     218                 :            : 
     219                 :         41 :                 extra = wpabuf_alloc(100);
     220         [ -  + ]:         41 :                 if (!extra)
     221                 :          0 :                         return -1;
     222                 :            : 
     223                 :         41 :                 len_pos = gas_anqp_add_element(extra, ANQP_VENDOR_SPECIFIC);
     224                 :         41 :                 wpabuf_put_be24(extra, OUI_WFA);
     225                 :         41 :                 wpabuf_put_u8(extra, HS20_ANQP_OUI_TYPE);
     226                 :         41 :                 wpabuf_put_u8(extra, HS20_STYPE_QUERY_LIST);
     227                 :         41 :                 wpabuf_put_u8(extra, 0); /* Reserved */
     228                 :         41 :                 wpabuf_put_u8(extra, HS20_STYPE_CAPABILITY_LIST);
     229         [ +  + ]:         41 :                 if (all) {
     230                 :          4 :                         wpabuf_put_u8(extra,
     231                 :            :                                       HS20_STYPE_OPERATOR_FRIENDLY_NAME);
     232                 :          4 :                         wpabuf_put_u8(extra, HS20_STYPE_WAN_METRICS);
     233                 :          4 :                         wpabuf_put_u8(extra, HS20_STYPE_CONNECTION_CAPABILITY);
     234                 :          4 :                         wpabuf_put_u8(extra, HS20_STYPE_OPERATING_CLASS);
     235                 :            :                 }
     236                 :         41 :                 gas_anqp_set_element_len(extra, len_pos);
     237                 :            :         }
     238                 :            : #endif /* CONFIG_HS20 */
     239                 :            : 
     240                 :         41 :         buf = anqp_build_req(info_ids, num_info_ids, extra);
     241                 :         41 :         wpabuf_free(extra);
     242         [ -  + ]:         41 :         if (buf == NULL)
     243                 :          0 :                 return -1;
     244                 :            : 
     245                 :         41 :         res = gas_query_req(wpa_s->gas, bss->bssid, bss->freq, buf,
     246                 :            :                             interworking_anqp_resp_cb, wpa_s);
     247         [ -  + ]:         41 :         if (res < 0) {
     248                 :          0 :                 wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
     249                 :          0 :                 wpabuf_free(buf);
     250                 :          0 :                 ret = -1;
     251                 :          0 :                 eloop_register_timeout(0, 0, interworking_continue_anqp, wpa_s,
     252                 :            :                                        NULL);
     253                 :            :         } else
     254                 :         41 :                 wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
     255                 :            :                            "%u", res);
     256                 :            : 
     257                 :         41 :         return ret;
     258                 :            : }
     259                 :            : 
     260                 :            : 
     261                 :            : struct nai_realm_eap {
     262                 :            :         u8 method;
     263                 :            :         u8 inner_method;
     264                 :            :         enum nai_realm_eap_auth_inner_non_eap inner_non_eap;
     265                 :            :         u8 cred_type;
     266                 :            :         u8 tunneled_cred_type;
     267                 :            : };
     268                 :            : 
     269                 :            : struct nai_realm {
     270                 :            :         u8 encoding;
     271                 :            :         char *realm;
     272                 :            :         u8 eap_count;
     273                 :            :         struct nai_realm_eap *eap;
     274                 :            : };
     275                 :            : 
     276                 :            : 
     277                 :         76 : static void nai_realm_free(struct nai_realm *realms, u16 count)
     278                 :            : {
     279                 :            :         u16 i;
     280                 :            : 
     281         [ -  + ]:         76 :         if (realms == NULL)
     282                 :         76 :                 return;
     283         [ +  + ]:        204 :         for (i = 0; i < count; i++) {
     284                 :        128 :                 os_free(realms[i].eap);
     285                 :        128 :                 os_free(realms[i].realm);
     286                 :            :         }
     287                 :         76 :         os_free(realms);
     288                 :            : }
     289                 :            : 
     290                 :            : 
     291                 :        128 : static const u8 * nai_realm_parse_eap(struct nai_realm_eap *e, const u8 *pos,
     292                 :            :                                       const u8 *end)
     293                 :            : {
     294                 :            :         u8 elen, auth_count, a;
     295                 :            :         const u8 *e_end;
     296                 :            : 
     297         [ -  + ]:        128 :         if (pos + 3 > end) {
     298                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for EAP Method fixed fields");
     299                 :          0 :                 return NULL;
     300                 :            :         }
     301                 :            : 
     302                 :        128 :         elen = *pos++;
     303 [ +  - ][ -  + ]:        128 :         if (pos + elen > end || elen < 2) {
     304                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for EAP Method subfield");
     305                 :          0 :                 return NULL;
     306                 :            :         }
     307                 :        128 :         e_end = pos + elen;
     308                 :        128 :         e->method = *pos++;
     309                 :        128 :         auth_count = *pos++;
     310                 :        128 :         wpa_printf(MSG_DEBUG, "EAP Method: len=%u method=%u auth_count=%u",
     311                 :        128 :                    elen, e->method, auth_count);
     312                 :            : 
     313         [ +  + ]:        311 :         for (a = 0; a < auth_count; a++) {
     314                 :            :                 u8 id, len;
     315                 :            : 
     316 [ +  - ][ -  + ]:        183 :                 if (pos + 2 > end || pos + 2 + pos[1] > end) {
     317                 :          0 :                         wpa_printf(MSG_DEBUG, "No room for Authentication "
     318                 :            :                                    "Parameter subfield");
     319                 :          0 :                         return NULL;
     320                 :            :                 }
     321                 :            : 
     322                 :        183 :                 id = *pos++;
     323                 :        183 :                 len = *pos++;
     324                 :            : 
     325   [ +  +  +  -  :        183 :                 switch (id) {
                      - ]
     326                 :            :                 case NAI_REALM_EAP_AUTH_NON_EAP_INNER_AUTH:
     327         [ -  + ]:         61 :                         if (len < 1)
     328                 :          0 :                                 break;
     329                 :         61 :                         e->inner_non_eap = *pos;
     330         [ -  + ]:         61 :                         if (e->method != EAP_TYPE_TTLS)
     331                 :          0 :                                 break;
     332   [ +  +  +  +  :         61 :                         switch (*pos) {
                      - ]
     333                 :            :                         case NAI_REALM_INNER_NON_EAP_PAP:
     334                 :          3 :                                 wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP");
     335                 :          3 :                                 break;
     336                 :            :                         case NAI_REALM_INNER_NON_EAP_CHAP:
     337                 :          3 :                                 wpa_printf(MSG_DEBUG, "EAP-TTLS/CHAP");
     338                 :          3 :                                 break;
     339                 :            :                         case NAI_REALM_INNER_NON_EAP_MSCHAP:
     340                 :          3 :                                 wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAP");
     341                 :          3 :                                 break;
     342                 :            :                         case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
     343                 :         52 :                                 wpa_printf(MSG_DEBUG, "EAP-TTLS/MSCHAPV2");
     344                 :         52 :                                 break;
     345                 :            :                         }
     346                 :         61 :                         break;
     347                 :            :                 case NAI_REALM_EAP_AUTH_INNER_AUTH_EAP_METHOD:
     348         [ -  + ]:         15 :                         if (len < 1)
     349                 :          0 :                                 break;
     350                 :         15 :                         e->inner_method = *pos;
     351                 :         15 :                         wpa_printf(MSG_DEBUG, "Inner EAP method: %u",
     352                 :         15 :                                    e->inner_method);
     353                 :         15 :                         break;
     354                 :            :                 case NAI_REALM_EAP_AUTH_CRED_TYPE:
     355         [ -  + ]:        107 :                         if (len < 1)
     356                 :          0 :                                 break;
     357                 :        107 :                         e->cred_type = *pos;
     358                 :        107 :                         wpa_printf(MSG_DEBUG, "Credential Type: %u",
     359                 :        107 :                                    e->cred_type);
     360                 :        107 :                         break;
     361                 :            :                 case NAI_REALM_EAP_AUTH_TUNNELED_CRED_TYPE:
     362         [ #  # ]:          0 :                         if (len < 1)
     363                 :          0 :                                 break;
     364                 :          0 :                         e->tunneled_cred_type = *pos;
     365                 :          0 :                         wpa_printf(MSG_DEBUG, "Tunneled EAP Method Credential "
     366                 :          0 :                                    "Type: %u", e->tunneled_cred_type);
     367                 :          0 :                         break;
     368                 :            :                 default:
     369                 :          0 :                         wpa_printf(MSG_DEBUG, "Unsupported Authentication "
     370                 :            :                                    "Parameter: id=%u len=%u", id, len);
     371                 :          0 :                         wpa_hexdump(MSG_DEBUG, "Authentication Parameter "
     372                 :            :                                     "Value", pos, len);
     373                 :          0 :                         break;
     374                 :            :                 }
     375                 :            : 
     376                 :        183 :                 pos += len;
     377                 :            :         }
     378                 :            : 
     379                 :        128 :         return e_end;
     380                 :            : }
     381                 :            : 
     382                 :            : 
     383                 :        128 : static const u8 * nai_realm_parse_realm(struct nai_realm *r, const u8 *pos,
     384                 :            :                                         const u8 *end)
     385                 :            : {
     386                 :            :         u16 len;
     387                 :            :         const u8 *f_end;
     388                 :            :         u8 realm_len, e;
     389                 :            : 
     390         [ -  + ]:        128 :         if (end - pos < 4) {
     391                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
     392                 :            :                            "fixed fields");
     393                 :          0 :                 return NULL;
     394                 :            :         }
     395                 :            : 
     396                 :        128 :         len = WPA_GET_LE16(pos); /* NAI Realm Data field Length */
     397                 :        128 :         pos += 2;
     398 [ +  - ][ -  + ]:        128 :         if (pos + len > end || len < 3) {
     399                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for NAI Realm Data "
     400                 :            :                            "(len=%u; left=%u)",
     401                 :          0 :                            len, (unsigned int) (end - pos));
     402                 :          0 :                 return NULL;
     403                 :            :         }
     404                 :        128 :         f_end = pos + len;
     405                 :            : 
     406                 :        128 :         r->encoding = *pos++;
     407                 :        128 :         realm_len = *pos++;
     408         [ -  + ]:        128 :         if (pos + realm_len > f_end) {
     409                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for NAI Realm "
     410                 :            :                            "(len=%u; left=%u)",
     411                 :          0 :                            realm_len, (unsigned int) (f_end - pos));
     412                 :          0 :                 return NULL;
     413                 :            :         }
     414                 :        128 :         wpa_hexdump_ascii(MSG_DEBUG, "NAI Realm", pos, realm_len);
     415                 :        128 :         r->realm = dup_binstr(pos, realm_len);
     416         [ -  + ]:        128 :         if (r->realm == NULL)
     417                 :          0 :                 return NULL;
     418                 :        128 :         pos += realm_len;
     419                 :            : 
     420         [ -  + ]:        128 :         if (pos + 1 > f_end) {
     421                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for EAP Method Count");
     422                 :          0 :                 return NULL;
     423                 :            :         }
     424                 :        128 :         r->eap_count = *pos++;
     425                 :        128 :         wpa_printf(MSG_DEBUG, "EAP Count: %u", r->eap_count);
     426         [ -  + ]:        128 :         if (pos + r->eap_count * 3 > f_end) {
     427                 :          0 :                 wpa_printf(MSG_DEBUG, "No room for EAP Methods");
     428                 :          0 :                 return NULL;
     429                 :            :         }
     430                 :        128 :         r->eap = os_calloc(r->eap_count, sizeof(struct nai_realm_eap));
     431         [ -  + ]:        128 :         if (r->eap == NULL)
     432                 :          0 :                 return NULL;
     433                 :            : 
     434         [ +  + ]:        256 :         for (e = 0; e < r->eap_count; e++) {
     435                 :        128 :                 pos = nai_realm_parse_eap(&r->eap[e], pos, f_end);
     436         [ -  + ]:        128 :                 if (pos == NULL)
     437                 :          0 :                         return NULL;
     438                 :            :         }
     439                 :            : 
     440                 :        128 :         return f_end;
     441                 :            : }
     442                 :            : 
     443                 :            : 
     444                 :         76 : static struct nai_realm * nai_realm_parse(struct wpabuf *anqp, u16 *count)
     445                 :            : {
     446                 :            :         struct nai_realm *realm;
     447                 :            :         const u8 *pos, *end;
     448                 :            :         u16 i, num;
     449                 :            : 
     450 [ +  - ][ -  + ]:         76 :         if (anqp == NULL || wpabuf_len(anqp) < 2)
     451                 :          0 :                 return NULL;
     452                 :            : 
     453                 :         76 :         pos = wpabuf_head_u8(anqp);
     454                 :         76 :         end = pos + wpabuf_len(anqp);
     455                 :         76 :         num = WPA_GET_LE16(pos);
     456                 :         76 :         wpa_printf(MSG_DEBUG, "NAI Realm Count: %u", num);
     457                 :         76 :         pos += 2;
     458                 :            : 
     459         [ -  + ]:         76 :         if (num * 5 > end - pos) {
     460                 :          0 :                 wpa_printf(MSG_DEBUG, "Invalid NAI Realm Count %u - not "
     461                 :            :                            "enough data (%u octets) for that many realms",
     462                 :          0 :                            num, (unsigned int) (end - pos));
     463                 :          0 :                 return NULL;
     464                 :            :         }
     465                 :            : 
     466                 :         76 :         realm = os_calloc(num, sizeof(struct nai_realm));
     467         [ -  + ]:         76 :         if (realm == NULL)
     468                 :          0 :                 return NULL;
     469                 :            : 
     470         [ +  + ]:        204 :         for (i = 0; i < num; i++) {
     471                 :        128 :                 pos = nai_realm_parse_realm(&realm[i], pos, end);
     472         [ -  + ]:        128 :                 if (pos == NULL) {
     473                 :          0 :                         nai_realm_free(realm, num);
     474                 :          0 :                         return NULL;
     475                 :            :                 }
     476                 :            :         }
     477                 :            : 
     478                 :         76 :         *count = num;
     479                 :         76 :         return realm;
     480                 :            : }
     481                 :            : 
     482                 :            : 
     483                 :         84 : static int nai_realm_match(struct nai_realm *realm, const char *home_realm)
     484                 :            : {
     485                 :            :         char *tmp, *pos, *end;
     486                 :         84 :         int match = 0;
     487                 :            : 
     488 [ +  - ][ -  + ]:         84 :         if (realm->realm == NULL || home_realm == NULL)
     489                 :          0 :                 return 0;
     490                 :            : 
     491         [ +  + ]:         84 :         if (os_strchr(realm->realm, ';') == NULL)
     492                 :         81 :                 return os_strcasecmp(realm->realm, home_realm) == 0;
     493                 :            : 
     494                 :          3 :         tmp = os_strdup(realm->realm);
     495         [ -  + ]:          3 :         if (tmp == NULL)
     496                 :          0 :                 return 0;
     497                 :            : 
     498                 :          3 :         pos = tmp;
     499         [ +  - ]:          6 :         while (*pos) {
     500                 :          6 :                 end = os_strchr(pos, ';');
     501         [ +  - ]:          6 :                 if (end)
     502                 :          6 :                         *end = '\0';
     503         [ +  + ]:          6 :                 if (os_strcasecmp(pos, home_realm) == 0) {
     504                 :          3 :                         match = 1;
     505                 :          3 :                         break;
     506                 :            :                 }
     507         [ -  + ]:          3 :                 if (end == NULL)
     508                 :          0 :                         break;
     509                 :          3 :                 pos = end + 1;
     510                 :            :         }
     511                 :            : 
     512                 :          3 :         os_free(tmp);
     513                 :            : 
     514                 :         84 :         return match;
     515                 :            : }
     516                 :            : 
     517                 :            : 
     518                 :        117 : static int nai_realm_cred_username(struct nai_realm_eap *eap)
     519                 :            : {
     520         [ -  + ]:        117 :         if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
     521                 :          0 :                 return 0; /* method not supported */
     522                 :            : 
     523 [ +  + ][ +  + ]:        117 :         if (eap->method != EAP_TYPE_TTLS && eap->method != EAP_TYPE_PEAP &&
                 [ +  + ]
     524                 :         51 :             eap->method != EAP_TYPE_FAST) {
     525                 :            :                 /* Only tunneled methods with username/password supported */
     526                 :         45 :                 return 0;
     527                 :            :         }
     528                 :            : 
     529 [ +  + ][ +  + ]:         72 :         if (eap->method == EAP_TYPE_PEAP || eap->method == EAP_TYPE_FAST) {
     530   [ +  -  -  + ]:         24 :                 if (eap->inner_method &&
     531                 :         12 :                     eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
     532                 :          0 :                         return 0;
     533   [ -  +  #  # ]:         12 :                 if (!eap->inner_method &&
     534                 :          0 :                     eap_get_name(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2) == NULL)
     535                 :          0 :                         return 0;
     536                 :            :         }
     537                 :            : 
     538         [ +  + ]:         72 :         if (eap->method == EAP_TYPE_TTLS) {
     539 [ +  + ][ -  + ]:         60 :                 if (eap->inner_method == 0 && eap->inner_non_eap == 0)
     540                 :          0 :                         return 1; /* Assume TTLS/MSCHAPv2 is used */
     541   [ +  +  -  + ]:         63 :                 if (eap->inner_method &&
     542                 :          3 :                     eap_get_name(EAP_VENDOR_IETF, eap->inner_method) == NULL)
     543                 :          0 :                         return 0;
     544 [ +  + ][ +  + ]:         60 :                 if (eap->inner_non_eap &&
     545         [ +  + ]:         54 :                     eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_PAP &&
     546         [ +  + ]:         51 :                     eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_CHAP &&
     547         [ -  + ]:         48 :                     eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAP &&
     548                 :         48 :                     eap->inner_non_eap != NAI_REALM_INNER_NON_EAP_MSCHAPV2)
     549                 :          0 :                         return 0;
     550                 :            :         }
     551                 :            : 
     552 [ +  + ][ +  + ]:         72 :         if (eap->inner_method &&
     553         [ -  + ]:          9 :             eap->inner_method != EAP_TYPE_GTC &&
     554                 :          9 :             eap->inner_method != EAP_TYPE_MSCHAPV2)
     555                 :          0 :                 return 0;
     556                 :            : 
     557                 :        117 :         return 1;
     558                 :            : }
     559                 :            : 
     560                 :            : 
     561                 :          3 : static int nai_realm_cred_cert(struct nai_realm_eap *eap)
     562                 :            : {
     563         [ -  + ]:          3 :         if (eap_get_name(EAP_VENDOR_IETF, eap->method) == NULL)
     564                 :          0 :                 return 0; /* method not supported */
     565                 :            : 
     566         [ -  + ]:          3 :         if (eap->method != EAP_TYPE_TLS) {
     567                 :            :                 /* Only EAP-TLS supported for credential authentication */
     568                 :          0 :                 return 0;
     569                 :            :         }
     570                 :            : 
     571                 :          3 :         return 1;
     572                 :            : }
     573                 :            : 
     574                 :            : 
     575                 :         75 : static struct nai_realm_eap * nai_realm_find_eap(struct wpa_cred *cred,
     576                 :            :                                                  struct nai_realm *realm)
     577                 :            : {
     578                 :            :         u8 e;
     579                 :            : 
     580 [ +  - ][ +  - ]:         75 :         if (cred == NULL ||
     581         [ +  - ]:         75 :             cred->username == NULL ||
     582         [ +  + ]:         75 :             cred->username[0] == '\0' ||
     583         [ -  + ]:         72 :             ((cred->password == NULL ||
     584         [ +  - ]:          3 :               cred->password[0] == '\0') &&
     585         [ -  + ]:          3 :              (cred->private_key == NULL ||
     586                 :          3 :               cred->private_key[0] == '\0')))
     587                 :          0 :                 return NULL;
     588                 :            : 
     589         [ +  - ]:        120 :         for (e = 0; e < realm->eap_count; e++) {
     590                 :        120 :                 struct nai_realm_eap *eap = &realm->eap[e];
     591         [ +  + ]:        237 :                 if (cred->password && cred->password[0] &&
           [ +  -  +  + ]
     592                 :        117 :                     nai_realm_cred_username(eap))
     593                 :         72 :                         return eap;
     594         [ +  + ]:         51 :                 if (cred->private_key && cred->private_key[0] &&
           [ +  -  +  - ]
     595                 :          3 :                     nai_realm_cred_cert(eap))
     596                 :          3 :                         return eap;
     597                 :            :         }
     598                 :            : 
     599                 :         75 :         return NULL;
     600                 :            : }
     601                 :            : 
     602                 :            : 
     603                 :            : #ifdef INTERWORKING_3GPP
     604                 :            : 
     605                 :         10 : static int plmn_id_match(struct wpabuf *anqp, const char *imsi, int mnc_len)
     606                 :            : {
     607                 :            :         u8 plmn[3], plmn2[3];
     608                 :            :         const u8 *pos, *end;
     609                 :            :         u8 udhl;
     610                 :            : 
     611                 :            :         /*
     612                 :            :          * See Annex A of 3GPP TS 24.234 v8.1.0 for description. The network
     613                 :            :          * operator is allowed to include only two digits of the MNC, so allow
     614                 :            :          * matches based on both two and three digit MNC assumptions. Since some
     615                 :            :          * SIM/USIM cards may not expose MNC length conveniently, we may be
     616                 :            :          * provided the default MNC length 3 here and as such, checking with MNC
     617                 :            :          * length 2 is justifiable even though 3GPP TS 24.234 does not mention
     618                 :            :          * that case. Anyway, MCC/MNC pair where both 2 and 3 digit MNC is used
     619                 :            :          * with otherwise matching values would not be good idea in general, so
     620                 :            :          * this should not result in selecting incorrect networks.
     621                 :            :          */
     622                 :            :         /* Match with 3 digit MNC */
     623                 :         10 :         plmn[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
     624                 :         10 :         plmn[1] = (imsi[2] - '0') | ((imsi[5] - '0') << 4);
     625                 :         10 :         plmn[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
     626                 :            :         /* Match with 2 digit MNC */
     627                 :         10 :         plmn2[0] = (imsi[0] - '0') | ((imsi[1] - '0') << 4);
     628                 :         10 :         plmn2[1] = (imsi[2] - '0') | 0xf0;
     629                 :         10 :         plmn2[2] = (imsi[3] - '0') | ((imsi[4] - '0') << 4);
     630                 :            : 
     631         [ -  + ]:         10 :         if (anqp == NULL)
     632                 :          0 :                 return 0;
     633                 :         10 :         pos = wpabuf_head_u8(anqp);
     634                 :         10 :         end = pos + wpabuf_len(anqp);
     635         [ -  + ]:         10 :         if (pos + 2 > end)
     636                 :          0 :                 return 0;
     637         [ -  + ]:         10 :         if (*pos != 0) {
     638                 :          0 :                 wpa_printf(MSG_DEBUG, "Unsupported GUD version 0x%x", *pos);
     639                 :          0 :                 return 0;
     640                 :            :         }
     641                 :         10 :         pos++;
     642                 :         10 :         udhl = *pos++;
     643         [ -  + ]:         10 :         if (pos + udhl > end) {
     644                 :          0 :                 wpa_printf(MSG_DEBUG, "Invalid UDHL");
     645                 :          0 :                 return 0;
     646                 :            :         }
     647                 :         10 :         end = pos + udhl;
     648                 :            : 
     649                 :         10 :         wpa_printf(MSG_DEBUG, "Interworking: Matching against MCC/MNC alternatives: %02x:%02x:%02x or %02x:%02x:%02x (IMSI %s, MNC length %d)",
     650                 :         60 :                    plmn[0], plmn[1], plmn[2], plmn2[0], plmn2[1], plmn2[2],
     651                 :            :                    imsi, mnc_len);
     652                 :            : 
     653         [ +  - ]:         10 :         while (pos + 2 <= end) {
     654                 :            :                 u8 iei, len;
     655                 :            :                 const u8 *l_end;
     656                 :         10 :                 iei = *pos++;
     657                 :         10 :                 len = *pos++ & 0x7f;
     658         [ -  + ]:         10 :                 if (pos + len > end)
     659                 :          0 :                         break;
     660                 :         10 :                 l_end = pos + len;
     661                 :            : 
     662 [ +  - ][ +  - ]:         10 :                 if (iei == 0 && len > 0) {
     663                 :            :                         /* PLMN List */
     664                 :            :                         u8 num, i;
     665                 :         10 :                         wpa_hexdump(MSG_DEBUG, "Interworking: PLMN List information element",
     666                 :            :                                     pos, len);
     667                 :         10 :                         num = *pos++;
     668         [ +  - ]:         14 :                         for (i = 0; i < num; i++) {
     669         [ -  + ]:         14 :                                 if (pos + 3 > l_end)
     670                 :          0 :                                         break;
     671 [ +  + ][ +  + ]:         14 :                                 if (os_memcmp(pos, plmn, 3) == 0 ||
     672                 :          8 :                                     os_memcmp(pos, plmn2, 3) == 0)
     673                 :         10 :                                         return 1; /* Found matching PLMN */
     674                 :          4 :                                 pos += 3;
     675                 :            :                         }
     676                 :            :                 } else {
     677                 :          0 :                         wpa_hexdump(MSG_DEBUG, "Interworking: Unrecognized 3GPP information element",
     678                 :            :                                     pos, len);
     679                 :            :                 }
     680                 :            : 
     681                 :          0 :                 pos = l_end;
     682                 :            :         }
     683                 :            : 
     684                 :         10 :         return 0;
     685                 :            : }
     686                 :            : 
     687                 :            : 
     688                 :         15 : static int build_root_nai(char *nai, size_t nai_len, const char *imsi,
     689                 :            :                           size_t mnc_len, char prefix)
     690                 :            : {
     691                 :            :         const char *sep, *msin;
     692                 :            :         char *end, *pos;
     693                 :            :         size_t msin_len, plmn_len;
     694                 :            : 
     695                 :            :         /*
     696                 :            :          * TS 23.003, Clause 14 (3GPP to WLAN Interworking)
     697                 :            :          * Root NAI:
     698                 :            :          * <aka:0|sim:1><IMSI>@wlan.mnc<MNC>.mcc<MCC>.3gppnetwork.org
     699                 :            :          * <MNC> is zero-padded to three digits in case two-digit MNC is used
     700                 :            :          */
     701                 :            : 
     702 [ +  - ][ -  + ]:         15 :         if (imsi == NULL || os_strlen(imsi) > 16) {
     703                 :          0 :                 wpa_printf(MSG_DEBUG, "No valid IMSI available");
     704                 :          0 :                 return -1;
     705                 :            :         }
     706                 :         15 :         sep = os_strchr(imsi, '-');
     707         [ +  - ]:         15 :         if (sep) {
     708                 :         15 :                 plmn_len = sep - imsi;
     709                 :         15 :                 msin = sep + 1;
     710 [ #  # ][ #  # ]:          0 :         } else if (mnc_len && os_strlen(imsi) >= 3 + mnc_len) {
     711                 :          0 :                 plmn_len = 3 + mnc_len;
     712                 :          0 :                 msin = imsi + plmn_len;
     713                 :            :         } else
     714                 :          0 :                 return -1;
     715 [ +  + ][ -  + ]:         15 :         if (plmn_len != 5 && plmn_len != 6)
     716                 :          0 :                 return -1;
     717                 :         15 :         msin_len = os_strlen(msin);
     718                 :            : 
     719                 :         15 :         pos = nai;
     720                 :         15 :         end = nai + nai_len;
     721         [ +  + ]:         15 :         if (prefix)
     722                 :          5 :                 *pos++ = prefix;
     723                 :         15 :         os_memcpy(pos, imsi, plmn_len);
     724                 :         15 :         pos += plmn_len;
     725                 :         15 :         os_memcpy(pos, msin, msin_len);
     726                 :         15 :         pos += msin_len;
     727                 :         15 :         pos += os_snprintf(pos, end - pos, "@wlan.mnc");
     728         [ +  + ]:         15 :         if (plmn_len == 5) {
     729                 :          6 :                 *pos++ = '0';
     730                 :          6 :                 *pos++ = imsi[3];
     731                 :          6 :                 *pos++ = imsi[4];
     732                 :            :         } else {
     733                 :          9 :                 *pos++ = imsi[3];
     734                 :          9 :                 *pos++ = imsi[4];
     735                 :          9 :                 *pos++ = imsi[5];
     736                 :            :         }
     737                 :         45 :         pos += os_snprintf(pos, end - pos, ".mcc%c%c%c.3gppnetwork.org",
     738                 :         45 :                            imsi[0], imsi[1], imsi[2]);
     739                 :            : 
     740                 :         15 :         return 0;
     741                 :            : }
     742                 :            : 
     743                 :            : 
     744                 :          5 : static int set_root_nai(struct wpa_ssid *ssid, const char *imsi, char prefix)
     745                 :            : {
     746                 :            :         char nai[100];
     747         [ -  + ]:          5 :         if (build_root_nai(nai, sizeof(nai), imsi, 0, prefix) < 0)
     748                 :          0 :                 return -1;
     749                 :          5 :         return wpa_config_set_quoted(ssid, "identity", nai);
     750                 :            : }
     751                 :            : 
     752                 :            : #endif /* INTERWORKING_3GPP */
     753                 :            : 
     754                 :            : 
     755                 :         28 : static int already_connected(struct wpa_supplicant *wpa_s,
     756                 :            :                              struct wpa_cred *cred, struct wpa_bss *bss)
     757                 :            : {
     758                 :            :         struct wpa_ssid *ssid;
     759                 :            : 
     760 [ +  + ][ -  + ]:         28 :         if (wpa_s->wpa_state < WPA_ASSOCIATED || wpa_s->current_ssid == NULL)
     761                 :         27 :                 return 0;
     762                 :            : 
     763                 :          1 :         ssid = wpa_s->current_ssid;
     764         [ -  + ]:          1 :         if (ssid->parent_cred != cred)
     765                 :          0 :                 return 0;
     766                 :            : 
     767 [ +  - ][ -  + ]:          1 :         if (ssid->ssid_len != bss->ssid_len ||
     768                 :          1 :             os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
     769                 :          0 :                 return 0;
     770                 :            : 
     771                 :         28 :         return 1;
     772                 :            : }
     773                 :            : 
     774                 :            : 
     775                 :         27 : static void remove_duplicate_network(struct wpa_supplicant *wpa_s,
     776                 :            :                                      struct wpa_cred *cred,
     777                 :            :                                      struct wpa_bss *bss)
     778                 :            : {
     779                 :            :         struct wpa_ssid *ssid;
     780                 :            : 
     781         [ +  + ]:         27 :         for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
     782         [ -  + ]:          1 :                 if (ssid->parent_cred != cred)
     783                 :          0 :                         continue;
     784 [ +  - ][ -  + ]:          1 :                 if (ssid->ssid_len != bss->ssid_len ||
     785                 :          1 :                     os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
     786                 :          0 :                         continue;
     787                 :            : 
     788                 :          1 :                 break;
     789                 :            :         }
     790                 :            : 
     791         [ +  + ]:         27 :         if (ssid == NULL)
     792                 :         27 :                 return;
     793                 :            : 
     794                 :          1 :         wpa_printf(MSG_DEBUG, "Interworking: Remove duplicate network entry for the same credential");
     795                 :            : 
     796         [ -  + ]:          1 :         if (ssid == wpa_s->current_ssid) {
     797                 :          0 :                 wpa_sm_set_config(wpa_s->wpa, NULL);
     798                 :          0 :                 eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
     799                 :          0 :                 wpa_supplicant_deauthenticate(wpa_s,
     800                 :            :                                               WLAN_REASON_DEAUTH_LEAVING);
     801                 :            :         }
     802                 :            : 
     803                 :          1 :         wpas_notify_network_removed(wpa_s, ssid);
     804                 :          1 :         wpa_config_remove_network(wpa_s->conf, ssid->id);
     805                 :            : }
     806                 :            : 
     807                 :            : 
     808                 :         27 : static int interworking_set_hs20_params(struct wpa_supplicant *wpa_s,
     809                 :            :                                         struct wpa_ssid *ssid)
     810                 :            : {
     811 [ -  + ][ -  + ]:         27 :         if (wpa_config_set(ssid, "key_mgmt",
     812                 :         27 :                            wpa_s->conf->pmf != NO_MGMT_FRAME_PROTECTION ?
     813                 :            :                            "WPA-EAP WPA-EAP-SHA256" : "WPA-EAP", 0) < 0)
     814                 :          0 :                 return -1;
     815         [ -  + ]:         27 :         if (wpa_config_set(ssid, "proto", "RSN", 0) < 0)
     816                 :          0 :                 return -1;
     817         [ -  + ]:         27 :         if (wpa_config_set(ssid, "pairwise", "CCMP", 0) < 0)
     818                 :          0 :                 return -1;
     819                 :         27 :         return 0;
     820                 :            : }
     821                 :            : 
     822                 :            : 
     823                 :          5 : static int interworking_connect_3gpp(struct wpa_supplicant *wpa_s,
     824                 :            :                                      struct wpa_cred *cred,
     825                 :            :                                      struct wpa_bss *bss)
     826                 :            : {
     827                 :            : #ifdef INTERWORKING_3GPP
     828                 :            :         struct wpa_ssid *ssid;
     829                 :            :         int eap_type;
     830                 :            :         int res;
     831                 :            :         char prefix;
     832                 :            : 
     833 [ +  - ][ -  + ]:          5 :         if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
     834                 :          0 :                 return -1;
     835                 :            : 
     836                 :          5 :         wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " (3GPP)",
     837                 :         30 :                    MAC2STR(bss->bssid));
     838                 :            : 
     839         [ -  + ]:          5 :         if (already_connected(wpa_s, cred, bss)) {
     840                 :          0 :                 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
     841                 :          0 :                         MAC2STR(bss->bssid));
     842                 :          0 :                 return 0;
     843                 :            :         }
     844                 :            : 
     845                 :          5 :         remove_duplicate_network(wpa_s, cred, bss);
     846                 :            : 
     847                 :          5 :         ssid = wpa_config_add_network(wpa_s->conf);
     848         [ -  + ]:          5 :         if (ssid == NULL)
     849                 :          0 :                 return -1;
     850                 :          5 :         ssid->parent_cred = cred;
     851                 :            : 
     852                 :          5 :         wpas_notify_network_added(wpa_s, ssid);
     853                 :          5 :         wpa_config_set_network_defaults(ssid);
     854                 :          5 :         ssid->priority = cred->priority;
     855                 :          5 :         ssid->temporary = 1;
     856                 :          5 :         ssid->ssid = os_zalloc(bss->ssid_len + 1);
     857         [ -  + ]:          5 :         if (ssid->ssid == NULL)
     858                 :          0 :                 goto fail;
     859                 :          5 :         os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
     860                 :          5 :         ssid->ssid_len = bss->ssid_len;
     861                 :            : 
     862         [ -  + ]:          5 :         if (interworking_set_hs20_params(wpa_s, ssid) < 0)
     863                 :          0 :                 goto fail;
     864                 :            : 
     865                 :          5 :         eap_type = EAP_TYPE_SIM;
     866 [ -  + ][ #  # ]:          5 :         if (cred->pcsc && wpa_s->scard && scard_supports_umts(wpa_s->scard))
                 [ #  # ]
     867                 :          0 :                 eap_type = EAP_TYPE_AKA;
     868 [ +  - ][ +  - ]:          5 :         if (cred->eap_method && cred->eap_method[0].vendor == EAP_VENDOR_IETF) {
     869 [ +  + ][ +  + ]:          5 :                 if (cred->eap_method[0].method == EAP_TYPE_SIM ||
     870         [ +  - ]:          1 :                     cred->eap_method[0].method == EAP_TYPE_AKA ||
     871                 :          1 :                     cred->eap_method[0].method == EAP_TYPE_AKA_PRIME)
     872                 :          5 :                         eap_type = cred->eap_method[0].method;
     873                 :            :         }
     874                 :            : 
     875   [ +  +  +  - ]:          5 :         switch (eap_type) {
     876                 :            :         case EAP_TYPE_SIM:
     877                 :          3 :                 prefix = '1';
     878                 :          3 :                 res = wpa_config_set(ssid, "eap", "SIM", 0);
     879                 :          3 :                 break;
     880                 :            :         case EAP_TYPE_AKA:
     881                 :          1 :                 prefix = '0';
     882                 :          1 :                 res = wpa_config_set(ssid, "eap", "AKA", 0);
     883                 :          1 :                 break;
     884                 :            :         case EAP_TYPE_AKA_PRIME:
     885                 :          1 :                 prefix = '6';
     886                 :          1 :                 res = wpa_config_set(ssid, "eap", "AKA'", 0);
     887                 :          1 :                 break;
     888                 :            :         default:
     889                 :          0 :                 res = -1;
     890                 :          0 :                 break;
     891                 :            :         }
     892         [ -  + ]:          5 :         if (res < 0) {
     893                 :          0 :                 wpa_printf(MSG_DEBUG, "Selected EAP method (%d) not supported",
     894                 :            :                            eap_type);
     895                 :          0 :                 goto fail;
     896                 :            :         }
     897                 :            : 
     898 [ +  - ][ -  + ]:          5 :         if (!cred->pcsc && set_root_nai(ssid, cred->imsi, prefix) < 0) {
     899                 :          0 :                 wpa_printf(MSG_DEBUG, "Failed to set Root NAI");
     900                 :          0 :                 goto fail;
     901                 :            :         }
     902                 :            : 
     903 [ +  + ][ +  - ]:          5 :         if (cred->milenage && cred->milenage[0]) {
     904         [ -  + ]:          3 :                 if (wpa_config_set_quoted(ssid, "password",
     905                 :          3 :                                           cred->milenage) < 0)
     906                 :          0 :                         goto fail;
     907         [ -  + ]:          2 :         } else if (cred->pcsc) {
     908         [ #  # ]:          0 :                 if (wpa_config_set_quoted(ssid, "pcsc", "") < 0)
     909                 :          0 :                         goto fail;
     910   [ #  #  #  # ]:          0 :                 if (wpa_s->conf->pcsc_pin &&
     911                 :          0 :                     wpa_config_set_quoted(ssid, "pin", wpa_s->conf->pcsc_pin)
     912                 :            :                     < 0)
     913                 :          0 :                         goto fail;
     914                 :            :         }
     915                 :            : 
     916         [ -  + ]:          5 :         if (cred->password && cred->password[0] &&
           [ #  #  #  # ]
     917                 :          0 :             wpa_config_set_quoted(ssid, "password", cred->password) < 0)
     918                 :          0 :                 goto fail;
     919                 :            : 
     920                 :          5 :         wpa_config_update_prio_list(wpa_s->conf);
     921                 :          5 :         interworking_reconnect(wpa_s);
     922                 :            : 
     923                 :          5 :         return 0;
     924                 :            : 
     925                 :            : fail:
     926                 :          0 :         wpas_notify_network_removed(wpa_s, ssid);
     927                 :          0 :         wpa_config_remove_network(wpa_s->conf, ssid->id);
     928                 :            : #endif /* INTERWORKING_3GPP */
     929                 :          5 :         return -1;
     930                 :            : }
     931                 :            : 
     932                 :            : 
     933                 :          8 : static int roaming_consortium_element_match(const u8 *ie, const u8 *rc_id,
     934                 :            :                                             size_t rc_len)
     935                 :            : {
     936                 :            :         const u8 *pos, *end;
     937                 :            :         u8 lens;
     938                 :            : 
     939         [ -  + ]:          8 :         if (ie == NULL)
     940                 :          0 :                 return 0;
     941                 :            : 
     942                 :          8 :         pos = ie + 2;
     943                 :          8 :         end = ie + 2 + ie[1];
     944                 :            : 
     945                 :            :         /* Roaming Consortium element:
     946                 :            :          * Number of ANQP OIs
     947                 :            :          * OI #1 and #2 lengths
     948                 :            :          * OI #1, [OI #2], [OI #3]
     949                 :            :          */
     950                 :            : 
     951         [ -  + ]:          8 :         if (pos + 2 > end)
     952                 :          0 :                 return 0;
     953                 :            : 
     954                 :          8 :         pos++; /* skip Number of ANQP OIs */
     955                 :          8 :         lens = *pos++;
     956         [ -  + ]:          8 :         if (pos + (lens & 0x0f) + (lens >> 4) > end)
     957                 :          0 :                 return 0;
     958                 :            : 
     959 [ +  - ][ +  + ]:          8 :         if ((lens & 0x0f) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
     960                 :          4 :                 return 1;
     961                 :          4 :         pos += lens & 0x0f;
     962                 :            : 
     963 [ -  + ][ #  # ]:          4 :         if ((lens >> 4) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
     964                 :          0 :                 return 1;
     965                 :          4 :         pos += lens >> 4;
     966                 :            : 
     967 [ +  + ][ -  + ]:          4 :         if (pos < end && (size_t) (end - pos) == rc_len &&
                 [ #  # ]
     968                 :          0 :             os_memcmp(pos, rc_id, rc_len) == 0)
     969                 :          0 :                 return 1;
     970                 :            : 
     971                 :          8 :         return 0;
     972                 :            : }
     973                 :            : 
     974                 :            : 
     975                 :          4 : static int roaming_consortium_anqp_match(const struct wpabuf *anqp,
     976                 :            :                                          const u8 *rc_id, size_t rc_len)
     977                 :            : {
     978                 :            :         const u8 *pos, *end;
     979                 :            :         u8 len;
     980                 :            : 
     981         [ +  + ]:          4 :         if (anqp == NULL)
     982                 :          1 :                 return 0;
     983                 :            : 
     984                 :          3 :         pos = wpabuf_head(anqp);
     985                 :          3 :         end = pos + wpabuf_len(anqp);
     986                 :            : 
     987                 :            :         /* Set of <OI Length, OI> duples */
     988         [ +  + ]:         13 :         while (pos < end) {
     989                 :         12 :                 len = *pos++;
     990         [ -  + ]:         12 :                 if (pos + len > end)
     991                 :          0 :                         break;
     992 [ +  + ][ +  + ]:         12 :                 if (len == rc_len && os_memcmp(pos, rc_id, rc_len) == 0)
     993                 :          2 :                         return 1;
     994                 :         10 :                 pos += len;
     995                 :            :         }
     996                 :            : 
     997                 :          4 :         return 0;
     998                 :            : }
     999                 :            : 
    1000                 :            : 
    1001                 :          8 : static int roaming_consortium_match(const u8 *ie, const struct wpabuf *anqp,
    1002                 :            :                                     const u8 *rc_id, size_t rc_len)
    1003                 :            : {
    1004   [ +  +  +  + ]:         12 :         return roaming_consortium_element_match(ie, rc_id, rc_len) ||
    1005                 :          4 :                 roaming_consortium_anqp_match(anqp, rc_id, rc_len);
    1006                 :            : }
    1007                 :            : 
    1008                 :            : 
    1009                 :         63 : static int cred_no_required_oi_match(struct wpa_cred *cred, struct wpa_bss *bss)
    1010                 :            : {
    1011                 :            :         const u8 *ie;
    1012                 :            : 
    1013         [ +  + ]:         63 :         if (cred->required_roaming_consortium_len == 0)
    1014                 :         57 :                 return 0;
    1015                 :            : 
    1016                 :          6 :         ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
    1017                 :            : 
    1018 [ -  + ][ #  # ]:          6 :         if (ie == NULL &&
    1019         [ #  # ]:          0 :             (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
    1020                 :          0 :                 return 1;
    1021                 :            : 
    1022         [ +  - ]:         63 :         return !roaming_consortium_match(ie,
    1023                 :          6 :                                          bss->anqp ?
    1024                 :          6 :                                          bss->anqp->roaming_consortium : NULL,
    1025                 :          6 :                                          cred->required_roaming_consortium,
    1026                 :            :                                          cred->required_roaming_consortium_len);
    1027                 :            : }
    1028                 :            : 
    1029                 :            : 
    1030                 :         65 : static int cred_excluded_ssid(struct wpa_cred *cred, struct wpa_bss *bss)
    1031                 :            : {
    1032                 :            :         size_t i;
    1033                 :            : 
    1034         [ +  + ]:         65 :         if (!cred->excluded_ssid)
    1035                 :         59 :                 return 0;
    1036                 :            : 
    1037         [ +  + ]:         10 :         for (i = 0; i < cred->num_excluded_ssid; i++) {
    1038                 :          6 :                 struct excluded_ssid *e = &cred->excluded_ssid[i];
    1039 [ +  + ][ +  - ]:          6 :                 if (bss->ssid_len == e->ssid_len &&
    1040                 :          2 :                     os_memcmp(bss->ssid, e->ssid, e->ssid_len) == 0)
    1041                 :          2 :                         return 1;
    1042                 :            :         }
    1043                 :            : 
    1044                 :         65 :         return 0;
    1045                 :            : }
    1046                 :            : 
    1047                 :            : 
    1048                 :         66 : static struct wpa_cred * interworking_credentials_available_roaming_consortium(
    1049                 :            :         struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
    1050                 :            : {
    1051                 :         66 :         struct wpa_cred *cred, *selected = NULL;
    1052                 :            :         const u8 *ie;
    1053                 :            : 
    1054                 :         66 :         ie = wpa_bss_get_ie(bss, WLAN_EID_ROAMING_CONSORTIUM);
    1055                 :            : 
    1056 [ -  + ][ #  # ]:         66 :         if (ie == NULL &&
    1057         [ #  # ]:          0 :             (bss->anqp == NULL || bss->anqp->roaming_consortium == NULL))
    1058                 :          0 :                 return NULL;
    1059                 :            : 
    1060         [ -  + ]:         66 :         if (wpa_s->conf->cred == NULL)
    1061                 :          0 :                 return NULL;
    1062                 :            : 
    1063         [ +  + ]:        132 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
    1064         [ +  + ]:         66 :                 if (cred->roaming_consortium_len == 0)
    1065                 :         64 :                         continue;
    1066                 :            : 
    1067 [ +  - ][ -  + ]:          2 :                 if (!roaming_consortium_match(ie,
    1068                 :          2 :                                               bss->anqp ?
    1069                 :          2 :                                               bss->anqp->roaming_consortium :
    1070                 :            :                                               NULL,
    1071                 :          2 :                                               cred->roaming_consortium,
    1072                 :            :                                               cred->roaming_consortium_len))
    1073                 :          0 :                         continue;
    1074                 :            : 
    1075         [ -  + ]:          2 :                 if (cred_excluded_ssid(cred, bss))
    1076                 :          0 :                         continue;
    1077         [ -  + ]:          2 :                 if (cred_no_required_oi_match(cred, bss))
    1078                 :          0 :                         continue;
    1079                 :            : 
    1080 [ -  + ][ #  # ]:          2 :                 if (selected == NULL ||
    1081                 :          0 :                     selected->priority < cred->priority)
    1082                 :          2 :                         selected = cred;
    1083                 :            :         }
    1084                 :            : 
    1085                 :         66 :         return selected;
    1086                 :            : }
    1087                 :            : 
    1088                 :            : 
    1089                 :         22 : static int interworking_set_eap_params(struct wpa_ssid *ssid,
    1090                 :            :                                        struct wpa_cred *cred, int ttls)
    1091                 :            : {
    1092         [ +  + ]:         22 :         if (cred->eap_method) {
    1093 [ +  - ][ -  + ]:          1 :                 ttls = cred->eap_method->vendor == EAP_VENDOR_IETF &&
    1094                 :          1 :                         cred->eap_method->method == EAP_TYPE_TTLS;
    1095                 :            : 
    1096                 :          1 :                 os_free(ssid->eap.eap_methods);
    1097                 :          1 :                 ssid->eap.eap_methods =
    1098                 :          1 :                         os_malloc(sizeof(struct eap_method_type) * 2);
    1099         [ -  + ]:          1 :                 if (ssid->eap.eap_methods == NULL)
    1100                 :          0 :                         return -1;
    1101                 :          1 :                 os_memcpy(ssid->eap.eap_methods, cred->eap_method,
    1102                 :            :                           sizeof(*cred->eap_method));
    1103                 :          1 :                 ssid->eap.eap_methods[1].vendor = EAP_VENDOR_IETF;
    1104                 :          1 :                 ssid->eap.eap_methods[1].method = EAP_TYPE_NONE;
    1105                 :            :         }
    1106                 :            : 
    1107 [ +  + ][ +  - ]:         22 :         if (ttls && cred->username && cred->username[0]) {
                 [ +  - ]
    1108                 :            :                 const char *pos;
    1109                 :            :                 char *anon;
    1110                 :            :                 /* Use anonymous NAI in Phase 1 */
    1111                 :         16 :                 pos = os_strchr(cred->username, '@');
    1112         [ -  + ]:         16 :                 if (pos) {
    1113                 :          0 :                         size_t buflen = 9 + os_strlen(pos) + 1;
    1114                 :          0 :                         anon = os_malloc(buflen);
    1115         [ #  # ]:          0 :                         if (anon == NULL)
    1116                 :          0 :                                 return -1;
    1117                 :          0 :                         os_snprintf(anon, buflen, "anonymous%s", pos);
    1118         [ +  - ]:         16 :                 } else if (cred->realm) {
    1119                 :         16 :                         size_t buflen = 10 + os_strlen(cred->realm) + 1;
    1120                 :         16 :                         anon = os_malloc(buflen);
    1121         [ -  + ]:         16 :                         if (anon == NULL)
    1122                 :          0 :                                 return -1;
    1123                 :         16 :                         os_snprintf(anon, buflen, "anonymous@%s", cred->realm);
    1124                 :            :                 } else {
    1125                 :          0 :                         anon = os_strdup("anonymous");
    1126         [ #  # ]:          0 :                         if (anon == NULL)
    1127                 :          0 :                                 return -1;
    1128                 :            :                 }
    1129         [ -  + ]:         16 :                 if (wpa_config_set_quoted(ssid, "anonymous_identity", anon) <
    1130                 :            :                     0) {
    1131                 :          0 :                         os_free(anon);
    1132                 :          0 :                         return -1;
    1133                 :            :                 }
    1134                 :         16 :                 os_free(anon);
    1135                 :            :         }
    1136                 :            : 
    1137         [ +  - ]:         44 :         if (cred->username && cred->username[0] &&
           [ +  -  -  + ]
    1138                 :         22 :             wpa_config_set_quoted(ssid, "identity", cred->username) < 0)
    1139                 :          0 :                 return -1;
    1140                 :            : 
    1141 [ +  + ][ +  - ]:         22 :         if (cred->password && cred->password[0]) {
    1142   [ -  +  #  # ]:         21 :                 if (cred->ext_password &&
    1143                 :          0 :                     wpa_config_set(ssid, "password", cred->password, 0) < 0)
    1144                 :          0 :                         return -1;
    1145   [ +  -  -  + ]:         42 :                 if (!cred->ext_password &&
    1146                 :         21 :                     wpa_config_set_quoted(ssid, "password", cred->password) <
    1147                 :            :                     0)
    1148                 :          0 :                         return -1;
    1149                 :            :         }
    1150                 :            : 
    1151         [ +  + ]:         23 :         if (cred->client_cert && cred->client_cert[0] &&
           [ +  -  -  + ]
    1152                 :          1 :             wpa_config_set_quoted(ssid, "client_cert", cred->client_cert) < 0)
    1153                 :          0 :                 return -1;
    1154                 :            : 
    1155                 :            : #ifdef ANDROID
    1156                 :            :         if (cred->private_key &&
    1157                 :            :             os_strncmp(cred->private_key, "keystore://", 11) == 0) {
    1158                 :            :                 /* Use OpenSSL engine configuration for Android keystore */
    1159                 :            :                 if (wpa_config_set_quoted(ssid, "engine_id", "keystore") < 0 ||
    1160                 :            :                     wpa_config_set_quoted(ssid, "key_id",
    1161                 :            :                                           cred->private_key + 11) < 0 ||
    1162                 :            :                     wpa_config_set(ssid, "engine", "1", 0) < 0)
    1163                 :            :                         return -1;
    1164                 :            :         } else
    1165                 :            : #endif /* ANDROID */
    1166         [ +  + ]:         23 :         if (cred->private_key && cred->private_key[0] &&
           [ +  -  -  + ]
    1167                 :          1 :             wpa_config_set_quoted(ssid, "private_key", cred->private_key) < 0)
    1168                 :          0 :                 return -1;
    1169                 :            : 
    1170         [ -  + ]:         22 :         if (cred->private_key_passwd && cred->private_key_passwd[0] &&
           [ #  #  #  # ]
    1171                 :          0 :             wpa_config_set_quoted(ssid, "private_key_passwd",
    1172                 :          0 :                                   cred->private_key_passwd) < 0)
    1173                 :          0 :                 return -1;
    1174                 :            : 
    1175         [ -  + ]:         22 :         if (cred->phase1) {
    1176                 :          0 :                 os_free(ssid->eap.phase1);
    1177                 :          0 :                 ssid->eap.phase1 = os_strdup(cred->phase1);
    1178                 :            :         }
    1179         [ -  + ]:         22 :         if (cred->phase2) {
    1180                 :          0 :                 os_free(ssid->eap.phase2);
    1181                 :          0 :                 ssid->eap.phase2 = os_strdup(cred->phase2);
    1182                 :            :         }
    1183                 :            : 
    1184         [ +  + ]:         23 :         if (cred->ca_cert && cred->ca_cert[0] &&
           [ +  -  -  + ]
    1185                 :          1 :             wpa_config_set_quoted(ssid, "ca_cert", cred->ca_cert) < 0)
    1186                 :          0 :                 return -1;
    1187                 :            : 
    1188         [ -  + ]:         22 :         if (cred->domain_suffix_match && cred->domain_suffix_match[0] &&
           [ #  #  #  # ]
    1189                 :          0 :             wpa_config_set_quoted(ssid, "domain_suffix_match",
    1190                 :          0 :                                   cred->domain_suffix_match) < 0)
    1191                 :          0 :                 return -1;
    1192                 :            : 
    1193                 :         22 :         return 0;
    1194                 :            : }
    1195                 :            : 
    1196                 :            : 
    1197                 :          1 : static int interworking_connect_roaming_consortium(
    1198                 :            :         struct wpa_supplicant *wpa_s, struct wpa_cred *cred,
    1199                 :            :         struct wpa_bss *bss)
    1200                 :            : {
    1201                 :            :         struct wpa_ssid *ssid;
    1202                 :            : 
    1203                 :          1 :         wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR " based on "
    1204                 :          6 :                    "roaming consortium match", MAC2STR(bss->bssid));
    1205                 :            : 
    1206         [ -  + ]:          1 :         if (already_connected(wpa_s, cred, bss)) {
    1207                 :          0 :                 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
    1208                 :          0 :                         MAC2STR(bss->bssid));
    1209                 :          0 :                 return 0;
    1210                 :            :         }
    1211                 :            : 
    1212                 :          1 :         remove_duplicate_network(wpa_s, cred, bss);
    1213                 :            : 
    1214                 :          1 :         ssid = wpa_config_add_network(wpa_s->conf);
    1215         [ -  + ]:          1 :         if (ssid == NULL)
    1216                 :          0 :                 return -1;
    1217                 :          1 :         ssid->parent_cred = cred;
    1218                 :          1 :         wpas_notify_network_added(wpa_s, ssid);
    1219                 :          1 :         wpa_config_set_network_defaults(ssid);
    1220                 :          1 :         ssid->priority = cred->priority;
    1221                 :          1 :         ssid->temporary = 1;
    1222                 :          1 :         ssid->ssid = os_zalloc(bss->ssid_len + 1);
    1223         [ -  + ]:          1 :         if (ssid->ssid == NULL)
    1224                 :          0 :                 goto fail;
    1225                 :          1 :         os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
    1226                 :          1 :         ssid->ssid_len = bss->ssid_len;
    1227                 :            : 
    1228         [ -  + ]:          1 :         if (interworking_set_hs20_params(wpa_s, ssid) < 0)
    1229                 :          0 :                 goto fail;
    1230                 :            : 
    1231         [ -  + ]:          1 :         if (cred->eap_method == NULL) {
    1232                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: No EAP method set for "
    1233                 :            :                            "credential using roaming consortium");
    1234                 :          0 :                 goto fail;
    1235                 :            :         }
    1236                 :            : 
    1237 [ +  - ][ -  + ]:          1 :         if (interworking_set_eap_params(
                 [ -  + ]
    1238                 :            :                     ssid, cred,
    1239                 :          1 :                     cred->eap_method->vendor == EAP_VENDOR_IETF &&
    1240                 :          1 :                     cred->eap_method->method == EAP_TYPE_TTLS) < 0)
    1241                 :          0 :                 goto fail;
    1242                 :            : 
    1243                 :          1 :         wpa_config_update_prio_list(wpa_s->conf);
    1244                 :          1 :         interworking_reconnect(wpa_s);
    1245                 :            : 
    1246                 :          1 :         return 0;
    1247                 :            : 
    1248                 :            : fail:
    1249                 :          0 :         wpas_notify_network_removed(wpa_s, ssid);
    1250                 :          0 :         wpa_config_remove_network(wpa_s->conf, ssid->id);
    1251                 :          1 :         return -1;
    1252                 :            : }
    1253                 :            : 
    1254                 :            : 
    1255                 :         29 : int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
    1256                 :            : {
    1257                 :            :         struct wpa_cred *cred, *cred_rc, *cred_3gpp;
    1258                 :            :         struct wpa_ssid *ssid;
    1259                 :            :         struct nai_realm *realm;
    1260                 :         29 :         struct nai_realm_eap *eap = NULL;
    1261                 :            :         u16 count, i;
    1262                 :            :         char buf[100];
    1263                 :            : 
    1264 [ +  - ][ -  + ]:         29 :         if (wpa_s->conf->cred == NULL || bss == NULL)
    1265                 :          0 :                 return -1;
    1266   [ +  +  -  + ]:         57 :         if (disallowed_bssid(wpa_s, bss->bssid) ||
    1267                 :         28 :             disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
    1268                 :          1 :                 wpa_printf(MSG_DEBUG, "Interworking: Reject connection to disallowed BSS "
    1269                 :          6 :                            MACSTR, MAC2STR(bss->bssid));
    1270                 :          1 :                 return -1;
    1271                 :            :         }
    1272                 :            : 
    1273         [ -  + ]:         28 :         if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
    1274                 :            :                 /*
    1275                 :            :                  * We currently support only HS 2.0 networks and those are
    1276                 :            :                  * required to use WPA2-Enterprise.
    1277                 :            :                  */
    1278                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: Network does not use "
    1279                 :            :                            "RSN");
    1280                 :          0 :                 return -1;
    1281                 :            :         }
    1282                 :            : 
    1283                 :         28 :         cred_rc = interworking_credentials_available_roaming_consortium(wpa_s,
    1284                 :            :                                                                         bss);
    1285         [ +  + ]:         28 :         if (cred_rc) {
    1286                 :          1 :                 wpa_printf(MSG_DEBUG, "Interworking: Highest roaming "
    1287                 :            :                            "consortium matching credential priority %d",
    1288                 :            :                            cred_rc->priority);
    1289                 :            :         }
    1290                 :            : 
    1291                 :         28 :         cred = interworking_credentials_available_realm(wpa_s, bss);
    1292         [ +  + ]:         28 :         if (cred) {
    1293                 :         22 :                 wpa_printf(MSG_DEBUG, "Interworking: Highest NAI Realm list "
    1294                 :            :                            "matching credential priority %d",
    1295                 :            :                            cred->priority);
    1296                 :            :         }
    1297                 :            : 
    1298                 :         28 :         cred_3gpp = interworking_credentials_available_3gpp(wpa_s, bss);
    1299         [ +  + ]:         28 :         if (cred_3gpp) {
    1300                 :          5 :                 wpa_printf(MSG_DEBUG, "Interworking: Highest 3GPP matching "
    1301                 :            :                            "credential priority %d", cred_3gpp->priority);
    1302                 :            :         }
    1303                 :            : 
    1304 [ +  + ][ -  + ]:         28 :         if (cred_rc &&
    1305 [ #  # ][ -  + ]:          1 :             (cred == NULL || cred_rc->priority >= cred->priority) &&
    1306         [ #  # ]:          0 :             (cred_3gpp == NULL || cred_rc->priority >= cred_3gpp->priority))
    1307                 :          1 :                 return interworking_connect_roaming_consortium(wpa_s, cred_rc,
    1308                 :            :                                                                bss);
    1309                 :            : 
    1310 [ +  + ][ -  + ]:         27 :         if (cred_3gpp &&
    1311         [ #  # ]:          0 :             (cred == NULL || cred_3gpp->priority >= cred->priority)) {
    1312                 :          5 :                 return interworking_connect_3gpp(wpa_s, cred_3gpp, bss);
    1313                 :            :         }
    1314                 :            : 
    1315         [ -  + ]:         22 :         if (cred == NULL) {
    1316                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
    1317                 :          0 :                            "found for " MACSTR, MAC2STR(bss->bssid));
    1318                 :          0 :                 return -1;
    1319                 :            :         }
    1320                 :            : 
    1321         [ +  - ]:         22 :         realm = nai_realm_parse(bss->anqp ? bss->anqp->nai_realm : NULL,
    1322                 :            :                                 &count);
    1323         [ -  + ]:         22 :         if (realm == NULL) {
    1324                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
    1325                 :          0 :                            "Realm list from " MACSTR, MAC2STR(bss->bssid));
    1326                 :          0 :                 return -1;
    1327                 :            :         }
    1328                 :            : 
    1329         [ +  - ]:         23 :         for (i = 0; i < count; i++) {
    1330         [ +  + ]:         23 :                 if (!nai_realm_match(&realm[i], cred->realm))
    1331                 :          1 :                         continue;
    1332                 :         22 :                 eap = nai_realm_find_eap(cred, &realm[i]);
    1333         [ +  - ]:         22 :                 if (eap)
    1334                 :         22 :                         break;
    1335                 :            :         }
    1336                 :            : 
    1337         [ -  + ]:         22 :         if (!eap) {
    1338                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: No matching credentials "
    1339                 :            :                            "and EAP method found for " MACSTR,
    1340                 :          0 :                            MAC2STR(bss->bssid));
    1341                 :          0 :                 nai_realm_free(realm, count);
    1342                 :          0 :                 return -1;
    1343                 :            :         }
    1344                 :            : 
    1345                 :         22 :         wpa_printf(MSG_DEBUG, "Interworking: Connect with " MACSTR,
    1346                 :        132 :                    MAC2STR(bss->bssid));
    1347                 :            : 
    1348         [ +  + ]:         22 :         if (already_connected(wpa_s, cred, bss)) {
    1349                 :          1 :                 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_ALREADY_CONNECTED MACSTR,
    1350                 :          6 :                         MAC2STR(bss->bssid));
    1351                 :          1 :                 nai_realm_free(realm, count);
    1352                 :          1 :                 return 0;
    1353                 :            :         }
    1354                 :            : 
    1355                 :         21 :         remove_duplicate_network(wpa_s, cred, bss);
    1356                 :            : 
    1357                 :         21 :         ssid = wpa_config_add_network(wpa_s->conf);
    1358         [ -  + ]:         21 :         if (ssid == NULL) {
    1359                 :          0 :                 nai_realm_free(realm, count);
    1360                 :          0 :                 return -1;
    1361                 :            :         }
    1362                 :         21 :         ssid->parent_cred = cred;
    1363                 :         21 :         wpas_notify_network_added(wpa_s, ssid);
    1364                 :         21 :         wpa_config_set_network_defaults(ssid);
    1365                 :         21 :         ssid->priority = cred->priority;
    1366                 :         21 :         ssid->temporary = 1;
    1367                 :         21 :         ssid->ssid = os_zalloc(bss->ssid_len + 1);
    1368         [ -  + ]:         21 :         if (ssid->ssid == NULL)
    1369                 :          0 :                 goto fail;
    1370                 :         21 :         os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
    1371                 :         21 :         ssid->ssid_len = bss->ssid_len;
    1372                 :            : 
    1373         [ -  + ]:         21 :         if (interworking_set_hs20_params(wpa_s, ssid) < 0)
    1374                 :          0 :                 goto fail;
    1375                 :            : 
    1376         [ -  + ]:         21 :         if (wpa_config_set(ssid, "eap", eap_get_name(EAP_VENDOR_IETF,
    1377                 :         21 :                                                      eap->method), 0) < 0)
    1378                 :          0 :                 goto fail;
    1379                 :            : 
    1380   [ +  +  +  - ]:         21 :         switch (eap->method) {
    1381                 :            :         case EAP_TYPE_TTLS:
    1382         [ +  + ]:         16 :                 if (eap->inner_method) {
    1383                 :          1 :                         os_snprintf(buf, sizeof(buf), "\"autheap=%s\"",
    1384                 :            :                                     eap_get_name(EAP_VENDOR_IETF,
    1385                 :          1 :                                                  eap->inner_method));
    1386         [ -  + ]:          1 :                         if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
    1387                 :          0 :                                 goto fail;
    1388                 :          1 :                         break;
    1389                 :            :                 }
    1390   [ +  +  +  +  :         15 :                 switch (eap->inner_non_eap) {
                      - ]
    1391                 :            :                 case NAI_REALM_INNER_NON_EAP_PAP:
    1392         [ -  + ]:          1 :                         if (wpa_config_set(ssid, "phase2", "\"auth=PAP\"", 0) <
    1393                 :            :                             0)
    1394                 :          0 :                                 goto fail;
    1395                 :          1 :                         break;
    1396                 :            :                 case NAI_REALM_INNER_NON_EAP_CHAP:
    1397         [ -  + ]:          1 :                         if (wpa_config_set(ssid, "phase2", "\"auth=CHAP\"", 0)
    1398                 :            :                             < 0)
    1399                 :          0 :                                 goto fail;
    1400                 :          1 :                         break;
    1401                 :            :                 case NAI_REALM_INNER_NON_EAP_MSCHAP:
    1402         [ -  + ]:          1 :                         if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAP\"",
    1403                 :            :                                            0) < 0)
    1404                 :          0 :                                 goto fail;
    1405                 :          1 :                         break;
    1406                 :            :                 case NAI_REALM_INNER_NON_EAP_MSCHAPV2:
    1407         [ -  + ]:         12 :                         if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
    1408                 :            :                                            0) < 0)
    1409                 :          0 :                                 goto fail;
    1410                 :         12 :                         break;
    1411                 :            :                 default:
    1412                 :            :                         /* EAP params were not set - assume TTLS/MSCHAPv2 */
    1413         [ #  # ]:          0 :                         if (wpa_config_set(ssid, "phase2", "\"auth=MSCHAPV2\"",
    1414                 :            :                                            0) < 0)
    1415                 :          0 :                                 goto fail;
    1416                 :          0 :                         break;
    1417                 :            :                 }
    1418                 :         15 :                 break;
    1419                 :            :         case EAP_TYPE_PEAP:
    1420                 :            :         case EAP_TYPE_FAST:
    1421         [ -  + ]:          4 :                 if (wpa_config_set(ssid, "phase1", "\"fast_provisioning=2\"",
    1422                 :            :                                    0) < 0)
    1423                 :          0 :                         goto fail;
    1424         [ -  + ]:          4 :                 if (wpa_config_set(ssid, "pac_file",
    1425                 :            :                                    "\"blob://pac_interworking\"", 0) < 0)
    1426                 :          0 :                         goto fail;
    1427         [ +  - ]:          4 :                 os_snprintf(buf, sizeof(buf), "\"auth=%s\"",
    1428                 :            :                             eap_get_name(EAP_VENDOR_IETF,
    1429                 :          4 :                                          eap->inner_method ?
    1430                 :          4 :                                          eap->inner_method :
    1431                 :            :                                          EAP_TYPE_MSCHAPV2));
    1432         [ -  + ]:          4 :                 if (wpa_config_set(ssid, "phase2", buf, 0) < 0)
    1433                 :          0 :                         goto fail;
    1434                 :          4 :                 break;
    1435                 :            :         case EAP_TYPE_TLS:
    1436                 :          1 :                 break;
    1437                 :            :         }
    1438                 :            : 
    1439         [ -  + ]:         21 :         if (interworking_set_eap_params(ssid, cred,
    1440                 :         21 :                                         eap->method == EAP_TYPE_TTLS) < 0)
    1441                 :          0 :                 goto fail;
    1442                 :            : 
    1443                 :         21 :         nai_realm_free(realm, count);
    1444                 :            : 
    1445                 :         21 :         wpa_config_update_prio_list(wpa_s->conf);
    1446                 :         21 :         interworking_reconnect(wpa_s);
    1447                 :            : 
    1448                 :         21 :         return 0;
    1449                 :            : 
    1450                 :            : fail:
    1451                 :          0 :         wpas_notify_network_removed(wpa_s, ssid);
    1452                 :          0 :         wpa_config_remove_network(wpa_s->conf, ssid->id);
    1453                 :          0 :         nai_realm_free(realm, count);
    1454                 :         29 :         return -1;
    1455                 :            : }
    1456                 :            : 
    1457                 :            : 
    1458                 :         66 : static struct wpa_cred * interworking_credentials_available_3gpp(
    1459                 :            :         struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
    1460                 :            : {
    1461                 :         66 :         struct wpa_cred *selected = NULL;
    1462                 :            : #ifdef INTERWORKING_3GPP
    1463                 :            :         struct wpa_cred *cred;
    1464                 :            :         int ret;
    1465                 :            : 
    1466 [ +  - ][ +  + ]:         66 :         if (bss->anqp == NULL || bss->anqp->anqp_3gpp == NULL)
    1467                 :         56 :                 return NULL;
    1468                 :            : 
    1469                 :            : #ifdef CONFIG_EAP_PROXY
    1470                 :            :         if (!wpa_s->imsi[0]) {
    1471                 :            :                 size_t len;
    1472                 :            :                 wpa_printf(MSG_DEBUG, "Interworking: IMSI not available - try to read again through eap_proxy");
    1473                 :            :                 wpa_s->mnc_len = eapol_sm_get_eap_proxy_imsi(wpa_s->eapol,
    1474                 :            :                                                              wpa_s->imsi,
    1475                 :            :                                                              &len);
    1476                 :            :                 if (wpa_s->mnc_len > 0) {
    1477                 :            :                         wpa_s->imsi[len] = '\0';
    1478                 :            :                         wpa_printf(MSG_DEBUG, "eap_proxy: IMSI %s (MNC length %d)",
    1479                 :            :                                    wpa_s->imsi, wpa_s->mnc_len);
    1480                 :            :                 } else {
    1481                 :            :                         wpa_printf(MSG_DEBUG, "eap_proxy: IMSI not available");
    1482                 :            :                 }
    1483                 :            :         }
    1484                 :            : #endif /* CONFIG_EAP_PROXY */
    1485                 :            : 
    1486         [ +  + ]:         20 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
    1487                 :            :                 char *sep;
    1488                 :            :                 const char *imsi;
    1489                 :            :                 int mnc_len;
    1490                 :            :                 char imsi_buf[16];
    1491                 :            :                 size_t msin_len;
    1492                 :            : 
    1493                 :            : #ifdef PCSC_FUNCS
    1494 [ -  + ][ #  # ]:         10 :                 if (cred->pcsc && wpa_s->conf->pcsc_reader && wpa_s->scard &&
         [ #  # ][ #  # ]
    1495                 :          0 :                     wpa_s->imsi[0]) {
    1496                 :          0 :                         imsi = wpa_s->imsi;
    1497                 :          0 :                         mnc_len = wpa_s->mnc_len;
    1498                 :          0 :                         goto compare;
    1499                 :            :                 }
    1500                 :            : #endif /* PCSC_FUNCS */
    1501                 :            : #ifdef CONFIG_EAP_PROXY
    1502                 :            :                 if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
    1503                 :            :                         imsi = wpa_s->imsi;
    1504                 :            :                         mnc_len = wpa_s->mnc_len;
    1505                 :            :                         goto compare;
    1506                 :            :                 }
    1507                 :            : #endif /* CONFIG_EAP_PROXY */
    1508                 :            : 
    1509 [ +  - ][ +  - ]:         10 :                 if (cred->imsi == NULL || !cred->imsi[0] ||
                 [ +  + ]
    1510         [ +  - ]:          6 :                     (!wpa_s->conf->external_sim &&
    1511         [ -  + ]:          6 :                      (cred->milenage == NULL || !cred->milenage[0])))
    1512                 :          0 :                         continue;
    1513                 :            : 
    1514                 :         10 :                 sep = os_strchr(cred->imsi, '-');
    1515 [ +  - ][ +  + ]:         10 :                 if (sep == NULL ||
    1516         [ -  + ]:          6 :                     (sep - cred->imsi != 5 && sep - cred->imsi != 6))
    1517                 :          0 :                         continue;
    1518                 :         10 :                 mnc_len = sep - cred->imsi - 3;
    1519                 :         10 :                 os_memcpy(imsi_buf, cred->imsi, 3 + mnc_len);
    1520                 :         10 :                 sep++;
    1521                 :         10 :                 msin_len = os_strlen(cred->imsi);
    1522         [ +  - ]:         10 :                 if (3 + mnc_len + msin_len >= sizeof(imsi_buf) - 1)
    1523                 :         10 :                         msin_len = sizeof(imsi_buf) - 3 - mnc_len - 1;
    1524                 :         10 :                 os_memcpy(&imsi_buf[3 + mnc_len], sep, msin_len);
    1525                 :         10 :                 imsi_buf[3 + mnc_len + msin_len] = '\0';
    1526                 :         10 :                 imsi = imsi_buf;
    1527                 :            : 
    1528                 :            : #if defined(PCSC_FUNCS) || defined(CONFIG_EAP_PROXY)
    1529                 :            :         compare:
    1530                 :            : #endif /* PCSC_FUNCS || CONFIG_EAP_PROXY */
    1531                 :         10 :                 wpa_printf(MSG_DEBUG, "Interworking: Parsing 3GPP info from "
    1532                 :         60 :                            MACSTR, MAC2STR(bss->bssid));
    1533                 :         10 :                 ret = plmn_id_match(bss->anqp->anqp_3gpp, imsi, mnc_len);
    1534         [ +  - ]:         10 :                 wpa_printf(MSG_DEBUG, "PLMN match %sfound", ret ? "" : "not ");
    1535         [ +  - ]:         10 :                 if (ret) {
    1536         [ -  + ]:         10 :                         if (cred_excluded_ssid(cred, bss))
    1537                 :          0 :                                 continue;
    1538         [ -  + ]:         10 :                         if (cred_no_required_oi_match(cred, bss))
    1539                 :          0 :                                 continue;
    1540 [ -  + ][ #  # ]:         10 :                         if (selected == NULL ||
    1541                 :          0 :                             selected->priority < cred->priority)
    1542                 :         10 :                                 selected = cred;
    1543                 :            :                 }
    1544                 :            :         }
    1545                 :            : #endif /* INTERWORKING_3GPP */
    1546                 :         66 :         return selected;
    1547                 :            : }
    1548                 :            : 
    1549                 :            : 
    1550                 :         66 : static struct wpa_cred * interworking_credentials_available_realm(
    1551                 :            :         struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
    1552                 :            : {
    1553                 :         66 :         struct wpa_cred *cred, *selected = NULL;
    1554                 :            :         struct nai_realm *realm;
    1555                 :            :         u16 count, i;
    1556                 :            : 
    1557 [ +  - ][ +  + ]:         66 :         if (bss->anqp == NULL || bss->anqp->nai_realm == NULL)
    1558                 :         12 :                 return NULL;
    1559                 :            : 
    1560         [ -  + ]:         54 :         if (wpa_s->conf->cred == NULL)
    1561                 :          0 :                 return NULL;
    1562                 :            : 
    1563                 :         54 :         wpa_printf(MSG_DEBUG, "Interworking: Parsing NAI Realm list from "
    1564                 :        324 :                    MACSTR, MAC2STR(bss->bssid));
    1565                 :         54 :         realm = nai_realm_parse(bss->anqp->nai_realm, &count);
    1566         [ -  + ]:         54 :         if (realm == NULL) {
    1567                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: Could not parse NAI "
    1568                 :          0 :                            "Realm list from " MACSTR, MAC2STR(bss->bssid));
    1569                 :          0 :                 return NULL;
    1570                 :            :         }
    1571                 :            : 
    1572         [ +  + ]:        108 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
    1573         [ -  + ]:         54 :                 if (cred->realm == NULL)
    1574                 :          0 :                         continue;
    1575                 :            : 
    1576         [ +  + ]:         66 :                 for (i = 0; i < count; i++) {
    1577         [ +  + ]:         61 :                         if (!nai_realm_match(&realm[i], cred->realm))
    1578                 :          8 :                                 continue;
    1579         [ +  - ]:         53 :                         if (nai_realm_find_eap(cred, &realm[i])) {
    1580         [ +  + ]:         53 :                                 if (cred_excluded_ssid(cred, bss))
    1581                 :          2 :                                         continue;
    1582         [ +  + ]:         51 :                                 if (cred_no_required_oi_match(cred, bss))
    1583                 :          2 :                                         continue;
    1584 [ -  + ][ #  # ]:         49 :                                 if (selected == NULL ||
    1585                 :          0 :                                     selected->priority < cred->priority)
    1586                 :         49 :                                         selected = cred;
    1587                 :         49 :                                 break;
    1588                 :            :                         }
    1589                 :            :                 }
    1590                 :            :         }
    1591                 :            : 
    1592                 :         54 :         nai_realm_free(realm, count);
    1593                 :            : 
    1594                 :         66 :         return selected;
    1595                 :            : }
    1596                 :            : 
    1597                 :            : 
    1598                 :         40 : static struct wpa_cred * interworking_credentials_available(
    1599                 :            :         struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
    1600                 :            : {
    1601                 :            :         struct wpa_cred *cred, *cred2;
    1602                 :            : 
    1603   [ +  +  +  + ]:         79 :         if (disallowed_bssid(wpa_s, bss->bssid) ||
    1604                 :         39 :             disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len)) {
    1605                 :          2 :                 wpa_printf(MSG_DEBUG, "Interworking: Ignore disallowed BSS "
    1606                 :         12 :                            MACSTR, MAC2STR(bss->bssid));
    1607                 :          2 :                 return NULL;
    1608                 :            :         }
    1609                 :            : 
    1610                 :         38 :         cred = interworking_credentials_available_realm(wpa_s, bss);
    1611                 :         38 :         cred2 = interworking_credentials_available_3gpp(wpa_s, bss);
    1612 [ +  + ][ -  + ]:         38 :         if (cred && cred2 && cred2->priority >= cred->priority)
                 [ #  # ]
    1613                 :          0 :                 cred = cred2;
    1614         [ +  + ]:         38 :         if (!cred)
    1615                 :         11 :                 cred = cred2;
    1616                 :            : 
    1617                 :         38 :         cred2 = interworking_credentials_available_roaming_consortium(wpa_s,
    1618                 :            :                                                                       bss);
    1619 [ +  + ][ -  + ]:         38 :         if (cred && cred2 && cred2->priority >= cred->priority)
                 [ #  # ]
    1620                 :          0 :                 cred = cred2;
    1621         [ +  + ]:         38 :         if (!cred)
    1622                 :          6 :                 cred = cred2;
    1623                 :            : 
    1624                 :         40 :         return cred;
    1625                 :            : }
    1626                 :            : 
    1627                 :            : 
    1628                 :         28 : static int domain_name_list_contains(struct wpabuf *domain_names,
    1629                 :            :                                      const char *domain)
    1630                 :            : {
    1631                 :            :         const u8 *pos, *end;
    1632                 :            :         size_t len;
    1633                 :            : 
    1634                 :         28 :         len = os_strlen(domain);
    1635                 :         28 :         pos = wpabuf_head(domain_names);
    1636                 :         28 :         end = pos + wpabuf_len(domain_names);
    1637                 :            : 
    1638         [ +  + ]:         34 :         while (pos + 1 < end) {
    1639         [ -  + ]:         29 :                 if (pos + 1 + pos[0] > end)
    1640                 :          0 :                         break;
    1641                 :            : 
    1642                 :         29 :                 wpa_hexdump_ascii(MSG_DEBUG, "Interworking: AP domain name",
    1643                 :         29 :                                   pos + 1, pos[0]);
    1644 [ +  + ][ +  + ]:         29 :                 if (pos[0] == len &&
    1645                 :         25 :                     os_strncasecmp(domain, (const char *) (pos + 1), len) == 0)
    1646                 :         23 :                         return 1;
    1647                 :            : 
    1648                 :          6 :                 pos += 1 + pos[0];
    1649                 :            :         }
    1650                 :            : 
    1651                 :         28 :         return 0;
    1652                 :            : }
    1653                 :            : 
    1654                 :            : 
    1655                 :         34 : int interworking_home_sp_cred(struct wpa_supplicant *wpa_s,
    1656                 :            :                               struct wpa_cred *cred,
    1657                 :            :                               struct wpabuf *domain_names)
    1658                 :            : {
    1659                 :            :         size_t i;
    1660                 :         34 :         int ret = -1;
    1661                 :            : #ifdef INTERWORKING_3GPP
    1662                 :            :         char nai[100], *realm;
    1663                 :            : 
    1664                 :         34 :         char *imsi = NULL;
    1665                 :         34 :         int mnc_len = 0;
    1666         [ +  + ]:         34 :         if (cred->imsi)
    1667                 :         10 :                 imsi = cred->imsi;
    1668                 :            : #ifdef CONFIG_PCSC
    1669                 :            :         else if (cred->pcsc && wpa_s->conf->pcsc_reader &&
    1670                 :            :                  wpa_s->scard && wpa_s->imsi[0]) {
    1671                 :            :                 imsi = wpa_s->imsi;
    1672                 :            :                 mnc_len = wpa_s->mnc_len;
    1673                 :            :         }
    1674                 :            : #endif /* CONFIG_PCSC */
    1675                 :            : #ifdef CONFIG_EAP_PROXY
    1676                 :            :         else if (cred->pcsc && wpa_s->mnc_len > 0 && wpa_s->imsi[0]) {
    1677                 :            :                 imsi = wpa_s->imsi;
    1678                 :            :                 mnc_len = wpa_s->mnc_len;
    1679                 :            :         }
    1680                 :            : #endif /* CONFIG_EAP_PROXY */
    1681 [ +  + ][ +  + ]:         34 :         if (domain_names &&
    1682         [ +  - ]:         10 :             imsi && build_root_nai(nai, sizeof(nai), imsi, mnc_len, 0) == 0) {
    1683                 :         10 :                 realm = os_strchr(nai, '@');
    1684         [ +  - ]:         10 :                 if (realm)
    1685                 :         10 :                         realm++;
    1686                 :         10 :                 wpa_printf(MSG_DEBUG, "Interworking: Search for match "
    1687                 :            :                            "with SIM/USIM domain %s", realm);
    1688   [ +  -  +  + ]:         20 :                 if (realm &&
    1689                 :         10 :                     domain_name_list_contains(domain_names, realm))
    1690                 :          8 :                         return 1;
    1691         [ +  - ]:          2 :                 if (realm)
    1692                 :          2 :                         ret = 0;
    1693                 :            :         }
    1694                 :            : #endif /* INTERWORKING_3GPP */
    1695                 :            : 
    1696 [ +  + ][ +  + ]:         26 :         if (domain_names == NULL || cred->domain == NULL)
    1697                 :          8 :                 return ret;
    1698                 :            : 
    1699         [ +  + ]:         21 :         for (i = 0; i < cred->num_domain; i++) {
    1700                 :         18 :                 wpa_printf(MSG_DEBUG, "Interworking: Search for match with "
    1701                 :         18 :                            "home SP FQDN %s", cred->domain[i]);
    1702         [ +  + ]:         18 :                 if (domain_name_list_contains(domain_names, cred->domain[i]))
    1703                 :         15 :                         return 1;
    1704                 :            :         }
    1705                 :            : 
    1706                 :         34 :         return 0;
    1707                 :            : }
    1708                 :            : 
    1709                 :            : 
    1710                 :         33 : static int interworking_home_sp(struct wpa_supplicant *wpa_s,
    1711                 :            :                                 struct wpabuf *domain_names)
    1712                 :            : {
    1713                 :            :         struct wpa_cred *cred;
    1714                 :            : 
    1715 [ +  + ][ -  + ]:         33 :         if (domain_names == NULL || wpa_s->conf->cred == NULL)
    1716                 :         14 :                 return -1;
    1717                 :            : 
    1718         [ +  + ]:         22 :         for (cred = wpa_s->conf->cred; cred; cred = cred->next) {
    1719                 :         19 :                 int res = interworking_home_sp_cred(wpa_s, cred, domain_names);
    1720         [ +  + ]:         19 :                 if (res)
    1721                 :         16 :                         return res;
    1722                 :            :         }
    1723                 :            : 
    1724                 :         33 :         return 0;
    1725                 :            : }
    1726                 :            : 
    1727                 :            : 
    1728                 :          3 : static int interworking_find_network_match(struct wpa_supplicant *wpa_s)
    1729                 :            : {
    1730                 :            :         struct wpa_bss *bss;
    1731                 :            :         struct wpa_ssid *ssid;
    1732                 :            : 
    1733         [ +  + ]:          6 :         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
    1734         [ -  + ]:          3 :                 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
    1735 [ #  # ][ #  # ]:          0 :                         if (wpas_network_disabled(wpa_s, ssid) ||
    1736                 :          0 :                             ssid->mode != WPAS_MODE_INFRA)
    1737                 :          0 :                                 continue;
    1738 [ #  # ][ #  # ]:          0 :                         if (ssid->ssid_len != bss->ssid_len ||
    1739                 :          0 :                             os_memcmp(ssid->ssid, bss->ssid, ssid->ssid_len) !=
    1740                 :            :                             0)
    1741                 :          0 :                                 continue;
    1742                 :            :                         /*
    1743                 :            :                          * TODO: Consider more accurate matching of security
    1744                 :            :                          * configuration similarly to what is done in events.c
    1745                 :            :                          */
    1746                 :          0 :                         return 1;
    1747                 :            :                 }
    1748                 :            :         }
    1749                 :            : 
    1750                 :          3 :         return 0;
    1751                 :            : }
    1752                 :            : 
    1753                 :            : 
    1754                 :         35 : static void interworking_select_network(struct wpa_supplicant *wpa_s)
    1755                 :            : {
    1756                 :         35 :         struct wpa_bss *bss, *selected = NULL, *selected_home = NULL;
    1757                 :         35 :         int selected_prio = -999999, selected_home_prio = -999999;
    1758                 :         35 :         unsigned int count = 0;
    1759                 :            :         const char *type;
    1760                 :            :         int res;
    1761                 :            :         struct wpa_cred *cred;
    1762                 :            : 
    1763                 :         35 :         wpa_s->network_select = 0;
    1764                 :            : 
    1765         [ +  + ]:         75 :         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
    1766                 :         40 :                 cred = interworking_credentials_available(wpa_s, bss);
    1767         [ +  + ]:         40 :                 if (!cred)
    1768                 :          7 :                         continue;
    1769         [ -  + ]:         33 :                 if (!wpa_bss_get_ie(bss, WLAN_EID_RSN)) {
    1770                 :            :                         /*
    1771                 :            :                          * We currently support only HS 2.0 networks and those
    1772                 :            :                          * are required to use WPA2-Enterprise.
    1773                 :            :                          */
    1774                 :          0 :                         wpa_printf(MSG_DEBUG, "Interworking: Credential match "
    1775                 :            :                                    "with " MACSTR " but network does not use "
    1776                 :          0 :                                    "RSN", MAC2STR(bss->bssid));
    1777                 :          0 :                         continue;
    1778                 :            :                 }
    1779                 :         33 :                 count++;
    1780         [ +  - ]:         33 :                 res = interworking_home_sp(wpa_s, bss->anqp ?
    1781                 :         33 :                                            bss->anqp->domain_name : NULL);
    1782         [ +  + ]:         33 :                 if (res > 0)
    1783                 :         16 :                         type = "home";
    1784         [ +  + ]:         17 :                 else if (res == 0)
    1785                 :          3 :                         type = "roaming";
    1786                 :            :                 else
    1787                 :         14 :                         type = "unknown";
    1788                 :         33 :                 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_AP MACSTR " type=%s",
    1789                 :        198 :                         MAC2STR(bss->bssid), type);
    1790 [ +  + ][ -  + ]:         33 :                 if (wpa_s->auto_select ||
    1791         [ #  # ]:          0 :                     (wpa_s->conf->auto_interworking &&
    1792                 :            :                      wpa_s->auto_network_select)) {
    1793 [ -  + ][ #  # ]:          7 :                         if (selected == NULL ||
    1794                 :          0 :                             cred->priority > selected_prio) {
    1795                 :          7 :                                 selected = bss;
    1796                 :          7 :                                 selected_prio = cred->priority;
    1797                 :            :                         }
    1798 [ +  + ][ -  + ]:          7 :                         if (res > 0 &&
    1799         [ #  # ]:          0 :                             (selected_home == NULL ||
    1800                 :          0 :                              cred->priority > selected_home_prio)) {
    1801                 :          3 :                                 selected_home = bss;
    1802                 :          3 :                                 selected_home_prio = cred->priority;
    1803                 :            :                         }
    1804                 :            :                 }
    1805                 :            :         }
    1806                 :            : 
    1807 [ +  + ][ -  + ]:         35 :         if (selected_home && selected_home != selected &&
                 [ #  # ]
    1808                 :            :             selected_home_prio >= selected_prio) {
    1809                 :            :                 /* Prefer network operated by the Home SP */
    1810                 :          0 :                 selected = selected_home;
    1811                 :            :         }
    1812                 :            : 
    1813         [ +  + ]:         35 :         if (count == 0) {
    1814                 :            :                 /*
    1815                 :            :                  * No matching network was found based on configured
    1816                 :            :                  * credentials. Check whether any of the enabled network blocks
    1817                 :            :                  * have matching APs.
    1818                 :            :                  */
    1819         [ -  + ]:          3 :                 if (interworking_find_network_match(wpa_s)) {
    1820                 :          0 :                         wpa_printf(MSG_DEBUG, "Interworking: Possible BSS "
    1821                 :            :                                    "match for enabled network configurations");
    1822         [ #  # ]:          0 :                         if (wpa_s->auto_select)
    1823                 :          0 :                                 interworking_reconnect(wpa_s);
    1824                 :          0 :                         return;
    1825                 :            :                 }
    1826                 :            : 
    1827         [ -  + ]:          3 :                 if (wpa_s->auto_network_select) {
    1828                 :          0 :                         wpa_printf(MSG_DEBUG, "Interworking: Continue "
    1829                 :            :                                    "scanning after ANQP fetch");
    1830                 :          0 :                         wpa_supplicant_req_scan(wpa_s, wpa_s->scan_interval,
    1831                 :            :                                                 0);
    1832                 :          0 :                         return;
    1833                 :            :                 }
    1834                 :            : 
    1835                 :          3 :                 wpa_msg(wpa_s, MSG_INFO, INTERWORKING_NO_MATCH "No network "
    1836                 :            :                         "with matching credentials found");
    1837                 :            :         }
    1838                 :            : 
    1839         [ +  + ]:         35 :         if (selected)
    1840                 :         35 :                 interworking_connect(wpa_s, selected);
    1841                 :            : }
    1842                 :            : 
    1843                 :            : 
    1844                 :            : static struct wpa_bss_anqp *
    1845                 :         32 : interworking_match_anqp_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
    1846                 :            : {
    1847                 :            :         struct wpa_bss *other;
    1848                 :            : 
    1849         [ +  + ]:         32 :         if (is_zero_ether_addr(bss->hessid))
    1850                 :         12 :                 return NULL; /* Cannot be in the same homegenous ESS */
    1851                 :            : 
    1852         [ +  + ]:         49 :         dl_list_for_each(other, &wpa_s->bss, struct wpa_bss, list) {
    1853         [ +  + ]:         30 :                 if (other == bss)
    1854                 :         19 :                         continue;
    1855         [ +  + ]:         11 :                 if (other->anqp == NULL)
    1856                 :         10 :                         continue;
    1857 [ +  - ][ -  + ]:          1 :                 if (other->anqp->roaming_consortium == NULL &&
    1858         [ #  # ]:          0 :                     other->anqp->nai_realm == NULL &&
    1859         [ #  # ]:          0 :                     other->anqp->anqp_3gpp == NULL &&
    1860                 :          0 :                     other->anqp->domain_name == NULL)
    1861                 :          0 :                         continue;
    1862         [ -  + ]:          1 :                 if (!(other->flags & WPA_BSS_ANQP_FETCH_TRIED))
    1863                 :          0 :                         continue;
    1864         [ -  + ]:          1 :                 if (os_memcmp(bss->hessid, other->hessid, ETH_ALEN) != 0)
    1865                 :          0 :                         continue;
    1866 [ +  - ][ -  + ]:          1 :                 if (bss->ssid_len != other->ssid_len ||
    1867                 :          1 :                     os_memcmp(bss->ssid, other->ssid, bss->ssid_len) != 0)
    1868                 :          0 :                         continue;
    1869                 :            : 
    1870                 :          1 :                 wpa_printf(MSG_DEBUG, "Interworking: Share ANQP data with "
    1871                 :            :                            "already fetched BSSID " MACSTR " and " MACSTR,
    1872                 :         12 :                            MAC2STR(other->bssid), MAC2STR(bss->bssid));
    1873                 :          1 :                 other->anqp->users++;
    1874                 :          1 :                 return other->anqp;
    1875                 :            :         }
    1876                 :            : 
    1877                 :         32 :         return NULL;
    1878                 :            : }
    1879                 :            : 
    1880                 :            : 
    1881                 :         80 : static void interworking_next_anqp_fetch(struct wpa_supplicant *wpa_s)
    1882                 :            : {
    1883                 :            :         struct wpa_bss *bss;
    1884                 :         80 :         int found = 0;
    1885                 :            :         const u8 *ie;
    1886                 :            : 
    1887 [ +  - ][ -  + ]:         80 :         if (eloop_terminated() || !wpa_s->fetch_anqp_in_progress)
    1888                 :         80 :                 return;
    1889                 :            : 
    1890         [ +  + ]:        146 :         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
    1891         [ -  + ]:        107 :                 if (!(bss->caps & IEEE80211_CAP_ESS))
    1892                 :          0 :                         continue;
    1893                 :        107 :                 ie = wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB);
    1894 [ +  - ][ +  - ]:        107 :                 if (ie == NULL || ie[1] < 4 || !(ie[5] & 0x80))
                 [ +  + ]
    1895                 :         18 :                         continue; /* AP does not support Interworking */
    1896   [ +  +  +  + ]:        177 :                 if (disallowed_bssid(wpa_s, bss->bssid) ||
    1897                 :         88 :                     disallowed_ssid(wpa_s, bss->ssid, bss->ssid_len))
    1898                 :          2 :                         continue; /* Disallowed BSS */
    1899                 :            : 
    1900         [ +  + ]:         87 :                 if (!(bss->flags & WPA_BSS_ANQP_FETCH_TRIED)) {
    1901         [ +  + ]:         42 :                         if (bss->anqp == NULL) {
    1902                 :         32 :                                 bss->anqp = interworking_match_anqp_info(wpa_s,
    1903                 :            :                                                                          bss);
    1904         [ +  + ]:         32 :                                 if (bss->anqp) {
    1905                 :            :                                         /* Shared data already fetched */
    1906                 :          1 :                                         continue;
    1907                 :            :                                 }
    1908                 :         31 :                                 bss->anqp = wpa_bss_anqp_alloc();
    1909         [ -  + ]:         31 :                                 if (bss->anqp == NULL)
    1910                 :          0 :                                         break;
    1911                 :            :                         }
    1912                 :         41 :                         found++;
    1913                 :         41 :                         bss->flags |= WPA_BSS_ANQP_FETCH_TRIED;
    1914                 :         41 :                         wpa_msg(wpa_s, MSG_INFO, "Starting ANQP fetch for "
    1915                 :        246 :                                 MACSTR, MAC2STR(bss->bssid));
    1916                 :         41 :                         interworking_anqp_send_req(wpa_s, bss);
    1917                 :         41 :                         break;
    1918                 :            :                 }
    1919                 :            :         }
    1920                 :            : 
    1921         [ +  + ]:         80 :         if (found == 0) {
    1922                 :         39 :                 wpa_msg(wpa_s, MSG_INFO, "ANQP fetch completed");
    1923                 :         39 :                 wpa_s->fetch_anqp_in_progress = 0;
    1924         [ +  + ]:         39 :                 if (wpa_s->network_select)
    1925                 :         35 :                         interworking_select_network(wpa_s);
    1926                 :            :         }
    1927                 :            : }
    1928                 :            : 
    1929                 :            : 
    1930                 :         39 : void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s)
    1931                 :            : {
    1932                 :            :         struct wpa_bss *bss;
    1933                 :            : 
    1934         [ +  + ]:         92 :         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list)
    1935                 :         53 :                 bss->flags &= ~WPA_BSS_ANQP_FETCH_TRIED;
    1936                 :            : 
    1937                 :         39 :         wpa_s->fetch_anqp_in_progress = 1;
    1938                 :         39 :         interworking_next_anqp_fetch(wpa_s);
    1939                 :         39 : }
    1940                 :            : 
    1941                 :            : 
    1942                 :          4 : int interworking_fetch_anqp(struct wpa_supplicant *wpa_s)
    1943                 :            : {
    1944 [ +  - ][ -  + ]:          4 :         if (wpa_s->fetch_anqp_in_progress || wpa_s->network_select)
    1945                 :          0 :                 return 0;
    1946                 :            : 
    1947                 :          4 :         wpa_s->network_select = 0;
    1948                 :          4 :         wpa_s->fetch_all_anqp = 1;
    1949                 :            : 
    1950                 :          4 :         interworking_start_fetch_anqp(wpa_s);
    1951                 :            : 
    1952                 :          4 :         return 0;
    1953                 :            : }
    1954                 :            : 
    1955                 :            : 
    1956                 :         35 : void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s)
    1957                 :            : {
    1958         [ +  - ]:         35 :         if (!wpa_s->fetch_anqp_in_progress)
    1959                 :         35 :                 return;
    1960                 :            : 
    1961                 :          0 :         wpa_s->fetch_anqp_in_progress = 0;
    1962                 :            : }
    1963                 :            : 
    1964                 :            : 
    1965                 :          6 : int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
    1966                 :            :                   u16 info_ids[], size_t num_ids)
    1967                 :            : {
    1968                 :            :         struct wpabuf *buf;
    1969                 :          6 :         int ret = 0;
    1970                 :            :         int freq;
    1971                 :            :         struct wpa_bss *bss;
    1972                 :            :         int res;
    1973                 :            : 
    1974                 :          6 :         freq = wpa_s->assoc_freq;
    1975                 :          6 :         bss = wpa_bss_get_bssid(wpa_s, dst);
    1976         [ +  - ]:          6 :         if (bss) {
    1977                 :          6 :                 wpa_bss_anqp_unshare_alloc(bss);
    1978                 :          6 :                 freq = bss->freq;
    1979                 :            :         }
    1980         [ -  + ]:          6 :         if (freq <= 0)
    1981                 :          0 :                 return -1;
    1982                 :            : 
    1983                 :          6 :         wpa_printf(MSG_DEBUG, "ANQP: Query Request to " MACSTR " for %u id(s)",
    1984                 :         36 :                    MAC2STR(dst), (unsigned int) num_ids);
    1985                 :            : 
    1986                 :          6 :         buf = anqp_build_req(info_ids, num_ids, NULL);
    1987         [ -  + ]:          6 :         if (buf == NULL)
    1988                 :          0 :                 return -1;
    1989                 :            : 
    1990                 :          6 :         res = gas_query_req(wpa_s->gas, dst, freq, buf, anqp_resp_cb, wpa_s);
    1991         [ -  + ]:          6 :         if (res < 0) {
    1992                 :          0 :                 wpa_printf(MSG_DEBUG, "ANQP: Failed to send Query Request");
    1993                 :          0 :                 wpabuf_free(buf);
    1994                 :          0 :                 ret = -1;
    1995                 :            :         } else
    1996                 :          6 :                 wpa_printf(MSG_DEBUG, "ANQP: Query started with dialog token "
    1997                 :            :                            "%u", res);
    1998                 :            : 
    1999                 :          6 :         return ret;
    2000                 :            : }
    2001                 :            : 
    2002                 :            : 
    2003                 :        180 : static void interworking_parse_rx_anqp_resp(struct wpa_supplicant *wpa_s,
    2004                 :            :                                             struct wpa_bss *bss, const u8 *sa,
    2005                 :            :                                             u16 info_id,
    2006                 :            :                                             const u8 *data, size_t slen)
    2007                 :            : {
    2008                 :        180 :         const u8 *pos = data;
    2009                 :        180 :         struct wpa_bss_anqp *anqp = NULL;
    2010                 :            : #ifdef CONFIG_HS20
    2011                 :            :         u8 type;
    2012                 :            : #endif /* CONFIG_HS20 */
    2013                 :            : 
    2014         [ +  - ]:        180 :         if (bss)
    2015                 :        180 :                 anqp = bss->anqp;
    2016                 :            : 
    2017   [ +  +  +  +  :        180 :         switch (info_id) {
          +  +  +  +  +  
                      - ]
    2018                 :            :         case ANQP_CAPABILITY_LIST:
    2019                 :         41 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2020                 :        246 :                         " ANQP Capability list", MAC2STR(sa));
    2021                 :         41 :                 break;
    2022                 :            :         case ANQP_VENUE_NAME:
    2023                 :          4 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2024                 :         24 :                         " Venue Name", MAC2STR(sa));
    2025                 :          4 :                 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Venue Name", pos, slen);
    2026         [ +  - ]:          4 :                 if (anqp) {
    2027                 :          4 :                         wpabuf_free(anqp->venue_name);
    2028                 :          4 :                         anqp->venue_name = wpabuf_alloc_copy(pos, slen);
    2029                 :            :                 }
    2030                 :          4 :                 break;
    2031                 :            :         case ANQP_NETWORK_AUTH_TYPE:
    2032                 :          2 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2033                 :            :                         " Network Authentication Type information",
    2034                 :         12 :                         MAC2STR(sa));
    2035                 :          2 :                 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Network Authentication "
    2036                 :            :                                   "Type", pos, slen);
    2037         [ +  - ]:          2 :                 if (anqp) {
    2038                 :          2 :                         wpabuf_free(anqp->network_auth_type);
    2039                 :          2 :                         anqp->network_auth_type = wpabuf_alloc_copy(pos, slen);
    2040                 :            :                 }
    2041                 :          2 :                 break;
    2042                 :            :         case ANQP_ROAMING_CONSORTIUM:
    2043                 :          7 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2044                 :         42 :                         " Roaming Consortium list", MAC2STR(sa));
    2045                 :          7 :                 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: Roaming Consortium",
    2046                 :            :                                   pos, slen);
    2047         [ +  - ]:          7 :                 if (anqp) {
    2048                 :          7 :                         wpabuf_free(anqp->roaming_consortium);
    2049                 :          7 :                         anqp->roaming_consortium = wpabuf_alloc_copy(pos, slen);
    2050                 :            :                 }
    2051                 :          7 :                 break;
    2052                 :            :         case ANQP_IP_ADDR_TYPE_AVAILABILITY:
    2053                 :          2 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2054                 :            :                         " IP Address Type Availability information",
    2055                 :         12 :                         MAC2STR(sa));
    2056                 :          2 :                 wpa_hexdump(MSG_MSGDUMP, "ANQP: IP Address Availability",
    2057                 :            :                             pos, slen);
    2058         [ +  - ]:          2 :                 if (anqp) {
    2059                 :          2 :                         wpabuf_free(anqp->ip_addr_type_availability);
    2060                 :          2 :                         anqp->ip_addr_type_availability =
    2061                 :          2 :                                 wpabuf_alloc_copy(pos, slen);
    2062                 :            :                 }
    2063                 :          2 :                 break;
    2064                 :            :         case ANQP_NAI_REALM:
    2065                 :         37 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2066                 :        222 :                         " NAI Realm list", MAC2STR(sa));
    2067                 :         37 :                 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: NAI Realm", pos, slen);
    2068         [ +  - ]:         37 :                 if (anqp) {
    2069                 :         37 :                         wpabuf_free(anqp->nai_realm);
    2070                 :         37 :                         anqp->nai_realm = wpabuf_alloc_copy(pos, slen);
    2071                 :            :                 }
    2072                 :         37 :                 break;
    2073                 :            :         case ANQP_3GPP_CELLULAR_NETWORK:
    2074                 :          9 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2075                 :         54 :                         " 3GPP Cellular Network information", MAC2STR(sa));
    2076                 :          9 :                 wpa_hexdump_ascii(MSG_DEBUG, "ANQP: 3GPP Cellular Network",
    2077                 :            :                                   pos, slen);
    2078         [ +  - ]:          9 :                 if (anqp) {
    2079                 :          9 :                         wpabuf_free(anqp->anqp_3gpp);
    2080                 :          9 :                         anqp->anqp_3gpp = wpabuf_alloc_copy(pos, slen);
    2081                 :            :                 }
    2082                 :          9 :                 break;
    2083                 :            :         case ANQP_DOMAIN_NAME:
    2084                 :         23 :                 wpa_msg(wpa_s, MSG_INFO, "RX-ANQP " MACSTR
    2085                 :        138 :                         " Domain Name list", MAC2STR(sa));
    2086                 :         23 :                 wpa_hexdump_ascii(MSG_MSGDUMP, "ANQP: Domain Name", pos, slen);
    2087         [ +  - ]:         23 :                 if (anqp) {
    2088                 :         23 :                         wpabuf_free(anqp->domain_name);
    2089                 :         23 :                         anqp->domain_name = wpabuf_alloc_copy(pos, slen);
    2090                 :            :                 }
    2091                 :         23 :                 break;
    2092                 :            :         case ANQP_VENDOR_SPECIFIC:
    2093         [ -  + ]:         55 :                 if (slen < 3)
    2094                 :          0 :                         return;
    2095                 :            : 
    2096         [ +  - ]:         55 :                 switch (WPA_GET_BE24(pos)) {
    2097                 :            : #ifdef CONFIG_HS20
    2098                 :            :                 case OUI_WFA:
    2099                 :         55 :                         pos += 3;
    2100                 :         55 :                         slen -= 3;
    2101                 :            : 
    2102         [ -  + ]:         55 :                         if (slen < 1)
    2103                 :          0 :                                 return;
    2104                 :         55 :                         type = *pos++;
    2105                 :         55 :                         slen--;
    2106                 :            : 
    2107         [ +  - ]:         55 :                         switch (type) {
    2108                 :            :                         case HS20_ANQP_OUI_TYPE:
    2109                 :         55 :                                 hs20_parse_rx_hs20_anqp_resp(wpa_s, sa, pos,
    2110                 :            :                                                              slen);
    2111                 :         55 :                                 break;
    2112                 :            :                         default:
    2113                 :          0 :                                 wpa_printf(MSG_DEBUG, "HS20: Unsupported ANQP "
    2114                 :            :                                            "vendor type %u", type);
    2115                 :          0 :                                 break;
    2116                 :            :                         }
    2117                 :         55 :                         break;
    2118                 :            : #endif /* CONFIG_HS20 */
    2119                 :            :                 default:
    2120                 :          0 :                         wpa_printf(MSG_DEBUG, "Interworking: Unsupported "
    2121                 :            :                                    "vendor-specific ANQP OUI %06x",
    2122                 :            :                                    WPA_GET_BE24(pos));
    2123                 :          0 :                         return;
    2124                 :            :                 }
    2125                 :         55 :                 break;
    2126                 :            :         default:
    2127                 :          0 :                 wpa_printf(MSG_DEBUG, "Interworking: Unsupported ANQP Info ID "
    2128                 :            :                            "%u", info_id);
    2129                 :        180 :                 break;
    2130                 :            :         }
    2131                 :            : }
    2132                 :            : 
    2133                 :            : 
    2134                 :         47 : void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token,
    2135                 :            :                   enum gas_query_result result,
    2136                 :            :                   const struct wpabuf *adv_proto,
    2137                 :            :                   const struct wpabuf *resp, u16 status_code)
    2138                 :            : {
    2139                 :         47 :         struct wpa_supplicant *wpa_s = ctx;
    2140                 :            :         const u8 *pos;
    2141                 :            :         const u8 *end;
    2142                 :            :         u16 info_id;
    2143                 :            :         u16 slen;
    2144                 :         47 :         struct wpa_bss *bss = NULL, *tmp;
    2145                 :            : 
    2146         [ +  + ]:         47 :         if (result != GAS_QUERY_SUCCESS)
    2147                 :          3 :                 return;
    2148                 :            : 
    2149                 :         44 :         pos = wpabuf_head(adv_proto);
    2150 [ +  - ][ +  - ]:         44 :         if (wpabuf_len(adv_proto) < 4 || pos[0] != WLAN_EID_ADV_PROTO ||
                 [ +  - ]
    2151         [ -  + ]:         44 :             pos[1] < 2 || pos[3] != ACCESS_NETWORK_QUERY_PROTOCOL) {
    2152                 :          0 :                 wpa_printf(MSG_DEBUG, "ANQP: Unexpected Advertisement "
    2153                 :            :                            "Protocol in response");
    2154                 :          0 :                 return;
    2155                 :            :         }
    2156                 :            : 
    2157                 :            :         /*
    2158                 :            :          * If possible, select the BSS entry based on which BSS entry was used
    2159                 :            :          * for the request. This can help in cases where multiple BSS entries
    2160                 :            :          * may exist for the same AP.
    2161                 :            :          */
    2162         [ +  + ]:         53 :         dl_list_for_each_reverse(tmp, &wpa_s->bss, struct wpa_bss, list) {
    2163 [ +  + ][ +  + ]:         51 :                 if (tmp == wpa_s->interworking_gas_bss &&
    2164                 :         43 :                     os_memcmp(tmp->bssid, dst, ETH_ALEN) == 0) {
    2165                 :         42 :                         bss = tmp;
    2166                 :         42 :                         break;
    2167                 :            :                 }
    2168                 :            :         }
    2169         [ +  + ]:         44 :         if (bss == NULL)
    2170                 :          2 :                 bss = wpa_bss_get_bssid(wpa_s, dst);
    2171                 :            : 
    2172                 :         44 :         pos = wpabuf_head(resp);
    2173                 :         44 :         end = pos + wpabuf_len(resp);
    2174                 :            : 
    2175         [ +  + ]:        228 :         while (pos < end) {
    2176         [ +  + ]:        181 :                 if (pos + 4 > end) {
    2177                 :          1 :                         wpa_printf(MSG_DEBUG, "ANQP: Invalid element");
    2178                 :          1 :                         break;
    2179                 :            :                 }
    2180                 :        180 :                 info_id = WPA_GET_LE16(pos);
    2181                 :        180 :                 pos += 2;
    2182                 :        180 :                 slen = WPA_GET_LE16(pos);
    2183                 :        180 :                 pos += 2;
    2184         [ -  + ]:        180 :                 if (pos + slen > end) {
    2185                 :          0 :                         wpa_printf(MSG_DEBUG, "ANQP: Invalid element length "
    2186                 :            :                                    "for Info ID %u", info_id);
    2187                 :          0 :                         break;
    2188                 :            :                 }
    2189                 :        180 :                 interworking_parse_rx_anqp_resp(wpa_s, bss, dst, info_id, pos,
    2190                 :            :                                                 slen);
    2191                 :        180 :                 pos += slen;
    2192                 :            :         }
    2193                 :            : }
    2194                 :            : 
    2195                 :            : 
    2196                 :         35 : static void interworking_scan_res_handler(struct wpa_supplicant *wpa_s,
    2197                 :            :                                           struct wpa_scan_results *scan_res)
    2198                 :            : {
    2199                 :         35 :         wpa_printf(MSG_DEBUG, "Interworking: Scan results available - start "
    2200                 :            :                    "ANQP fetch");
    2201                 :         35 :         interworking_start_fetch_anqp(wpa_s);
    2202                 :         35 : }
    2203                 :            : 
    2204                 :            : 
    2205                 :         35 : int interworking_select(struct wpa_supplicant *wpa_s, int auto_select)
    2206                 :            : {
    2207                 :         35 :         interworking_stop_fetch_anqp(wpa_s);
    2208                 :         35 :         wpa_s->network_select = 1;
    2209                 :         35 :         wpa_s->auto_network_select = 0;
    2210                 :         35 :         wpa_s->auto_select = !!auto_select;
    2211                 :         35 :         wpa_s->fetch_all_anqp = 0;
    2212                 :         35 :         wpa_printf(MSG_DEBUG, "Interworking: Start scan for network "
    2213                 :            :                    "selection");
    2214                 :         35 :         wpa_s->scan_res_handler = interworking_scan_res_handler;
    2215                 :         35 :         wpa_s->normal_scans = 0;
    2216                 :         35 :         wpa_s->scan_req = MANUAL_SCAN_REQ;
    2217                 :         35 :         wpa_s->after_wps = 0;
    2218                 :         35 :         wpa_s->known_wps_freq = 0;
    2219                 :         35 :         wpa_supplicant_req_scan(wpa_s, 0, 0);
    2220                 :            : 
    2221                 :         35 :         return 0;
    2222                 :            : }
    2223                 :            : 
    2224                 :            : 
    2225                 :          7 : static void gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
    2226                 :            :                         enum gas_query_result result,
    2227                 :            :                         const struct wpabuf *adv_proto,
    2228                 :            :                         const struct wpabuf *resp, u16 status_code)
    2229                 :            : {
    2230                 :          7 :         struct wpa_supplicant *wpa_s = ctx;
    2231                 :            : 
    2232         [ +  - ]:         14 :         wpa_msg(wpa_s, MSG_INFO, GAS_RESPONSE_INFO "addr=" MACSTR
    2233                 :            :                 " dialog_token=%d status_code=%d resp_len=%d",
    2234                 :         42 :                 MAC2STR(addr), dialog_token, status_code,
    2235                 :          7 :                 resp ? (int) wpabuf_len(resp) : -1);
    2236         [ -  + ]:          7 :         if (!resp)
    2237                 :          0 :                 return;
    2238                 :            : 
    2239                 :          7 :         wpabuf_free(wpa_s->last_gas_resp);
    2240                 :          7 :         wpa_s->last_gas_resp = wpabuf_dup(resp);
    2241         [ -  + ]:          7 :         if (wpa_s->last_gas_resp == NULL)
    2242                 :          0 :                 return;
    2243                 :          7 :         os_memcpy(wpa_s->last_gas_addr, addr, ETH_ALEN);
    2244                 :          7 :         wpa_s->last_gas_dialog_token = dialog_token;
    2245                 :            : }
    2246                 :            : 
    2247                 :            : 
    2248                 :          7 : int gas_send_request(struct wpa_supplicant *wpa_s, const u8 *dst,
    2249                 :            :                      const struct wpabuf *adv_proto,
    2250                 :            :                      const struct wpabuf *query)
    2251                 :            : {
    2252                 :            :         struct wpabuf *buf;
    2253                 :          7 :         int ret = 0;
    2254                 :            :         int freq;
    2255                 :            :         struct wpa_bss *bss;
    2256                 :            :         int res;
    2257                 :            :         size_t len;
    2258                 :          7 :         u8 query_resp_len_limit = 0, pame_bi = 0;
    2259                 :            : 
    2260                 :          7 :         freq = wpa_s->assoc_freq;
    2261                 :          7 :         bss = wpa_bss_get_bssid(wpa_s, dst);
    2262         [ +  - ]:          7 :         if (bss)
    2263                 :          7 :                 freq = bss->freq;
    2264         [ -  + ]:          7 :         if (freq <= 0)
    2265                 :          0 :                 return -1;
    2266                 :            : 
    2267                 :          7 :         wpa_printf(MSG_DEBUG, "GAS request to " MACSTR " (freq %d MHz)",
    2268                 :         42 :                    MAC2STR(dst), freq);
    2269                 :          7 :         wpa_hexdump_buf(MSG_DEBUG, "Advertisement Protocol ID", adv_proto);
    2270                 :          7 :         wpa_hexdump_buf(MSG_DEBUG, "GAS Query", query);
    2271                 :            : 
    2272                 :          7 :         len = 3 + wpabuf_len(adv_proto) + 2;
    2273         [ +  - ]:          7 :         if (query)
    2274                 :          7 :                 len += wpabuf_len(query);
    2275                 :          7 :         buf = gas_build_initial_req(0, len);
    2276         [ -  + ]:          7 :         if (buf == NULL)
    2277                 :          0 :                 return -1;
    2278                 :            : 
    2279                 :            :         /* Advertisement Protocol IE */
    2280                 :          7 :         wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
    2281                 :          7 :         wpabuf_put_u8(buf, 1 + wpabuf_len(adv_proto)); /* Length */
    2282         [ -  + ]:          7 :         wpabuf_put_u8(buf, (query_resp_len_limit & 0x7f) |
    2283                 :            :                       (pame_bi ? 0x80 : 0));
    2284                 :          7 :         wpabuf_put_buf(buf, adv_proto);
    2285                 :            : 
    2286                 :            :         /* GAS Query */
    2287         [ +  - ]:          7 :         if (query) {
    2288                 :          7 :                 wpabuf_put_le16(buf, wpabuf_len(query));
    2289                 :          7 :                 wpabuf_put_buf(buf, query);
    2290                 :            :         } else
    2291                 :          0 :                 wpabuf_put_le16(buf, 0);
    2292                 :            : 
    2293                 :          7 :         res = gas_query_req(wpa_s->gas, dst, freq, buf, gas_resp_cb, wpa_s);
    2294         [ -  + ]:          7 :         if (res < 0) {
    2295                 :          0 :                 wpa_printf(MSG_DEBUG, "GAS: Failed to send Query Request");
    2296                 :          0 :                 wpabuf_free(buf);
    2297                 :          0 :                 ret = -1;
    2298                 :            :         } else
    2299                 :          7 :                 wpa_printf(MSG_DEBUG, "GAS: Query started with dialog token "
    2300                 :            :                            "%u", res);
    2301                 :            : 
    2302                 :          7 :         return ret;
    2303                 :            : }

Generated by: LCOV version 1.9