LCOV - code coverage report
Current view: top level - src/eap_peer - eap_fast.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1388338050 Lines: 574 818 70.2 %
Date: 2013-12-29 Functions: 40 44 90.9 %
Branches: 236 430 54.9 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * EAP peer method: EAP-FAST (RFC 4851)
       3                 :            :  * Copyright (c) 2004-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 "crypto/tls.h"
      13                 :            : #include "crypto/sha1.h"
      14                 :            : #include "eap_common/eap_tlv_common.h"
      15                 :            : #include "eap_i.h"
      16                 :            : #include "eap_tls_common.h"
      17                 :            : #include "eap_config.h"
      18                 :            : #include "eap_fast_pac.h"
      19                 :            : 
      20                 :            : #ifdef EAP_FAST_DYNAMIC
      21                 :            : #include "eap_fast_pac.c"
      22                 :            : #endif /* EAP_FAST_DYNAMIC */
      23                 :            : 
      24                 :            : /* TODO:
      25                 :            :  * - test session resumption and enable it if it interoperates
      26                 :            :  * - password change (pending mschapv2 packet; replay decrypted packet)
      27                 :            :  */
      28                 :            : 
      29                 :            : 
      30                 :            : static void eap_fast_deinit(struct eap_sm *sm, void *priv);
      31                 :            : 
      32                 :            : 
      33                 :            : struct eap_fast_data {
      34                 :            :         struct eap_ssl_data ssl;
      35                 :            : 
      36                 :            :         int fast_version;
      37                 :            : 
      38                 :            :         const struct eap_method *phase2_method;
      39                 :            :         void *phase2_priv;
      40                 :            :         int phase2_success;
      41                 :            : 
      42                 :            :         struct eap_method_type phase2_type;
      43                 :            :         struct eap_method_type *phase2_types;
      44                 :            :         size_t num_phase2_types;
      45                 :            :         int resuming; /* starting a resumed session */
      46                 :            :         struct eap_fast_key_block_provisioning *key_block_p;
      47                 :            : #define EAP_FAST_PROV_UNAUTH 1
      48                 :            : #define EAP_FAST_PROV_AUTH 2
      49                 :            :         int provisioning_allowed; /* Allowed PAC provisioning modes */
      50                 :            :         int provisioning; /* doing PAC provisioning (not the normal auth) */
      51                 :            :         int anon_provisioning; /* doing anonymous (unauthenticated)
      52                 :            :                                 * provisioning */
      53                 :            :         int session_ticket_used;
      54                 :            : 
      55                 :            :         u8 key_data[EAP_FAST_KEY_LEN];
      56                 :            :         u8 *session_id;
      57                 :            :         size_t id_len;
      58                 :            :         u8 emsk[EAP_EMSK_LEN];
      59                 :            :         int success;
      60                 :            : 
      61                 :            :         struct eap_fast_pac *pac;
      62                 :            :         struct eap_fast_pac *current_pac;
      63                 :            :         size_t max_pac_list_len;
      64                 :            :         int use_pac_binary_format;
      65                 :            : 
      66                 :            :         u8 simck[EAP_FAST_SIMCK_LEN];
      67                 :            :         int simck_idx;
      68                 :            : 
      69                 :            :         struct wpabuf *pending_phase2_req;
      70                 :            : };
      71                 :            : 
      72                 :            : 
      73                 :          2 : static int eap_fast_session_ticket_cb(void *ctx, const u8 *ticket, size_t len,
      74                 :            :                                       const u8 *client_random,
      75                 :            :                                       const u8 *server_random,
      76                 :            :                                       u8 *master_secret)
      77                 :            : {
      78                 :          2 :         struct eap_fast_data *data = ctx;
      79                 :            : 
      80                 :          2 :         wpa_printf(MSG_DEBUG, "EAP-FAST: SessionTicket callback");
      81                 :            : 
      82 [ +  - ][ +  - ]:          2 :         if (client_random == NULL || server_random == NULL ||
                 [ -  + ]
      83                 :            :             master_secret == NULL) {
      84                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: SessionTicket failed - fall "
      85                 :            :                            "back to full TLS handshake");
      86                 :          0 :                 data->session_ticket_used = 0;
      87         [ #  # ]:          0 :                 if (data->provisioning_allowed) {
      88                 :          0 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: Try to provision a "
      89                 :            :                                    "new PAC-Key");
      90                 :          0 :                         data->provisioning = 1;
      91                 :          0 :                         data->current_pac = NULL;
      92                 :            :                 }
      93                 :          0 :                 return 0;
      94                 :            :         }
      95                 :            : 
      96                 :          2 :         wpa_hexdump(MSG_DEBUG, "EAP-FAST: SessionTicket", ticket, len);
      97                 :            : 
      98         [ +  + ]:          2 :         if (data->current_pac == NULL) {
      99                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: No PAC-Key available for "
     100                 :            :                            "using SessionTicket");
     101                 :          1 :                 data->session_ticket_used = 0;
     102                 :          1 :                 return 0;
     103                 :            :         }
     104                 :            : 
     105                 :          1 :         eap_fast_derive_master_secret(data->current_pac->pac_key,
     106                 :            :                                       server_random, client_random,
     107                 :            :                                       master_secret);
     108                 :            : 
     109                 :          1 :         data->session_ticket_used = 1;
     110                 :            : 
     111                 :          2 :         return 1;
     112                 :            : }
     113                 :            : 
     114                 :            : 
     115                 :          2 : static int eap_fast_parse_phase1(struct eap_fast_data *data,
     116                 :            :                                  const char *phase1)
     117                 :            : {
     118                 :            :         const char *pos;
     119                 :            : 
     120                 :          2 :         pos = os_strstr(phase1, "fast_provisioning=");
     121         [ +  - ]:          2 :         if (pos) {
     122                 :          2 :                 data->provisioning_allowed = atoi(pos + 18);
     123                 :          2 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Automatic PAC provisioning "
     124                 :            :                            "mode: %d", data->provisioning_allowed);
     125                 :            :         }
     126                 :            : 
     127                 :          2 :         pos = os_strstr(phase1, "fast_max_pac_list_len=");
     128         [ -  + ]:          2 :         if (pos) {
     129                 :          0 :                 data->max_pac_list_len = atoi(pos + 22);
     130         [ #  # ]:          0 :                 if (data->max_pac_list_len == 0)
     131                 :          0 :                         data->max_pac_list_len = 1;
     132                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Maximum PAC list length: %lu",
     133                 :            :                            (unsigned long) data->max_pac_list_len);
     134                 :            :         }
     135                 :            : 
     136                 :          2 :         pos = os_strstr(phase1, "fast_pac_format=binary");
     137         [ -  + ]:          2 :         if (pos) {
     138                 :          0 :                 data->use_pac_binary_format = 1;
     139                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Using binary format for PAC "
     140                 :            :                            "list");
     141                 :            :         }
     142                 :            : 
     143                 :          2 :         return 0;
     144                 :            : }
     145                 :            : 
     146                 :            : 
     147                 :          2 : static void * eap_fast_init(struct eap_sm *sm)
     148                 :            : {
     149                 :            :         struct eap_fast_data *data;
     150                 :          2 :         struct eap_peer_config *config = eap_get_config(sm);
     151                 :            : 
     152                 :          2 :         data = os_zalloc(sizeof(*data));
     153         [ -  + ]:          2 :         if (data == NULL)
     154                 :          0 :                 return NULL;
     155                 :          2 :         data->fast_version = EAP_FAST_VERSION;
     156                 :          2 :         data->max_pac_list_len = 10;
     157                 :            : 
     158         [ +  - ]:          4 :         if (config && config->phase1 &&
           [ +  -  -  + ]
     159                 :          2 :             eap_fast_parse_phase1(data, config->phase1) < 0) {
     160                 :          0 :                 eap_fast_deinit(sm, data);
     161                 :          0 :                 return NULL;
     162                 :            :         }
     163                 :            : 
     164         [ -  + ]:          2 :         if (eap_peer_select_phase2_methods(config, "auth=",
     165                 :            :                                            &data->phase2_types,
     166                 :            :                                            &data->num_phase2_types) < 0) {
     167                 :          0 :                 eap_fast_deinit(sm, data);
     168                 :          0 :                 return NULL;
     169                 :            :         }
     170                 :            : 
     171                 :          2 :         data->phase2_type.vendor = EAP_VENDOR_IETF;
     172                 :          2 :         data->phase2_type.method = EAP_TYPE_NONE;
     173                 :            : 
     174         [ -  + ]:          2 :         if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_FAST)) {
     175                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Failed to initialize SSL.");
     176                 :          0 :                 eap_fast_deinit(sm, data);
     177                 :          0 :                 return NULL;
     178                 :            :         }
     179                 :            : 
     180         [ -  + ]:          2 :         if (tls_connection_set_session_ticket_cb(sm->ssl_ctx, data->ssl.conn,
     181                 :            :                                                  eap_fast_session_ticket_cb,
     182                 :            :                                                  data) < 0) {
     183                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Failed to set SessionTicket "
     184                 :            :                            "callback");
     185                 :          0 :                 eap_fast_deinit(sm, data);
     186                 :          0 :                 return NULL;
     187                 :            :         }
     188                 :            : 
     189                 :            :         /*
     190                 :            :          * The local RADIUS server in a Cisco AP does not seem to like empty
     191                 :            :          * fragments before data, so disable that workaround for CBC.
     192                 :            :          * TODO: consider making this configurable
     193                 :            :          */
     194         [ -  + ]:          2 :         if (tls_connection_enable_workaround(sm->ssl_ctx, data->ssl.conn)) {
     195                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to enable TLS "
     196                 :            :                            "workarounds");
     197                 :            :         }
     198                 :            : 
     199   [ -  +  #  # ]:          2 :         if (data->use_pac_binary_format &&
     200                 :          0 :             eap_fast_load_pac_bin(sm, &data->pac, config->pac_file) < 0) {
     201                 :          0 :                 eap_fast_deinit(sm, data);
     202                 :          0 :                 return NULL;
     203                 :            :         }
     204                 :            : 
     205   [ +  -  -  + ]:          4 :         if (!data->use_pac_binary_format &&
     206                 :          2 :             eap_fast_load_pac(sm, &data->pac, config->pac_file) < 0) {
     207                 :          0 :                 eap_fast_deinit(sm, data);
     208                 :          0 :                 return NULL;
     209                 :            :         }
     210                 :          2 :         eap_fast_pac_list_truncate(data->pac, data->max_pac_list_len);
     211                 :            : 
     212 [ +  + ][ -  + ]:          2 :         if (data->pac == NULL && !data->provisioning_allowed) {
     213                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: No PAC configured and "
     214                 :            :                            "provisioning disabled");
     215                 :          0 :                 eap_fast_deinit(sm, data);
     216                 :          0 :                 return NULL;
     217                 :            :         }
     218                 :            : 
     219                 :          2 :         return data;
     220                 :            : }
     221                 :            : 
     222                 :            : 
     223                 :          2 : static void eap_fast_deinit(struct eap_sm *sm, void *priv)
     224                 :            : {
     225                 :          2 :         struct eap_fast_data *data = priv;
     226                 :            :         struct eap_fast_pac *pac, *prev;
     227                 :            : 
     228         [ -  + ]:          2 :         if (data == NULL)
     229                 :          2 :                 return;
     230 [ +  - ][ +  - ]:          2 :         if (data->phase2_priv && data->phase2_method)
     231                 :          2 :                 data->phase2_method->deinit(sm, data->phase2_priv);
     232                 :          2 :         os_free(data->phase2_types);
     233                 :          2 :         os_free(data->key_block_p);
     234                 :          2 :         eap_peer_tls_ssl_deinit(sm, &data->ssl);
     235                 :            : 
     236                 :          2 :         pac = data->pac;
     237                 :          2 :         prev = NULL;
     238         [ +  + ]:          4 :         while (pac) {
     239                 :          2 :                 prev = pac;
     240                 :          2 :                 pac = pac->next;
     241                 :          2 :                 eap_fast_free_pac(prev);
     242                 :            :         }
     243                 :          2 :         os_free(data->session_id);
     244                 :          2 :         wpabuf_free(data->pending_phase2_req);
     245                 :          2 :         os_free(data);
     246                 :            : }
     247                 :            : 
     248                 :            : 
     249                 :          2 : static int eap_fast_derive_msk(struct eap_fast_data *data)
     250                 :            : {
     251                 :          2 :         eap_fast_derive_eap_msk(data->simck, data->key_data);
     252                 :          2 :         eap_fast_derive_eap_emsk(data->simck, data->emsk);
     253                 :          2 :         data->success = 1;
     254                 :          2 :         return 0;
     255                 :            : }
     256                 :            : 
     257                 :            : 
     258                 :          2 : static void eap_fast_derive_key_auth(struct eap_sm *sm,
     259                 :            :                                      struct eap_fast_data *data)
     260                 :            : {
     261                 :            :         u8 *sks;
     262                 :            : 
     263                 :            :         /* RFC 4851, Section 5.1:
     264                 :            :          * Extra key material after TLS key_block: session_key_seed[40]
     265                 :            :          */
     266                 :            : 
     267                 :          2 :         sks = eap_fast_derive_key(sm->ssl_ctx, data->ssl.conn, "key expansion",
     268                 :            :                                   EAP_FAST_SKS_LEN);
     269         [ -  + ]:          2 :         if (sks == NULL) {
     270                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to derive "
     271                 :            :                            "session_key_seed");
     272                 :          2 :                 return;
     273                 :            :         }
     274                 :            : 
     275                 :            :         /*
     276                 :            :          * RFC 4851, Section 5.2:
     277                 :            :          * S-IMCK[0] = session_key_seed
     278                 :            :          */
     279                 :          2 :         wpa_hexdump_key(MSG_DEBUG,
     280                 :            :                         "EAP-FAST: session_key_seed (SKS = S-IMCK[0])",
     281                 :            :                         sks, EAP_FAST_SKS_LEN);
     282                 :          2 :         data->simck_idx = 0;
     283                 :          2 :         os_memcpy(data->simck, sks, EAP_FAST_SIMCK_LEN);
     284                 :          2 :         os_free(sks);
     285                 :            : }
     286                 :            : 
     287                 :            : 
     288                 :          0 : static void eap_fast_derive_key_provisioning(struct eap_sm *sm,
     289                 :            :                                              struct eap_fast_data *data)
     290                 :            : {
     291                 :          0 :         os_free(data->key_block_p);
     292                 :          0 :         data->key_block_p = (struct eap_fast_key_block_provisioning *)
     293                 :          0 :                 eap_fast_derive_key(sm->ssl_ctx, data->ssl.conn,
     294                 :            :                                     "key expansion",
     295                 :            :                                     sizeof(*data->key_block_p));
     296         [ #  # ]:          0 :         if (data->key_block_p == NULL) {
     297                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to derive key block");
     298                 :          0 :                 return;
     299                 :            :         }
     300                 :            :         /*
     301                 :            :          * RFC 4851, Section 5.2:
     302                 :            :          * S-IMCK[0] = session_key_seed
     303                 :            :          */
     304                 :          0 :         wpa_hexdump_key(MSG_DEBUG,
     305                 :            :                         "EAP-FAST: session_key_seed (SKS = S-IMCK[0])",
     306                 :          0 :                         data->key_block_p->session_key_seed,
     307                 :            :                         sizeof(data->key_block_p->session_key_seed));
     308                 :          0 :         data->simck_idx = 0;
     309                 :          0 :         os_memcpy(data->simck, data->key_block_p->session_key_seed,
     310                 :            :                   EAP_FAST_SIMCK_LEN);
     311                 :          0 :         wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: server_challenge",
     312                 :          0 :                         data->key_block_p->server_challenge,
     313                 :            :                         sizeof(data->key_block_p->server_challenge));
     314                 :          0 :         wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: client_challenge",
     315                 :          0 :                         data->key_block_p->client_challenge,
     316                 :            :                         sizeof(data->key_block_p->client_challenge));
     317                 :            : }
     318                 :            : 
     319                 :            : 
     320                 :          2 : static void eap_fast_derive_keys(struct eap_sm *sm, struct eap_fast_data *data)
     321                 :            : {
     322         [ -  + ]:          2 :         if (data->anon_provisioning)
     323                 :          0 :                 eap_fast_derive_key_provisioning(sm, data);
     324                 :            :         else
     325                 :          2 :                 eap_fast_derive_key_auth(sm, data);
     326                 :          2 : }
     327                 :            : 
     328                 :            : 
     329                 :          2 : static int eap_fast_init_phase2_method(struct eap_sm *sm,
     330                 :            :                                        struct eap_fast_data *data)
     331                 :            : {
     332                 :          2 :         data->phase2_method =
     333                 :          2 :                 eap_peer_get_eap_method(data->phase2_type.vendor,
     334                 :          2 :                                         data->phase2_type.method);
     335         [ -  + ]:          2 :         if (data->phase2_method == NULL)
     336                 :          0 :                 return -1;
     337                 :            : 
     338         [ -  + ]:          2 :         if (data->key_block_p) {
     339                 :          0 :                 sm->auth_challenge = data->key_block_p->server_challenge;
     340                 :          0 :                 sm->peer_challenge = data->key_block_p->client_challenge;
     341                 :            :         }
     342                 :          2 :         sm->init_phase2 = 1;
     343                 :          2 :         data->phase2_priv = data->phase2_method->init(sm);
     344                 :          2 :         sm->init_phase2 = 0;
     345                 :          2 :         sm->auth_challenge = NULL;
     346                 :          2 :         sm->peer_challenge = NULL;
     347                 :            : 
     348         [ -  + ]:          2 :         return data->phase2_priv == NULL ? -1 : 0;
     349                 :            : }
     350                 :            : 
     351                 :            : 
     352                 :          3 : static int eap_fast_select_phase2_method(struct eap_fast_data *data, u8 type)
     353                 :            : {
     354                 :            :         size_t i;
     355                 :            : 
     356                 :            :         /* TODO: TNC with anonymous provisioning; need to require both
     357                 :            :          * completed MSCHAPv2 and TNC */
     358                 :            : 
     359 [ -  + ][ #  # ]:          3 :         if (data->anon_provisioning && type != EAP_TYPE_MSCHAPV2) {
     360                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Only EAP-MSCHAPv2 is allowed "
     361                 :            :                            "during unauthenticated provisioning; reject phase2"
     362                 :            :                            " type %d", type);
     363                 :          0 :                 return -1;
     364                 :            :         }
     365                 :            : 
     366                 :            : #ifdef EAP_TNC
     367         [ -  + ]:          3 :         if (type == EAP_TYPE_TNC) {
     368                 :          0 :                 data->phase2_type.vendor = EAP_VENDOR_IETF;
     369                 :          0 :                 data->phase2_type.method = EAP_TYPE_TNC;
     370                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Selected Phase 2 EAP "
     371                 :            :                            "vendor %d method %d for TNC",
     372                 :            :                            data->phase2_type.vendor,
     373                 :            :                            data->phase2_type.method);
     374                 :          0 :                 return 0;
     375                 :            :         }
     376                 :            : #endif /* EAP_TNC */
     377                 :            : 
     378         [ +  + ]:          4 :         for (i = 0; i < data->num_phase2_types; i++) {
     379 [ +  - ][ +  + ]:          3 :                 if (data->phase2_types[i].vendor != EAP_VENDOR_IETF ||
     380                 :          3 :                     data->phase2_types[i].method != type)
     381                 :          1 :                         continue;
     382                 :            : 
     383                 :          2 :                 data->phase2_type.vendor = data->phase2_types[i].vendor;
     384                 :          2 :                 data->phase2_type.method = data->phase2_types[i].method;
     385                 :          2 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Selected Phase 2 EAP "
     386                 :            :                            "vendor %d method %d",
     387                 :            :                            data->phase2_type.vendor,
     388                 :            :                            data->phase2_type.method);
     389                 :          2 :                 break;
     390                 :            :         }
     391                 :            : 
     392 [ +  + ][ -  + ]:          3 :         if (type != data->phase2_type.method || type == EAP_TYPE_NONE)
     393                 :          1 :                 return -1;
     394                 :            : 
     395                 :          3 :         return 0;
     396                 :            : }
     397                 :            : 
     398                 :            : 
     399                 :          5 : static int eap_fast_phase2_request(struct eap_sm *sm,
     400                 :            :                                    struct eap_fast_data *data,
     401                 :            :                                    struct eap_method_ret *ret,
     402                 :            :                                    struct eap_hdr *hdr,
     403                 :            :                                    struct wpabuf **resp)
     404                 :            : {
     405                 :          5 :         size_t len = be_to_host16(hdr->length);
     406                 :            :         u8 *pos;
     407                 :            :         struct eap_method_ret iret;
     408                 :          5 :         struct eap_peer_config *config = eap_get_config(sm);
     409                 :            :         struct wpabuf msg;
     410                 :            : 
     411         [ -  + ]:          5 :         if (len <= sizeof(struct eap_hdr)) {
     412                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: too short "
     413                 :            :                            "Phase 2 request (len=%lu)", (unsigned long) len);
     414                 :          0 :                 return -1;
     415                 :            :         }
     416                 :          5 :         pos = (u8 *) (hdr + 1);
     417                 :          5 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Phase 2 Request: type=%d", *pos);
     418         [ +  + ]:          5 :         if (*pos == EAP_TYPE_IDENTITY) {
     419                 :          1 :                 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1);
     420                 :          1 :                 return 0;
     421                 :            :         }
     422                 :            : 
     423 [ +  + ][ +  - ]:          4 :         if (data->phase2_priv && data->phase2_method &&
                 [ -  + ]
     424                 :          1 :             *pos != data->phase2_type.method) {
     425                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase 2 EAP sequence - "
     426                 :            :                            "deinitialize previous method");
     427                 :          0 :                 data->phase2_method->deinit(sm, data->phase2_priv);
     428                 :          0 :                 data->phase2_method = NULL;
     429                 :          0 :                 data->phase2_priv = NULL;
     430                 :          0 :                 data->phase2_type.vendor = EAP_VENDOR_IETF;
     431                 :          0 :                 data->phase2_type.method = EAP_TYPE_NONE;
     432                 :            :         }
     433                 :            : 
     434 [ +  - ][ +  + ]:          4 :         if (data->phase2_type.vendor == EAP_VENDOR_IETF &&
     435         [ +  + ]:          3 :             data->phase2_type.method == EAP_TYPE_NONE &&
     436                 :          3 :             eap_fast_select_phase2_method(data, *pos) < 0) {
     437         [ -  + ]:          1 :                 if (eap_peer_tls_phase2_nak(data->phase2_types,
     438                 :            :                                             data->num_phase2_types,
     439                 :            :                                             hdr, resp))
     440                 :          0 :                         return -1;
     441                 :          1 :                 return 0;
     442                 :            :         }
     443                 :            : 
     444   [ +  +  +  - ]:          5 :         if ((data->phase2_priv == NULL &&
     445         [ -  + ]:          5 :              eap_fast_init_phase2_method(sm, data) < 0) ||
     446                 :          3 :             data->phase2_method == NULL) {
     447                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Failed to initialize "
     448                 :          0 :                            "Phase 2 EAP method %d", *pos);
     449                 :          0 :                 ret->methodState = METHOD_DONE;
     450                 :          0 :                 ret->decision = DECISION_FAIL;
     451                 :          0 :                 return -1;
     452                 :            :         }
     453                 :            : 
     454                 :          3 :         os_memset(&iret, 0, sizeof(iret));
     455                 :          3 :         wpabuf_set(&msg, hdr, len);
     456                 :          3 :         *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
     457                 :            :                                              &msg);
     458 [ +  - ][ +  + ]:          3 :         if (*resp == NULL ||
     459         [ -  + ]:          1 :             (iret.methodState == METHOD_DONE &&
     460                 :          1 :              iret.decision == DECISION_FAIL)) {
     461                 :          0 :                 ret->methodState = METHOD_DONE;
     462                 :          0 :                 ret->decision = DECISION_FAIL;
     463 [ +  + ][ +  - ]:          3 :         } else if ((iret.methodState == METHOD_DONE ||
     464         [ +  + ]:          3 :                     iret.methodState == METHOD_MAY_CONT) &&
     465         [ +  + ]:          2 :                    (iret.decision == DECISION_UNCOND_SUCC ||
     466                 :          2 :                     iret.decision == DECISION_COND_SUCC)) {
     467                 :          2 :                 data->phase2_success = 1;
     468                 :            :         }
     469                 :            : 
     470 [ -  + ][ #  # ]:          3 :         if (*resp == NULL && config &&
                 [ #  # ]
     471 [ #  # ][ #  # ]:          0 :             (config->pending_req_identity || config->pending_req_password ||
     472         [ #  # ]:          0 :              config->pending_req_otp || config->pending_req_new_password)) {
     473                 :          0 :                 wpabuf_free(data->pending_phase2_req);
     474                 :          0 :                 data->pending_phase2_req = wpabuf_alloc_copy(hdr, len);
     475         [ -  + ]:          3 :         } else if (*resp == NULL)
     476                 :          0 :                 return -1;
     477                 :            : 
     478                 :          5 :         return 0;
     479                 :            : }
     480                 :            : 
     481                 :            : 
     482                 :          0 : static struct wpabuf * eap_fast_tlv_nak(int vendor_id, int tlv_type)
     483                 :            : {
     484                 :            :         struct wpabuf *buf;
     485                 :            :         struct eap_tlv_nak_tlv *nak;
     486                 :          0 :         buf = wpabuf_alloc(sizeof(*nak));
     487         [ #  # ]:          0 :         if (buf == NULL)
     488                 :          0 :                 return NULL;
     489                 :          0 :         nak = wpabuf_put(buf, sizeof(*nak));
     490                 :          0 :         nak->tlv_type = host_to_be16(EAP_TLV_TYPE_MANDATORY | EAP_TLV_NAK_TLV);
     491                 :          0 :         nak->length = host_to_be16(6);
     492                 :          0 :         nak->vendor_id = host_to_be32(vendor_id);
     493                 :          0 :         nak->nak_type = host_to_be16(tlv_type);
     494                 :          0 :         return buf;
     495                 :            : }
     496                 :            : 
     497                 :            : 
     498                 :          3 : static struct wpabuf * eap_fast_tlv_result(int status, int intermediate)
     499                 :            : {
     500                 :            :         struct wpabuf *buf;
     501                 :            :         struct eap_tlv_intermediate_result_tlv *result;
     502                 :          3 :         buf = wpabuf_alloc(sizeof(*result));
     503         [ -  + ]:          3 :         if (buf == NULL)
     504                 :          0 :                 return NULL;
     505         [ -  + ]:          3 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Add %sResult TLV(status=%d)",
     506                 :            :                    intermediate ? "Intermediate " : "", status);
     507                 :          3 :         result = wpabuf_put(buf, sizeof(*result));
     508         [ -  + ]:          3 :         result->tlv_type = host_to_be16(EAP_TLV_TYPE_MANDATORY |
     509                 :            :                                         (intermediate ?
     510                 :            :                                          EAP_TLV_INTERMEDIATE_RESULT_TLV :
     511                 :            :                                          EAP_TLV_RESULT_TLV));
     512                 :          3 :         result->length = host_to_be16(2);
     513                 :          3 :         result->status = host_to_be16(status);
     514                 :          3 :         return buf;
     515                 :            : }
     516                 :            : 
     517                 :            : 
     518                 :          1 : static struct wpabuf * eap_fast_tlv_pac_ack(void)
     519                 :            : {
     520                 :            :         struct wpabuf *buf;
     521                 :            :         struct eap_tlv_result_tlv *res;
     522                 :            :         struct eap_tlv_pac_ack_tlv *ack;
     523                 :            : 
     524                 :          1 :         buf = wpabuf_alloc(sizeof(*res) + sizeof(*ack));
     525         [ -  + ]:          1 :         if (buf == NULL)
     526                 :          0 :                 return NULL;
     527                 :            : 
     528                 :          1 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Add PAC TLV (ack)");
     529                 :          1 :         ack = wpabuf_put(buf, sizeof(*ack));
     530                 :          1 :         ack->tlv_type = host_to_be16(EAP_TLV_PAC_TLV |
     531                 :            :                                      EAP_TLV_TYPE_MANDATORY);
     532                 :          1 :         ack->length = host_to_be16(sizeof(*ack) - sizeof(struct eap_tlv_hdr));
     533                 :          1 :         ack->pac_type = host_to_be16(PAC_TYPE_PAC_ACKNOWLEDGEMENT);
     534                 :          1 :         ack->pac_len = host_to_be16(2);
     535                 :          1 :         ack->result = host_to_be16(EAP_TLV_RESULT_SUCCESS);
     536                 :            : 
     537                 :          1 :         return buf;
     538                 :            : }
     539                 :            : 
     540                 :            : 
     541                 :          5 : static struct wpabuf * eap_fast_process_eap_payload_tlv(
     542                 :            :         struct eap_sm *sm, struct eap_fast_data *data,
     543                 :            :         struct eap_method_ret *ret,
     544                 :            :         u8 *eap_payload_tlv, size_t eap_payload_tlv_len)
     545                 :            : {
     546                 :            :         struct eap_hdr *hdr;
     547                 :          5 :         struct wpabuf *resp = NULL;
     548                 :            : 
     549         [ -  + ]:          5 :         if (eap_payload_tlv_len < sizeof(*hdr)) {
     550                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: too short EAP "
     551                 :            :                            "Payload TLV (len=%lu)",
     552                 :            :                            (unsigned long) eap_payload_tlv_len);
     553                 :          0 :                 return NULL;
     554                 :            :         }
     555                 :            : 
     556                 :          5 :         hdr = (struct eap_hdr *) eap_payload_tlv;
     557         [ -  + ]:          5 :         if (be_to_host16(hdr->length) > eap_payload_tlv_len) {
     558                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: EAP packet overflow in "
     559                 :            :                            "EAP Payload TLV");
     560                 :          0 :                 return NULL;
     561                 :            :         }
     562                 :            : 
     563         [ -  + ]:          5 :         if (hdr->code != EAP_CODE_REQUEST) {
     564                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Unexpected code=%d in "
     565                 :          0 :                            "Phase 2 EAP header", hdr->code);
     566                 :          0 :                 return NULL;
     567                 :            :         }
     568                 :            : 
     569         [ -  + ]:          5 :         if (eap_fast_phase2_request(sm, data, ret, hdr, &resp)) {
     570                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Phase2 Request processing "
     571                 :            :                            "failed");
     572                 :          0 :                 return NULL;
     573                 :            :         }
     574                 :            : 
     575                 :          5 :         return eap_fast_tlv_eap_payload(resp);
     576                 :            : }
     577                 :            : 
     578                 :            : 
     579                 :          2 : static int eap_fast_validate_crypto_binding(
     580                 :            :         struct eap_tlv_crypto_binding_tlv *_bind)
     581                 :            : {
     582                 :          2 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Crypto-Binding TLV: Version %d "
     583                 :            :                    "Received Version %d SubType %d",
     584                 :          6 :                    _bind->version, _bind->received_version, _bind->subtype);
     585                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: NONCE",
     586                 :          2 :                     _bind->nonce, sizeof(_bind->nonce));
     587                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Compound MAC",
     588                 :          2 :                     _bind->compound_mac, sizeof(_bind->compound_mac));
     589                 :            : 
     590 [ +  - ][ +  - ]:          2 :         if (_bind->version != EAP_FAST_VERSION ||
     591         [ -  + ]:          2 :             _bind->received_version != EAP_FAST_VERSION ||
     592                 :          2 :             _bind->subtype != EAP_TLV_CRYPTO_BINDING_SUBTYPE_REQUEST) {
     593                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Invalid version/subtype in "
     594                 :            :                            "Crypto-Binding TLV: Version %d "
     595                 :            :                            "Received Version %d SubType %d",
     596                 :          0 :                            _bind->version, _bind->received_version,
     597                 :          0 :                            _bind->subtype);
     598                 :          0 :                 return -1;
     599                 :            :         }
     600                 :            : 
     601                 :          2 :         return 0;
     602                 :            : }
     603                 :            : 
     604                 :            : 
     605                 :          2 : static void eap_fast_write_crypto_binding(
     606                 :            :         struct eap_tlv_crypto_binding_tlv *rbind,
     607                 :            :         struct eap_tlv_crypto_binding_tlv *_bind, const u8 *cmk)
     608                 :            : {
     609                 :          2 :         rbind->tlv_type = host_to_be16(EAP_TLV_TYPE_MANDATORY |
     610                 :            :                                        EAP_TLV_CRYPTO_BINDING_TLV);
     611                 :          2 :         rbind->length = host_to_be16(sizeof(*rbind) -
     612                 :            :                                      sizeof(struct eap_tlv_hdr));
     613                 :          2 :         rbind->version = EAP_FAST_VERSION;
     614                 :          2 :         rbind->received_version = _bind->version;
     615                 :          2 :         rbind->subtype = EAP_TLV_CRYPTO_BINDING_SUBTYPE_RESPONSE;
     616                 :          2 :         os_memcpy(rbind->nonce, _bind->nonce, sizeof(_bind->nonce));
     617                 :          2 :         inc_byte_array(rbind->nonce, sizeof(rbind->nonce));
     618                 :          2 :         hmac_sha1(cmk, EAP_FAST_CMK_LEN, (u8 *) rbind, sizeof(*rbind),
     619                 :          2 :                   rbind->compound_mac);
     620                 :            : 
     621                 :          2 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Reply Crypto-Binding TLV: Version %d "
     622                 :            :                    "Received Version %d SubType %d",
     623                 :          6 :                    rbind->version, rbind->received_version, rbind->subtype);
     624                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: NONCE",
     625                 :          2 :                     rbind->nonce, sizeof(rbind->nonce));
     626                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Compound MAC",
     627                 :          2 :                     rbind->compound_mac, sizeof(rbind->compound_mac));
     628                 :          2 : }
     629                 :            : 
     630                 :            : 
     631                 :          2 : static int eap_fast_get_phase2_key(struct eap_sm *sm,
     632                 :            :                                    struct eap_fast_data *data,
     633                 :            :                                    u8 *isk, size_t isk_len)
     634                 :            : {
     635                 :            :         u8 *key;
     636                 :            :         size_t key_len;
     637                 :            : 
     638                 :          2 :         os_memset(isk, 0, isk_len);
     639                 :            : 
     640 [ +  - ][ -  + ]:          2 :         if (data->phase2_method == NULL || data->phase2_priv == NULL) {
     641                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Phase 2 method not "
     642                 :            :                            "available");
     643                 :          0 :                 return -1;
     644                 :            :         }
     645                 :            : 
     646 [ +  + ][ -  + ]:          2 :         if (data->phase2_method->isKeyAvailable == NULL ||
     647                 :          1 :             data->phase2_method->getKey == NULL)
     648                 :          1 :                 return 0;
     649                 :            : 
     650 [ +  - ][ -  + ]:          1 :         if (!data->phase2_method->isKeyAvailable(sm, data->phase2_priv) ||
     651                 :          1 :             (key = data->phase2_method->getKey(sm, data->phase2_priv,
     652                 :            :                                                &key_len)) == NULL) {
     653                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Could not get key material "
     654                 :            :                            "from Phase 2");
     655                 :          0 :                 return -1;
     656                 :            :         }
     657                 :            : 
     658         [ -  + ]:          1 :         if (key_len > isk_len)
     659                 :          0 :                 key_len = isk_len;
     660 [ +  - ][ +  - ]:          1 :         if (key_len == 32 &&
     661         [ +  - ]:          1 :             data->phase2_method->vendor == EAP_VENDOR_IETF &&
     662                 :          1 :             data->phase2_method->method == EAP_TYPE_MSCHAPV2) {
     663                 :            :                 /*
     664                 :            :                  * EAP-FAST uses reverse order for MS-MPPE keys when deriving
     665                 :            :                  * MSK from EAP-MSCHAPv2. Swap the keys here to get the correct
     666                 :            :                  * ISK for EAP-FAST cryptobinding.
     667                 :            :                  */
     668                 :          1 :                 os_memcpy(isk, key + 16, 16);
     669                 :          1 :                 os_memcpy(isk + 16, key, 16);
     670                 :            :         } else
     671                 :          0 :                 os_memcpy(isk, key, key_len);
     672                 :          1 :         os_free(key);
     673                 :            : 
     674                 :          2 :         return 0;
     675                 :            : }
     676                 :            : 
     677                 :            : 
     678                 :          2 : static int eap_fast_get_cmk(struct eap_sm *sm, struct eap_fast_data *data,
     679                 :            :                             u8 *cmk)
     680                 :            : {
     681                 :            :         u8 isk[32], imck[60];
     682                 :            : 
     683                 :          2 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Determining CMK[%d] for Compound MIC "
     684                 :          2 :                    "calculation", data->simck_idx + 1);
     685                 :            : 
     686                 :            :         /*
     687                 :            :          * RFC 4851, Section 5.2:
     688                 :            :          * IMCK[j] = T-PRF(S-IMCK[j-1], "Inner Methods Compound Keys",
     689                 :            :          *                 MSK[j], 60)
     690                 :            :          * S-IMCK[j] = first 40 octets of IMCK[j]
     691                 :            :          * CMK[j] = last 20 octets of IMCK[j]
     692                 :            :          */
     693                 :            : 
     694         [ -  + ]:          2 :         if (eap_fast_get_phase2_key(sm, data, isk, sizeof(isk)) < 0)
     695                 :          0 :                 return -1;
     696                 :          2 :         wpa_hexdump_key(MSG_MSGDUMP, "EAP-FAST: ISK[j]", isk, sizeof(isk));
     697                 :          2 :         sha1_t_prf(data->simck, EAP_FAST_SIMCK_LEN,
     698                 :            :                    "Inner Methods Compound Keys",
     699                 :            :                    isk, sizeof(isk), imck, sizeof(imck));
     700                 :          2 :         data->simck_idx++;
     701                 :          2 :         os_memcpy(data->simck, imck, EAP_FAST_SIMCK_LEN);
     702                 :          2 :         wpa_hexdump_key(MSG_MSGDUMP, "EAP-FAST: S-IMCK[j]",
     703                 :          2 :                         data->simck, EAP_FAST_SIMCK_LEN);
     704                 :          2 :         os_memcpy(cmk, imck + EAP_FAST_SIMCK_LEN, EAP_FAST_CMK_LEN);
     705                 :          2 :         wpa_hexdump_key(MSG_MSGDUMP, "EAP-FAST: CMK[j]",
     706                 :            :                         cmk, EAP_FAST_CMK_LEN);
     707                 :            : 
     708                 :          2 :         return 0;
     709                 :            : }
     710                 :            : 
     711                 :            : 
     712                 :          1 : static u8 * eap_fast_write_pac_request(u8 *pos, u16 pac_type)
     713                 :            : {
     714                 :            :         struct eap_tlv_hdr *pac;
     715                 :            :         struct eap_tlv_request_action_tlv *act;
     716                 :            :         struct eap_tlv_pac_type_tlv *type;
     717                 :            : 
     718                 :          1 :         act = (struct eap_tlv_request_action_tlv *) pos;
     719                 :          1 :         act->tlv_type = host_to_be16(EAP_TLV_REQUEST_ACTION_TLV);
     720                 :          1 :         act->length = host_to_be16(2);
     721                 :          1 :         act->action = host_to_be16(EAP_TLV_ACTION_PROCESS_TLV);
     722                 :            : 
     723                 :          1 :         pac = (struct eap_tlv_hdr *) (act + 1);
     724                 :          1 :         pac->tlv_type = host_to_be16(EAP_TLV_PAC_TLV);
     725                 :          1 :         pac->length = host_to_be16(sizeof(*type));
     726                 :            : 
     727                 :          1 :         type = (struct eap_tlv_pac_type_tlv *) (pac + 1);
     728                 :          1 :         type->tlv_type = host_to_be16(PAC_TYPE_PAC_TYPE);
     729                 :          1 :         type->length = host_to_be16(2);
     730                 :          1 :         type->pac_type = host_to_be16(pac_type);
     731                 :            : 
     732                 :          1 :         return (u8 *) (type + 1);
     733                 :            : }
     734                 :            : 
     735                 :            : 
     736                 :          2 : static struct wpabuf * eap_fast_process_crypto_binding(
     737                 :            :         struct eap_sm *sm, struct eap_fast_data *data,
     738                 :            :         struct eap_method_ret *ret,
     739                 :            :         struct eap_tlv_crypto_binding_tlv *_bind, size_t bind_len)
     740                 :            : {
     741                 :            :         struct wpabuf *resp;
     742                 :            :         u8 *pos;
     743                 :            :         u8 cmk[EAP_FAST_CMK_LEN], cmac[SHA1_MAC_LEN];
     744                 :            :         int res;
     745                 :            :         size_t len;
     746                 :            : 
     747         [ -  + ]:          2 :         if (eap_fast_validate_crypto_binding(_bind) < 0)
     748                 :          0 :                 return NULL;
     749                 :            : 
     750         [ -  + ]:          2 :         if (eap_fast_get_cmk(sm, data, cmk) < 0)
     751                 :          0 :                 return NULL;
     752                 :            : 
     753                 :            :         /* Validate received Compound MAC */
     754                 :          2 :         os_memcpy(cmac, _bind->compound_mac, sizeof(cmac));
     755                 :          2 :         os_memset(_bind->compound_mac, 0, sizeof(cmac));
     756                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Crypto-Binding TLV for Compound "
     757                 :            :                     "MAC calculation", (u8 *) _bind, bind_len);
     758                 :          2 :         hmac_sha1(cmk, EAP_FAST_CMK_LEN, (u8 *) _bind, bind_len,
     759                 :          2 :                   _bind->compound_mac);
     760                 :          2 :         res = os_memcmp(cmac, _bind->compound_mac, sizeof(cmac));
     761                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Received Compound MAC",
     762                 :            :                     cmac, sizeof(cmac));
     763                 :          2 :         wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: Calculated Compound MAC",
     764                 :          2 :                     _bind->compound_mac, sizeof(cmac));
     765         [ -  + ]:          2 :         if (res != 0) {
     766                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Compound MAC did not match");
     767                 :          0 :                 os_memcpy(_bind->compound_mac, cmac, sizeof(cmac));
     768                 :          0 :                 return NULL;
     769                 :            :         }
     770                 :            : 
     771                 :            :         /*
     772                 :            :          * Compound MAC was valid, so authentication succeeded. Reply with
     773                 :            :          * crypto binding to allow server to complete authentication.
     774                 :            :          */
     775                 :            : 
     776                 :          2 :         len = sizeof(struct eap_tlv_crypto_binding_tlv);
     777                 :          2 :         resp = wpabuf_alloc(len);
     778         [ -  + ]:          2 :         if (resp == NULL)
     779                 :          0 :                 return NULL;
     780                 :            : 
     781         [ +  - ]:          4 :         if (!data->anon_provisioning && data->phase2_success &&
           [ +  -  -  + ]
     782                 :          2 :             eap_fast_derive_msk(data) < 0) {
     783                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Failed to generate MSK");
     784                 :          0 :                 ret->methodState = METHOD_DONE;
     785                 :          0 :                 ret->decision = DECISION_FAIL;
     786                 :          0 :                 data->phase2_success = 0;
     787                 :          0 :                 wpabuf_free(resp);
     788                 :          0 :                 return NULL;
     789                 :            :         }
     790                 :            : 
     791 [ +  - ][ +  - ]:          2 :         if (!data->anon_provisioning && data->phase2_success) {
     792                 :          2 :                 os_free(data->session_id);
     793                 :          2 :                 data->session_id = eap_peer_tls_derive_session_id(
     794                 :            :                         sm, &data->ssl, EAP_TYPE_FAST, &data->id_len);
     795         [ +  - ]:          2 :                 if (data->session_id) {
     796                 :          2 :                         wpa_hexdump(MSG_DEBUG, "EAP-FAST: Derived Session-Id",
     797                 :          2 :                                     data->session_id, data->id_len);
     798                 :            :                 } else {
     799                 :          0 :                         wpa_printf(MSG_ERROR, "EAP-FAST: Failed to derive "
     800                 :            :                                    "Session-Id");
     801                 :          0 :                         wpabuf_free(resp);
     802                 :          0 :                         return NULL;
     803                 :            :                 }
     804                 :            :         }
     805                 :            : 
     806                 :          2 :         pos = wpabuf_put(resp, sizeof(struct eap_tlv_crypto_binding_tlv));
     807                 :          2 :         eap_fast_write_crypto_binding((struct eap_tlv_crypto_binding_tlv *)
     808                 :            :                                       pos, _bind, cmk);
     809                 :            : 
     810                 :          2 :         return resp;
     811                 :            : }
     812                 :            : 
     813                 :            : 
     814                 :          3 : static void eap_fast_parse_pac_tlv(struct eap_fast_pac *entry, int type,
     815                 :            :                                    u8 *pos, size_t len, int *pac_key_found)
     816                 :            : {
     817   [ +  +  +  - ]:          3 :         switch (type & 0x7fff) {
     818                 :            :         case PAC_TYPE_PAC_KEY:
     819                 :          1 :                 wpa_hexdump_key(MSG_DEBUG, "EAP-FAST: PAC-Key", pos, len);
     820         [ -  + ]:          1 :                 if (len != EAP_FAST_PAC_KEY_LEN) {
     821                 :          0 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: Invalid PAC-Key "
     822                 :            :                                    "length %lu", (unsigned long) len);
     823                 :          0 :                         break;
     824                 :            :                 }
     825                 :          1 :                 *pac_key_found = 1;
     826                 :          1 :                 os_memcpy(entry->pac_key, pos, len);
     827                 :          1 :                 break;
     828                 :            :         case PAC_TYPE_PAC_OPAQUE:
     829                 :          1 :                 wpa_hexdump(MSG_DEBUG, "EAP-FAST: PAC-Opaque", pos, len);
     830                 :          1 :                 entry->pac_opaque = pos;
     831                 :          1 :                 entry->pac_opaque_len = len;
     832                 :          1 :                 break;
     833                 :            :         case PAC_TYPE_PAC_INFO:
     834                 :          1 :                 wpa_hexdump(MSG_DEBUG, "EAP-FAST: PAC-Info", pos, len);
     835                 :          1 :                 entry->pac_info = pos;
     836                 :          1 :                 entry->pac_info_len = len;
     837                 :          1 :                 break;
     838                 :            :         default:
     839                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Ignored unknown PAC type %d",
     840                 :            :                            type);
     841                 :          0 :                 break;
     842                 :            :         }
     843                 :          3 : }
     844                 :            : 
     845                 :            : 
     846                 :          1 : static int eap_fast_process_pac_tlv(struct eap_fast_pac *entry,
     847                 :            :                                     u8 *pac, size_t pac_len)
     848                 :            : {
     849                 :            :         struct pac_tlv_hdr *hdr;
     850                 :            :         u8 *pos;
     851                 :            :         size_t left, len;
     852                 :          1 :         int type, pac_key_found = 0;
     853                 :            : 
     854                 :          1 :         pos = pac;
     855                 :          1 :         left = pac_len;
     856                 :            : 
     857         [ +  + ]:          4 :         while (left > sizeof(*hdr)) {
     858                 :          3 :                 hdr = (struct pac_tlv_hdr *) pos;
     859                 :          3 :                 type = be_to_host16(hdr->type);
     860                 :          3 :                 len = be_to_host16(hdr->len);
     861                 :          3 :                 pos += sizeof(*hdr);
     862                 :          3 :                 left -= sizeof(*hdr);
     863         [ -  + ]:          3 :                 if (len > left) {
     864                 :          0 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: PAC TLV overrun "
     865                 :            :                                    "(type=%d len=%lu left=%lu)",
     866                 :            :                                    type, (unsigned long) len,
     867                 :            :                                    (unsigned long) left);
     868                 :          0 :                         return -1;
     869                 :            :                 }
     870                 :            : 
     871                 :          3 :                 eap_fast_parse_pac_tlv(entry, type, pos, len, &pac_key_found);
     872                 :            : 
     873                 :          3 :                 pos += len;
     874                 :          3 :                 left -= len;
     875                 :            :         }
     876                 :            : 
     877 [ +  - ][ +  - ]:          1 :         if (!pac_key_found || !entry->pac_opaque || !entry->pac_info) {
                 [ -  + ]
     878                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC TLV does not include "
     879                 :            :                            "all the required fields");
     880                 :          0 :                 return -1;
     881                 :            :         }
     882                 :            : 
     883                 :          1 :         return 0;
     884                 :            : }
     885                 :            : 
     886                 :            : 
     887                 :          5 : static int eap_fast_parse_pac_info(struct eap_fast_pac *entry, int type,
     888                 :            :                                    u8 *pos, size_t len)
     889                 :            : {
     890                 :            :         u16 pac_type;
     891                 :            :         u32 lifetime;
     892                 :            :         struct os_time now;
     893                 :            : 
     894   [ +  +  +  +  :          5 :         switch (type & 0x7fff) {
                   +  - ]
     895                 :            :         case PAC_TYPE_CRED_LIFETIME:
     896         [ -  + ]:          1 :                 if (len != 4) {
     897                 :          0 :                         wpa_hexdump(MSG_DEBUG, "EAP-FAST: PAC-Info - "
     898                 :            :                                     "Invalid CRED_LIFETIME length - ignored",
     899                 :            :                                     pos, len);
     900                 :          0 :                         return 0;
     901                 :            :                 }
     902                 :            : 
     903                 :            :                 /*
     904                 :            :                  * This is not currently saved separately in PAC files since
     905                 :            :                  * the server can automatically initiate PAC update when
     906                 :            :                  * needed. Anyway, the information is available from PAC-Info
     907                 :            :                  * dump if it is needed for something in the future.
     908                 :            :                  */
     909                 :          1 :                 lifetime = WPA_GET_BE32(pos);
     910                 :          1 :                 os_get_time(&now);
     911                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Info - CRED_LIFETIME %d "
     912                 :            :                            "(%d days)",
     913                 :          1 :                            lifetime, (lifetime - (u32) now.sec) / 86400);
     914                 :          1 :                 break;
     915                 :            :         case PAC_TYPE_A_ID:
     916                 :          1 :                 wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: PAC-Info - A-ID",
     917                 :            :                                   pos, len);
     918                 :          1 :                 entry->a_id = pos;
     919                 :          1 :                 entry->a_id_len = len;
     920                 :          1 :                 break;
     921                 :            :         case PAC_TYPE_I_ID:
     922                 :          1 :                 wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: PAC-Info - I-ID",
     923                 :            :                                   pos, len);
     924                 :          1 :                 entry->i_id = pos;
     925                 :          1 :                 entry->i_id_len = len;
     926                 :          1 :                 break;
     927                 :            :         case PAC_TYPE_A_ID_INFO:
     928                 :          1 :                 wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: PAC-Info - A-ID-Info",
     929                 :            :                                   pos, len);
     930                 :          1 :                 entry->a_id_info = pos;
     931                 :          1 :                 entry->a_id_info_len = len;
     932                 :          1 :                 break;
     933                 :            :         case PAC_TYPE_PAC_TYPE:
     934                 :            :                 /* RFC 5422, Section 4.2.6 - PAC-Type TLV */
     935         [ -  + ]:          1 :                 if (len != 2) {
     936                 :          0 :                         wpa_printf(MSG_INFO, "EAP-FAST: Invalid PAC-Type "
     937                 :            :                                    "length %lu (expected 2)",
     938                 :            :                                    (unsigned long) len);
     939                 :          0 :                         wpa_hexdump_ascii(MSG_DEBUG,
     940                 :            :                                           "EAP-FAST: PAC-Info - PAC-Type",
     941                 :            :                                           pos, len);
     942                 :          0 :                         return -1;
     943                 :            :                 }
     944                 :          1 :                 pac_type = WPA_GET_BE16(pos);
     945 [ -  + ][ #  # ]:          1 :                 if (pac_type != PAC_TYPE_TUNNEL_PAC &&
     946         [ #  # ]:          0 :                     pac_type != PAC_TYPE_USER_AUTHORIZATION &&
     947                 :            :                     pac_type != PAC_TYPE_MACHINE_AUTHENTICATION) {
     948                 :          0 :                         wpa_printf(MSG_INFO, "EAP-FAST: Unsupported PAC Type "
     949                 :            :                                    "%d", pac_type);
     950                 :          0 :                         return -1;
     951                 :            :                 }
     952                 :            : 
     953                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Info - PAC-Type %d",
     954                 :            :                            pac_type);
     955                 :          1 :                 entry->pac_type = pac_type;
     956                 :          1 :                 break;
     957                 :            :         default:
     958                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Ignored unknown PAC-Info "
     959                 :            :                            "type %d", type);
     960                 :          0 :                 break;
     961                 :            :         }
     962                 :            : 
     963                 :          5 :         return 0;
     964                 :            : }
     965                 :            : 
     966                 :            : 
     967                 :          1 : static int eap_fast_process_pac_info(struct eap_fast_pac *entry)
     968                 :            : {
     969                 :            :         struct pac_tlv_hdr *hdr;
     970                 :            :         u8 *pos;
     971                 :            :         size_t left, len;
     972                 :            :         int type;
     973                 :            : 
     974                 :            :         /* RFC 5422, Section 4.2.4 */
     975                 :            : 
     976                 :            :         /* PAC-Type defaults to Tunnel PAC (Type 1) */
     977                 :          1 :         entry->pac_type = PAC_TYPE_TUNNEL_PAC;
     978                 :            : 
     979                 :          1 :         pos = entry->pac_info;
     980                 :          1 :         left = entry->pac_info_len;
     981         [ +  + ]:          6 :         while (left > sizeof(*hdr)) {
     982                 :          5 :                 hdr = (struct pac_tlv_hdr *) pos;
     983                 :          5 :                 type = be_to_host16(hdr->type);
     984                 :          5 :                 len = be_to_host16(hdr->len);
     985                 :          5 :                 pos += sizeof(*hdr);
     986                 :          5 :                 left -= sizeof(*hdr);
     987         [ -  + ]:          5 :                 if (len > left) {
     988                 :          0 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Info overrun "
     989                 :            :                                    "(type=%d len=%lu left=%lu)",
     990                 :            :                                    type, (unsigned long) len,
     991                 :            :                                    (unsigned long) left);
     992                 :          0 :                         return -1;
     993                 :            :                 }
     994                 :            : 
     995         [ -  + ]:          5 :                 if (eap_fast_parse_pac_info(entry, type, pos, len) < 0)
     996                 :          0 :                         return -1;
     997                 :            : 
     998                 :          5 :                 pos += len;
     999                 :          5 :                 left -= len;
    1000                 :            :         }
    1001                 :            : 
    1002 [ +  - ][ -  + ]:          1 :         if (entry->a_id == NULL || entry->a_id_info == NULL) {
    1003                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC-Info does not include "
    1004                 :            :                            "all the required fields");
    1005                 :          0 :                 return -1;
    1006                 :            :         }
    1007                 :            : 
    1008                 :          1 :         return 0;
    1009                 :            : }
    1010                 :            : 
    1011                 :            : 
    1012                 :          1 : static struct wpabuf * eap_fast_process_pac(struct eap_sm *sm,
    1013                 :            :                                             struct eap_fast_data *data,
    1014                 :            :                                             struct eap_method_ret *ret,
    1015                 :            :                                             u8 *pac, size_t pac_len)
    1016                 :            : {
    1017                 :          1 :         struct eap_peer_config *config = eap_get_config(sm);
    1018                 :            :         struct eap_fast_pac entry;
    1019                 :            : 
    1020                 :          1 :         os_memset(&entry, 0, sizeof(entry));
    1021   [ +  -  -  + ]:          2 :         if (eap_fast_process_pac_tlv(&entry, pac, pac_len) ||
    1022                 :          1 :             eap_fast_process_pac_info(&entry))
    1023                 :          0 :                 return NULL;
    1024                 :            : 
    1025                 :          1 :         eap_fast_add_pac(&data->pac, &data->current_pac, &entry);
    1026                 :          1 :         eap_fast_pac_list_truncate(data->pac, data->max_pac_list_len);
    1027         [ -  + ]:          1 :         if (data->use_pac_binary_format)
    1028                 :          0 :                 eap_fast_save_pac_bin(sm, data->pac, config->pac_file);
    1029                 :            :         else
    1030                 :          1 :                 eap_fast_save_pac(sm, data->pac, config->pac_file);
    1031                 :            : 
    1032         [ +  - ]:          1 :         if (data->provisioning) {
    1033         [ -  + ]:          1 :                 if (data->anon_provisioning) {
    1034                 :            :                         /*
    1035                 :            :                          * Unauthenticated provisioning does not provide keying
    1036                 :            :                          * material and must end with an EAP-Failure.
    1037                 :            :                          * Authentication will be done separately after this.
    1038                 :            :                          */
    1039                 :          0 :                         data->success = 0;
    1040                 :          0 :                         ret->decision = DECISION_FAIL;
    1041                 :            :                 } else {
    1042                 :            :                         /*
    1043                 :            :                          * Server may or may not allow authenticated
    1044                 :            :                          * provisioning also for key generation.
    1045                 :            :                          */
    1046                 :          1 :                         ret->decision = DECISION_COND_SUCC;
    1047                 :            :                 }
    1048                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Send PAC-Acknowledgement TLV "
    1049                 :            :                            "- Provisioning completed successfully");
    1050                 :            :         } else {
    1051                 :            :                 /*
    1052                 :            :                  * This is PAC refreshing, i.e., normal authentication that is
    1053                 :            :                  * expected to be completed with an EAP-Success. However,
    1054                 :            :                  * RFC 5422, Section 3.5 allows EAP-Failure to be sent even
    1055                 :            :                  * after protected success exchange in case of EAP-Fast
    1056                 :            :                  * provisioning, so we better use DECISION_COND_SUCC here
    1057                 :            :                  * instead of DECISION_UNCOND_SUCC.
    1058                 :            :                  */
    1059                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Send PAC-Acknowledgement TLV "
    1060                 :            :                            "- PAC refreshing completed successfully");
    1061                 :          0 :                 ret->decision = DECISION_COND_SUCC;
    1062                 :            :         }
    1063                 :          1 :         ret->methodState = METHOD_DONE;
    1064                 :          1 :         return eap_fast_tlv_pac_ack();
    1065                 :            : }
    1066                 :            : 
    1067                 :            : 
    1068                 :          8 : static int eap_fast_parse_decrypted(struct wpabuf *decrypted,
    1069                 :            :                                     struct eap_fast_tlv_parse *tlv,
    1070                 :            :                                     struct wpabuf **resp)
    1071                 :            : {
    1072                 :            :         int mandatory, tlv_type, len, res;
    1073                 :            :         u8 *pos, *end;
    1074                 :            : 
    1075                 :          8 :         os_memset(tlv, 0, sizeof(*tlv));
    1076                 :            : 
    1077                 :            :         /* Parse TLVs from the decrypted Phase 2 data */
    1078                 :          8 :         pos = wpabuf_mhead(decrypted);
    1079                 :          8 :         end = pos + wpabuf_len(decrypted);
    1080         [ +  + ]:         19 :         while (pos + 4 < end) {
    1081                 :         11 :                 mandatory = pos[0] & 0x80;
    1082                 :         11 :                 tlv_type = WPA_GET_BE16(pos) & 0x3fff;
    1083                 :         11 :                 pos += 2;
    1084                 :         11 :                 len = WPA_GET_BE16(pos);
    1085                 :         11 :                 pos += 2;
    1086         [ -  + ]:         11 :                 if (pos + len > end) {
    1087                 :          0 :                         wpa_printf(MSG_INFO, "EAP-FAST: TLV overflow");
    1088                 :          0 :                         return -1;
    1089                 :            :                 }
    1090         [ +  - ]:         11 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Received Phase 2: "
    1091                 :            :                            "TLV type %d length %d%s",
    1092                 :            :                            tlv_type, len, mandatory ? " (mandatory)" : "");
    1093                 :            : 
    1094                 :         11 :                 res = eap_fast_parse_tlv(tlv, tlv_type, pos, len);
    1095         [ -  + ]:         11 :                 if (res == -2)
    1096                 :          0 :                         break;
    1097         [ -  + ]:         11 :                 if (res < 0) {
    1098         [ #  # ]:          0 :                         if (mandatory) {
    1099                 :          0 :                                 wpa_printf(MSG_DEBUG, "EAP-FAST: Nak unknown "
    1100                 :            :                                            "mandatory TLV type %d", tlv_type);
    1101                 :          0 :                                 *resp = eap_fast_tlv_nak(0, tlv_type);
    1102                 :          0 :                                 break;
    1103                 :            :                         } else {
    1104                 :          0 :                                 wpa_printf(MSG_DEBUG, "EAP-FAST: ignored "
    1105                 :            :                                            "unknown optional TLV type %d",
    1106                 :            :                                            tlv_type);
    1107                 :            :                         }
    1108                 :            :                 }
    1109                 :            : 
    1110                 :         11 :                 pos += len;
    1111                 :            :         }
    1112                 :            : 
    1113                 :          8 :         return 0;
    1114                 :            : }
    1115                 :            : 
    1116                 :            : 
    1117                 :          8 : static int eap_fast_encrypt_response(struct eap_sm *sm,
    1118                 :            :                                      struct eap_fast_data *data,
    1119                 :            :                                      struct wpabuf *resp,
    1120                 :            :                                      u8 identifier, struct wpabuf **out_data)
    1121                 :            : {
    1122         [ -  + ]:          8 :         if (resp == NULL)
    1123                 :          0 :                 return 0;
    1124                 :            : 
    1125                 :          8 :         wpa_hexdump_buf(MSG_DEBUG, "EAP-FAST: Encrypting Phase 2 data",
    1126                 :            :                         resp);
    1127         [ -  + ]:          8 :         if (eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_FAST,
    1128                 :            :                                  data->fast_version, identifier,
    1129                 :            :                                  resp, out_data)) {
    1130                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Failed to encrypt a Phase 2 "
    1131                 :            :                            "frame");
    1132                 :            :         }
    1133                 :          8 :         wpabuf_free(resp);
    1134                 :            : 
    1135                 :          8 :         return 0;
    1136                 :            : }
    1137                 :            : 
    1138                 :            : 
    1139                 :          1 : static struct wpabuf * eap_fast_pac_request(void)
    1140                 :            : {
    1141                 :            :         struct wpabuf *tmp;
    1142                 :            :         u8 *pos, *pos2;
    1143                 :            : 
    1144                 :          1 :         tmp = wpabuf_alloc(sizeof(struct eap_tlv_hdr) +
    1145                 :            :                            sizeof(struct eap_tlv_request_action_tlv) +
    1146                 :            :                            sizeof(struct eap_tlv_pac_type_tlv));
    1147         [ -  + ]:          1 :         if (tmp == NULL)
    1148                 :          0 :                 return NULL;
    1149                 :            : 
    1150                 :          1 :         pos = wpabuf_put(tmp, 0);
    1151                 :          1 :         pos2 = eap_fast_write_pac_request(pos, PAC_TYPE_TUNNEL_PAC);
    1152                 :          1 :         wpabuf_put(tmp, pos2 - pos);
    1153                 :          1 :         return tmp;
    1154                 :            : }
    1155                 :            : 
    1156                 :            : 
    1157                 :          8 : static int eap_fast_process_decrypted(struct eap_sm *sm,
    1158                 :            :                                       struct eap_fast_data *data,
    1159                 :            :                                       struct eap_method_ret *ret,
    1160                 :            :                                       const struct eap_hdr *req,
    1161                 :            :                                       struct wpabuf *decrypted,
    1162                 :            :                                       struct wpabuf **out_data)
    1163                 :            : {
    1164                 :          8 :         struct wpabuf *resp = NULL, *tmp;
    1165                 :            :         struct eap_fast_tlv_parse tlv;
    1166                 :          8 :         int failed = 0;
    1167                 :            : 
    1168         [ -  + ]:          8 :         if (eap_fast_parse_decrypted(decrypted, &tlv, &resp) < 0)
    1169                 :          0 :                 return 0;
    1170         [ -  + ]:          8 :         if (resp)
    1171                 :          0 :                 return eap_fast_encrypt_response(sm, data, resp,
    1172                 :          0 :                                                  req->identifier, out_data);
    1173                 :            : 
    1174         [ -  + ]:          8 :         if (tlv.result == EAP_TLV_RESULT_FAILURE) {
    1175                 :          0 :                 resp = eap_fast_tlv_result(EAP_TLV_RESULT_FAILURE, 0);
    1176                 :          0 :                 return eap_fast_encrypt_response(sm, data, resp,
    1177                 :          0 :                                                  req->identifier, out_data);
    1178                 :            :         }
    1179                 :            : 
    1180         [ -  + ]:          8 :         if (tlv.iresult == EAP_TLV_RESULT_FAILURE) {
    1181                 :          0 :                 resp = eap_fast_tlv_result(EAP_TLV_RESULT_FAILURE, 1);
    1182                 :          0 :                 return eap_fast_encrypt_response(sm, data, resp,
    1183                 :          0 :                                                  req->identifier, out_data);
    1184                 :            :         }
    1185                 :            : 
    1186         [ +  + ]:          8 :         if (tlv.crypto_binding) {
    1187                 :          2 :                 tmp = eap_fast_process_crypto_binding(sm, data, ret,
    1188                 :            :                                                       tlv.crypto_binding,
    1189                 :            :                                                       tlv.crypto_binding_len);
    1190         [ -  + ]:          2 :                 if (tmp == NULL)
    1191                 :          0 :                         failed = 1;
    1192                 :            :                 else
    1193                 :          2 :                         resp = wpabuf_concat(resp, tmp);
    1194                 :            :         }
    1195                 :            : 
    1196         [ -  + ]:          8 :         if (tlv.iresult == EAP_TLV_RESULT_SUCCESS) {
    1197         [ #  # ]:          0 :                 tmp = eap_fast_tlv_result(failed ? EAP_TLV_RESULT_FAILURE :
    1198                 :            :                                           EAP_TLV_RESULT_SUCCESS, 1);
    1199                 :          0 :                 resp = wpabuf_concat(resp, tmp);
    1200                 :            :         }
    1201                 :            : 
    1202         [ +  + ]:          8 :         if (tlv.eap_payload_tlv) {
    1203                 :          5 :                 tmp = eap_fast_process_eap_payload_tlv(
    1204                 :            :                         sm, data, ret, tlv.eap_payload_tlv,
    1205                 :            :                         tlv.eap_payload_tlv_len);
    1206                 :          5 :                 resp = wpabuf_concat(resp, tmp);
    1207                 :            :         }
    1208                 :            : 
    1209 [ +  + ][ -  + ]:          8 :         if (tlv.pac && tlv.result != EAP_TLV_RESULT_SUCCESS) {
    1210                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC TLV without Result TLV "
    1211                 :            :                            "acknowledging success");
    1212                 :          0 :                 failed = 1;
    1213 [ +  + ][ +  - ]:          8 :         } else if (tlv.pac && tlv.result == EAP_TLV_RESULT_SUCCESS) {
    1214                 :          1 :                 tmp = eap_fast_process_pac(sm, data, ret, tlv.pac,
    1215                 :            :                                            tlv.pac_len);
    1216                 :          1 :                 resp = wpabuf_concat(resp, tmp);
    1217                 :            :         }
    1218                 :            : 
    1219 [ +  + ][ +  - ]:          8 :         if (data->current_pac == NULL && data->provisioning &&
                 [ +  - ]
    1220 [ +  + ][ +  - ]:          5 :             !data->anon_provisioning && !tlv.pac &&
    1221         [ +  + ]:          4 :             (tlv.iresult == EAP_TLV_RESULT_SUCCESS ||
    1222                 :          4 :              tlv.result == EAP_TLV_RESULT_SUCCESS)) {
    1223                 :            :                 /*
    1224                 :            :                  * Need to request Tunnel PAC when using authenticated
    1225                 :            :                  * provisioning.
    1226                 :            :                  */
    1227                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Request Tunnel PAC");
    1228                 :          1 :                 tmp = eap_fast_pac_request();
    1229                 :          1 :                 resp = wpabuf_concat(resp, tmp);
    1230                 :            :         }
    1231                 :            : 
    1232 [ +  + ][ +  - ]:          8 :         if (tlv.result == EAP_TLV_RESULT_SUCCESS && !failed) {
    1233                 :          3 :                 tmp = eap_fast_tlv_result(EAP_TLV_RESULT_SUCCESS, 0);
    1234                 :          3 :                 resp = wpabuf_concat(tmp, resp);
    1235         [ -  + ]:          5 :         } else if (failed) {
    1236                 :          0 :                 tmp = eap_fast_tlv_result(EAP_TLV_RESULT_FAILURE, 0);
    1237                 :          0 :                 resp = wpabuf_concat(tmp, resp);
    1238                 :            :         }
    1239                 :            : 
    1240 [ +  - ][ +  + ]:          8 :         if (resp && tlv.result == EAP_TLV_RESULT_SUCCESS && !failed &&
         [ +  - ][ +  + ]
    1241         [ +  - ]:          2 :             tlv.crypto_binding && data->phase2_success) {
    1242         [ -  + ]:          2 :                 if (data->anon_provisioning) {
    1243                 :          0 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: Unauthenticated "
    1244                 :            :                                    "provisioning completed successfully.");
    1245                 :          0 :                         ret->methodState = METHOD_DONE;
    1246                 :          0 :                         ret->decision = DECISION_FAIL;
    1247                 :            :                 } else {
    1248                 :          2 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: Authentication "
    1249                 :            :                                    "completed successfully.");
    1250         [ +  + ]:          2 :                         if (data->provisioning)
    1251                 :          1 :                                 ret->methodState = METHOD_MAY_CONT;
    1252                 :            :                         else
    1253                 :          1 :                                 ret->methodState = METHOD_DONE;
    1254                 :          2 :                         ret->decision = DECISION_UNCOND_SUCC;
    1255                 :            :                 }
    1256                 :            :         }
    1257                 :            : 
    1258         [ -  + ]:          8 :         if (resp == NULL) {
    1259                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: No recognized TLVs - send "
    1260                 :            :                            "empty response packet");
    1261                 :          0 :                 resp = wpabuf_alloc(1);
    1262                 :            :         }
    1263                 :            : 
    1264                 :          8 :         return eap_fast_encrypt_response(sm, data, resp, req->identifier,
    1265                 :            :                                          out_data);
    1266                 :            : }
    1267                 :            : 
    1268                 :            : 
    1269                 :          8 : static int eap_fast_decrypt(struct eap_sm *sm, struct eap_fast_data *data,
    1270                 :            :                             struct eap_method_ret *ret,
    1271                 :            :                             const struct eap_hdr *req,
    1272                 :            :                             const struct wpabuf *in_data,
    1273                 :            :                             struct wpabuf **out_data)
    1274                 :            : {
    1275                 :            :         struct wpabuf *in_decrypted;
    1276                 :            :         int res;
    1277                 :            : 
    1278                 :          8 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Received %lu bytes encrypted data for"
    1279                 :            :                    " Phase 2", (unsigned long) wpabuf_len(in_data));
    1280                 :            : 
    1281         [ +  + ]:          8 :         if (data->pending_phase2_req) {
    1282                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Pending Phase 2 request - "
    1283                 :            :                            "skip decryption and use old data");
    1284                 :            :                 /* Clear TLS reassembly state. */
    1285                 :          1 :                 eap_peer_tls_reset_input(&data->ssl);
    1286                 :            : 
    1287                 :          1 :                 in_decrypted = data->pending_phase2_req;
    1288                 :          1 :                 data->pending_phase2_req = NULL;
    1289                 :          1 :                 goto continue_req;
    1290                 :            :         }
    1291                 :            : 
    1292         [ -  + ]:          7 :         if (wpabuf_len(in_data) == 0) {
    1293                 :            :                 /* Received TLS ACK - requesting more fragments */
    1294                 :          0 :                 return eap_peer_tls_encrypt(sm, &data->ssl, EAP_TYPE_FAST,
    1295                 :            :                                             data->fast_version,
    1296                 :          0 :                                             req->identifier, NULL, out_data);
    1297                 :            :         }
    1298                 :            : 
    1299                 :          7 :         res = eap_peer_tls_decrypt(sm, &data->ssl, in_data, &in_decrypted);
    1300         [ -  + ]:          7 :         if (res)
    1301                 :          0 :                 return res;
    1302                 :            : 
    1303                 :            : continue_req:
    1304                 :          8 :         wpa_hexdump_buf(MSG_MSGDUMP, "EAP-FAST: Decrypted Phase 2 TLV(s)",
    1305                 :            :                         in_decrypted);
    1306                 :            : 
    1307         [ -  + ]:          8 :         if (wpabuf_len(in_decrypted) < 4) {
    1308                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Too short Phase 2 "
    1309                 :            :                            "TLV frame (len=%lu)",
    1310                 :            :                            (unsigned long) wpabuf_len(in_decrypted));
    1311                 :          0 :                 wpabuf_free(in_decrypted);
    1312                 :          0 :                 return -1;
    1313                 :            :         }
    1314                 :            : 
    1315                 :          8 :         res = eap_fast_process_decrypted(sm, data, ret, req,
    1316                 :            :                                          in_decrypted, out_data);
    1317                 :            : 
    1318                 :          8 :         wpabuf_free(in_decrypted);
    1319                 :            : 
    1320                 :          8 :         return res;
    1321                 :            : }
    1322                 :            : 
    1323                 :            : 
    1324                 :          2 : static const u8 * eap_fast_get_a_id(const u8 *buf, size_t len, size_t *id_len)
    1325                 :            : {
    1326                 :            :         const u8 *a_id;
    1327                 :            :         struct pac_tlv_hdr *hdr;
    1328                 :            : 
    1329                 :            :         /*
    1330                 :            :          * Parse authority identity (A-ID) from the EAP-FAST/Start. This
    1331                 :            :          * supports both raw A-ID and one inside an A-ID TLV.
    1332                 :            :          */
    1333                 :          2 :         a_id = buf;
    1334                 :          2 :         *id_len = len;
    1335         [ +  - ]:          2 :         if (len > sizeof(*hdr)) {
    1336                 :            :                 int tlen;
    1337                 :          2 :                 hdr = (struct pac_tlv_hdr *) buf;
    1338                 :          2 :                 tlen = be_to_host16(hdr->len);
    1339 [ +  - ][ +  - ]:          2 :                 if (be_to_host16(hdr->type) == PAC_TYPE_A_ID &&
    1340                 :          2 :                     sizeof(*hdr) + tlen <= len) {
    1341                 :          2 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: A-ID was in TLV "
    1342                 :            :                                    "(Start)");
    1343                 :          2 :                         a_id = (u8 *) (hdr + 1);
    1344                 :          2 :                         *id_len = tlen;
    1345                 :            :                 }
    1346                 :            :         }
    1347                 :          2 :         wpa_hexdump_ascii(MSG_DEBUG, "EAP-FAST: A-ID", a_id, *id_len);
    1348                 :            : 
    1349                 :          2 :         return a_id;
    1350                 :            : }
    1351                 :            : 
    1352                 :            : 
    1353                 :          2 : static void eap_fast_select_pac(struct eap_fast_data *data,
    1354                 :            :                                 const u8 *a_id, size_t a_id_len)
    1355                 :            : {
    1356                 :          2 :         data->current_pac = eap_fast_get_pac(data->pac, a_id, a_id_len,
    1357                 :            :                                              PAC_TYPE_TUNNEL_PAC);
    1358         [ +  + ]:          2 :         if (data->current_pac == NULL) {
    1359                 :            :                 /*
    1360                 :            :                  * Tunnel PAC was not available for this A-ID. Try to use
    1361                 :            :                  * Machine Authentication PAC, if one is available.
    1362                 :            :                  */
    1363                 :          1 :                 data->current_pac = eap_fast_get_pac(
    1364                 :            :                         data->pac, a_id, a_id_len,
    1365                 :            :                         PAC_TYPE_MACHINE_AUTHENTICATION);
    1366                 :            :         }
    1367                 :            : 
    1368         [ +  + ]:          2 :         if (data->current_pac) {
    1369                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: PAC found for this A-ID "
    1370                 :          1 :                            "(PAC-Type %d)", data->current_pac->pac_type);
    1371                 :          1 :                 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-FAST: A-ID-Info",
    1372                 :          1 :                                   data->current_pac->a_id_info,
    1373                 :          1 :                                   data->current_pac->a_id_info_len);
    1374                 :            :         }
    1375                 :          2 : }
    1376                 :            : 
    1377                 :            : 
    1378                 :          1 : static int eap_fast_use_pac_opaque(struct eap_sm *sm,
    1379                 :            :                                    struct eap_fast_data *data,
    1380                 :            :                                    struct eap_fast_pac *pac)
    1381                 :            : {
    1382                 :            :         u8 *tlv;
    1383                 :            :         size_t tlv_len, olen;
    1384                 :            :         struct eap_tlv_hdr *ehdr;
    1385                 :            : 
    1386                 :          1 :         olen = pac->pac_opaque_len;
    1387                 :          1 :         tlv_len = sizeof(*ehdr) + olen;
    1388                 :          1 :         tlv = os_malloc(tlv_len);
    1389         [ +  - ]:          1 :         if (tlv) {
    1390                 :          1 :                 ehdr = (struct eap_tlv_hdr *) tlv;
    1391                 :          1 :                 ehdr->tlv_type = host_to_be16(PAC_TYPE_PAC_OPAQUE);
    1392                 :          1 :                 ehdr->length = host_to_be16(olen);
    1393                 :          1 :                 os_memcpy(ehdr + 1, pac->pac_opaque, olen);
    1394                 :            :         }
    1395   [ +  -  -  + ]:          2 :         if (tlv == NULL ||
    1396                 :          1 :             tls_connection_client_hello_ext(sm->ssl_ctx, data->ssl.conn,
    1397                 :            :                                             TLS_EXT_PAC_OPAQUE,
    1398                 :            :                                             tlv, tlv_len) < 0) {
    1399                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to add PAC-Opaque TLS "
    1400                 :            :                            "extension");
    1401                 :          0 :                 os_free(tlv);
    1402                 :          0 :                 return -1;
    1403                 :            :         }
    1404                 :          1 :         os_free(tlv);
    1405                 :            : 
    1406                 :          1 :         return 0;
    1407                 :            : }
    1408                 :            : 
    1409                 :            : 
    1410                 :          1 : static int eap_fast_clear_pac_opaque_ext(struct eap_sm *sm,
    1411                 :            :                                          struct eap_fast_data *data)
    1412                 :            : {
    1413         [ -  + ]:          1 :         if (tls_connection_client_hello_ext(sm->ssl_ctx, data->ssl.conn,
    1414                 :            :                                             TLS_EXT_PAC_OPAQUE, NULL, 0) < 0) {
    1415                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Failed to remove PAC-Opaque "
    1416                 :            :                            "TLS extension");
    1417                 :          0 :                 return -1;
    1418                 :            :         }
    1419                 :          1 :         return 0;
    1420                 :            : }
    1421                 :            : 
    1422                 :            : 
    1423                 :          1 : static int eap_fast_set_provisioning_ciphers(struct eap_sm *sm,
    1424                 :            :                                              struct eap_fast_data *data)
    1425                 :            : {
    1426                 :            :         u8 ciphers[5];
    1427                 :          1 :         int count = 0;
    1428                 :            : 
    1429         [ -  + ]:          1 :         if (data->provisioning_allowed & EAP_FAST_PROV_UNAUTH) {
    1430                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Enabling unauthenticated "
    1431                 :            :                            "provisioning TLS cipher suites");
    1432                 :          0 :                 ciphers[count++] = TLS_CIPHER_ANON_DH_AES128_SHA;
    1433                 :            :         }
    1434                 :            : 
    1435         [ +  - ]:          1 :         if (data->provisioning_allowed & EAP_FAST_PROV_AUTH) {
    1436                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Enabling authenticated "
    1437                 :            :                            "provisioning TLS cipher suites");
    1438                 :          1 :                 ciphers[count++] = TLS_CIPHER_RSA_DHE_AES128_SHA;
    1439                 :          1 :                 ciphers[count++] = TLS_CIPHER_AES128_SHA;
    1440                 :          1 :                 ciphers[count++] = TLS_CIPHER_RC4_SHA;
    1441                 :            :         }
    1442                 :            : 
    1443                 :          1 :         ciphers[count++] = TLS_CIPHER_NONE;
    1444                 :            : 
    1445         [ -  + ]:          1 :         if (tls_connection_set_cipher_list(sm->ssl_ctx, data->ssl.conn,
    1446                 :            :                                            ciphers)) {
    1447                 :          0 :                 wpa_printf(MSG_INFO, "EAP-FAST: Could not configure TLS "
    1448                 :            :                            "cipher suites for provisioning");
    1449                 :          0 :                 return -1;
    1450                 :            :         }
    1451                 :            : 
    1452                 :          1 :         return 0;
    1453                 :            : }
    1454                 :            : 
    1455                 :            : 
    1456                 :          2 : static int eap_fast_process_start(struct eap_sm *sm,
    1457                 :            :                                   struct eap_fast_data *data, u8 flags,
    1458                 :            :                                   const u8 *pos, size_t left)
    1459                 :            : {
    1460                 :            :         const u8 *a_id;
    1461                 :            :         size_t a_id_len;
    1462                 :            : 
    1463                 :            :         /* EAP-FAST Version negotiation (section 3.1) */
    1464                 :          2 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Start (server ver=%d, own ver=%d)",
    1465                 :            :                    flags & EAP_TLS_VERSION_MASK, data->fast_version);
    1466         [ -  + ]:          2 :         if ((flags & EAP_TLS_VERSION_MASK) < data->fast_version)
    1467                 :          0 :                 data->fast_version = flags & EAP_TLS_VERSION_MASK;
    1468                 :          2 :         wpa_printf(MSG_DEBUG, "EAP-FAST: Using FAST version %d",
    1469                 :            :                    data->fast_version);
    1470                 :            : 
    1471                 :          2 :         a_id = eap_fast_get_a_id(pos, left, &a_id_len);
    1472                 :          2 :         eap_fast_select_pac(data, a_id, a_id_len);
    1473                 :            : 
    1474 [ -  + ][ #  # ]:          2 :         if (data->resuming && data->current_pac) {
    1475                 :          0 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: Trying to resume session - "
    1476                 :            :                            "do not add PAC-Opaque to TLS ClientHello");
    1477         [ #  # ]:          0 :                 if (eap_fast_clear_pac_opaque_ext(sm, data) < 0)
    1478                 :          0 :                         return -1;
    1479         [ +  + ]:          2 :         } else if (data->current_pac) {
    1480                 :            :                 /*
    1481                 :            :                  * PAC found for the A-ID and we are not resuming an old
    1482                 :            :                  * session, so add PAC-Opaque extension to ClientHello.
    1483                 :            :                  */
    1484         [ -  + ]:          1 :                 if (eap_fast_use_pac_opaque(sm, data, data->current_pac) < 0)
    1485                 :          0 :                         return -1;
    1486                 :            :         } else {
    1487                 :            :                 /* No PAC found, so we must provision one. */
    1488         [ -  + ]:          1 :                 if (!data->provisioning_allowed) {
    1489                 :          0 :                         wpa_printf(MSG_DEBUG, "EAP-FAST: No PAC found and "
    1490                 :            :                                    "provisioning disabled");
    1491                 :          0 :                         return -1;
    1492                 :            :                 }
    1493                 :          1 :                 wpa_printf(MSG_DEBUG, "EAP-FAST: No PAC found - "
    1494                 :            :                            "starting provisioning");
    1495   [ +  -  -  + ]:          2 :                 if (eap_fast_set_provisioning_ciphers(sm, data) < 0 ||
    1496                 :          1 :                     eap_fast_clear_pac_opaque_ext(sm, data) < 0)
    1497                 :          0 :                         return -1;
    1498                 :          1 :                 data->provisioning = 1;
    1499                 :            :         }
    1500                 :            : 
    1501                 :          2 :         return 0;
    1502                 :            : }
    1503                 :            : 
    1504                 :            : 
    1505                 :         13 : static struct wpabuf * eap_fast_process(struct eap_sm *sm, void *priv,
    1506                 :            :                                         struct eap_method_ret *ret,
    1507                 :            :                                         const struct wpabuf *reqData)
    1508                 :            : {
    1509                 :            :         const struct eap_hdr *req;
    1510                 :            :         size_t left;
    1511                 :            :         int res;
    1512                 :            :         u8 flags, id;
    1513                 :            :         struct wpabuf *resp;
    1514                 :            :         const u8 *pos;
    1515                 :         13 :         struct eap_fast_data *data = priv;
    1516                 :            : 
    1517                 :         13 :         pos = eap_peer_tls_process_init(sm, &data->ssl, EAP_TYPE_FAST, ret,
    1518                 :            :                                         reqData, &left, &flags);
    1519         [ -  + ]:         13 :         if (pos == NULL)
    1520                 :          0 :                 return NULL;
    1521                 :            : 
    1522                 :         13 :         req = wpabuf_head(reqData);
    1523                 :         13 :         id = req->identifier;
    1524                 :            : 
    1525         [ +  + ]:         13 :         if (flags & EAP_TLS_FLAGS_START) {
    1526         [ -  + ]:          2 :                 if (eap_fast_process_start(sm, data, flags, pos, left) < 0)
    1527                 :          0 :                         return NULL;
    1528                 :            : 
    1529                 :          2 :                 left = 0; /* A-ID is not used in further packet processing */
    1530                 :            :         }
    1531                 :            : 
    1532                 :         13 :         resp = NULL;
    1533 [ +  + ][ +  - ]:         13 :         if (tls_connection_established(sm->ssl_ctx, data->ssl.conn) &&
    1534                 :          7 :             !data->resuming) {
    1535                 :            :                 /* Process tunneled (encrypted) phase 2 data. */
    1536                 :            :                 struct wpabuf msg;
    1537                 :          7 :                 wpabuf_set(&msg, pos, left);
    1538                 :          7 :                 res = eap_fast_decrypt(sm, data, ret, req, &msg, &resp);
    1539         [ -  + ]:          7 :                 if (res < 0) {
    1540                 :          0 :                         ret->methodState = METHOD_DONE;
    1541                 :          0 :                         ret->decision = DECISION_FAIL;
    1542                 :            :                         /*
    1543                 :            :                          * Ack possible Alert that may have caused failure in
    1544                 :            :                          * decryption.
    1545                 :            :                          */
    1546                 :          0 :                         res = 1;
    1547                 :            :                 }
    1548                 :            :         } else {
    1549                 :            :                 /* Continue processing TLS handshake (phase 1). */
    1550                 :          6 :                 res = eap_peer_tls_process_helper(sm, &data->ssl,
    1551                 :            :                                                   EAP_TYPE_FAST,
    1552                 :            :                                                   data->fast_version, id, pos,
    1553                 :            :                                                   left, &resp);
    1554                 :            : 
    1555         [ +  + ]:          6 :                 if (tls_connection_established(sm->ssl_ctx, data->ssl.conn)) {
    1556                 :            :                         char cipher[80];
    1557                 :          2 :                         wpa_printf(MSG_DEBUG,
    1558                 :            :                                    "EAP-FAST: TLS done, proceed to Phase 2");
    1559 [ +  + ][ +  - ]:          2 :                         if (data->provisioning &&
    1560                 :          1 :                             (!(data->provisioning_allowed &
    1561         [ +  - ]:          1 :                                EAP_FAST_PROV_AUTH) ||
    1562                 :          1 :                              tls_get_cipher(sm->ssl_ctx, data->ssl.conn,
    1563         [ +  - ]:          1 :                                             cipher, sizeof(cipher)) < 0 ||
    1564         [ -  + ]:          1 :                              os_strstr(cipher, "ADH-") ||
    1565                 :          1 :                              os_strstr(cipher, "anon"))) {
    1566                 :          0 :                                 wpa_printf(MSG_DEBUG, "EAP-FAST: Using "
    1567                 :            :                                            "anonymous (unauthenticated) "
    1568                 :            :                                            "provisioning");
    1569                 :          0 :                                 data->anon_provisioning = 1;
    1570                 :            :                         } else
    1571                 :          2 :                                 data->anon_provisioning = 0;
    1572                 :          2 :                         data->resuming = 0;
    1573                 :          2 :                         eap_fast_derive_keys(sm, data);
    1574                 :            :                 }
    1575                 :            : 
    1576         [ +  + ]:          6 :                 if (res == 2) {
    1577                 :            :                         struct wpabuf msg;
    1578                 :            :                         /*
    1579                 :            :                          * Application data included in the handshake message.
    1580                 :            :                          */
    1581                 :          1 :                         wpabuf_free(data->pending_phase2_req);
    1582                 :          1 :                         data->pending_phase2_req = resp;
    1583                 :          1 :                         resp = NULL;
    1584                 :          1 :                         wpabuf_set(&msg, pos, left);
    1585                 :          1 :                         res = eap_fast_decrypt(sm, data, ret, req, &msg,
    1586                 :            :                                                &resp);
    1587                 :            :                 }
    1588                 :            :         }
    1589                 :            : 
    1590         [ +  + ]:         13 :         if (res == 1) {
    1591                 :          1 :                 wpabuf_free(resp);
    1592                 :          1 :                 return eap_peer_tls_build_ack(id, EAP_TYPE_FAST,
    1593                 :            :                                               data->fast_version);
    1594                 :            :         }
    1595                 :            : 
    1596                 :         13 :         return resp;
    1597                 :            : }
    1598                 :            : 
    1599                 :            : 
    1600                 :            : #if 0 /* FIX */
    1601                 :            : static Boolean eap_fast_has_reauth_data(struct eap_sm *sm, void *priv)
    1602                 :            : {
    1603                 :            :         struct eap_fast_data *data = priv;
    1604                 :            :         return tls_connection_established(sm->ssl_ctx, data->ssl.conn);
    1605                 :            : }
    1606                 :            : 
    1607                 :            : 
    1608                 :            : static void eap_fast_deinit_for_reauth(struct eap_sm *sm, void *priv)
    1609                 :            : {
    1610                 :            :         struct eap_fast_data *data = priv;
    1611                 :            :         os_free(data->key_block_p);
    1612                 :            :         data->key_block_p = NULL;
    1613                 :            :         wpabuf_free(data->pending_phase2_req);
    1614                 :            :         data->pending_phase2_req = NULL;
    1615                 :            : }
    1616                 :            : 
    1617                 :            : 
    1618                 :            : static void * eap_fast_init_for_reauth(struct eap_sm *sm, void *priv)
    1619                 :            : {
    1620                 :            :         struct eap_fast_data *data = priv;
    1621                 :            :         if (eap_peer_tls_reauth_init(sm, &data->ssl)) {
    1622                 :            :                 os_free(data);
    1623                 :            :                 return NULL;
    1624                 :            :         }
    1625                 :            :         os_free(data->session_id);
    1626                 :            :         data->session_id = NULL;
    1627                 :            :         if (data->phase2_priv && data->phase2_method &&
    1628                 :            :             data->phase2_method->init_for_reauth)
    1629                 :            :                 data->phase2_method->init_for_reauth(sm, data->phase2_priv);
    1630                 :            :         data->phase2_success = 0;
    1631                 :            :         data->resuming = 1;
    1632                 :            :         data->provisioning = 0;
    1633                 :            :         data->anon_provisioning = 0;
    1634                 :            :         data->simck_idx = 0;
    1635                 :            :         return priv;
    1636                 :            : }
    1637                 :            : #endif
    1638                 :            : 
    1639                 :            : 
    1640                 :          0 : static int eap_fast_get_status(struct eap_sm *sm, void *priv, char *buf,
    1641                 :            :                                size_t buflen, int verbose)
    1642                 :            : {
    1643                 :          0 :         struct eap_fast_data *data = priv;
    1644                 :            :         int len, ret;
    1645                 :            : 
    1646                 :          0 :         len = eap_peer_tls_status(sm, &data->ssl, buf, buflen, verbose);
    1647         [ #  # ]:          0 :         if (data->phase2_method) {
    1648                 :          0 :                 ret = os_snprintf(buf + len, buflen - len,
    1649                 :            :                                   "EAP-FAST Phase2 method=%s\n",
    1650                 :          0 :                                   data->phase2_method->name);
    1651 [ #  # ][ #  # ]:          0 :                 if (ret < 0 || (size_t) ret >= buflen - len)
    1652                 :          0 :                         return len;
    1653                 :          0 :                 len += ret;
    1654                 :            :         }
    1655                 :          0 :         return len;
    1656                 :            : }
    1657                 :            : 
    1658                 :            : 
    1659                 :         13 : static Boolean eap_fast_isKeyAvailable(struct eap_sm *sm, void *priv)
    1660                 :            : {
    1661                 :         13 :         struct eap_fast_data *data = priv;
    1662                 :         13 :         return data->success;
    1663                 :            : }
    1664                 :            : 
    1665                 :            : 
    1666                 :          3 : static u8 * eap_fast_getKey(struct eap_sm *sm, void *priv, size_t *len)
    1667                 :            : {
    1668                 :          3 :         struct eap_fast_data *data = priv;
    1669                 :            :         u8 *key;
    1670                 :            : 
    1671         [ -  + ]:          3 :         if (!data->success)
    1672                 :          0 :                 return NULL;
    1673                 :            : 
    1674                 :          3 :         key = os_malloc(EAP_FAST_KEY_LEN);
    1675         [ -  + ]:          3 :         if (key == NULL)
    1676                 :          0 :                 return NULL;
    1677                 :            : 
    1678                 :          3 :         *len = EAP_FAST_KEY_LEN;
    1679                 :          3 :         os_memcpy(key, data->key_data, EAP_FAST_KEY_LEN);
    1680                 :            : 
    1681                 :          3 :         return key;
    1682                 :            : }
    1683                 :            : 
    1684                 :            : 
    1685                 :          3 : static u8 * eap_fast_get_session_id(struct eap_sm *sm, void *priv, size_t *len)
    1686                 :            : {
    1687                 :          3 :         struct eap_fast_data *data = priv;
    1688                 :            :         u8 *id;
    1689                 :            : 
    1690         [ -  + ]:          3 :         if (!data->success)
    1691                 :          0 :                 return NULL;
    1692                 :            : 
    1693                 :          3 :         id = os_malloc(data->id_len);
    1694         [ -  + ]:          3 :         if (id == NULL)
    1695                 :          0 :                 return NULL;
    1696                 :            : 
    1697                 :          3 :         *len = data->id_len;
    1698                 :          3 :         os_memcpy(id, data->session_id, data->id_len);
    1699                 :            : 
    1700                 :          3 :         return id;
    1701                 :            : }
    1702                 :            : 
    1703                 :            : 
    1704                 :          0 : static u8 * eap_fast_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
    1705                 :            : {
    1706                 :          0 :         struct eap_fast_data *data = priv;
    1707                 :            :         u8 *key;
    1708                 :            : 
    1709         [ #  # ]:          0 :         if (!data->success)
    1710                 :          0 :                 return NULL;
    1711                 :            : 
    1712                 :          0 :         key = os_malloc(EAP_EMSK_LEN);
    1713         [ #  # ]:          0 :         if (key == NULL)
    1714                 :          0 :                 return NULL;
    1715                 :            : 
    1716                 :          0 :         *len = EAP_EMSK_LEN;
    1717                 :          0 :         os_memcpy(key, data->emsk, EAP_EMSK_LEN);
    1718                 :            : 
    1719                 :          0 :         return key;
    1720                 :            : }
    1721                 :            : 
    1722                 :            : 
    1723                 :          3 : int eap_peer_fast_register(void)
    1724                 :            : {
    1725                 :            :         struct eap_method *eap;
    1726                 :            :         int ret;
    1727                 :            : 
    1728                 :          3 :         eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
    1729                 :            :                                     EAP_VENDOR_IETF, EAP_TYPE_FAST, "FAST");
    1730         [ -  + ]:          3 :         if (eap == NULL)
    1731                 :          0 :                 return -1;
    1732                 :            : 
    1733                 :          3 :         eap->init = eap_fast_init;
    1734                 :          3 :         eap->deinit = eap_fast_deinit;
    1735                 :          3 :         eap->process = eap_fast_process;
    1736                 :          3 :         eap->isKeyAvailable = eap_fast_isKeyAvailable;
    1737                 :          3 :         eap->getKey = eap_fast_getKey;
    1738                 :          3 :         eap->getSessionId = eap_fast_get_session_id;
    1739                 :          3 :         eap->get_status = eap_fast_get_status;
    1740                 :            : #if 0
    1741                 :            :         eap->has_reauth_data = eap_fast_has_reauth_data;
    1742                 :            :         eap->deinit_for_reauth = eap_fast_deinit_for_reauth;
    1743                 :            :         eap->init_for_reauth = eap_fast_init_for_reauth;
    1744                 :            : #endif
    1745                 :          3 :         eap->get_emsk = eap_fast_get_emsk;
    1746                 :            : 
    1747                 :          3 :         ret = eap_peer_method_register(eap);
    1748         [ -  + ]:          3 :         if (ret)
    1749                 :          0 :                 eap_peer_method_free(eap);
    1750                 :          3 :         return ret;
    1751                 :            : }

Generated by: LCOV version 1.9