LCOV - code coverage report
Current view: top level - src/rsn_supp - wpa_ie.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1393793999 Lines: 262 315 83.2 %
Date: 2014-03-02 Functions: 7 7 100.0 %
Branches: 137 188 72.9 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * wpa_supplicant - WPA/RSN IE and KDE processing
       3                 :            :  * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
       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 "wpa.h"
      13                 :            : #include "pmksa_cache.h"
      14                 :            : #include "common/ieee802_11_defs.h"
      15                 :            : #include "wpa_i.h"
      16                 :            : #include "wpa_ie.h"
      17                 :            : 
      18                 :            : 
      19                 :            : /**
      20                 :            :  * wpa_parse_wpa_ie - Parse WPA/RSN IE
      21                 :            :  * @wpa_ie: Pointer to WPA or RSN IE
      22                 :            :  * @wpa_ie_len: Length of the WPA/RSN IE
      23                 :            :  * @data: Pointer to data area for parsing results
      24                 :            :  * Returns: 0 on success, -1 on failure
      25                 :            :  *
      26                 :            :  * Parse the contents of WPA or RSN IE and write the parsed data into data.
      27                 :            :  */
      28                 :       1157 : int wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len,
      29                 :            :                      struct wpa_ie_data *data)
      30                 :            : {
      31 [ +  - ][ +  + ]:       1157 :         if (wpa_ie_len >= 1 && wpa_ie[0] == WLAN_EID_RSN)
      32                 :       1138 :                 return wpa_parse_wpa_ie_rsn(wpa_ie, wpa_ie_len, data);
      33                 :            :         else
      34                 :       1157 :                 return wpa_parse_wpa_ie_wpa(wpa_ie, wpa_ie_len, data);
      35                 :            : }
      36                 :            : 
      37                 :            : 
      38                 :         10 : static int wpa_gen_wpa_ie_wpa(u8 *wpa_ie, size_t wpa_ie_len,
      39                 :            :                               int pairwise_cipher, int group_cipher,
      40                 :            :                               int key_mgmt)
      41                 :            : {
      42                 :            :         u8 *pos;
      43                 :            :         struct wpa_ie_hdr *hdr;
      44                 :            :         u32 suite;
      45                 :            : 
      46         [ -  + ]:         10 :         if (wpa_ie_len < sizeof(*hdr) + WPA_SELECTOR_LEN +
      47                 :            :             2 + WPA_SELECTOR_LEN + 2 + WPA_SELECTOR_LEN)
      48                 :          0 :                 return -1;
      49                 :            : 
      50                 :         10 :         hdr = (struct wpa_ie_hdr *) wpa_ie;
      51                 :         10 :         hdr->elem_id = WLAN_EID_VENDOR_SPECIFIC;
      52                 :         10 :         RSN_SELECTOR_PUT(hdr->oui, WPA_OUI_TYPE);
      53                 :         10 :         WPA_PUT_LE16(hdr->version, WPA_VERSION);
      54                 :         10 :         pos = (u8 *) (hdr + 1);
      55                 :            : 
      56                 :         10 :         suite = wpa_cipher_to_suite(WPA_PROTO_WPA, group_cipher);
      57         [ -  + ]:         10 :         if (suite == 0) {
      58                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid group cipher (%d).",
      59                 :            :                            group_cipher);
      60                 :          0 :                 return -1;
      61                 :            :         }
      62                 :         10 :         RSN_SELECTOR_PUT(pos, suite);
      63                 :         10 :         pos += WPA_SELECTOR_LEN;
      64                 :            : 
      65                 :         10 :         *pos++ = 1;
      66                 :         10 :         *pos++ = 0;
      67                 :         10 :         suite = wpa_cipher_to_suite(WPA_PROTO_WPA, pairwise_cipher);
      68   [ +  -  -  + ]:         20 :         if (suite == 0 ||
      69         [ #  # ]:         10 :             (!wpa_cipher_valid_pairwise(pairwise_cipher) &&
      70                 :            :              pairwise_cipher != WPA_CIPHER_NONE)) {
      71                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid pairwise cipher (%d).",
      72                 :            :                            pairwise_cipher);
      73                 :          0 :                 return -1;
      74                 :            :         }
      75                 :         10 :         RSN_SELECTOR_PUT(pos, suite);
      76                 :         10 :         pos += WPA_SELECTOR_LEN;
      77                 :            : 
      78                 :         10 :         *pos++ = 1;
      79                 :         10 :         *pos++ = 0;
      80         [ +  + ]:         10 :         if (key_mgmt == WPA_KEY_MGMT_IEEE8021X) {
      81                 :          1 :                 RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_UNSPEC_802_1X);
      82         [ +  + ]:          9 :         } else if (key_mgmt == WPA_KEY_MGMT_PSK) {
      83                 :          6 :                 RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X);
      84         [ +  - ]:          3 :         } else if (key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
      85                 :          3 :                 RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_NONE);
      86         [ #  # ]:          0 :         } else if (key_mgmt == WPA_KEY_MGMT_CCKM) {
      87                 :          0 :                 RSN_SELECTOR_PUT(pos, WPA_AUTH_KEY_MGMT_CCKM);
      88                 :            :         } else {
      89                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid key management type (%d).",
      90                 :            :                            key_mgmt);
      91                 :          0 :                 return -1;
      92                 :            :         }
      93                 :         10 :         pos += WPA_SELECTOR_LEN;
      94                 :            : 
      95                 :            :         /* WPA Capabilities; use defaults, so no need to include it */
      96                 :            : 
      97                 :         10 :         hdr->len = (pos - wpa_ie) - 2;
      98                 :            : 
      99                 :            :         WPA_ASSERT((size_t) (pos - wpa_ie) <= wpa_ie_len);
     100                 :            : 
     101                 :         10 :         return pos - wpa_ie;
     102                 :            : }
     103                 :            : 
     104                 :            : 
     105                 :        440 : static int wpa_gen_wpa_ie_rsn(u8 *rsn_ie, size_t rsn_ie_len,
     106                 :            :                               int pairwise_cipher, int group_cipher,
     107                 :            :                               int key_mgmt, int mgmt_group_cipher,
     108                 :            :                               struct wpa_sm *sm)
     109                 :            : {
     110                 :            :         u8 *pos;
     111                 :            :         struct rsn_ie_hdr *hdr;
     112                 :            :         u16 capab;
     113                 :            :         u32 suite;
     114                 :            : 
     115         [ -  + ]:        440 :         if (rsn_ie_len < sizeof(*hdr) + RSN_SELECTOR_LEN +
     116         [ +  + ]:        440 :             2 + RSN_SELECTOR_LEN + 2 + RSN_SELECTOR_LEN + 2 +
     117                 :        440 :             (sm->cur_pmksa ? 2 + PMKID_LEN : 0)) {
     118                 :          0 :                 wpa_printf(MSG_DEBUG, "RSN: Too short IE buffer (%lu bytes)",
     119                 :            :                            (unsigned long) rsn_ie_len);
     120                 :          0 :                 return -1;
     121                 :            :         }
     122                 :            : 
     123                 :        440 :         hdr = (struct rsn_ie_hdr *) rsn_ie;
     124                 :        440 :         hdr->elem_id = WLAN_EID_RSN;
     125                 :        440 :         WPA_PUT_LE16(hdr->version, RSN_VERSION);
     126                 :        440 :         pos = (u8 *) (hdr + 1);
     127                 :            : 
     128                 :        440 :         suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher);
     129         [ -  + ]:        440 :         if (suite == 0) {
     130                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid group cipher (%d).",
     131                 :            :                            group_cipher);
     132                 :          0 :                 return -1;
     133                 :            :         }
     134                 :        440 :         RSN_SELECTOR_PUT(pos, suite);
     135                 :        440 :         pos += RSN_SELECTOR_LEN;
     136                 :            : 
     137                 :        440 :         *pos++ = 1;
     138                 :        440 :         *pos++ = 0;
     139                 :        440 :         suite = wpa_cipher_to_suite(WPA_PROTO_RSN, pairwise_cipher);
     140   [ +  -  -  + ]:        880 :         if (suite == 0 ||
     141         [ #  # ]:        440 :             (!wpa_cipher_valid_pairwise(pairwise_cipher) &&
     142                 :            :              pairwise_cipher != WPA_CIPHER_NONE)) {
     143                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid pairwise cipher (%d).",
     144                 :            :                            pairwise_cipher);
     145                 :          0 :                 return -1;
     146                 :            :         }
     147                 :        440 :         RSN_SELECTOR_PUT(pos, suite);
     148                 :        440 :         pos += RSN_SELECTOR_LEN;
     149                 :            : 
     150                 :        440 :         *pos++ = 1;
     151                 :        440 :         *pos++ = 0;
     152         [ +  + ]:        440 :         if (key_mgmt == WPA_KEY_MGMT_IEEE8021X) {
     153                 :        177 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_UNSPEC_802_1X);
     154         [ +  + ]:        263 :         } else if (key_mgmt == WPA_KEY_MGMT_PSK) {
     155                 :        203 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X);
     156         [ -  + ]:         60 :         } else if (key_mgmt == WPA_KEY_MGMT_CCKM) {
     157                 :          0 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_CCKM);
     158                 :            : #ifdef CONFIG_IEEE80211R
     159         [ +  + ]:         60 :         } else if (key_mgmt == WPA_KEY_MGMT_FT_IEEE8021X) {
     160                 :          3 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_FT_802_1X);
     161         [ +  + ]:         57 :         } else if (key_mgmt == WPA_KEY_MGMT_FT_PSK) {
     162                 :         11 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_FT_PSK);
     163                 :            : #endif /* CONFIG_IEEE80211R */
     164                 :            : #ifdef CONFIG_IEEE80211W
     165         [ +  + ]:         46 :         } else if (key_mgmt == WPA_KEY_MGMT_IEEE8021X_SHA256) {
     166                 :          2 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_802_1X_SHA256);
     167         [ +  + ]:         44 :         } else if (key_mgmt == WPA_KEY_MGMT_PSK_SHA256) {
     168                 :          6 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_PSK_SHA256);
     169                 :            : #endif /* CONFIG_IEEE80211W */
     170                 :            : #ifdef CONFIG_SAE
     171         [ +  + ]:         38 :         } else if (key_mgmt == WPA_KEY_MGMT_SAE) {
     172                 :         32 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_SAE);
     173         [ +  - ]:          6 :         } else if (key_mgmt == WPA_KEY_MGMT_FT_SAE) {
     174                 :          6 :                 RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_FT_SAE);
     175                 :            : #endif /* CONFIG_SAE */
     176                 :            :         } else {
     177                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid key management type (%d).",
     178                 :            :                            key_mgmt);
     179                 :          0 :                 return -1;
     180                 :            :         }
     181                 :        440 :         pos += RSN_SELECTOR_LEN;
     182                 :            : 
     183                 :            :         /* RSN Capabilities */
     184                 :        440 :         capab = 0;
     185                 :            : #ifdef CONFIG_IEEE80211W
     186         [ +  + ]:        440 :         if (sm->mfp)
     187                 :         95 :                 capab |= WPA_CAPABILITY_MFPC;
     188         [ +  + ]:        440 :         if (sm->mfp == 2)
     189                 :          8 :                 capab |= WPA_CAPABILITY_MFPR;
     190                 :            : #endif /* CONFIG_IEEE80211W */
     191                 :        440 :         WPA_PUT_LE16(pos, capab);
     192                 :        440 :         pos += 2;
     193                 :            : 
     194         [ +  + ]:        440 :         if (sm->cur_pmksa) {
     195                 :            :                 /* PMKID Count (2 octets, little endian) */
     196                 :         10 :                 *pos++ = 1;
     197                 :         10 :                 *pos++ = 0;
     198                 :            :                 /* PMKID */
     199                 :         10 :                 os_memcpy(pos, sm->cur_pmksa->pmkid, PMKID_LEN);
     200                 :         10 :                 pos += PMKID_LEN;
     201                 :            :         }
     202                 :            : 
     203                 :            : #ifdef CONFIG_IEEE80211W
     204         [ +  + ]:        440 :         if (mgmt_group_cipher == WPA_CIPHER_AES_128_CMAC) {
     205         [ +  - ]:         17 :                 if (!sm->cur_pmksa) {
     206                 :            :                         /* PMKID Count */
     207                 :         17 :                         WPA_PUT_LE16(pos, 0);
     208                 :         17 :                         pos += 2;
     209                 :            :                 }
     210                 :            : 
     211                 :            :                 /* Management Group Cipher Suite */
     212                 :         17 :                 RSN_SELECTOR_PUT(pos, RSN_CIPHER_SUITE_AES_128_CMAC);
     213                 :         17 :                 pos += RSN_SELECTOR_LEN;
     214                 :            :         }
     215                 :            : #endif /* CONFIG_IEEE80211W */
     216                 :            : 
     217                 :        440 :         hdr->len = (pos - rsn_ie) - 2;
     218                 :            : 
     219                 :            :         WPA_ASSERT((size_t) (pos - rsn_ie) <= rsn_ie_len);
     220                 :            : 
     221                 :        440 :         return pos - rsn_ie;
     222                 :            : }
     223                 :            : 
     224                 :            : 
     225                 :            : #ifdef CONFIG_HS20
     226                 :          1 : static int wpa_gen_wpa_ie_osen(u8 *wpa_ie, size_t wpa_ie_len,
     227                 :            :                                int pairwise_cipher, int group_cipher,
     228                 :            :                                int key_mgmt)
     229                 :            : {
     230                 :            :         u8 *pos, *len;
     231                 :            :         u32 suite;
     232                 :            : 
     233         [ -  + ]:          1 :         if (wpa_ie_len < 2 + 4 + RSN_SELECTOR_LEN +
     234                 :            :             2 + RSN_SELECTOR_LEN + 2 + RSN_SELECTOR_LEN)
     235                 :          0 :                 return -1;
     236                 :            : 
     237                 :          1 :         pos = wpa_ie;
     238                 :          1 :         *pos++ = WLAN_EID_VENDOR_SPECIFIC;
     239                 :          1 :         len = pos++; /* to be filled */
     240                 :          1 :         WPA_PUT_BE24(pos, OUI_WFA);
     241                 :          1 :         pos += 3;
     242                 :          1 :         *pos++ = HS20_OSEN_OUI_TYPE;
     243                 :            : 
     244                 :            :         /* Group Data Cipher Suite */
     245                 :          1 :         suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher);
     246         [ -  + ]:          1 :         if (suite == 0) {
     247                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid group cipher (%d).",
     248                 :            :                            group_cipher);
     249                 :          0 :                 return -1;
     250                 :            :         }
     251                 :          1 :         RSN_SELECTOR_PUT(pos, suite);
     252                 :          1 :         pos += RSN_SELECTOR_LEN;
     253                 :            : 
     254                 :            :         /* Pairwise Cipher Suite Count and List */
     255                 :          1 :         WPA_PUT_LE16(pos, 1);
     256                 :          1 :         pos += 2;
     257                 :          1 :         suite = wpa_cipher_to_suite(WPA_PROTO_RSN, pairwise_cipher);
     258   [ +  -  -  + ]:          2 :         if (suite == 0 ||
     259         [ #  # ]:          1 :             (!wpa_cipher_valid_pairwise(pairwise_cipher) &&
     260                 :            :              pairwise_cipher != WPA_CIPHER_NONE)) {
     261                 :          0 :                 wpa_printf(MSG_WARNING, "Invalid pairwise cipher (%d).",
     262                 :            :                            pairwise_cipher);
     263                 :          0 :                 return -1;
     264                 :            :         }
     265                 :          1 :         RSN_SELECTOR_PUT(pos, suite);
     266                 :          1 :         pos += RSN_SELECTOR_LEN;
     267                 :            : 
     268                 :            :         /* AKM Suite Count and List */
     269                 :          1 :         WPA_PUT_LE16(pos, 1);
     270                 :          1 :         pos += 2;
     271                 :          1 :         RSN_SELECTOR_PUT(pos, RSN_AUTH_KEY_MGMT_OSEN);
     272                 :          1 :         pos += RSN_SELECTOR_LEN;
     273                 :            : 
     274                 :          1 :         *len = pos - len - 1;
     275                 :            : 
     276                 :            :         WPA_ASSERT((size_t) (pos - wpa_ie) <= wpa_ie_len);
     277                 :            : 
     278                 :          1 :         return pos - wpa_ie;
     279                 :            : }
     280                 :            : #endif /* CONFIG_HS20 */
     281                 :            : 
     282                 :            : 
     283                 :            : /**
     284                 :            :  * wpa_gen_wpa_ie - Generate WPA/RSN IE based on current security policy
     285                 :            :  * @sm: Pointer to WPA state machine data from wpa_sm_init()
     286                 :            :  * @wpa_ie: Pointer to memory area for the generated WPA/RSN IE
     287                 :            :  * @wpa_ie_len: Maximum length of the generated WPA/RSN IE
     288                 :            :  * Returns: Length of the generated WPA/RSN IE or -1 on failure
     289                 :            :  */
     290                 :        451 : int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len)
     291                 :            : {
     292         [ +  + ]:        451 :         if (sm->proto == WPA_PROTO_RSN)
     293                 :        440 :                 return wpa_gen_wpa_ie_rsn(wpa_ie, wpa_ie_len,
     294                 :        440 :                                           sm->pairwise_cipher,
     295                 :        440 :                                           sm->group_cipher,
     296                 :        880 :                                           sm->key_mgmt, sm->mgmt_group_cipher,
     297                 :            :                                           sm);
     298                 :            : #ifdef CONFIG_HS20
     299         [ +  + ]:         11 :         else if (sm->proto == WPA_PROTO_OSEN)
     300                 :          1 :                 return wpa_gen_wpa_ie_osen(wpa_ie, wpa_ie_len,
     301                 :          1 :                                            sm->pairwise_cipher,
     302                 :          1 :                                            sm->group_cipher,
     303                 :          1 :                                            sm->key_mgmt);
     304                 :            : #endif /* CONFIG_HS20 */
     305                 :            :         else
     306                 :        451 :                 return wpa_gen_wpa_ie_wpa(wpa_ie, wpa_ie_len,
     307                 :         10 :                                           sm->pairwise_cipher,
     308                 :         10 :                                           sm->group_cipher,
     309                 :         10 :                                           sm->key_mgmt);
     310                 :            : }
     311                 :            : 
     312                 :            : 
     313                 :            : /**
     314                 :            :  * wpa_parse_generic - Parse EAPOL-Key Key Data Generic IEs
     315                 :            :  * @pos: Pointer to the IE header
     316                 :            :  * @end: Pointer to the end of the Key Data buffer
     317                 :            :  * @ie: Pointer to parsed IE data
     318                 :            :  * Returns: 0 on success, 1 if end mark is found, -1 on failure
     319                 :            :  */
     320                 :       3243 : static int wpa_parse_generic(const u8 *pos, const u8 *end,
     321                 :            :                              struct wpa_eapol_ie_parse *ie)
     322                 :            : {
     323         [ -  + ]:       3243 :         if (pos[1] == 0)
     324                 :          0 :                 return 1;
     325                 :            : 
     326   [ +  +  +  + ]:       6314 :         if (pos[1] >= 6 &&
     327         [ +  - ]:       3124 :             RSN_SELECTOR_GET(pos + 2) == WPA_OUI_TYPE &&
     328         [ +  - ]:         53 :             pos[2 + WPA_SELECTOR_LEN] == 1 &&
     329                 :         53 :             pos[2 + WPA_SELECTOR_LEN + 1] == 0) {
     330                 :         53 :                 ie->wpa_ie = pos;
     331                 :         53 :                 ie->wpa_ie_len = pos[1] + 2;
     332                 :         53 :                 wpa_hexdump(MSG_DEBUG, "WPA: WPA IE in EAPOL-Key",
     333                 :         53 :                             ie->wpa_ie, ie->wpa_ie_len);
     334                 :         53 :                 return 0;
     335                 :            :         }
     336                 :            : 
     337 [ +  - ][ +  + ]:       3190 :         if (pos + 1 + RSN_SELECTOR_LEN < end &&
     338         [ +  + ]:       2747 :             pos[1] >= RSN_SELECTOR_LEN + PMKID_LEN &&
     339                 :       2747 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_PMKID) {
     340                 :        179 :                 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
     341                 :        179 :                 wpa_hexdump(MSG_DEBUG, "WPA: PMKID in EAPOL-Key",
     342                 :        179 :                             pos, pos[1] + 2);
     343                 :        179 :                 return 0;
     344                 :            :         }
     345                 :            : 
     346   [ +  +  +  + ]:       5850 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     347                 :       2839 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_GROUPKEY) {
     348                 :        397 :                 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
     349                 :        397 :                 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
     350                 :        397 :                 wpa_hexdump_key(MSG_DEBUG, "WPA: GTK in EAPOL-Key",
     351                 :        397 :                                 pos, pos[1] + 2);
     352                 :        397 :                 return 0;
     353                 :            :         }
     354                 :            : 
     355   [ +  +  +  + ]:       5056 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     356                 :       2442 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_MAC_ADDR) {
     357                 :          3 :                 ie->mac_addr = pos + 2 + RSN_SELECTOR_LEN;
     358                 :          3 :                 ie->mac_addr_len = pos[1] - RSN_SELECTOR_LEN;
     359                 :          3 :                 wpa_hexdump(MSG_DEBUG, "WPA: MAC Address in EAPOL-Key",
     360                 :          3 :                             pos, pos[1] + 2);
     361                 :          3 :                 return 0;
     362                 :            :         }
     363                 :            : 
     364                 :            : #ifdef CONFIG_PEERKEY
     365   [ +  +  +  + ]:       5050 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     366                 :       2439 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_SMK) {
     367                 :          2 :                 ie->smk = pos + 2 + RSN_SELECTOR_LEN;
     368                 :          2 :                 ie->smk_len = pos[1] - RSN_SELECTOR_LEN;
     369                 :          2 :                 wpa_hexdump_key(MSG_DEBUG, "WPA: SMK in EAPOL-Key",
     370                 :          2 :                                 pos, pos[1] + 2);
     371                 :          2 :                 return 0;
     372                 :            :         }
     373                 :            : 
     374   [ +  +  +  + ]:       5046 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     375                 :       2437 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_NONCE) {
     376                 :          2 :                 ie->nonce = pos + 2 + RSN_SELECTOR_LEN;
     377                 :          2 :                 ie->nonce_len = pos[1] - RSN_SELECTOR_LEN;
     378                 :          2 :                 wpa_hexdump(MSG_DEBUG, "WPA: Nonce in EAPOL-Key",
     379                 :          2 :                             pos, pos[1] + 2);
     380                 :          2 :                 return 0;
     381                 :            :         }
     382                 :            : 
     383   [ +  +  +  + ]:       5042 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     384                 :       2435 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_LIFETIME) {
     385                 :          4 :                 ie->lifetime = pos + 2 + RSN_SELECTOR_LEN;
     386                 :          4 :                 ie->lifetime_len = pos[1] - RSN_SELECTOR_LEN;
     387                 :          4 :                 wpa_hexdump(MSG_DEBUG, "WPA: Lifetime in EAPOL-Key",
     388                 :          4 :                             pos, pos[1] + 2);
     389                 :          4 :                 return 0;
     390                 :            :         }
     391                 :            : 
     392   [ +  +  -  + ]:       5034 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     393                 :       2431 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_ERROR) {
     394                 :          0 :                 ie->error = pos + 2 + RSN_SELECTOR_LEN;
     395                 :          0 :                 ie->error_len = pos[1] - RSN_SELECTOR_LEN;
     396                 :          0 :                 wpa_hexdump(MSG_DEBUG, "WPA: Error in EAPOL-Key",
     397                 :          0 :                             pos, pos[1] + 2);
     398                 :          0 :                 return 0;
     399                 :            :         }
     400                 :            : #endif /* CONFIG_PEERKEY */
     401                 :            : 
     402                 :            : #ifdef CONFIG_IEEE80211W
     403   [ +  +  +  + ]:       5034 :         if (pos[1] > RSN_SELECTOR_LEN + 2 &&
     404                 :       2431 :             RSN_SELECTOR_GET(pos + 2) == RSN_KEY_DATA_IGTK) {
     405                 :         16 :                 ie->igtk = pos + 2 + RSN_SELECTOR_LEN;
     406                 :         16 :                 ie->igtk_len = pos[1] - RSN_SELECTOR_LEN;
     407                 :         16 :                 wpa_hexdump_key(MSG_DEBUG, "WPA: IGTK in EAPOL-Key",
     408                 :         16 :                                 pos, pos[1] + 2);
     409                 :         16 :                 return 0;
     410                 :            :         }
     411                 :            : #endif /* CONFIG_IEEE80211W */
     412                 :            : 
     413                 :            : #ifdef CONFIG_P2P
     414   [ +  +  -  + ]:       5002 :         if (pos[1] >= RSN_SELECTOR_LEN + 1 &&
     415                 :       2415 :             RSN_SELECTOR_GET(pos + 2) == WFA_KEY_DATA_IP_ADDR_REQ) {
     416                 :          0 :                 ie->ip_addr_req = pos + 2 + RSN_SELECTOR_LEN;
     417                 :          0 :                 wpa_hexdump(MSG_DEBUG, "WPA: IP Address Request in EAPOL-Key",
     418                 :          0 :                             ie->ip_addr_req, pos[1] - RSN_SELECTOR_LEN);
     419                 :          0 :                 return 0;
     420                 :            :         }
     421                 :            : 
     422   [ +  +  +  + ]:       4788 :         if (pos[1] >= RSN_SELECTOR_LEN + 3 * 4 &&
     423                 :       2201 :             RSN_SELECTOR_GET(pos + 2) == WFA_KEY_DATA_IP_ADDR_ALLOC) {
     424                 :         50 :                 ie->ip_addr_alloc = pos + 2 + RSN_SELECTOR_LEN;
     425                 :         50 :                 wpa_hexdump(MSG_DEBUG,
     426                 :            :                             "WPA: IP Address Allocation in EAPOL-Key",
     427                 :        100 :                             ie->ip_addr_alloc, pos[1] - RSN_SELECTOR_LEN);
     428                 :         50 :                 return 0;
     429                 :            :         }
     430                 :            : #endif /* CONFIG_P2P */
     431                 :            : 
     432                 :       3243 :         return 0;
     433                 :            : }
     434                 :            : 
     435                 :            : 
     436                 :            : /**
     437                 :            :  * wpa_supplicant_parse_ies - Parse EAPOL-Key Key Data IEs
     438                 :            :  * @buf: Pointer to the Key Data buffer
     439                 :            :  * @len: Key Data Length
     440                 :            :  * @ie: Pointer to parsed IE data
     441                 :            :  * Returns: 0 on success, -1 on failure
     442                 :            :  */
     443                 :       2273 : int wpa_supplicant_parse_ies(const u8 *buf, size_t len,
     444                 :            :                              struct wpa_eapol_ie_parse *ie)
     445                 :            : {
     446                 :            :         const u8 *pos, *end;
     447                 :       2273 :         int ret = 0;
     448                 :            : 
     449                 :       2273 :         os_memset(ie, 0, sizeof(*ie));
     450         [ +  + ]:      16291 :         for (pos = buf, end = pos + len; pos + 1 < end; pos += 2 + pos[1]) {
     451 [ +  + ][ +  - ]:      14363 :                 if (pos[0] == 0xdd &&
     452         [ +  + ]:       3588 :                     ((pos == buf + len - 1) || pos[1] == 0)) {
     453                 :            :                         /* Ignore padding */
     454                 :            :                         break;
     455                 :            :                 }
     456         [ -  + ]:      14018 :                 if (pos + 2 + pos[1] > end) {
     457                 :          0 :                         wpa_printf(MSG_DEBUG, "WPA: EAPOL-Key Key Data "
     458                 :            :                                    "underflow (ie=%d len=%d pos=%d)",
     459                 :          0 :                                    pos[0], pos[1], (int) (pos - buf));
     460                 :          0 :                         wpa_hexdump_key(MSG_DEBUG, "WPA: Key Data",
     461                 :            :                                         buf, len);
     462                 :          0 :                         ret = -1;
     463                 :          0 :                         break;
     464                 :            :                 }
     465         [ +  + ]:      14018 :                 if (*pos == WLAN_EID_RSN) {
     466                 :       1024 :                         ie->rsn_ie = pos;
     467                 :       1024 :                         ie->rsn_ie_len = pos[1] + 2;
     468                 :       1024 :                         wpa_hexdump(MSG_DEBUG, "WPA: RSN IE in EAPOL-Key",
     469                 :       1024 :                                     ie->rsn_ie, ie->rsn_ie_len);
     470         [ +  + ]:      12994 :                 } else if (*pos == WLAN_EID_MOBILITY_DOMAIN) {
     471                 :         50 :                         ie->mdie = pos;
     472                 :         50 :                         ie->mdie_len = pos[1] + 2;
     473                 :         50 :                         wpa_hexdump(MSG_DEBUG, "WPA: MDIE in EAPOL-Key",
     474                 :         50 :                                     ie->mdie, ie->mdie_len);
     475         [ +  + ]:      12944 :                 } else if (*pos == WLAN_EID_FAST_BSS_TRANSITION) {
     476                 :        104 :                         ie->ftie = pos;
     477                 :        104 :                         ie->ftie_len = pos[1] + 2;
     478                 :        104 :                         wpa_hexdump(MSG_DEBUG, "WPA: FTIE in EAPOL-Key",
     479                 :        104 :                                     ie->ftie, ie->ftie_len);
     480 [ +  + ][ +  - ]:      12840 :                 } else if (*pos == WLAN_EID_TIMEOUT_INTERVAL && pos[1] >= 5) {
     481         [ +  + ]:        144 :                         if (pos[2] == WLAN_TIMEOUT_REASSOC_DEADLINE) {
     482                 :          8 :                                 ie->reassoc_deadline = pos;
     483                 :          8 :                                 wpa_hexdump(MSG_DEBUG, "WPA: Reassoc Deadline "
     484                 :            :                                             "in EAPOL-Key",
     485                 :         16 :                                             ie->reassoc_deadline, pos[1] + 2);
     486         [ +  - ]:         64 :                         } else if (pos[2] == WLAN_TIMEOUT_KEY_LIFETIME) {
     487                 :         64 :                                 ie->key_lifetime = pos;
     488                 :         64 :                                 wpa_hexdump(MSG_DEBUG, "WPA: KeyLifetime "
     489                 :            :                                             "in EAPOL-Key",
     490                 :        128 :                                             ie->key_lifetime, pos[1] + 2);
     491                 :            :                         } else {
     492                 :          0 :                                 wpa_hexdump(MSG_DEBUG, "WPA: Unrecognized "
     493                 :            :                                             "EAPOL-Key Key Data IE",
     494                 :          0 :                                             pos, 2 + pos[1]);
     495                 :            :                         }
     496         [ +  + ]:      12768 :                 } else if (*pos == WLAN_EID_LINK_ID) {
     497         [ +  - ]:         84 :                         if (pos[1] >= 18) {
     498                 :         84 :                                 ie->lnkid = pos;
     499                 :         84 :                                 ie->lnkid_len = pos[1] + 2;
     500                 :            :                         }
     501         [ +  + ]:      12684 :                 } else if (*pos == WLAN_EID_EXT_CAPAB) {
     502                 :       1397 :                         ie->ext_capab = pos;
     503                 :       1397 :                         ie->ext_capab_len = pos[1] + 2;
     504         [ +  + ]:      11287 :                 } else if (*pos == WLAN_EID_SUPP_RATES) {
     505                 :       1397 :                         ie->supp_rates = pos;
     506                 :       1397 :                         ie->supp_rates_len = pos[1] + 2;
     507         [ +  + ]:       9890 :                 } else if (*pos == WLAN_EID_EXT_SUPP_RATES) {
     508                 :       1044 :                         ie->ext_supp_rates = pos;
     509                 :       1044 :                         ie->ext_supp_rates_len = pos[1] + 2;
     510         [ +  + ]:       8846 :                 } else if (*pos == WLAN_EID_HT_CAP) {
     511                 :       1329 :                         ie->ht_capabilities = pos + 2;
     512                 :       1329 :                         ie->ht_capabilities_len = pos[1];
     513         [ -  + ]:       7517 :                 } else if (*pos == WLAN_EID_VHT_AID) {
     514         [ #  # ]:          0 :                         if (pos[1] >= 2)
     515                 :          0 :                                 ie->aid = WPA_GET_LE16(pos + 2);
     516         [ -  + ]:       7517 :                 } else if (*pos == WLAN_EID_VHT_CAP) {
     517                 :          0 :                         ie->vht_capabilities = pos + 2;
     518                 :          0 :                         ie->vht_capabilities_len = pos[1];
     519 [ -  + ][ #  # ]:       7517 :                 } else if (*pos == WLAN_EID_QOS && pos[1] >= 1) {
     520                 :          0 :                         ie->qosinfo = pos[2];
     521         [ -  + ]:       7517 :                 } else if (*pos == WLAN_EID_SUPPORTED_CHANNELS) {
     522                 :          0 :                         ie->supp_channels = pos + 2;
     523                 :          0 :                         ie->supp_channels_len = pos[1];
     524         [ -  + ]:       7517 :                 } else if (*pos == WLAN_EID_SUPPORTED_OPERATING_CLASSES) {
     525                 :            :                         /*
     526                 :            :                          * The value of the Length field of the Supported
     527                 :            :                          * Operating Classes element is between 2 and 253.
     528                 :            :                          * Silently skip invalid elements to avoid interop
     529                 :            :                          * issues when trying to use the value.
     530                 :            :                          */
     531 [ #  # ][ #  # ]:          0 :                         if (pos[1] >= 2 && pos[1] <= 253) {
     532                 :          0 :                                 ie->supp_oper_classes = pos + 2;
     533                 :          0 :                                 ie->supp_oper_classes_len = pos[1];
     534                 :            :                         }
     535         [ +  + ]:       7517 :                 } else if (*pos == WLAN_EID_VENDOR_SPECIFIC) {
     536                 :       3243 :                         ret = wpa_parse_generic(pos, end, ie);
     537         [ -  + ]:       3243 :                         if (ret < 0)
     538                 :          0 :                                 break;
     539         [ -  + ]:       3243 :                         if (ret > 0) {
     540                 :          0 :                                 ret = 0;
     541                 :          0 :                                 break;
     542                 :            :                         }
     543                 :            :                 } else {
     544                 :       4274 :                         wpa_hexdump(MSG_DEBUG, "WPA: Unrecognized EAPOL-Key "
     545                 :       4274 :                                     "Key Data IE", pos, 2 + pos[1]);
     546                 :            :                 }
     547                 :            :         }
     548                 :            : 
     549                 :       2273 :         return ret;
     550                 :            : }

Generated by: LCOV version 1.9