LCOV - code coverage report
Current view: top level - src/wps - wps_common.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1393793999 Lines: 378 468 80.8 %
Date: 2014-03-02 Functions: 33 33 100.0 %
Branches: 145 270 53.7 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Wi-Fi Protected Setup - common functionality
       3                 :            :  * Copyright (c) 2008-2012, 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 "common/defs.h"
      13                 :            : #include "common/ieee802_11_common.h"
      14                 :            : #include "crypto/aes_wrap.h"
      15                 :            : #include "crypto/crypto.h"
      16                 :            : #include "crypto/dh_group5.h"
      17                 :            : #include "crypto/sha1.h"
      18                 :            : #include "crypto/sha256.h"
      19                 :            : #include "crypto/random.h"
      20                 :            : #include "wps_i.h"
      21                 :            : #include "wps_dev_attr.h"
      22                 :            : 
      23                 :            : 
      24                 :        274 : void wps_kdf(const u8 *key, const u8 *label_prefix, size_t label_prefix_len,
      25                 :            :              const char *label, u8 *res, size_t res_len)
      26                 :            : {
      27                 :            :         u8 i_buf[4], key_bits[4];
      28                 :            :         const u8 *addr[4];
      29                 :            :         size_t len[4];
      30                 :            :         int i, iter;
      31                 :            :         u8 hash[SHA256_MAC_LEN], *opos;
      32                 :            :         size_t left;
      33                 :            : 
      34                 :        274 :         WPA_PUT_BE32(key_bits, res_len * 8);
      35                 :            : 
      36                 :        274 :         addr[0] = i_buf;
      37                 :        274 :         len[0] = sizeof(i_buf);
      38                 :        274 :         addr[1] = label_prefix;
      39                 :        274 :         len[1] = label_prefix_len;
      40                 :        274 :         addr[2] = (const u8 *) label;
      41                 :        274 :         len[2] = os_strlen(label);
      42                 :        274 :         addr[3] = key_bits;
      43                 :        274 :         len[3] = sizeof(key_bits);
      44                 :            : 
      45                 :        274 :         iter = (res_len + SHA256_MAC_LEN - 1) / SHA256_MAC_LEN;
      46                 :        274 :         opos = res;
      47                 :        274 :         left = res_len;
      48                 :            : 
      49         [ +  + ]:       1096 :         for (i = 1; i <= iter; i++) {
      50                 :        822 :                 WPA_PUT_BE32(i_buf, i);
      51                 :        822 :                 hmac_sha256_vector(key, SHA256_MAC_LEN, 4, addr, len, hash);
      52         [ +  + ]:        822 :                 if (i < iter) {
      53                 :        548 :                         os_memcpy(opos, hash, SHA256_MAC_LEN);
      54                 :        548 :                         opos += SHA256_MAC_LEN;
      55                 :        548 :                         left -= SHA256_MAC_LEN;
      56                 :            :                 } else
      57                 :        274 :                         os_memcpy(opos, hash, left);
      58                 :            :         }
      59                 :        274 : }
      60                 :            : 
      61                 :            : 
      62                 :        274 : int wps_derive_keys(struct wps_data *wps)
      63                 :            : {
      64                 :            :         struct wpabuf *pubkey, *dh_shared;
      65                 :            :         u8 dhkey[SHA256_MAC_LEN], kdk[SHA256_MAC_LEN];
      66                 :            :         const u8 *addr[3];
      67                 :            :         size_t len[3];
      68                 :            :         u8 keys[WPS_AUTHKEY_LEN + WPS_KEYWRAPKEY_LEN + WPS_EMSK_LEN];
      69                 :            : 
      70         [ -  + ]:        274 :         if (wps->dh_privkey == NULL) {
      71                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: Own DH private key not available");
      72                 :          0 :                 return -1;
      73                 :            :         }
      74                 :            : 
      75         [ +  + ]:        274 :         pubkey = wps->registrar ? wps->dh_pubkey_e : wps->dh_pubkey_r;
      76         [ -  + ]:        274 :         if (pubkey == NULL) {
      77                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: Peer DH public key not available");
      78                 :          0 :                 return -1;
      79                 :            :         }
      80                 :            : 
      81                 :        274 :         wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH Private Key", wps->dh_privkey);
      82                 :        274 :         wpa_hexdump_buf(MSG_DEBUG, "WPS: DH peer Public Key", pubkey);
      83                 :        274 :         dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey);
      84                 :        274 :         dh5_free(wps->dh_ctx);
      85                 :        274 :         wps->dh_ctx = NULL;
      86                 :        274 :         dh_shared = wpabuf_zeropad(dh_shared, 192);
      87         [ -  + ]:        274 :         if (dh_shared == NULL) {
      88                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: Failed to derive DH shared key");
      89                 :          0 :                 return -1;
      90                 :            :         }
      91                 :            : 
      92                 :            :         /* Own DH private key is not needed anymore */
      93                 :        274 :         wpabuf_free(wps->dh_privkey);
      94                 :        274 :         wps->dh_privkey = NULL;
      95                 :            : 
      96                 :        274 :         wpa_hexdump_buf_key(MSG_DEBUG, "WPS: DH shared key", dh_shared);
      97                 :            : 
      98                 :            :         /* DHKey = SHA-256(g^AB mod p) */
      99                 :        274 :         addr[0] = wpabuf_head(dh_shared);
     100                 :        274 :         len[0] = wpabuf_len(dh_shared);
     101                 :        274 :         sha256_vector(1, addr, len, dhkey);
     102                 :        274 :         wpa_hexdump_key(MSG_DEBUG, "WPS: DHKey", dhkey, sizeof(dhkey));
     103                 :        274 :         wpabuf_free(dh_shared);
     104                 :            : 
     105                 :            :         /* KDK = HMAC-SHA-256_DHKey(N1 || EnrolleeMAC || N2) */
     106                 :        274 :         addr[0] = wps->nonce_e;
     107                 :        274 :         len[0] = WPS_NONCE_LEN;
     108                 :        274 :         addr[1] = wps->mac_addr_e;
     109                 :        274 :         len[1] = ETH_ALEN;
     110                 :        274 :         addr[2] = wps->nonce_r;
     111                 :        274 :         len[2] = WPS_NONCE_LEN;
     112                 :        274 :         hmac_sha256_vector(dhkey, sizeof(dhkey), 3, addr, len, kdk);
     113                 :        274 :         wpa_hexdump_key(MSG_DEBUG, "WPS: KDK", kdk, sizeof(kdk));
     114                 :            : 
     115                 :        274 :         wps_kdf(kdk, NULL, 0, "Wi-Fi Easy and Secure Key Derivation",
     116                 :            :                 keys, sizeof(keys));
     117                 :        274 :         os_memcpy(wps->authkey, keys, WPS_AUTHKEY_LEN);
     118                 :        274 :         os_memcpy(wps->keywrapkey, keys + WPS_AUTHKEY_LEN, WPS_KEYWRAPKEY_LEN);
     119                 :        274 :         os_memcpy(wps->emsk, keys + WPS_AUTHKEY_LEN + WPS_KEYWRAPKEY_LEN,
     120                 :            :                   WPS_EMSK_LEN);
     121                 :            : 
     122                 :        274 :         wpa_hexdump_key(MSG_DEBUG, "WPS: AuthKey",
     123                 :        274 :                         wps->authkey, WPS_AUTHKEY_LEN);
     124                 :        274 :         wpa_hexdump_key(MSG_DEBUG, "WPS: KeyWrapKey",
     125                 :        274 :                         wps->keywrapkey, WPS_KEYWRAPKEY_LEN);
     126                 :        274 :         wpa_hexdump_key(MSG_DEBUG, "WPS: EMSK", wps->emsk, WPS_EMSK_LEN);
     127                 :            : 
     128                 :        274 :         return 0;
     129                 :            : }
     130                 :            : 
     131                 :            : 
     132                 :        244 : void wps_derive_psk(struct wps_data *wps, const u8 *dev_passwd,
     133                 :            :                     size_t dev_passwd_len)
     134                 :            : {
     135                 :            :         u8 hash[SHA256_MAC_LEN];
     136                 :            : 
     137                 :        244 :         hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, dev_passwd,
     138                 :        244 :                     (dev_passwd_len + 1) / 2, hash);
     139                 :        244 :         os_memcpy(wps->psk1, hash, WPS_PSK_LEN);
     140                 :        244 :         hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN,
     141                 :        244 :                     dev_passwd + (dev_passwd_len + 1) / 2,
     142                 :            :                     dev_passwd_len / 2, hash);
     143                 :        244 :         os_memcpy(wps->psk2, hash, WPS_PSK_LEN);
     144                 :            : 
     145                 :        244 :         wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: Device Password",
     146                 :            :                               dev_passwd, dev_passwd_len);
     147                 :        244 :         wpa_hexdump_key(MSG_DEBUG, "WPS: PSK1", wps->psk1, WPS_PSK_LEN);
     148                 :        244 :         wpa_hexdump_key(MSG_DEBUG, "WPS: PSK2", wps->psk2, WPS_PSK_LEN);
     149                 :        244 : }
     150                 :            : 
     151                 :            : 
     152                 :        579 : struct wpabuf * wps_decrypt_encr_settings(struct wps_data *wps, const u8 *encr,
     153                 :            :                                           size_t encr_len)
     154                 :            : {
     155                 :            :         struct wpabuf *decrypted;
     156                 :        579 :         const size_t block_size = 16;
     157                 :            :         size_t i;
     158                 :            :         u8 pad;
     159                 :            :         const u8 *pos;
     160                 :            : 
     161                 :            :         /* AES-128-CBC */
     162 [ +  - ][ +  - ]:        579 :         if (encr == NULL || encr_len < 2 * block_size || encr_len % block_size)
                 [ -  + ]
     163                 :            :         {
     164                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: No Encrypted Settings received");
     165                 :          0 :                 return NULL;
     166                 :            :         }
     167                 :            : 
     168                 :        579 :         decrypted = wpabuf_alloc(encr_len - block_size);
     169         [ -  + ]:        579 :         if (decrypted == NULL)
     170                 :          0 :                 return NULL;
     171                 :            : 
     172                 :        579 :         wpa_hexdump(MSG_MSGDUMP, "WPS: Encrypted Settings", encr, encr_len);
     173                 :        579 :         wpabuf_put_data(decrypted, encr + block_size, encr_len - block_size);
     174         [ -  + ]:        579 :         if (aes_128_cbc_decrypt(wps->keywrapkey, encr, wpabuf_mhead(decrypted),
     175                 :            :                                 wpabuf_len(decrypted))) {
     176                 :          0 :                 wpabuf_free(decrypted);
     177                 :          0 :                 return NULL;
     178                 :            :         }
     179                 :            : 
     180                 :        579 :         wpa_hexdump_buf_key(MSG_MSGDUMP, "WPS: Decrypted Encrypted Settings",
     181                 :            :                             decrypted);
     182                 :            : 
     183                 :        579 :         pos = wpabuf_head_u8(decrypted) + wpabuf_len(decrypted) - 1;
     184                 :        579 :         pad = *pos;
     185         [ -  + ]:        579 :         if (pad > wpabuf_len(decrypted)) {
     186                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: Invalid PKCS#5 v2.0 pad value");
     187                 :          0 :                 wpabuf_free(decrypted);
     188                 :          0 :                 return NULL;
     189                 :            :         }
     190         [ +  + ]:       8546 :         for (i = 0; i < pad; i++) {
     191         [ -  + ]:       7967 :                 if (*pos-- != pad) {
     192                 :          0 :                         wpa_printf(MSG_DEBUG, "WPS: Invalid PKCS#5 v2.0 pad "
     193                 :            :                                    "string");
     194                 :          0 :                         wpabuf_free(decrypted);
     195                 :          0 :                         return NULL;
     196                 :            :                 }
     197                 :            :         }
     198                 :        579 :         decrypted->used -= pad;
     199                 :            : 
     200                 :        579 :         return decrypted;
     201                 :            : }
     202                 :            : 
     203                 :            : 
     204                 :            : /**
     205                 :            :  * wps_pin_checksum - Compute PIN checksum
     206                 :            :  * @pin: Seven digit PIN (i.e., eight digit PIN without the checksum digit)
     207                 :            :  * Returns: Checksum digit
     208                 :            :  */
     209                 :         44 : unsigned int wps_pin_checksum(unsigned int pin)
     210                 :            : {
     211                 :         44 :         unsigned int accum = 0;
     212         [ +  + ]:        218 :         while (pin) {
     213                 :        174 :                 accum += 3 * (pin % 10);
     214                 :        174 :                 pin /= 10;
     215                 :        174 :                 accum += pin % 10;
     216                 :        174 :                 pin /= 10;
     217                 :            :         }
     218                 :            : 
     219                 :         44 :         return (10 - accum % 10) % 10;
     220                 :            : }
     221                 :            : 
     222                 :            : 
     223                 :            : /**
     224                 :            :  * wps_pin_valid - Check whether a PIN has a valid checksum
     225                 :            :  * @pin: Eight digit PIN (i.e., including the checksum digit)
     226                 :            :  * Returns: 1 if checksum digit is valid, or 0 if not
     227                 :            :  */
     228                 :         10 : unsigned int wps_pin_valid(unsigned int pin)
     229                 :            : {
     230                 :         10 :         return wps_pin_checksum(pin / 10) == (pin % 10);
     231                 :            : }
     232                 :            : 
     233                 :            : 
     234                 :            : /**
     235                 :            :  * wps_generate_pin - Generate a random PIN
     236                 :            :  * Returns: Eight digit PIN (i.e., including the checksum digit)
     237                 :            :  */
     238                 :         34 : unsigned int wps_generate_pin(void)
     239                 :            : {
     240                 :            :         unsigned int val;
     241                 :            : 
     242                 :            :         /* Generate seven random digits for the PIN */
     243         [ -  + ]:         34 :         if (random_get_bytes((unsigned char *) &val, sizeof(val)) < 0) {
     244                 :            :                 struct os_time now;
     245                 :          0 :                 os_get_time(&now);
     246                 :          0 :                 val = os_random() ^ now.sec ^ now.usec;
     247                 :            :         }
     248                 :         34 :         val %= 10000000;
     249                 :            : 
     250                 :            :         /* Append checksum digit */
     251                 :         34 :         return val * 10 + wps_pin_checksum(val);
     252                 :            : }
     253                 :            : 
     254                 :            : 
     255                 :        110 : int wps_pin_str_valid(const char *pin)
     256                 :            : {
     257                 :            :         const char *p;
     258                 :            :         size_t len;
     259                 :            : 
     260                 :        110 :         p = pin;
     261 [ +  + ][ +  - ]:        990 :         while (*p >= '0' && *p <= '9')
     262                 :        880 :                 p++;
     263         [ -  + ]:        110 :         if (*p != '\0')
     264                 :          0 :                 return 0;
     265                 :            : 
     266                 :        110 :         len = p - pin;
     267 [ +  - ][ +  - ]:        110 :         return len == 4 || len == 8;
     268                 :            : }
     269                 :            : 
     270                 :            : 
     271                 :         54 : void wps_fail_event(struct wps_context *wps, enum wps_msg_type msg,
     272                 :            :                     u16 config_error, u16 error_indication, const u8 *mac_addr)
     273                 :            : {
     274                 :            :         union wps_event_data data;
     275                 :            : 
     276         [ -  + ]:         54 :         if (wps->event_cb == NULL)
     277                 :         54 :                 return;
     278                 :            : 
     279                 :         54 :         os_memset(&data, 0, sizeof(data));
     280                 :         54 :         data.fail.msg = msg;
     281                 :         54 :         data.fail.config_error = config_error;
     282                 :         54 :         data.fail.error_indication = error_indication;
     283                 :         54 :         os_memcpy(data.fail.peer_macaddr, mac_addr, ETH_ALEN);
     284                 :         54 :         wps->event_cb(wps->cb_ctx, WPS_EV_FAIL, &data);
     285                 :            : }
     286                 :            : 
     287                 :            : 
     288                 :        221 : void wps_success_event(struct wps_context *wps, const u8 *mac_addr)
     289                 :            : {
     290                 :            :         union wps_event_data data;
     291                 :            : 
     292         [ -  + ]:        221 :         if (wps->event_cb == NULL)
     293                 :        221 :                 return;
     294                 :            : 
     295                 :        221 :         os_memset(&data, 0, sizeof(data));
     296                 :        221 :         os_memcpy(data.success.peer_macaddr, mac_addr, ETH_ALEN);
     297                 :        221 :         wps->event_cb(wps->cb_ctx, WPS_EV_SUCCESS, &data);
     298                 :            : }
     299                 :            : 
     300                 :            : 
     301                 :          9 : void wps_pwd_auth_fail_event(struct wps_context *wps, int enrollee, int part,
     302                 :            :                              const u8 *mac_addr)
     303                 :            : {
     304                 :            :         union wps_event_data data;
     305                 :            : 
     306         [ -  + ]:          9 :         if (wps->event_cb == NULL)
     307                 :          9 :                 return;
     308                 :            : 
     309                 :          9 :         os_memset(&data, 0, sizeof(data));
     310                 :          9 :         data.pwd_auth_fail.enrollee = enrollee;
     311                 :          9 :         data.pwd_auth_fail.part = part;
     312                 :          9 :         os_memcpy(data.pwd_auth_fail.peer_macaddr, mac_addr, ETH_ALEN);
     313                 :          9 :         wps->event_cb(wps->cb_ctx, WPS_EV_PWD_AUTH_FAIL, &data);
     314                 :            : }
     315                 :            : 
     316                 :            : 
     317                 :          4 : void wps_pbc_overlap_event(struct wps_context *wps)
     318                 :            : {
     319         [ -  + ]:          4 :         if (wps->event_cb == NULL)
     320                 :          4 :                 return;
     321                 :            : 
     322                 :          4 :         wps->event_cb(wps->cb_ctx, WPS_EV_PBC_OVERLAP, NULL);
     323                 :            : }
     324                 :            : 
     325                 :            : 
     326                 :          3 : void wps_pbc_timeout_event(struct wps_context *wps)
     327                 :            : {
     328         [ -  + ]:          3 :         if (wps->event_cb == NULL)
     329                 :          3 :                 return;
     330                 :            : 
     331                 :          3 :         wps->event_cb(wps->cb_ctx, WPS_EV_PBC_TIMEOUT, NULL);
     332                 :            : }
     333                 :            : 
     334                 :            : 
     335                 :         21 : void wps_pbc_active_event(struct wps_context *wps)
     336                 :            : {
     337         [ -  + ]:         21 :         if (wps->event_cb == NULL)
     338                 :         21 :                 return;
     339                 :            : 
     340                 :         21 :         wps->event_cb(wps->cb_ctx, WPS_EV_PBC_ACTIVE, NULL);
     341                 :            : }
     342                 :            : 
     343                 :            : 
     344                 :         16 : void wps_pbc_disable_event(struct wps_context *wps)
     345                 :            : {
     346         [ -  + ]:         16 :         if (wps->event_cb == NULL)
     347                 :         16 :                 return;
     348                 :            : 
     349                 :         16 :         wps->event_cb(wps->cb_ctx, WPS_EV_PBC_DISABLE, NULL);
     350                 :            : }
     351                 :            : 
     352                 :            : 
     353                 :            : #ifdef CONFIG_WPS_OOB
     354                 :            : 
     355                 :          3 : struct wpabuf * wps_get_oob_cred(struct wps_context *wps, int rf_band,
     356                 :            :                                  int channel)
     357                 :            : {
     358                 :            :         struct wps_data data;
     359                 :            :         struct wpabuf *plain;
     360                 :            : 
     361                 :          3 :         plain = wpabuf_alloc(500);
     362         [ -  + ]:          3 :         if (plain == NULL) {
     363                 :          0 :                 wpa_printf(MSG_ERROR, "WPS: Failed to allocate memory for OOB "
     364                 :            :                            "credential");
     365                 :          0 :                 return NULL;
     366                 :            :         }
     367                 :            : 
     368                 :          3 :         os_memset(&data, 0, sizeof(data));
     369                 :          3 :         data.wps = wps;
     370                 :          3 :         data.auth_type = wps->auth_types;
     371                 :          3 :         data.encr_type = wps->encr_types;
     372 [ +  - ][ +  - ]:          3 :         if (wps_build_cred(&data, plain) ||
     373 [ +  - ][ +  - ]:          3 :             (rf_band && wps_build_rf_bands_attr(plain, rf_band)) ||
     374   [ +  -  +  - ]:          6 :             (channel && wps_build_ap_channel(plain, channel)) ||
     375         [ -  + ]:          6 :             wps_build_mac_addr(plain, wps->dev.mac_addr) ||
     376                 :          3 :             wps_build_wfa_ext(plain, 0, NULL, 0)) {
     377                 :          0 :                 os_free(data.new_psk);
     378                 :          0 :                 wpabuf_free(plain);
     379                 :          0 :                 return NULL;
     380                 :            :         }
     381                 :            : 
     382 [ +  + ][ +  - ]:          3 :         if (wps->wps_state == WPS_STATE_NOT_CONFIGURED && data.new_psk &&
                 [ +  - ]
     383                 :          1 :             wps->ap) {
     384                 :            :                 struct wps_credential cred;
     385                 :            : 
     386                 :          1 :                 wpa_printf(MSG_DEBUG, "WPS: Moving to Configured state based "
     387                 :            :                            "on credential token generation");
     388                 :            : 
     389                 :          1 :                 os_memset(&cred, 0, sizeof(cred));
     390                 :          1 :                 os_memcpy(cred.ssid, wps->ssid, wps->ssid_len);
     391                 :          1 :                 cred.ssid_len = wps->ssid_len;
     392                 :          1 :                 cred.auth_type = WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK;
     393                 :          1 :                 cred.encr_type = WPS_ENCR_TKIP | WPS_ENCR_AES;
     394                 :          1 :                 os_memcpy(cred.key, data.new_psk, data.new_psk_len);
     395                 :          1 :                 cred.key_len = data.new_psk_len;
     396                 :            : 
     397                 :          1 :                 wps->wps_state = WPS_STATE_CONFIGURED;
     398                 :          1 :                 wpa_hexdump_ascii_key(MSG_DEBUG,
     399                 :            :                                       "WPS: Generated random passphrase",
     400                 :          1 :                                       data.new_psk, data.new_psk_len);
     401         [ +  - ]:          1 :                 if (wps->cred_cb)
     402                 :          1 :                         wps->cred_cb(wps->cb_ctx, &cred);
     403                 :            :         }
     404                 :            : 
     405                 :          3 :         os_free(data.new_psk);
     406                 :            : 
     407                 :          3 :         return plain;
     408                 :            : }
     409                 :            : 
     410                 :            : 
     411                 :         10 : struct wpabuf * wps_build_nfc_pw_token(u16 dev_pw_id,
     412                 :            :                                        const struct wpabuf *pubkey,
     413                 :            :                                        const struct wpabuf *dev_pw)
     414                 :            : {
     415                 :            :         struct wpabuf *data;
     416                 :            : 
     417                 :         10 :         data = wpabuf_alloc(200);
     418         [ -  + ]:         10 :         if (data == NULL)
     419                 :          0 :                 return NULL;
     420                 :            : 
     421         [ +  - ]:         20 :         if (wps_build_oob_dev_pw(data, dev_pw_id, pubkey,
     422         [ -  + ]:         20 :                                  wpabuf_head(dev_pw), wpabuf_len(dev_pw)) ||
     423                 :         10 :             wps_build_wfa_ext(data, 0, NULL, 0)) {
     424                 :          0 :                 wpa_printf(MSG_ERROR, "WPS: Failed to build NFC password "
     425                 :            :                            "token");
     426                 :          0 :                 wpabuf_free(data);
     427                 :          0 :                 return NULL;
     428                 :            :         }
     429                 :            : 
     430                 :         10 :         return data;
     431                 :            : }
     432                 :            : 
     433                 :            : 
     434                 :          4 : int wps_oob_use_cred(struct wps_context *wps, struct wps_parse_attr *attr)
     435                 :            : {
     436                 :            :         struct wpabuf msg;
     437                 :            :         size_t i;
     438                 :            : 
     439         [ +  + ]:          8 :         for (i = 0; i < attr->num_cred; i++) {
     440                 :            :                 struct wps_credential local_cred;
     441                 :            :                 struct wps_parse_attr cattr;
     442                 :            : 
     443                 :          4 :                 os_memset(&local_cred, 0, sizeof(local_cred));
     444                 :          4 :                 wpabuf_set(&msg, attr->cred[i], attr->cred_len[i]);
     445   [ +  -  -  + ]:          8 :                 if (wps_parse_msg(&msg, &cattr) < 0 ||
     446                 :          4 :                     wps_process_cred(&cattr, &local_cred)) {
     447                 :          0 :                         wpa_printf(MSG_ERROR, "WPS: Failed to parse OOB "
     448                 :            :                                    "credential");
     449                 :          0 :                         return -1;
     450                 :            :                 }
     451                 :          4 :                 wps->cred_cb(wps->cb_ctx, &local_cred);
     452                 :            :         }
     453                 :            : 
     454                 :          4 :         return 0;
     455                 :            : }
     456                 :            : 
     457                 :            : 
     458                 :            : #endif /* CONFIG_WPS_OOB */
     459                 :            : 
     460                 :            : 
     461                 :         21 : int wps_dev_type_str2bin(const char *str, u8 dev_type[WPS_DEV_TYPE_LEN])
     462                 :            : {
     463                 :            :         const char *pos;
     464                 :            : 
     465                 :            :         /* <categ>-<OUI>-<subcateg> */
     466                 :         21 :         WPA_PUT_BE16(dev_type, atoi(str));
     467                 :         21 :         pos = os_strchr(str, '-');
     468         [ -  + ]:         21 :         if (pos == NULL)
     469                 :          0 :                 return -1;
     470                 :         21 :         pos++;
     471         [ -  + ]:         21 :         if (hexstr2bin(pos, &dev_type[2], 4))
     472                 :          0 :                 return -1;
     473                 :         21 :         pos = os_strchr(pos, '-');
     474         [ -  + ]:         21 :         if (pos == NULL)
     475                 :          0 :                 return -1;
     476                 :         21 :         pos++;
     477                 :         21 :         WPA_PUT_BE16(&dev_type[6], atoi(pos));
     478                 :            : 
     479                 :            : 
     480                 :         21 :         return 0;
     481                 :            : }
     482                 :            : 
     483                 :            : 
     484                 :       4697 : char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
     485                 :            :                             size_t buf_len)
     486                 :            : {
     487                 :            :         int ret;
     488                 :            : 
     489                 :       4697 :         ret = os_snprintf(buf, buf_len, "%u-%08X-%u",
     490                 :       4697 :                           WPA_GET_BE16(dev_type), WPA_GET_BE32(&dev_type[2]),
     491                 :       4697 :                           WPA_GET_BE16(&dev_type[6]));
     492 [ -  + ][ +  - ]:       4697 :         if (ret < 0 || (unsigned int) ret >= buf_len)
     493                 :          0 :                 return NULL;
     494                 :            : 
     495                 :       4697 :         return buf;
     496                 :            : }
     497                 :            : 
     498                 :            : 
     499                 :         49 : void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid)
     500                 :            : {
     501                 :            :         const u8 *addr[2];
     502                 :            :         size_t len[2];
     503                 :            :         u8 hash[SHA1_MAC_LEN];
     504                 :         49 :         u8 nsid[16] = {
     505                 :            :                 0x52, 0x64, 0x80, 0xf8,
     506                 :            :                 0xc9, 0x9b,
     507                 :            :                 0x4b, 0xe5,
     508                 :            :                 0xa6, 0x55,
     509                 :            :                 0x58, 0xed, 0x5f, 0x5d, 0x60, 0x84
     510                 :            :         };
     511                 :            : 
     512                 :         49 :         addr[0] = nsid;
     513                 :         49 :         len[0] = sizeof(nsid);
     514                 :         49 :         addr[1] = mac_addr;
     515                 :         49 :         len[1] = 6;
     516                 :         49 :         sha1_vector(2, addr, len, hash);
     517                 :         49 :         os_memcpy(uuid, hash, 16);
     518                 :            : 
     519                 :            :         /* Version: 5 = named-based version using SHA-1 */
     520                 :         49 :         uuid[6] = (5 << 4) | (uuid[6] & 0x0f);
     521                 :            : 
     522                 :            :         /* Variant specified in RFC 4122 */
     523                 :         49 :         uuid[8] = 0x80 | (uuid[8] & 0x3f);
     524                 :         49 : }
     525                 :            : 
     526                 :            : 
     527                 :        175 : u16 wps_config_methods_str2bin(const char *str)
     528                 :            : {
     529                 :        175 :         u16 methods = 0;
     530                 :            : 
     531         [ +  + ]:        175 :         if (str == NULL) {
     532                 :            :                 /* Default to enabling methods based on build configuration */
     533                 :        160 :                 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
     534                 :            : #ifdef CONFIG_WPS2
     535                 :        160 :                 methods |= WPS_CONFIG_VIRT_DISPLAY;
     536                 :            : #endif /* CONFIG_WPS2 */
     537                 :            : #ifdef CONFIG_WPS_NFC
     538                 :        160 :                 methods |= WPS_CONFIG_NFC_INTERFACE;
     539                 :            : #endif /* CONFIG_WPS_NFC */
     540                 :            :         } else {
     541         [ -  + ]:         15 :                 if (os_strstr(str, "ethernet"))
     542                 :          0 :                         methods |= WPS_CONFIG_ETHERNET;
     543         [ +  - ]:         15 :                 if (os_strstr(str, "label"))
     544                 :         15 :                         methods |= WPS_CONFIG_LABEL;
     545         [ -  + ]:         15 :                 if (os_strstr(str, "display"))
     546                 :          0 :                         methods |= WPS_CONFIG_DISPLAY;
     547         [ -  + ]:         15 :                 if (os_strstr(str, "ext_nfc_token"))
     548                 :          0 :                         methods |= WPS_CONFIG_EXT_NFC_TOKEN;
     549         [ -  + ]:         15 :                 if (os_strstr(str, "int_nfc_token"))
     550                 :          0 :                         methods |= WPS_CONFIG_INT_NFC_TOKEN;
     551         [ -  + ]:         15 :                 if (os_strstr(str, "nfc_interface"))
     552                 :          0 :                         methods |= WPS_CONFIG_NFC_INTERFACE;
     553         [ +  - ]:         15 :                 if (os_strstr(str, "push_button"))
     554                 :         15 :                         methods |= WPS_CONFIG_PUSHBUTTON;
     555         [ -  + ]:         15 :                 if (os_strstr(str, "keypad"))
     556                 :          0 :                         methods |= WPS_CONFIG_KEYPAD;
     557                 :            : #ifdef CONFIG_WPS2
     558         [ -  + ]:         15 :                 if (os_strstr(str, "virtual_display"))
     559                 :          0 :                         methods |= WPS_CONFIG_VIRT_DISPLAY;
     560         [ -  + ]:         15 :                 if (os_strstr(str, "physical_display"))
     561                 :          0 :                         methods |= WPS_CONFIG_PHY_DISPLAY;
     562         [ -  + ]:         15 :                 if (os_strstr(str, "virtual_push_button"))
     563                 :          0 :                         methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
     564         [ -  + ]:         15 :                 if (os_strstr(str, "physical_push_button"))
     565                 :          0 :                         methods |= WPS_CONFIG_PHY_PUSHBUTTON;
     566                 :            : #endif /* CONFIG_WPS2 */
     567                 :            :         }
     568                 :            : 
     569                 :        175 :         return methods;
     570                 :            : }
     571                 :            : 
     572                 :            : 
     573                 :         17 : struct wpabuf * wps_build_wsc_ack(struct wps_data *wps)
     574                 :            : {
     575                 :            :         struct wpabuf *msg;
     576                 :            : 
     577                 :         17 :         wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_ACK");
     578                 :            : 
     579                 :         17 :         msg = wpabuf_alloc(1000);
     580         [ -  + ]:         17 :         if (msg == NULL)
     581                 :          0 :                 return NULL;
     582                 :            : 
     583   [ +  -  +  - ]:         34 :         if (wps_build_version(msg) ||
     584         [ +  - ]:         34 :             wps_build_msg_type(msg, WPS_WSC_ACK) ||
     585         [ +  - ]:         34 :             wps_build_enrollee_nonce(wps, msg) ||
     586         [ -  + ]:         34 :             wps_build_registrar_nonce(wps, msg) ||
     587                 :         17 :             wps_build_wfa_ext(msg, 0, NULL, 0)) {
     588                 :          0 :                 wpabuf_free(msg);
     589                 :          0 :                 return NULL;
     590                 :            :         }
     591                 :            : 
     592                 :         17 :         return msg;
     593                 :            : }
     594                 :            : 
     595                 :            : 
     596                 :         43 : struct wpabuf * wps_build_wsc_nack(struct wps_data *wps)
     597                 :            : {
     598                 :            :         struct wpabuf *msg;
     599                 :            : 
     600                 :         43 :         wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_NACK");
     601                 :            : 
     602                 :         43 :         msg = wpabuf_alloc(1000);
     603         [ -  + ]:         43 :         if (msg == NULL)
     604                 :          0 :                 return NULL;
     605                 :            : 
     606   [ +  -  +  - ]:         86 :         if (wps_build_version(msg) ||
     607         [ +  - ]:         86 :             wps_build_msg_type(msg, WPS_WSC_NACK) ||
     608         [ +  - ]:         86 :             wps_build_enrollee_nonce(wps, msg) ||
     609         [ +  - ]:         86 :             wps_build_registrar_nonce(wps, msg) ||
     610         [ -  + ]:         86 :             wps_build_config_error(msg, wps->config_error) ||
     611                 :         43 :             wps_build_wfa_ext(msg, 0, NULL, 0)) {
     612                 :          0 :                 wpabuf_free(msg);
     613                 :          0 :                 return NULL;
     614                 :            :         }
     615                 :            : 
     616                 :         43 :         return msg;
     617                 :            : }
     618                 :            : 
     619                 :            : 
     620                 :            : #ifdef CONFIG_WPS_NFC
     621                 :            : 
     622                 :         10 : struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey,
     623                 :            :                                     struct wpabuf *dev_pw)
     624                 :            : {
     625                 :            :         struct wpabuf *ret;
     626                 :            : 
     627 [ +  - ][ -  + ]:         10 :         if (pubkey == NULL || dev_pw == NULL)
     628                 :          0 :                 return NULL;
     629                 :            : 
     630                 :         10 :         ret = wps_build_nfc_pw_token(id, pubkey, dev_pw);
     631 [ +  - ][ +  - ]:         10 :         if (ndef && ret) {
     632                 :            :                 struct wpabuf *tmp;
     633                 :         10 :                 tmp = ndef_build_wifi(ret);
     634                 :         10 :                 wpabuf_free(ret);
     635         [ -  + ]:         10 :                 if (tmp == NULL)
     636                 :          0 :                         return NULL;
     637                 :         10 :                 ret = tmp;
     638                 :            :         }
     639                 :            : 
     640                 :         10 :         return ret;
     641                 :            : }
     642                 :            : 
     643                 :            : 
     644                 :         18 : int wps_nfc_gen_dh(struct wpabuf **pubkey, struct wpabuf **privkey)
     645                 :            : {
     646                 :         18 :         struct wpabuf *priv = NULL, *pub = NULL;
     647                 :            :         void *dh_ctx;
     648                 :            : 
     649                 :         18 :         dh_ctx = dh5_init(&priv, &pub);
     650         [ -  + ]:         18 :         if (dh_ctx == NULL)
     651                 :          0 :                 return -1;
     652                 :         18 :         pub = wpabuf_zeropad(pub, 192);
     653         [ -  + ]:         18 :         if (pub == NULL) {
     654                 :          0 :                 wpabuf_free(priv);
     655                 :          0 :                 return -1;
     656                 :            :         }
     657                 :         18 :         wpa_hexdump_buf(MSG_DEBUG, "WPS: Generated new DH pubkey", pub);
     658                 :         18 :         dh5_free(dh_ctx);
     659                 :            : 
     660                 :         18 :         wpabuf_free(*pubkey);
     661                 :         18 :         *pubkey = pub;
     662                 :         18 :         wpabuf_free(*privkey);
     663                 :         18 :         *privkey = priv;
     664                 :            : 
     665                 :         18 :         return 0;
     666                 :            : }
     667                 :            : 
     668                 :            : 
     669                 :         10 : struct wpabuf * wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey,
     670                 :            :                                   struct wpabuf **privkey,
     671                 :            :                                   struct wpabuf **dev_pw)
     672                 :            : {
     673                 :            :         struct wpabuf *pw;
     674                 :            :         u16 val;
     675                 :            : 
     676                 :         10 :         pw = wpabuf_alloc(WPS_OOB_DEVICE_PASSWORD_LEN);
     677         [ -  + ]:         10 :         if (pw == NULL)
     678                 :          0 :                 return NULL;
     679                 :            : 
     680         [ +  - ]:         10 :         if (random_get_bytes(wpabuf_put(pw, WPS_OOB_DEVICE_PASSWORD_LEN),
     681         [ -  + ]:         10 :                              WPS_OOB_DEVICE_PASSWORD_LEN) ||
     682                 :         10 :             random_get_bytes((u8 *) &val, sizeof(val))) {
     683                 :          0 :                 wpabuf_free(pw);
     684                 :          0 :                 return NULL;
     685                 :            :         }
     686                 :            : 
     687         [ -  + ]:         10 :         if (wps_nfc_gen_dh(pubkey, privkey) < 0) {
     688                 :          0 :                 wpabuf_free(pw);
     689                 :          0 :                 return NULL;
     690                 :            :         }
     691                 :            : 
     692                 :         10 :         *id = 0x10 + val % 0xfff0;
     693                 :         10 :         wpabuf_free(*dev_pw);
     694                 :         10 :         *dev_pw = pw;
     695                 :            : 
     696                 :         10 :         return wps_nfc_token_build(ndef, *id, *pubkey, *dev_pw);
     697                 :            : }
     698                 :            : 
     699                 :            : 
     700                 :          9 : struct wpabuf * wps_build_nfc_handover_req(struct wps_context *ctx,
     701                 :            :                                            struct wpabuf *nfc_dh_pubkey)
     702                 :            : {
     703                 :            :         struct wpabuf *msg;
     704                 :            :         void *len;
     705                 :            : 
     706         [ -  + ]:          9 :         if (ctx == NULL)
     707                 :          0 :                 return NULL;
     708                 :            : 
     709                 :          9 :         wpa_printf(MSG_DEBUG, "WPS: Building attributes for NFC connection "
     710                 :            :                    "handover request");
     711                 :            : 
     712         [ -  + ]:          9 :         if (nfc_dh_pubkey == NULL) {
     713                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: No NFC OOB Device Password "
     714                 :            :                            "configured");
     715                 :          0 :                 return NULL;
     716                 :            :         }
     717                 :            : 
     718                 :          9 :         msg = wpabuf_alloc(1000);
     719         [ -  + ]:          9 :         if (msg == NULL)
     720                 :          0 :                 return msg;
     721                 :          9 :         len = wpabuf_put(msg, 2);
     722                 :            : 
     723         [ +  - ]:          9 :         if (wps_build_oob_dev_pw(msg, DEV_PW_NFC_CONNECTION_HANDOVER,
     724         [ +  - ]:          9 :                                  nfc_dh_pubkey, NULL, 0) ||
     725         [ -  + ]:         18 :             wps_build_uuid_e(msg, ctx->uuid) ||
     726                 :          9 :             wps_build_wfa_ext(msg, 0, NULL, 0)) {
     727                 :          0 :                 wpabuf_free(msg);
     728                 :          0 :                 return NULL;
     729                 :            :         }
     730                 :            : 
     731                 :          9 :         WPA_PUT_BE16(len, wpabuf_len(msg) - 2);
     732                 :            : 
     733                 :          9 :         return msg;
     734                 :            : }
     735                 :            : 
     736                 :            : 
     737                 :          9 : static int wps_build_ssid(struct wpabuf *msg, struct wps_context *wps)
     738                 :            : {
     739                 :          9 :         wpa_printf(MSG_DEBUG, "WPS:  * SSID");
     740                 :          9 :         wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID in Connection Handover Select",
     741                 :          9 :                           wps->ssid, wps->ssid_len);
     742                 :          9 :         wpabuf_put_be16(msg, ATTR_SSID);
     743                 :          9 :         wpabuf_put_be16(msg, wps->ssid_len);
     744                 :          9 :         wpabuf_put_data(msg, wps->ssid, wps->ssid_len);
     745                 :          9 :         return 0;
     746                 :            : }
     747                 :            : 
     748                 :            : 
     749                 :          9 : static int wps_build_ap_freq(struct wpabuf *msg, int freq)
     750                 :            : {
     751                 :            :         enum hostapd_hw_mode mode;
     752                 :            :         u8 channel, rf_band;
     753                 :            :         u16 ap_channel;
     754                 :            : 
     755         [ +  + ]:          9 :         if (freq <= 0)
     756                 :          3 :                 return 0;
     757                 :            : 
     758                 :          6 :         mode = ieee80211_freq_to_chan(freq, &channel);
     759         [ -  + ]:          6 :         if (mode == NUM_HOSTAPD_MODES)
     760                 :          0 :                 return 0; /* Unknown channel */
     761                 :            : 
     762 [ -  + ][ #  # ]:          6 :         if (mode == HOSTAPD_MODE_IEEE80211G || mode == HOSTAPD_MODE_IEEE80211B)
     763                 :          6 :                 rf_band = WPS_RF_24GHZ;
     764         [ #  # ]:          0 :         else if (mode == HOSTAPD_MODE_IEEE80211A)
     765                 :          0 :                 rf_band = WPS_RF_50GHZ;
     766                 :            :         else
     767                 :          0 :                 return 0; /* Unknown band */
     768                 :          6 :         ap_channel = channel;
     769                 :            : 
     770   [ +  -  -  + ]:         12 :         if (wps_build_rf_bands_attr(msg, rf_band) ||
     771                 :          6 :             wps_build_ap_channel(msg, ap_channel))
     772                 :          0 :                 return -1;
     773                 :            : 
     774                 :          9 :         return 0;
     775                 :            : }
     776                 :            : 
     777                 :            : 
     778                 :          9 : struct wpabuf * wps_build_nfc_handover_sel(struct wps_context *ctx,
     779                 :            :                                            struct wpabuf *nfc_dh_pubkey,
     780                 :            :                                            const u8 *bssid, int freq)
     781                 :            : {
     782                 :            :         struct wpabuf *msg;
     783                 :            :         void *len;
     784                 :            : 
     785         [ -  + ]:          9 :         if (ctx == NULL)
     786                 :          0 :                 return NULL;
     787                 :            : 
     788                 :          9 :         wpa_printf(MSG_DEBUG, "WPS: Building attributes for NFC connection "
     789                 :            :                    "handover select");
     790                 :            : 
     791         [ -  + ]:          9 :         if (nfc_dh_pubkey == NULL) {
     792                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: No NFC OOB Device Password "
     793                 :            :                            "configured");
     794                 :          0 :                 return NULL;
     795                 :            :         }
     796                 :            : 
     797                 :          9 :         msg = wpabuf_alloc(1000);
     798         [ -  + ]:          9 :         if (msg == NULL)
     799                 :          0 :                 return msg;
     800                 :          9 :         len = wpabuf_put(msg, 2);
     801                 :            : 
     802         [ +  - ]:          9 :         if (wps_build_oob_dev_pw(msg, DEV_PW_NFC_CONNECTION_HANDOVER,
     803         [ +  - ]:          9 :                                  nfc_dh_pubkey, NULL, 0) ||
     804         [ +  - ]:         18 :             wps_build_ssid(msg, ctx) ||
     805         [ +  - ]:         18 :             wps_build_ap_freq(msg, freq) ||
     806   [ +  -  -  + ]:         18 :             (bssid && wps_build_mac_addr(msg, bssid)) ||
     807                 :          9 :             wps_build_wfa_ext(msg, 0, NULL, 0)) {
     808                 :          0 :                 wpabuf_free(msg);
     809                 :          0 :                 return NULL;
     810                 :            :         }
     811                 :            : 
     812                 :          9 :         WPA_PUT_BE16(len, wpabuf_len(msg) - 2);
     813                 :            : 
     814                 :          9 :         return msg;
     815                 :            : }
     816                 :            : 
     817                 :            : 
     818                 :          7 : struct wpabuf * wps_build_nfc_handover_req_p2p(struct wps_context *ctx,
     819                 :            :                                                struct wpabuf *nfc_dh_pubkey)
     820                 :            : {
     821                 :            :         struct wpabuf *msg;
     822                 :            : 
     823         [ -  + ]:          7 :         if (ctx == NULL)
     824                 :          0 :                 return NULL;
     825                 :            : 
     826                 :          7 :         wpa_printf(MSG_DEBUG, "WPS: Building attributes for NFC connection "
     827                 :            :                    "handover request (P2P)");
     828                 :            : 
     829         [ -  + ]:          7 :         if (nfc_dh_pubkey == NULL) {
     830                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: No NFC DH Public Key configured");
     831                 :          0 :                 return NULL;
     832                 :            :         }
     833                 :            : 
     834                 :          7 :         msg = wpabuf_alloc(1000);
     835         [ -  + ]:          7 :         if (msg == NULL)
     836                 :          0 :                 return msg;
     837                 :            : 
     838   [ +  -  +  - ]:         14 :         if (wps_build_manufacturer(&ctx->dev, msg) ||
     839         [ +  - ]:         14 :             wps_build_model_name(&ctx->dev, msg) ||
     840         [ +  - ]:         14 :             wps_build_model_number(&ctx->dev, msg) ||
     841                 :          7 :             wps_build_oob_dev_pw(msg, DEV_PW_NFC_CONNECTION_HANDOVER,
     842         [ +  - ]:          7 :                                  nfc_dh_pubkey, NULL, 0) ||
     843         [ +  - ]:         14 :             wps_build_rf_bands(&ctx->dev, msg, 0) ||
     844         [ +  - ]:         14 :             wps_build_serial_number(&ctx->dev, msg) ||
     845         [ -  + ]:         14 :             wps_build_uuid_e(msg, ctx->uuid) ||
     846                 :          7 :             wps_build_wfa_ext(msg, 0, NULL, 0)) {
     847                 :          0 :                 wpabuf_free(msg);
     848                 :          0 :                 return NULL;
     849                 :            :         }
     850                 :            : 
     851                 :          7 :         return msg;
     852                 :            : }
     853                 :            : 
     854                 :            : 
     855                 :         13 : struct wpabuf * wps_build_nfc_handover_sel_p2p(struct wps_context *ctx,
     856                 :            :                                                int nfc_dev_pw_id,
     857                 :            :                                                struct wpabuf *nfc_dh_pubkey,
     858                 :            :                                                struct wpabuf *nfc_dev_pw)
     859                 :            : {
     860                 :            :         struct wpabuf *msg;
     861                 :            :         const u8 *dev_pw;
     862                 :            :         size_t dev_pw_len;
     863                 :            : 
     864         [ -  + ]:         13 :         if (ctx == NULL)
     865                 :          0 :                 return NULL;
     866                 :            : 
     867                 :         13 :         wpa_printf(MSG_DEBUG, "WPS: Building attributes for NFC connection "
     868                 :            :                    "handover select (P2P)");
     869                 :            : 
     870 [ +  + ][ +  - ]:         13 :         if (nfc_dh_pubkey == NULL ||
     871         [ -  + ]:          5 :             (nfc_dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER &&
     872                 :            :              nfc_dev_pw == NULL)) {
     873                 :          0 :                 wpa_printf(MSG_DEBUG, "WPS: No NFC OOB Device Password "
     874                 :            :                            "configured");
     875                 :          0 :                 return NULL;
     876                 :            :         }
     877                 :            : 
     878                 :         13 :         msg = wpabuf_alloc(1000);
     879         [ -  + ]:         13 :         if (msg == NULL)
     880                 :          0 :                 return msg;
     881                 :            : 
     882         [ +  + ]:         13 :         if (nfc_dev_pw) {
     883                 :          5 :                 dev_pw = wpabuf_head(nfc_dev_pw);
     884                 :          5 :                 dev_pw_len = wpabuf_len(nfc_dev_pw);
     885                 :            :         } else {
     886                 :          8 :                 dev_pw = NULL;
     887                 :          8 :                 dev_pw_len = 0;
     888                 :            :         }
     889                 :            : 
     890   [ +  -  +  - ]:         26 :         if (wps_build_manufacturer(&ctx->dev, msg) ||
     891         [ +  - ]:         26 :             wps_build_model_name(&ctx->dev, msg) ||
     892         [ +  - ]:         26 :             wps_build_model_number(&ctx->dev, msg) ||
     893                 :         13 :             wps_build_oob_dev_pw(msg, nfc_dev_pw_id, nfc_dh_pubkey,
     894         [ +  - ]:         13 :                                  dev_pw, dev_pw_len) ||
     895         [ +  - ]:         26 :             wps_build_rf_bands(&ctx->dev, msg, 0) ||
     896         [ +  - ]:         26 :             wps_build_serial_number(&ctx->dev, msg) ||
     897         [ -  + ]:         26 :             wps_build_uuid_e(msg, ctx->uuid) ||
     898                 :         13 :             wps_build_wfa_ext(msg, 0, NULL, 0)) {
     899                 :          0 :                 wpabuf_free(msg);
     900                 :          0 :                 return NULL;
     901                 :            :         }
     902                 :            : 
     903                 :         13 :         return msg;
     904                 :            : }
     905                 :            : 
     906                 :            : #endif /* CONFIG_WPS_NFC */

Generated by: LCOV version 1.9