Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * wpa_supplicant / WPS integration |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 3 | * Copyright (c) 2008-2014, Jouni Malinen <j@w1.fi> |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include "includes.h" |
| 10 | |
| 11 | #include "common.h" |
| 12 | #include "eloop.h" |
| 13 | #include "uuid.h" |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 14 | #include "crypto/random.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 15 | #include "crypto/dh_group5.h" |
| 16 | #include "common/ieee802_11_defs.h" |
| 17 | #include "common/ieee802_11_common.h" |
| 18 | #include "common/wpa_common.h" |
| 19 | #include "common/wpa_ctrl.h" |
| 20 | #include "eap_common/eap_wsc_common.h" |
| 21 | #include "eap_peer/eap.h" |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 22 | #include "eapol_supp/eapol_supp_sm.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 23 | #include "rsn_supp/wpa.h" |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 24 | #include "wps/wps_attr_parse.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 25 | #include "config.h" |
| 26 | #include "wpa_supplicant_i.h" |
| 27 | #include "driver_i.h" |
| 28 | #include "notify.h" |
| 29 | #include "blacklist.h" |
| 30 | #include "bss.h" |
| 31 | #include "scan.h" |
| 32 | #include "ap.h" |
| 33 | #include "p2p/p2p.h" |
| 34 | #include "p2p_supplicant.h" |
| 35 | #include "wps_supplicant.h" |
| 36 | |
| 37 | |
| 38 | #ifndef WPS_PIN_SCAN_IGNORE_SEL_REG |
| 39 | #define WPS_PIN_SCAN_IGNORE_SEL_REG 3 |
| 40 | #endif /* WPS_PIN_SCAN_IGNORE_SEL_REG */ |
| 41 | |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 42 | /* |
| 43 | * The minimum time in seconds before trying to associate to a WPS PIN AP that |
| 44 | * does not have Selected Registrar TRUE. |
| 45 | */ |
| 46 | #ifndef WPS_PIN_TIME_IGNORE_SEL_REG |
| 47 | #define WPS_PIN_TIME_IGNORE_SEL_REG 5 |
| 48 | #endif /* WPS_PIN_TIME_IGNORE_SEL_REG */ |
| 49 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 50 | static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx); |
| 51 | static void wpas_clear_wps(struct wpa_supplicant *wpa_s); |
| 52 | |
| 53 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 54 | static void wpas_wps_clear_ap_info(struct wpa_supplicant *wpa_s) |
| 55 | { |
| 56 | os_free(wpa_s->wps_ap); |
| 57 | wpa_s->wps_ap = NULL; |
| 58 | wpa_s->num_wps_ap = 0; |
| 59 | wpa_s->wps_ap_iter = 0; |
| 60 | } |
| 61 | |
| 62 | |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 63 | static void wpas_wps_assoc_with_cred(void *eloop_ctx, void *timeout_ctx) |
| 64 | { |
| 65 | struct wpa_supplicant *wpa_s = eloop_ctx; |
| 66 | int use_fast_assoc = timeout_ctx != NULL; |
| 67 | |
| 68 | wpa_printf(MSG_DEBUG, "WPS: Continuing association after eapol_cb"); |
| 69 | if (!use_fast_assoc || |
| 70 | wpa_supplicant_fast_associate(wpa_s) != 1) |
| 71 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 72 | } |
| 73 | |
| 74 | |
| 75 | static void wpas_wps_assoc_with_cred_cancel(struct wpa_supplicant *wpa_s) |
| 76 | { |
| 77 | eloop_cancel_timeout(wpas_wps_assoc_with_cred, wpa_s, (void *) 0); |
| 78 | eloop_cancel_timeout(wpas_wps_assoc_with_cred, wpa_s, (void *) 1); |
| 79 | } |
| 80 | |
| 81 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 82 | int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s) |
| 83 | { |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 84 | if (wpas_p2p_wps_eapol_cb(wpa_s) > 0) |
| 85 | return 1; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 86 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 87 | if (!wpa_s->wps_success && |
| 88 | wpa_s->current_ssid && |
| 89 | eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) { |
| 90 | const u8 *bssid = wpa_s->bssid; |
| 91 | if (is_zero_ether_addr(bssid)) |
| 92 | bssid = wpa_s->pending_bssid; |
| 93 | |
| 94 | wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR |
| 95 | " did not succeed - continue trying to find " |
| 96 | "suitable AP", MAC2STR(bssid)); |
| 97 | wpa_blacklist_add(wpa_s, bssid); |
| 98 | |
| 99 | wpa_supplicant_deauthenticate(wpa_s, |
| 100 | WLAN_REASON_DEAUTH_LEAVING); |
| 101 | wpa_s->reassociate = 1; |
| 102 | wpa_supplicant_req_scan(wpa_s, |
| 103 | wpa_s->blacklist_cleared ? 5 : 0, 0); |
| 104 | wpa_s->blacklist_cleared = 0; |
| 105 | return 1; |
| 106 | } |
| 107 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 108 | wpas_wps_clear_ap_info(wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 109 | eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL); |
| 110 | if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && !wpa_s->wps_success) |
| 111 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL); |
| 112 | |
| 113 | if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid && |
| 114 | !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) { |
| 115 | int disabled = wpa_s->current_ssid->disabled; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 116 | unsigned int freq = wpa_s->assoc_freq; |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 117 | struct wpa_bss *bss; |
| 118 | struct wpa_ssid *ssid = NULL; |
| 119 | int use_fast_assoc = 0; |
| 120 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 121 | wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - " |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 122 | "try to associate with the received credential " |
| 123 | "(freq=%u)", freq); |
Dmitry Shmidt | 203eadb | 2015-03-05 14:16:04 -0800 | [diff] [blame] | 124 | wpa_s->own_disconnect_req = 1; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 125 | wpa_supplicant_deauthenticate(wpa_s, |
| 126 | WLAN_REASON_DEAUTH_LEAVING); |
| 127 | if (disabled) { |
| 128 | wpa_printf(MSG_DEBUG, "WPS: Current network is " |
| 129 | "disabled - wait for user to enable"); |
| 130 | return 1; |
| 131 | } |
| 132 | wpa_s->after_wps = 5; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 133 | wpa_s->wps_freq = freq; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 134 | wpa_s->normal_scans = 0; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 135 | wpa_s->reassociate = 1; |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 136 | |
| 137 | wpa_printf(MSG_DEBUG, "WPS: Checking whether fast association " |
| 138 | "without a new scan can be used"); |
| 139 | bss = wpa_supplicant_pick_network(wpa_s, &ssid); |
| 140 | if (bss) { |
| 141 | struct wpabuf *wps; |
| 142 | struct wps_parse_attr attr; |
| 143 | |
| 144 | wps = wpa_bss_get_vendor_ie_multi(bss, |
| 145 | WPS_IE_VENDOR_TYPE); |
| 146 | if (wps && wps_parse_msg(wps, &attr) == 0 && |
| 147 | attr.wps_state && |
| 148 | *attr.wps_state == WPS_STATE_CONFIGURED) |
| 149 | use_fast_assoc = 1; |
| 150 | wpabuf_free(wps); |
| 151 | } |
| 152 | |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 153 | /* |
| 154 | * Complete the next step from an eloop timeout to allow pending |
| 155 | * driver events related to the disconnection to be processed |
| 156 | * first. This makes it less likely for disconnection event to |
| 157 | * cause problems with the following connection. |
| 158 | */ |
| 159 | wpa_printf(MSG_DEBUG, "WPS: Continue association from timeout"); |
| 160 | wpas_wps_assoc_with_cred_cancel(wpa_s); |
| 161 | eloop_register_timeout(0, 10000, |
| 162 | wpas_wps_assoc_with_cred, wpa_s, |
| 163 | use_fast_assoc ? (void *) 1 : |
| 164 | (void *) 0); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 165 | return 1; |
| 166 | } |
| 167 | |
| 168 | if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid) { |
| 169 | wpa_printf(MSG_DEBUG, "WPS: Registration completed - waiting " |
| 170 | "for external credential processing"); |
| 171 | wpas_clear_wps(wpa_s); |
Dmitry Shmidt | 203eadb | 2015-03-05 14:16:04 -0800 | [diff] [blame] | 172 | wpa_s->own_disconnect_req = 1; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 173 | wpa_supplicant_deauthenticate(wpa_s, |
| 174 | WLAN_REASON_DEAUTH_LEAVING); |
| 175 | return 1; |
| 176 | } |
| 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | |
| 182 | static void wpas_wps_security_workaround(struct wpa_supplicant *wpa_s, |
| 183 | struct wpa_ssid *ssid, |
| 184 | const struct wps_credential *cred) |
| 185 | { |
| 186 | struct wpa_driver_capa capa; |
| 187 | struct wpa_bss *bss; |
| 188 | const u8 *ie; |
| 189 | struct wpa_ie_data adv; |
| 190 | int wpa2 = 0, ccmp = 0; |
| 191 | |
| 192 | /* |
| 193 | * Many existing WPS APs do not know how to negotiate WPA2 or CCMP in |
| 194 | * case they are configured for mixed mode operation (WPA+WPA2 and |
| 195 | * TKIP+CCMP). Try to use scan results to figure out whether the AP |
| 196 | * actually supports stronger security and select that if the client |
| 197 | * has support for it, too. |
| 198 | */ |
| 199 | |
| 200 | if (wpa_drv_get_capa(wpa_s, &capa)) |
| 201 | return; /* Unknown what driver supports */ |
| 202 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 203 | if (ssid->ssid == NULL) |
| 204 | return; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 205 | bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len); |
| 206 | if (bss == NULL) { |
| 207 | wpa_printf(MSG_DEBUG, "WPS: The AP was not found from BSS " |
| 208 | "table - use credential as-is"); |
| 209 | return; |
| 210 | } |
| 211 | |
| 212 | wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table"); |
| 213 | |
| 214 | ie = wpa_bss_get_ie(bss, WLAN_EID_RSN); |
| 215 | if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) { |
| 216 | wpa2 = 1; |
| 217 | if (adv.pairwise_cipher & WPA_CIPHER_CCMP) |
| 218 | ccmp = 1; |
| 219 | } else { |
| 220 | ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE); |
| 221 | if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 && |
| 222 | adv.pairwise_cipher & WPA_CIPHER_CCMP) |
| 223 | ccmp = 1; |
| 224 | } |
| 225 | |
| 226 | if (ie == NULL && (ssid->proto & WPA_PROTO_WPA) && |
| 227 | (ssid->pairwise_cipher & WPA_CIPHER_TKIP)) { |
| 228 | /* |
| 229 | * TODO: This could be the initial AP configuration and the |
| 230 | * Beacon contents could change shortly. Should request a new |
| 231 | * scan and delay addition of the network until the updated |
| 232 | * scan results are available. |
| 233 | */ |
| 234 | wpa_printf(MSG_DEBUG, "WPS: The AP did not yet advertise WPA " |
| 235 | "support - use credential as-is"); |
| 236 | return; |
| 237 | } |
| 238 | |
| 239 | if (ccmp && !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) && |
| 240 | (ssid->pairwise_cipher & WPA_CIPHER_TKIP) && |
| 241 | (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) { |
| 242 | wpa_printf(MSG_DEBUG, "WPS: Add CCMP into the credential " |
| 243 | "based on scan results"); |
| 244 | if (wpa_s->conf->ap_scan == 1) |
| 245 | ssid->pairwise_cipher |= WPA_CIPHER_CCMP; |
| 246 | else |
| 247 | ssid->pairwise_cipher = WPA_CIPHER_CCMP; |
| 248 | } |
| 249 | |
| 250 | if (wpa2 && !(ssid->proto & WPA_PROTO_RSN) && |
| 251 | (ssid->proto & WPA_PROTO_WPA) && |
| 252 | (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP)) { |
| 253 | wpa_printf(MSG_DEBUG, "WPS: Add WPA2 into the credential " |
| 254 | "based on scan results"); |
| 255 | if (wpa_s->conf->ap_scan == 1) |
| 256 | ssid->proto |= WPA_PROTO_RSN; |
| 257 | else |
| 258 | ssid->proto = WPA_PROTO_RSN; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 263 | static void wpas_wps_remove_dup_network(struct wpa_supplicant *wpa_s, |
| 264 | struct wpa_ssid *new_ssid) |
| 265 | { |
| 266 | struct wpa_ssid *ssid, *next; |
| 267 | |
| 268 | for (ssid = wpa_s->conf->ssid, next = ssid ? ssid->next : NULL; ssid; |
| 269 | ssid = next, next = ssid ? ssid->next : NULL) { |
| 270 | /* |
| 271 | * new_ssid has already been added to the list in |
| 272 | * wpas_wps_add_network(), so skip it. |
| 273 | */ |
| 274 | if (ssid == new_ssid) |
| 275 | continue; |
| 276 | |
| 277 | if (ssid->bssid_set || new_ssid->bssid_set) { |
| 278 | if (ssid->bssid_set != new_ssid->bssid_set) |
| 279 | continue; |
| 280 | if (os_memcmp(ssid->bssid, new_ssid->bssid, ETH_ALEN) != |
| 281 | 0) |
| 282 | continue; |
| 283 | } |
| 284 | |
| 285 | /* compare SSID */ |
| 286 | if (ssid->ssid_len == 0 || ssid->ssid_len != new_ssid->ssid_len) |
| 287 | continue; |
| 288 | |
| 289 | if (ssid->ssid && new_ssid->ssid) { |
| 290 | if (os_memcmp(ssid->ssid, new_ssid->ssid, |
| 291 | ssid->ssid_len) != 0) |
| 292 | continue; |
| 293 | } else if (ssid->ssid || new_ssid->ssid) |
| 294 | continue; |
| 295 | |
| 296 | /* compare security parameters */ |
| 297 | if (ssid->auth_alg != new_ssid->auth_alg || |
| 298 | ssid->key_mgmt != new_ssid->key_mgmt || |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 299 | (ssid->group_cipher != new_ssid->group_cipher && |
| 300 | !(ssid->group_cipher & new_ssid->group_cipher & |
| 301 | WPA_CIPHER_CCMP))) |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 302 | continue; |
| 303 | |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 304 | /* |
| 305 | * Some existing WPS APs will send two creds in case they are |
| 306 | * configured for mixed mode operation (WPA+WPA2 and TKIP+CCMP). |
| 307 | * Try to merge these two creds if they are received in the same |
| 308 | * M8 message. |
| 309 | */ |
| 310 | if (ssid->wps_run && ssid->wps_run == new_ssid->wps_run && |
| 311 | wpa_key_mgmt_wpa_psk(ssid->key_mgmt)) { |
| 312 | if (new_ssid->passphrase && ssid->passphrase && |
| 313 | os_strcmp(new_ssid->passphrase, ssid->passphrase) != |
| 314 | 0) { |
| 315 | wpa_printf(MSG_DEBUG, |
| 316 | "WPS: M8 Creds with different passphrase - do not merge"); |
| 317 | continue; |
| 318 | } |
| 319 | |
| 320 | if (new_ssid->psk_set && |
| 321 | (!ssid->psk_set || |
| 322 | os_memcmp(new_ssid->psk, ssid->psk, 32) != 0)) { |
| 323 | wpa_printf(MSG_DEBUG, |
| 324 | "WPS: M8 Creds with different PSK - do not merge"); |
| 325 | continue; |
| 326 | } |
| 327 | |
| 328 | if ((new_ssid->passphrase && !ssid->passphrase) || |
| 329 | (!new_ssid->passphrase && ssid->passphrase)) { |
| 330 | wpa_printf(MSG_DEBUG, |
| 331 | "WPS: M8 Creds with different passphrase/PSK type - do not merge"); |
| 332 | continue; |
| 333 | } |
| 334 | |
| 335 | wpa_printf(MSG_DEBUG, |
| 336 | "WPS: Workaround - merge likely WPA/WPA2-mixed mode creds in same M8 message"); |
| 337 | new_ssid->proto |= ssid->proto; |
| 338 | new_ssid->pairwise_cipher |= ssid->pairwise_cipher; |
| 339 | } else { |
| 340 | /* |
| 341 | * proto and pairwise_cipher difference matter for |
| 342 | * non-mixed-mode creds. |
| 343 | */ |
| 344 | if (ssid->proto != new_ssid->proto || |
| 345 | ssid->pairwise_cipher != new_ssid->pairwise_cipher) |
| 346 | continue; |
| 347 | } |
| 348 | |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 349 | /* Remove the duplicated older network entry. */ |
| 350 | wpa_printf(MSG_DEBUG, "Remove duplicate network %d", ssid->id); |
| 351 | wpas_notify_network_removed(wpa_s, ssid); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 352 | if (wpa_s->current_ssid == ssid) |
| 353 | wpa_s->current_ssid = NULL; |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 354 | wpa_config_remove_network(wpa_s->conf, ssid->id); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 359 | static int wpa_supplicant_wps_cred(void *ctx, |
| 360 | const struct wps_credential *cred) |
| 361 | { |
| 362 | struct wpa_supplicant *wpa_s = ctx; |
| 363 | struct wpa_ssid *ssid = wpa_s->current_ssid; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 364 | u16 auth_type; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 365 | #ifdef CONFIG_WPS_REG_DISABLE_OPEN |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 366 | int registrar = 0; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 367 | #endif /* CONFIG_WPS_REG_DISABLE_OPEN */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 368 | |
| 369 | if ((wpa_s->conf->wps_cred_processing == 1 || |
| 370 | wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) { |
| 371 | size_t blen = cred->cred_attr_len * 2 + 1; |
| 372 | char *buf = os_malloc(blen); |
| 373 | if (buf) { |
| 374 | wpa_snprintf_hex(buf, blen, |
| 375 | cred->cred_attr, cred->cred_attr_len); |
| 376 | wpa_msg(wpa_s, MSG_INFO, "%s%s", |
| 377 | WPS_EVENT_CRED_RECEIVED, buf); |
| 378 | os_free(buf); |
| 379 | } |
| 380 | |
| 381 | wpas_notify_wps_credential(wpa_s, cred); |
| 382 | } else |
| 383 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED); |
| 384 | |
| 385 | wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute", |
| 386 | cred->cred_attr, cred->cred_attr_len); |
| 387 | |
| 388 | if (wpa_s->conf->wps_cred_processing == 1) |
| 389 | return 0; |
| 390 | |
| 391 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len); |
| 392 | wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x", |
| 393 | cred->auth_type); |
| 394 | wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type); |
| 395 | wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx); |
| 396 | wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key", |
| 397 | cred->key, cred->key_len); |
| 398 | wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR, |
| 399 | MAC2STR(cred->mac_addr)); |
| 400 | |
| 401 | auth_type = cred->auth_type; |
| 402 | if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) { |
| 403 | wpa_printf(MSG_DEBUG, "WPS: Workaround - convert mixed-mode " |
| 404 | "auth_type into WPA2PSK"); |
| 405 | auth_type = WPS_AUTH_WPA2PSK; |
| 406 | } |
| 407 | |
| 408 | if (auth_type != WPS_AUTH_OPEN && |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 409 | auth_type != WPS_AUTH_WPAPSK && |
| 410 | auth_type != WPS_AUTH_WPA2PSK) { |
| 411 | wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for " |
| 412 | "unsupported authentication type 0x%x", |
| 413 | auth_type); |
| 414 | return 0; |
| 415 | } |
| 416 | |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 417 | if (auth_type == WPS_AUTH_WPAPSK || auth_type == WPS_AUTH_WPA2PSK) { |
| 418 | if (cred->key_len < 8 || cred->key_len > 2 * PMK_LEN) { |
| 419 | wpa_printf(MSG_ERROR, "WPS: Reject PSK credential with " |
| 420 | "invalid Network Key length %lu", |
| 421 | (unsigned long) cred->key_len); |
| 422 | return -1; |
| 423 | } |
| 424 | } |
| 425 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 426 | if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) { |
| 427 | wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based " |
| 428 | "on the received credential"); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 429 | #ifdef CONFIG_WPS_REG_DISABLE_OPEN |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 430 | if (ssid->eap.identity && |
| 431 | ssid->eap.identity_len == WSC_ID_REGISTRAR_LEN && |
| 432 | os_memcmp(ssid->eap.identity, WSC_ID_REGISTRAR, |
| 433 | WSC_ID_REGISTRAR_LEN) == 0) |
| 434 | registrar = 1; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 435 | #endif /* CONFIG_WPS_REG_DISABLE_OPEN */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 436 | os_free(ssid->eap.identity); |
| 437 | ssid->eap.identity = NULL; |
| 438 | ssid->eap.identity_len = 0; |
| 439 | os_free(ssid->eap.phase1); |
| 440 | ssid->eap.phase1 = NULL; |
| 441 | os_free(ssid->eap.eap_methods); |
| 442 | ssid->eap.eap_methods = NULL; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 443 | if (!ssid->p2p_group) { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 444 | ssid->temporary = 0; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 445 | ssid->bssid_set = 0; |
| 446 | } |
| 447 | ssid->disabled_until.sec = 0; |
| 448 | ssid->disabled_until.usec = 0; |
| 449 | ssid->auth_failures = 0; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 450 | } else { |
| 451 | wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the " |
| 452 | "received credential"); |
| 453 | ssid = wpa_config_add_network(wpa_s->conf); |
| 454 | if (ssid == NULL) |
| 455 | return -1; |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 456 | if (wpa_s->current_ssid) { |
| 457 | /* |
| 458 | * Should the GO issue multiple credentials for some |
| 459 | * reason, each credential should be marked as a |
| 460 | * temporary P2P group similarly to the one that gets |
| 461 | * marked as such based on the pre-configured values |
| 462 | * used for the WPS network block. |
| 463 | */ |
| 464 | ssid->p2p_group = wpa_s->current_ssid->p2p_group; |
| 465 | ssid->temporary = wpa_s->current_ssid->temporary; |
| 466 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 467 | wpas_notify_network_added(wpa_s, ssid); |
| 468 | } |
| 469 | |
| 470 | wpa_config_set_network_defaults(ssid); |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 471 | ssid->wps_run = wpa_s->wps_run; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 472 | |
| 473 | os_free(ssid->ssid); |
| 474 | ssid->ssid = os_malloc(cred->ssid_len); |
| 475 | if (ssid->ssid) { |
| 476 | os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len); |
| 477 | ssid->ssid_len = cred->ssid_len; |
| 478 | } |
| 479 | |
| 480 | switch (cred->encr_type) { |
| 481 | case WPS_ENCR_NONE: |
| 482 | break; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 483 | case WPS_ENCR_TKIP: |
| 484 | ssid->pairwise_cipher = WPA_CIPHER_TKIP; |
| 485 | break; |
| 486 | case WPS_ENCR_AES: |
| 487 | ssid->pairwise_cipher = WPA_CIPHER_CCMP; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 488 | if (wpa_s->drv_capa_known && |
| 489 | (wpa_s->drv_enc & WPA_DRIVER_CAPA_ENC_GCMP)) { |
| 490 | ssid->pairwise_cipher |= WPA_CIPHER_GCMP; |
| 491 | ssid->group_cipher |= WPA_CIPHER_GCMP; |
| 492 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 493 | break; |
| 494 | } |
| 495 | |
| 496 | switch (auth_type) { |
| 497 | case WPS_AUTH_OPEN: |
| 498 | ssid->auth_alg = WPA_AUTH_ALG_OPEN; |
| 499 | ssid->key_mgmt = WPA_KEY_MGMT_NONE; |
| 500 | ssid->proto = 0; |
| 501 | #ifdef CONFIG_WPS_REG_DISABLE_OPEN |
| 502 | if (registrar) { |
| 503 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OPEN_NETWORK |
| 504 | "id=%d - Credentials for an open " |
| 505 | "network disabled by default - use " |
| 506 | "'select_network %d' to enable", |
| 507 | ssid->id, ssid->id); |
| 508 | ssid->disabled = 1; |
| 509 | } |
| 510 | #endif /* CONFIG_WPS_REG_DISABLE_OPEN */ |
| 511 | break; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 512 | case WPS_AUTH_WPAPSK: |
| 513 | ssid->auth_alg = WPA_AUTH_ALG_OPEN; |
| 514 | ssid->key_mgmt = WPA_KEY_MGMT_PSK; |
| 515 | ssid->proto = WPA_PROTO_WPA; |
| 516 | break; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 517 | case WPS_AUTH_WPA2PSK: |
| 518 | ssid->auth_alg = WPA_AUTH_ALG_OPEN; |
| 519 | ssid->key_mgmt = WPA_KEY_MGMT_PSK; |
| 520 | ssid->proto = WPA_PROTO_RSN; |
| 521 | break; |
| 522 | } |
| 523 | |
| 524 | if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) { |
| 525 | if (cred->key_len == 2 * PMK_LEN) { |
| 526 | if (hexstr2bin((const char *) cred->key, ssid->psk, |
| 527 | PMK_LEN)) { |
| 528 | wpa_printf(MSG_ERROR, "WPS: Invalid Network " |
| 529 | "Key"); |
| 530 | return -1; |
| 531 | } |
| 532 | ssid->psk_set = 1; |
| 533 | ssid->export_keys = 1; |
| 534 | } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) { |
| 535 | os_free(ssid->passphrase); |
| 536 | ssid->passphrase = os_malloc(cred->key_len + 1); |
| 537 | if (ssid->passphrase == NULL) |
| 538 | return -1; |
| 539 | os_memcpy(ssid->passphrase, cred->key, cred->key_len); |
| 540 | ssid->passphrase[cred->key_len] = '\0'; |
| 541 | wpa_config_update_psk(ssid); |
| 542 | ssid->export_keys = 1; |
| 543 | } else { |
| 544 | wpa_printf(MSG_ERROR, "WPS: Invalid Network Key " |
| 545 | "length %lu", |
| 546 | (unsigned long) cred->key_len); |
| 547 | return -1; |
| 548 | } |
| 549 | } |
Dmitry Shmidt | 7a53dbb | 2015-06-11 13:13:53 -0700 | [diff] [blame^] | 550 | ssid->priority = wpa_s->conf->wps_priority; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 551 | |
| 552 | wpas_wps_security_workaround(wpa_s, ssid, cred); |
| 553 | |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 554 | wpas_wps_remove_dup_network(wpa_s, ssid); |
| 555 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 556 | #ifndef CONFIG_NO_CONFIG_WRITE |
| 557 | if (wpa_s->conf->update_config && |
| 558 | wpa_config_write(wpa_s->confname, wpa_s->conf)) { |
| 559 | wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration"); |
| 560 | return -1; |
| 561 | } |
| 562 | #endif /* CONFIG_NO_CONFIG_WRITE */ |
| 563 | |
Dmitry Shmidt | 7a53dbb | 2015-06-11 13:13:53 -0700 | [diff] [blame^] | 564 | if (ssid->priority) |
| 565 | wpa_config_update_prio_list(wpa_s->conf); |
| 566 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 567 | /* |
| 568 | * Optimize the post-WPS scan based on the channel used during |
| 569 | * the provisioning in case EAP-Failure is not received. |
| 570 | */ |
| 571 | wpa_s->after_wps = 5; |
| 572 | wpa_s->wps_freq = wpa_s->assoc_freq; |
| 573 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 574 | return 0; |
| 575 | } |
| 576 | |
| 577 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 578 | static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s, |
| 579 | struct wps_event_m2d *m2d) |
| 580 | { |
| 581 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D |
| 582 | "dev_password_id=%d config_error=%d", |
| 583 | m2d->dev_password_id, m2d->config_error); |
| 584 | wpas_notify_wps_event_m2d(wpa_s, m2d); |
| 585 | #ifdef CONFIG_P2P |
| 586 | if (wpa_s->parent && wpa_s->parent != wpa_s) { |
| 587 | wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_M2D |
| 588 | "dev_password_id=%d config_error=%d", |
| 589 | m2d->dev_password_id, m2d->config_error); |
| 590 | } |
| 591 | if (m2d->config_error == WPS_CFG_MULTIPLE_PBC_DETECTED) { |
| 592 | /* |
| 593 | * Notify P2P from eloop timeout to avoid issues with the |
| 594 | * interface getting removed while processing a message. |
| 595 | */ |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 596 | eloop_register_timeout(0, 0, wpas_p2p_pbc_overlap_cb, wpa_s, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 597 | NULL); |
| 598 | } |
| 599 | #endif /* CONFIG_P2P */ |
| 600 | } |
| 601 | |
| 602 | |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 603 | static void wpas_wps_clear_timeout(void *eloop_ctx, void *timeout_ctx) |
| 604 | { |
| 605 | struct wpa_supplicant *wpa_s = eloop_ctx; |
| 606 | wpa_printf(MSG_DEBUG, "WPS: Clear WPS network from timeout"); |
| 607 | wpas_clear_wps(wpa_s); |
| 608 | } |
| 609 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 610 | |
| 611 | static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s, |
| 612 | struct wps_event_fail *fail) |
| 613 | { |
| 614 | if (fail->error_indication > 0 && |
| 615 | fail->error_indication < NUM_WPS_EI_VALUES) { |
| 616 | wpa_msg(wpa_s, MSG_INFO, |
| 617 | WPS_EVENT_FAIL "msg=%d config_error=%d reason=%d (%s)", |
| 618 | fail->msg, fail->config_error, fail->error_indication, |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 619 | wps_ei_str(fail->error_indication)); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 620 | if (wpa_s->parent && wpa_s->parent != wpa_s) |
| 621 | wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL |
| 622 | "msg=%d config_error=%d reason=%d (%s)", |
| 623 | fail->msg, fail->config_error, |
| 624 | fail->error_indication, |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 625 | wps_ei_str(fail->error_indication)); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 626 | } else { |
| 627 | wpa_msg(wpa_s, MSG_INFO, |
| 628 | WPS_EVENT_FAIL "msg=%d config_error=%d", |
| 629 | fail->msg, fail->config_error); |
| 630 | if (wpa_s->parent && wpa_s->parent != wpa_s) |
| 631 | wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL |
| 632 | "msg=%d config_error=%d", |
| 633 | fail->msg, fail->config_error); |
| 634 | } |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 635 | |
| 636 | /* |
| 637 | * Need to allow WPS processing to complete, e.g., by sending WSC_NACK. |
| 638 | */ |
| 639 | wpa_printf(MSG_DEBUG, "WPS: Register timeout to clear WPS network"); |
| 640 | eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL); |
| 641 | eloop_register_timeout(0, 100000, wpas_wps_clear_timeout, wpa_s, NULL); |
| 642 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 643 | wpas_notify_wps_event_fail(wpa_s, fail); |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 644 | wpas_p2p_wps_failed(wpa_s, fail); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 648 | static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx); |
| 649 | |
| 650 | static void wpas_wps_reenable_networks(struct wpa_supplicant *wpa_s) |
| 651 | { |
| 652 | struct wpa_ssid *ssid; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 653 | int changed = 0; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 654 | |
| 655 | eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL); |
| 656 | |
| 657 | for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) { |
| 658 | if (ssid->disabled_for_connect && ssid->disabled) { |
| 659 | ssid->disabled_for_connect = 0; |
| 660 | ssid->disabled = 0; |
| 661 | wpas_notify_network_enabled_changed(wpa_s, ssid); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 662 | changed++; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 663 | } |
| 664 | } |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 665 | |
| 666 | if (changed) { |
| 667 | #ifndef CONFIG_NO_CONFIG_WRITE |
| 668 | if (wpa_s->conf->update_config && |
| 669 | wpa_config_write(wpa_s->confname, wpa_s->conf)) { |
| 670 | wpa_printf(MSG_DEBUG, "WPS: Failed to update " |
| 671 | "configuration"); |
| 672 | } |
| 673 | #endif /* CONFIG_NO_CONFIG_WRITE */ |
| 674 | } |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | |
| 678 | static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx) |
| 679 | { |
| 680 | struct wpa_supplicant *wpa_s = eloop_ctx; |
| 681 | /* Enable the networks disabled during wpas_wps_reassoc */ |
| 682 | wpas_wps_reenable_networks(wpa_s); |
| 683 | } |
| 684 | |
| 685 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 686 | static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s) |
| 687 | { |
| 688 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS); |
| 689 | wpa_s->wps_success = 1; |
| 690 | wpas_notify_wps_event_success(wpa_s); |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 691 | if (wpa_s->current_ssid) |
| 692 | wpas_clear_temp_disabled(wpa_s, wpa_s->current_ssid, 1); |
| 693 | wpa_s->extra_blacklist_count = 0; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 694 | |
| 695 | /* |
| 696 | * Enable the networks disabled during wpas_wps_reassoc after 10 |
| 697 | * seconds. The 10 seconds timer is to allow the data connection to be |
| 698 | * formed before allowing other networks to be selected. |
| 699 | */ |
| 700 | eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s, |
| 701 | NULL); |
| 702 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 703 | wpas_p2p_wps_success(wpa_s, wpa_s->bssid, 0); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | |
| 707 | static void wpa_supplicant_wps_event_er_ap_add(struct wpa_supplicant *wpa_s, |
| 708 | struct wps_event_er_ap *ap) |
| 709 | { |
| 710 | char uuid_str[100]; |
| 711 | char dev_type[WPS_DEV_TYPE_BUFSIZE]; |
| 712 | |
| 713 | uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); |
| 714 | if (ap->pri_dev_type) |
| 715 | wps_dev_type_bin2str(ap->pri_dev_type, dev_type, |
| 716 | sizeof(dev_type)); |
| 717 | else |
| 718 | dev_type[0] = '\0'; |
| 719 | |
| 720 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_ADD "%s " MACSTR |
| 721 | " pri_dev_type=%s wps_state=%d |%s|%s|%s|%s|%s|%s|", |
| 722 | uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state, |
| 723 | ap->friendly_name ? ap->friendly_name : "", |
| 724 | ap->manufacturer ? ap->manufacturer : "", |
| 725 | ap->model_description ? ap->model_description : "", |
| 726 | ap->model_name ? ap->model_name : "", |
| 727 | ap->manufacturer_url ? ap->manufacturer_url : "", |
| 728 | ap->model_url ? ap->model_url : ""); |
| 729 | } |
| 730 | |
| 731 | |
| 732 | static void wpa_supplicant_wps_event_er_ap_remove(struct wpa_supplicant *wpa_s, |
| 733 | struct wps_event_er_ap *ap) |
| 734 | { |
| 735 | char uuid_str[100]; |
| 736 | uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); |
| 737 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str); |
| 738 | } |
| 739 | |
| 740 | |
| 741 | static void wpa_supplicant_wps_event_er_enrollee_add( |
| 742 | struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee) |
| 743 | { |
| 744 | char uuid_str[100]; |
| 745 | char dev_type[WPS_DEV_TYPE_BUFSIZE]; |
| 746 | |
| 747 | uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); |
| 748 | if (enrollee->pri_dev_type) |
| 749 | wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type, |
| 750 | sizeof(dev_type)); |
| 751 | else |
| 752 | dev_type[0] = '\0'; |
| 753 | |
| 754 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_ADD "%s " MACSTR |
| 755 | " M1=%d config_methods=0x%x dev_passwd_id=%d pri_dev_type=%s " |
| 756 | "|%s|%s|%s|%s|%s|", |
| 757 | uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received, |
| 758 | enrollee->config_methods, enrollee->dev_passwd_id, dev_type, |
| 759 | enrollee->dev_name ? enrollee->dev_name : "", |
| 760 | enrollee->manufacturer ? enrollee->manufacturer : "", |
| 761 | enrollee->model_name ? enrollee->model_name : "", |
| 762 | enrollee->model_number ? enrollee->model_number : "", |
| 763 | enrollee->serial_number ? enrollee->serial_number : ""); |
| 764 | } |
| 765 | |
| 766 | |
| 767 | static void wpa_supplicant_wps_event_er_enrollee_remove( |
| 768 | struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee) |
| 769 | { |
| 770 | char uuid_str[100]; |
| 771 | uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); |
| 772 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_REMOVE "%s " MACSTR, |
| 773 | uuid_str, MAC2STR(enrollee->mac_addr)); |
| 774 | } |
| 775 | |
| 776 | |
| 777 | static void wpa_supplicant_wps_event_er_ap_settings( |
| 778 | struct wpa_supplicant *wpa_s, |
| 779 | struct wps_event_er_ap_settings *ap_settings) |
| 780 | { |
| 781 | char uuid_str[100]; |
| 782 | char key_str[65]; |
| 783 | const struct wps_credential *cred = ap_settings->cred; |
| 784 | |
| 785 | key_str[0] = '\0'; |
| 786 | if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) { |
| 787 | if (cred->key_len >= 8 && cred->key_len <= 64) { |
| 788 | os_memcpy(key_str, cred->key, cred->key_len); |
| 789 | key_str[cred->key_len] = '\0'; |
| 790 | } |
| 791 | } |
| 792 | |
| 793 | uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str)); |
| 794 | /* Use wpa_msg_ctrl to avoid showing the key in debug log */ |
| 795 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_SETTINGS |
| 796 | "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x " |
| 797 | "key=%s", |
| 798 | uuid_str, wpa_ssid_txt(cred->ssid, cred->ssid_len), |
| 799 | cred->auth_type, cred->encr_type, key_str); |
| 800 | } |
| 801 | |
| 802 | |
| 803 | static void wpa_supplicant_wps_event_er_set_sel_reg( |
| 804 | struct wpa_supplicant *wpa_s, |
| 805 | struct wps_event_er_set_selected_registrar *ev) |
| 806 | { |
| 807 | char uuid_str[100]; |
| 808 | |
| 809 | uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str)); |
| 810 | switch (ev->state) { |
| 811 | case WPS_ER_SET_SEL_REG_START: |
| 812 | wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG |
| 813 | "uuid=%s state=START sel_reg=%d dev_passwd_id=%u " |
| 814 | "sel_reg_config_methods=0x%x", |
| 815 | uuid_str, ev->sel_reg, ev->dev_passwd_id, |
| 816 | ev->sel_reg_config_methods); |
| 817 | break; |
| 818 | case WPS_ER_SET_SEL_REG_DONE: |
| 819 | wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG |
| 820 | "uuid=%s state=DONE", uuid_str); |
| 821 | break; |
| 822 | case WPS_ER_SET_SEL_REG_FAILED: |
| 823 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_SET_SEL_REG |
| 824 | "uuid=%s state=FAILED", uuid_str); |
| 825 | break; |
| 826 | } |
| 827 | } |
| 828 | |
| 829 | |
| 830 | static void wpa_supplicant_wps_event(void *ctx, enum wps_event event, |
| 831 | union wps_event_data *data) |
| 832 | { |
| 833 | struct wpa_supplicant *wpa_s = ctx; |
| 834 | switch (event) { |
| 835 | case WPS_EV_M2D: |
| 836 | wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d); |
| 837 | break; |
| 838 | case WPS_EV_FAIL: |
| 839 | wpa_supplicant_wps_event_fail(wpa_s, &data->fail); |
| 840 | break; |
| 841 | case WPS_EV_SUCCESS: |
| 842 | wpa_supplicant_wps_event_success(wpa_s); |
| 843 | break; |
| 844 | case WPS_EV_PWD_AUTH_FAIL: |
| 845 | #ifdef CONFIG_AP |
| 846 | if (wpa_s->ap_iface && data->pwd_auth_fail.enrollee) |
| 847 | wpa_supplicant_ap_pwd_auth_fail(wpa_s); |
| 848 | #endif /* CONFIG_AP */ |
| 849 | break; |
| 850 | case WPS_EV_PBC_OVERLAP: |
| 851 | break; |
| 852 | case WPS_EV_PBC_TIMEOUT: |
| 853 | break; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 854 | case WPS_EV_PBC_ACTIVE: |
| 855 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ACTIVE); |
| 856 | break; |
| 857 | case WPS_EV_PBC_DISABLE: |
| 858 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_DISABLE); |
| 859 | break; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 860 | case WPS_EV_ER_AP_ADD: |
| 861 | wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap); |
| 862 | break; |
| 863 | case WPS_EV_ER_AP_REMOVE: |
| 864 | wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap); |
| 865 | break; |
| 866 | case WPS_EV_ER_ENROLLEE_ADD: |
| 867 | wpa_supplicant_wps_event_er_enrollee_add(wpa_s, |
| 868 | &data->enrollee); |
| 869 | break; |
| 870 | case WPS_EV_ER_ENROLLEE_REMOVE: |
| 871 | wpa_supplicant_wps_event_er_enrollee_remove(wpa_s, |
| 872 | &data->enrollee); |
| 873 | break; |
| 874 | case WPS_EV_ER_AP_SETTINGS: |
| 875 | wpa_supplicant_wps_event_er_ap_settings(wpa_s, |
| 876 | &data->ap_settings); |
| 877 | break; |
| 878 | case WPS_EV_ER_SET_SELECTED_REGISTRAR: |
| 879 | wpa_supplicant_wps_event_er_set_sel_reg(wpa_s, |
| 880 | &data->set_sel_reg); |
| 881 | break; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 882 | case WPS_EV_AP_PIN_SUCCESS: |
| 883 | break; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 884 | } |
| 885 | } |
| 886 | |
| 887 | |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 888 | static int wpa_supplicant_wps_rf_band(void *ctx) |
| 889 | { |
| 890 | struct wpa_supplicant *wpa_s = ctx; |
| 891 | |
| 892 | if (!wpa_s->current_ssid || !wpa_s->assoc_freq) |
| 893 | return 0; |
| 894 | |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 895 | return (wpa_s->assoc_freq > 50000) ? WPS_RF_60GHZ : |
| 896 | (wpa_s->assoc_freq > 2484) ? WPS_RF_50GHZ : WPS_RF_24GHZ; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 897 | } |
| 898 | |
| 899 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 900 | enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid) |
| 901 | { |
| 902 | if (eap_is_wps_pbc_enrollee(&ssid->eap) || |
| 903 | eap_is_wps_pin_enrollee(&ssid->eap)) |
| 904 | return WPS_REQ_ENROLLEE; |
| 905 | else |
| 906 | return WPS_REQ_REGISTRAR; |
| 907 | } |
| 908 | |
| 909 | |
| 910 | static void wpas_clear_wps(struct wpa_supplicant *wpa_s) |
| 911 | { |
| 912 | int id; |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 913 | struct wpa_ssid *ssid, *remove_ssid = NULL, *prev_current; |
| 914 | |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 915 | wpa_s->after_wps = 0; |
Dmitry Shmidt | 68d0e3e | 2013-10-28 17:59:21 -0700 | [diff] [blame] | 916 | wpa_s->known_wps_freq = 0; |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 917 | |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 918 | prev_current = wpa_s->current_ssid; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 919 | |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 920 | /* Enable the networks disabled during wpas_wps_reassoc */ |
| 921 | wpas_wps_reenable_networks(wpa_s); |
| 922 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 923 | eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 924 | eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 925 | |
| 926 | /* Remove any existing WPS network from configuration */ |
| 927 | ssid = wpa_s->conf->ssid; |
| 928 | while (ssid) { |
| 929 | if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) { |
| 930 | if (ssid == wpa_s->current_ssid) { |
Dmitry Shmidt | 203eadb | 2015-03-05 14:16:04 -0800 | [diff] [blame] | 931 | wpa_s->own_disconnect_req = 1; |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 932 | wpa_supplicant_deauthenticate( |
| 933 | wpa_s, WLAN_REASON_DEAUTH_LEAVING); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 934 | } |
| 935 | id = ssid->id; |
| 936 | remove_ssid = ssid; |
| 937 | } else |
| 938 | id = -1; |
| 939 | ssid = ssid->next; |
| 940 | if (id >= 0) { |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 941 | if (prev_current == remove_ssid) { |
| 942 | wpa_sm_set_config(wpa_s->wpa, NULL); |
| 943 | eapol_sm_notify_config(wpa_s->eapol, NULL, |
| 944 | NULL); |
| 945 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 946 | wpas_notify_network_removed(wpa_s, remove_ssid); |
| 947 | wpa_config_remove_network(wpa_s->conf, id); |
| 948 | } |
| 949 | } |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 950 | |
| 951 | wpas_wps_clear_ap_info(wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | |
| 955 | static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx) |
| 956 | { |
| 957 | struct wpa_supplicant *wpa_s = eloop_ctx; |
| 958 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed " |
| 959 | "out"); |
| 960 | wpas_clear_wps(wpa_s); |
| 961 | } |
| 962 | |
| 963 | |
| 964 | static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 965 | int registrar, const u8 *dev_addr, |
| 966 | const u8 *bssid) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 967 | { |
| 968 | struct wpa_ssid *ssid; |
| 969 | |
| 970 | ssid = wpa_config_add_network(wpa_s->conf); |
| 971 | if (ssid == NULL) |
| 972 | return NULL; |
| 973 | wpas_notify_network_added(wpa_s, ssid); |
| 974 | wpa_config_set_network_defaults(ssid); |
| 975 | ssid->temporary = 1; |
| 976 | if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 || |
| 977 | wpa_config_set(ssid, "eap", "WSC", 0) < 0 || |
| 978 | wpa_config_set(ssid, "identity", registrar ? |
| 979 | "\"" WSC_ID_REGISTRAR "\"" : |
| 980 | "\"" WSC_ID_ENROLLEE "\"", 0) < 0) { |
| 981 | wpas_notify_network_removed(wpa_s, ssid); |
| 982 | wpa_config_remove_network(wpa_s->conf, ssid->id); |
| 983 | return NULL; |
| 984 | } |
| 985 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 986 | #ifdef CONFIG_P2P |
| 987 | if (dev_addr) |
| 988 | os_memcpy(ssid->go_p2p_dev_addr, dev_addr, ETH_ALEN); |
| 989 | #endif /* CONFIG_P2P */ |
| 990 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 991 | if (bssid) { |
| 992 | #ifndef CONFIG_P2P |
| 993 | struct wpa_bss *bss; |
| 994 | int count = 0; |
| 995 | #endif /* CONFIG_P2P */ |
| 996 | |
| 997 | os_memcpy(ssid->bssid, bssid, ETH_ALEN); |
| 998 | ssid->bssid_set = 1; |
| 999 | |
| 1000 | /* |
| 1001 | * Note: With P2P, the SSID may change at the time the WPS |
| 1002 | * provisioning is started, so better not filter the AP based |
| 1003 | * on the current SSID in the scan results. |
| 1004 | */ |
| 1005 | #ifndef CONFIG_P2P |
| 1006 | dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { |
| 1007 | if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0) |
| 1008 | continue; |
| 1009 | |
| 1010 | os_free(ssid->ssid); |
| 1011 | ssid->ssid = os_malloc(bss->ssid_len); |
| 1012 | if (ssid->ssid == NULL) |
| 1013 | break; |
| 1014 | os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len); |
| 1015 | ssid->ssid_len = bss->ssid_len; |
| 1016 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from " |
| 1017 | "scan results", |
| 1018 | ssid->ssid, ssid->ssid_len); |
| 1019 | count++; |
| 1020 | } |
| 1021 | |
| 1022 | if (count > 1) { |
| 1023 | wpa_printf(MSG_DEBUG, "WPS: More than one SSID found " |
| 1024 | "for the AP; use wildcard"); |
| 1025 | os_free(ssid->ssid); |
| 1026 | ssid->ssid = NULL; |
| 1027 | ssid->ssid_len = 0; |
| 1028 | } |
| 1029 | #endif /* CONFIG_P2P */ |
| 1030 | } |
| 1031 | |
| 1032 | return ssid; |
| 1033 | } |
| 1034 | |
| 1035 | |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1036 | static void wpas_wps_temp_disable(struct wpa_supplicant *wpa_s, |
| 1037 | struct wpa_ssid *selected) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1038 | { |
| 1039 | struct wpa_ssid *ssid; |
| 1040 | |
Dmitry Shmidt | 203eadb | 2015-03-05 14:16:04 -0800 | [diff] [blame] | 1041 | if (wpa_s->current_ssid) { |
| 1042 | wpa_s->own_disconnect_req = 1; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1043 | wpa_supplicant_deauthenticate( |
| 1044 | wpa_s, WLAN_REASON_DEAUTH_LEAVING); |
Dmitry Shmidt | 203eadb | 2015-03-05 14:16:04 -0800 | [diff] [blame] | 1045 | } |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1046 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1047 | /* Mark all other networks disabled and trigger reassociation */ |
| 1048 | ssid = wpa_s->conf->ssid; |
| 1049 | while (ssid) { |
| 1050 | int was_disabled = ssid->disabled; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1051 | ssid->disabled_for_connect = 0; |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 1052 | /* |
| 1053 | * In case the network object corresponds to a persistent group |
| 1054 | * then do not send out network disabled signal. In addition, |
| 1055 | * do not change disabled status of persistent network objects |
| 1056 | * from 2 to 1 should we connect to another network. |
| 1057 | */ |
| 1058 | if (was_disabled != 2) { |
| 1059 | ssid->disabled = ssid != selected; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1060 | if (was_disabled != ssid->disabled) { |
| 1061 | if (ssid->disabled) |
| 1062 | ssid->disabled_for_connect = 1; |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 1063 | wpas_notify_network_enabled_changed(wpa_s, |
| 1064 | ssid); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1065 | } |
Jouni Malinen | 75ecf52 | 2011-06-27 15:19:46 -0700 | [diff] [blame] | 1066 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1067 | ssid = ssid->next; |
| 1068 | } |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1069 | } |
| 1070 | |
| 1071 | |
| 1072 | static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1073 | struct wpa_ssid *selected, const u8 *bssid, |
| 1074 | int freq) |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1075 | { |
| 1076 | struct wpa_bss *bss; |
| 1077 | |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 1078 | wpa_s->wps_run++; |
| 1079 | if (wpa_s->wps_run == 0) |
| 1080 | wpa_s->wps_run++; |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1081 | wpa_s->after_wps = 0; |
| 1082 | wpa_s->known_wps_freq = 0; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1083 | if (freq) { |
| 1084 | wpa_s->after_wps = 5; |
| 1085 | wpa_s->wps_freq = freq; |
| 1086 | } else if (bssid) { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 1087 | bss = wpa_bss_get_bssid_latest(wpa_s, bssid); |
| 1088 | if (bss && bss->freq > 0) { |
| 1089 | wpa_s->known_wps_freq = 1; |
| 1090 | wpa_s->wps_freq = bss->freq; |
| 1091 | } |
| 1092 | } |
| 1093 | |
| 1094 | wpas_wps_temp_disable(wpa_s, selected); |
| 1095 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1096 | wpa_s->disconnected = 0; |
| 1097 | wpa_s->reassociate = 1; |
| 1098 | wpa_s->scan_runs = 0; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1099 | wpa_s->normal_scans = 0; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1100 | wpa_s->wps_success = 0; |
| 1101 | wpa_s->blacklist_cleared = 0; |
Dmitry Shmidt | fa3fc4a | 2013-11-21 13:34:38 -0800 | [diff] [blame] | 1102 | |
| 1103 | wpa_supplicant_cancel_sched_scan(wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1104 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 1105 | } |
| 1106 | |
| 1107 | |
| 1108 | int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 1109 | int p2p_group) |
| 1110 | { |
| 1111 | struct wpa_ssid *ssid; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1112 | |
| 1113 | #ifdef CONFIG_AP |
| 1114 | if (wpa_s->ap_iface) { |
| 1115 | wpa_printf(MSG_DEBUG, |
| 1116 | "WPS: Reject request to start Registrar(as station) operation while AP mode is enabled"); |
| 1117 | return -1; |
| 1118 | } |
| 1119 | #endif /* CONFIG_AP */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1120 | wpas_clear_wps(wpa_s); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1121 | ssid = wpas_wps_add_network(wpa_s, 0, NULL, bssid); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1122 | if (ssid == NULL) |
| 1123 | return -1; |
| 1124 | ssid->temporary = 1; |
| 1125 | ssid->p2p_group = p2p_group; |
| 1126 | #ifdef CONFIG_P2P |
| 1127 | if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) { |
| 1128 | ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1); |
| 1129 | if (ssid->ssid) { |
| 1130 | ssid->ssid_len = wpa_s->go_params->ssid_len; |
| 1131 | os_memcpy(ssid->ssid, wpa_s->go_params->ssid, |
| 1132 | ssid->ssid_len); |
| 1133 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP " |
| 1134 | "SSID", ssid->ssid, ssid->ssid_len); |
| 1135 | } |
| 1136 | } |
| 1137 | #endif /* CONFIG_P2P */ |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1138 | if (wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0) < 0) |
| 1139 | return -1; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1140 | if (wpa_s->wps_fragment_size) |
| 1141 | ssid->eap.fragment_size = wpa_s->wps_fragment_size; |
| 1142 | eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout, |
| 1143 | wpa_s, NULL); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1144 | wpas_wps_reassoc(wpa_s, ssid, bssid, 0); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1145 | return 0; |
| 1146 | } |
| 1147 | |
| 1148 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1149 | static int wpas_wps_start_dev_pw(struct wpa_supplicant *wpa_s, |
| 1150 | const u8 *dev_addr, const u8 *bssid, |
| 1151 | const char *pin, int p2p_group, u16 dev_pw_id, |
| 1152 | const u8 *peer_pubkey_hash, |
| 1153 | const u8 *ssid_val, size_t ssid_len, int freq) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1154 | { |
| 1155 | struct wpa_ssid *ssid; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1156 | char val[128 + 2 * WPS_OOB_PUBKEY_HASH_LEN]; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1157 | unsigned int rpin = 0; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1158 | char hash[2 * WPS_OOB_PUBKEY_HASH_LEN + 10]; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1159 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1160 | #ifdef CONFIG_AP |
| 1161 | if (wpa_s->ap_iface) { |
| 1162 | wpa_printf(MSG_DEBUG, |
| 1163 | "WPS: Reject request to start Registrar(as station) operation while AP mode is enabled"); |
| 1164 | return -1; |
| 1165 | } |
| 1166 | #endif /* CONFIG_AP */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1167 | wpas_clear_wps(wpa_s); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1168 | if (bssid && is_zero_ether_addr(bssid)) |
| 1169 | bssid = NULL; |
| 1170 | ssid = wpas_wps_add_network(wpa_s, 0, dev_addr, bssid); |
| 1171 | if (ssid == NULL) { |
| 1172 | wpa_printf(MSG_DEBUG, "WPS: Could not add network"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1173 | return -1; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1174 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1175 | ssid->temporary = 1; |
| 1176 | ssid->p2p_group = p2p_group; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1177 | if (ssid_val) { |
| 1178 | ssid->ssid = os_malloc(ssid_len); |
| 1179 | if (ssid->ssid) { |
| 1180 | os_memcpy(ssid->ssid, ssid_val, ssid_len); |
| 1181 | ssid->ssid_len = ssid_len; |
| 1182 | } |
| 1183 | } |
| 1184 | if (peer_pubkey_hash) { |
| 1185 | os_memcpy(hash, " pkhash=", 8); |
| 1186 | wpa_snprintf_hex_uppercase(hash + 8, sizeof(hash) - 8, |
| 1187 | peer_pubkey_hash, |
| 1188 | WPS_OOB_PUBKEY_HASH_LEN); |
| 1189 | } else { |
| 1190 | hash[0] = '\0'; |
| 1191 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1192 | #ifdef CONFIG_P2P |
| 1193 | if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) { |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 1194 | os_free(ssid->ssid); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1195 | ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1); |
| 1196 | if (ssid->ssid) { |
| 1197 | ssid->ssid_len = wpa_s->go_params->ssid_len; |
| 1198 | os_memcpy(ssid->ssid, wpa_s->go_params->ssid, |
| 1199 | ssid->ssid_len); |
| 1200 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP " |
| 1201 | "SSID", ssid->ssid, ssid->ssid_len); |
| 1202 | } |
| 1203 | } |
| 1204 | #endif /* CONFIG_P2P */ |
| 1205 | if (pin) |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1206 | os_snprintf(val, sizeof(val), "\"pin=%s dev_pw_id=%u%s\"", |
| 1207 | pin, dev_pw_id, hash); |
| 1208 | else if (pin == NULL && dev_pw_id == DEV_PW_NFC_CONNECTION_HANDOVER) { |
| 1209 | os_snprintf(val, sizeof(val), "\"dev_pw_id=%u%s\"", |
| 1210 | dev_pw_id, hash); |
| 1211 | } else { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1212 | rpin = wps_generate_pin(); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1213 | os_snprintf(val, sizeof(val), "\"pin=%08d dev_pw_id=%u%s\"", |
| 1214 | rpin, dev_pw_id, hash); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1215 | } |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1216 | if (wpa_config_set(ssid, "phase1", val, 0) < 0) { |
| 1217 | wpa_printf(MSG_DEBUG, "WPS: Failed to set phase1 '%s'", val); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1218 | return -1; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1219 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1220 | if (wpa_s->wps_fragment_size) |
| 1221 | ssid->eap.fragment_size = wpa_s->wps_fragment_size; |
| 1222 | eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout, |
| 1223 | wpa_s, NULL); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1224 | wpa_s->wps_ap_iter = 1; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1225 | wpas_wps_reassoc(wpa_s, ssid, bssid, freq); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1226 | return rpin; |
| 1227 | } |
| 1228 | |
| 1229 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1230 | int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 1231 | const char *pin, int p2p_group, u16 dev_pw_id) |
| 1232 | { |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 1233 | os_get_reltime(&wpa_s->wps_pin_start_time); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1234 | return wpas_wps_start_dev_pw(wpa_s, NULL, bssid, pin, p2p_group, |
| 1235 | dev_pw_id, NULL, NULL, 0, 0); |
| 1236 | } |
| 1237 | |
| 1238 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1239 | /* Cancel the wps pbc/pin requests */ |
| 1240 | int wpas_wps_cancel(struct wpa_supplicant *wpa_s) |
| 1241 | { |
| 1242 | #ifdef CONFIG_AP |
| 1243 | if (wpa_s->ap_iface) { |
| 1244 | wpa_printf(MSG_DEBUG, "WPS: Cancelling in AP mode"); |
| 1245 | return wpa_supplicant_ap_wps_cancel(wpa_s); |
| 1246 | } |
| 1247 | #endif /* CONFIG_AP */ |
| 1248 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1249 | if (wpa_s->wpa_state == WPA_SCANNING || |
| 1250 | wpa_s->wpa_state == WPA_DISCONNECTED) { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1251 | wpa_printf(MSG_DEBUG, "WPS: Cancel operation - cancel scan"); |
| 1252 | wpa_supplicant_cancel_scan(wpa_s); |
| 1253 | wpas_clear_wps(wpa_s); |
| 1254 | } else if (wpa_s->wpa_state >= WPA_ASSOCIATED) { |
| 1255 | wpa_printf(MSG_DEBUG, "WPS: Cancel operation - " |
| 1256 | "deauthenticate"); |
Dmitry Shmidt | 203eadb | 2015-03-05 14:16:04 -0800 | [diff] [blame] | 1257 | wpa_s->own_disconnect_req = 1; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1258 | wpa_supplicant_deauthenticate(wpa_s, |
| 1259 | WLAN_REASON_DEAUTH_LEAVING); |
| 1260 | wpas_clear_wps(wpa_s); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1261 | } else { |
| 1262 | wpas_wps_reenable_networks(wpa_s); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1263 | wpas_wps_clear_ap_info(wpa_s); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1264 | if (eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL) > |
| 1265 | 0) |
| 1266 | wpas_clear_wps(wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1267 | } |
| 1268 | |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 1269 | wpa_s->after_wps = 0; |
| 1270 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1271 | return 0; |
| 1272 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1273 | |
| 1274 | |
| 1275 | int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 1276 | const char *pin, struct wps_new_ap_settings *settings) |
| 1277 | { |
| 1278 | struct wpa_ssid *ssid; |
| 1279 | char val[200]; |
| 1280 | char *pos, *end; |
| 1281 | int res; |
| 1282 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1283 | #ifdef CONFIG_AP |
| 1284 | if (wpa_s->ap_iface) { |
| 1285 | wpa_printf(MSG_DEBUG, |
| 1286 | "WPS: Reject request to start Registrar(as station) operation while AP mode is enabled"); |
| 1287 | return -1; |
| 1288 | } |
| 1289 | #endif /* CONFIG_AP */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1290 | if (!pin) |
| 1291 | return -1; |
| 1292 | wpas_clear_wps(wpa_s); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1293 | ssid = wpas_wps_add_network(wpa_s, 1, NULL, bssid); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1294 | if (ssid == NULL) |
| 1295 | return -1; |
| 1296 | ssid->temporary = 1; |
| 1297 | pos = val; |
| 1298 | end = pos + sizeof(val); |
| 1299 | res = os_snprintf(pos, end - pos, "\"pin=%s", pin); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1300 | if (os_snprintf_error(end - pos, res)) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1301 | return -1; |
| 1302 | pos += res; |
| 1303 | if (settings) { |
| 1304 | res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s " |
| 1305 | "new_encr=%s new_key=%s", |
| 1306 | settings->ssid_hex, settings->auth, |
| 1307 | settings->encr, settings->key_hex); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1308 | if (os_snprintf_error(end - pos, res)) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1309 | return -1; |
| 1310 | pos += res; |
| 1311 | } |
| 1312 | res = os_snprintf(pos, end - pos, "\""); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1313 | if (os_snprintf_error(end - pos, res)) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1314 | return -1; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1315 | if (wpa_config_set(ssid, "phase1", val, 0) < 0) |
| 1316 | return -1; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1317 | if (wpa_s->wps_fragment_size) |
| 1318 | ssid->eap.fragment_size = wpa_s->wps_fragment_size; |
| 1319 | eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout, |
| 1320 | wpa_s, NULL); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1321 | wpas_wps_reassoc(wpa_s, ssid, bssid, 0); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1322 | return 0; |
| 1323 | } |
| 1324 | |
| 1325 | |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 1326 | static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, |
| 1327 | const u8 *p2p_dev_addr, const u8 *psk, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1328 | size_t psk_len) |
| 1329 | { |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 1330 | if (is_zero_ether_addr(p2p_dev_addr)) { |
| 1331 | wpa_printf(MSG_DEBUG, |
| 1332 | "Received new WPA/WPA2-PSK from WPS for STA " MACSTR, |
| 1333 | MAC2STR(mac_addr)); |
| 1334 | } else { |
| 1335 | wpa_printf(MSG_DEBUG, |
| 1336 | "Received new WPA/WPA2-PSK from WPS for STA " MACSTR |
| 1337 | " P2P Device Addr " MACSTR, |
| 1338 | MAC2STR(mac_addr), MAC2STR(p2p_dev_addr)); |
| 1339 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1340 | wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len); |
| 1341 | |
| 1342 | /* TODO */ |
| 1343 | |
| 1344 | return 0; |
| 1345 | } |
| 1346 | |
| 1347 | |
| 1348 | static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e, |
| 1349 | const struct wps_device_data *dev) |
| 1350 | { |
| 1351 | char uuid[40], txt[400]; |
| 1352 | int len; |
| 1353 | char devtype[WPS_DEV_TYPE_BUFSIZE]; |
| 1354 | if (uuid_bin2str(uuid_e, uuid, sizeof(uuid))) |
| 1355 | return; |
| 1356 | wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid); |
| 1357 | len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR |
| 1358 | " [%s|%s|%s|%s|%s|%s]", |
| 1359 | uuid, MAC2STR(dev->mac_addr), dev->device_name, |
| 1360 | dev->manufacturer, dev->model_name, |
| 1361 | dev->model_number, dev->serial_number, |
| 1362 | wps_dev_type_bin2str(dev->pri_dev_type, devtype, |
| 1363 | sizeof(devtype))); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1364 | if (!os_snprintf_error(sizeof(txt), len)) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1365 | wpa_printf(MSG_INFO, "%s", txt); |
| 1366 | } |
| 1367 | |
| 1368 | |
| 1369 | static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id, |
| 1370 | u16 sel_reg_config_methods) |
| 1371 | { |
| 1372 | #ifdef CONFIG_WPS_ER |
| 1373 | struct wpa_supplicant *wpa_s = ctx; |
| 1374 | |
| 1375 | if (wpa_s->wps_er == NULL) |
| 1376 | return; |
| 1377 | wpa_printf(MSG_DEBUG, "WPS ER: SetSelectedRegistrar - sel_reg=%d " |
| 1378 | "dev_password_id=%u sel_reg_config_methods=0x%x", |
| 1379 | sel_reg, dev_passwd_id, sel_reg_config_methods); |
| 1380 | wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id, |
| 1381 | sel_reg_config_methods); |
| 1382 | #endif /* CONFIG_WPS_ER */ |
| 1383 | } |
| 1384 | |
| 1385 | |
| 1386 | static u16 wps_fix_config_methods(u16 config_methods) |
| 1387 | { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1388 | if ((config_methods & |
| 1389 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_VIRT_DISPLAY | |
| 1390 | WPS_CONFIG_PHY_DISPLAY)) == WPS_CONFIG_DISPLAY) { |
| 1391 | wpa_printf(MSG_INFO, "WPS: Converting display to " |
| 1392 | "virtual_display for WPS 2.0 compliance"); |
| 1393 | config_methods |= WPS_CONFIG_VIRT_DISPLAY; |
| 1394 | } |
| 1395 | if ((config_methods & |
| 1396 | (WPS_CONFIG_PUSHBUTTON | WPS_CONFIG_VIRT_PUSHBUTTON | |
| 1397 | WPS_CONFIG_PHY_PUSHBUTTON)) == WPS_CONFIG_PUSHBUTTON) { |
| 1398 | wpa_printf(MSG_INFO, "WPS: Converting push_button to " |
| 1399 | "virtual_push_button for WPS 2.0 compliance"); |
| 1400 | config_methods |= WPS_CONFIG_VIRT_PUSHBUTTON; |
| 1401 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1402 | |
| 1403 | return config_methods; |
| 1404 | } |
| 1405 | |
| 1406 | |
| 1407 | static void wpas_wps_set_uuid(struct wpa_supplicant *wpa_s, |
| 1408 | struct wps_context *wps) |
| 1409 | { |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1410 | char buf[50]; |
| 1411 | const char *src; |
| 1412 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1413 | if (is_nil_uuid(wpa_s->conf->uuid)) { |
| 1414 | struct wpa_supplicant *first; |
| 1415 | first = wpa_s->global->ifaces; |
| 1416 | while (first && first->next) |
| 1417 | first = first->next; |
| 1418 | if (first && first != wpa_s) { |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1419 | if (wps != wpa_s->global->ifaces->wps) |
| 1420 | os_memcpy(wps->uuid, |
| 1421 | wpa_s->global->ifaces->wps->uuid, |
| 1422 | WPS_UUID_LEN); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1423 | src = "from the first interface"; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1424 | } else { |
| 1425 | uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1426 | src = "based on MAC address"; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1427 | } |
| 1428 | } else { |
| 1429 | os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1430 | src = "based on configuration"; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1431 | } |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1432 | |
| 1433 | uuid_bin2str(wps->uuid, buf, sizeof(buf)); |
| 1434 | wpa_dbg(wpa_s, MSG_DEBUG, "WPS: UUID %s: %s", src, buf); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1438 | static void wpas_wps_set_vendor_ext_m1(struct wpa_supplicant *wpa_s, |
| 1439 | struct wps_context *wps) |
| 1440 | { |
| 1441 | wpabuf_free(wps->dev.vendor_ext_m1); |
| 1442 | wps->dev.vendor_ext_m1 = NULL; |
| 1443 | |
| 1444 | if (wpa_s->conf->wps_vendor_ext_m1) { |
| 1445 | wps->dev.vendor_ext_m1 = |
| 1446 | wpabuf_dup(wpa_s->conf->wps_vendor_ext_m1); |
| 1447 | if (!wps->dev.vendor_ext_m1) { |
| 1448 | wpa_printf(MSG_ERROR, "WPS: Cannot " |
| 1449 | "allocate memory for vendor_ext_m1"); |
| 1450 | } |
| 1451 | } |
| 1452 | } |
| 1453 | |
| 1454 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1455 | int wpas_wps_init(struct wpa_supplicant *wpa_s) |
| 1456 | { |
| 1457 | struct wps_context *wps; |
| 1458 | struct wps_registrar_config rcfg; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1459 | struct hostapd_hw_modes *modes; |
| 1460 | u16 m; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1461 | |
| 1462 | wps = os_zalloc(sizeof(*wps)); |
| 1463 | if (wps == NULL) |
| 1464 | return -1; |
| 1465 | |
| 1466 | wps->cred_cb = wpa_supplicant_wps_cred; |
| 1467 | wps->event_cb = wpa_supplicant_wps_event; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 1468 | wps->rf_band_cb = wpa_supplicant_wps_rf_band; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1469 | wps->cb_ctx = wpa_s; |
| 1470 | |
| 1471 | wps->dev.device_name = wpa_s->conf->device_name; |
| 1472 | wps->dev.manufacturer = wpa_s->conf->manufacturer; |
| 1473 | wps->dev.model_name = wpa_s->conf->model_name; |
| 1474 | wps->dev.model_number = wpa_s->conf->model_number; |
| 1475 | wps->dev.serial_number = wpa_s->conf->serial_number; |
| 1476 | wps->config_methods = |
| 1477 | wps_config_methods_str2bin(wpa_s->conf->config_methods); |
| 1478 | if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) == |
| 1479 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) { |
| 1480 | wpa_printf(MSG_ERROR, "WPS: Both Label and Display config " |
| 1481 | "methods are not allowed at the same time"); |
| 1482 | os_free(wps); |
| 1483 | return -1; |
| 1484 | } |
| 1485 | wps->config_methods = wps_fix_config_methods(wps->config_methods); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1486 | wps->dev.config_methods = wps->config_methods; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1487 | os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type, |
| 1488 | WPS_DEV_TYPE_LEN); |
| 1489 | |
| 1490 | wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types; |
| 1491 | os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type, |
| 1492 | WPS_DEV_TYPE_LEN * wps->dev.num_sec_dev_types); |
| 1493 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1494 | wpas_wps_set_vendor_ext_m1(wpa_s, wps); |
| 1495 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1496 | wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1497 | modes = wpa_s->hw.modes; |
| 1498 | if (modes) { |
| 1499 | for (m = 0; m < wpa_s->hw.num_modes; m++) { |
| 1500 | if (modes[m].mode == HOSTAPD_MODE_IEEE80211B || |
| 1501 | modes[m].mode == HOSTAPD_MODE_IEEE80211G) |
| 1502 | wps->dev.rf_bands |= WPS_RF_24GHZ; |
| 1503 | else if (modes[m].mode == HOSTAPD_MODE_IEEE80211A) |
| 1504 | wps->dev.rf_bands |= WPS_RF_50GHZ; |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 1505 | else if (modes[m].mode == HOSTAPD_MODE_IEEE80211AD) |
| 1506 | wps->dev.rf_bands |= WPS_RF_60GHZ; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1507 | } |
| 1508 | } |
| 1509 | if (wps->dev.rf_bands == 0) { |
| 1510 | /* |
| 1511 | * Default to claiming support for both bands if the driver |
| 1512 | * does not provide support for fetching supported bands. |
| 1513 | */ |
| 1514 | wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ; |
| 1515 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1516 | os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN); |
| 1517 | wpas_wps_set_uuid(wpa_s, wps); |
| 1518 | |
| 1519 | wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK; |
| 1520 | wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP; |
| 1521 | |
| 1522 | os_memset(&rcfg, 0, sizeof(rcfg)); |
| 1523 | rcfg.new_psk_cb = wpas_wps_new_psk_cb; |
| 1524 | rcfg.pin_needed_cb = wpas_wps_pin_needed_cb; |
| 1525 | rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb; |
| 1526 | rcfg.cb_ctx = wpa_s; |
| 1527 | |
| 1528 | wps->registrar = wps_registrar_init(wps, &rcfg); |
| 1529 | if (wps->registrar == NULL) { |
| 1530 | wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar"); |
| 1531 | os_free(wps); |
| 1532 | return -1; |
| 1533 | } |
| 1534 | |
| 1535 | wpa_s->wps = wps; |
| 1536 | |
| 1537 | return 0; |
| 1538 | } |
| 1539 | |
| 1540 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1541 | #ifdef CONFIG_WPS_ER |
| 1542 | static void wpas_wps_nfc_clear(struct wps_context *wps) |
| 1543 | { |
| 1544 | wps->ap_nfc_dev_pw_id = 0; |
| 1545 | wpabuf_free(wps->ap_nfc_dh_pubkey); |
| 1546 | wps->ap_nfc_dh_pubkey = NULL; |
| 1547 | wpabuf_free(wps->ap_nfc_dh_privkey); |
| 1548 | wps->ap_nfc_dh_privkey = NULL; |
| 1549 | wpabuf_free(wps->ap_nfc_dev_pw); |
| 1550 | wps->ap_nfc_dev_pw = NULL; |
| 1551 | } |
| 1552 | #endif /* CONFIG_WPS_ER */ |
| 1553 | |
| 1554 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1555 | void wpas_wps_deinit(struct wpa_supplicant *wpa_s) |
| 1556 | { |
Dmitry Shmidt | 7dba0e5 | 2014-04-14 10:49:15 -0700 | [diff] [blame] | 1557 | wpas_wps_assoc_with_cred_cancel(wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1558 | eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL); |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame] | 1559 | eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1560 | eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1561 | wpas_wps_clear_ap_info(wpa_s); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1562 | |
Dmitry Shmidt | 684785c | 2014-05-12 13:34:29 -0700 | [diff] [blame] | 1563 | #ifdef CONFIG_P2P |
| 1564 | eloop_cancel_timeout(wpas_p2p_pbc_overlap_cb, wpa_s, NULL); |
| 1565 | #endif /* CONFIG_P2P */ |
| 1566 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1567 | if (wpa_s->wps == NULL) |
| 1568 | return; |
| 1569 | |
| 1570 | #ifdef CONFIG_WPS_ER |
| 1571 | wps_er_deinit(wpa_s->wps_er, NULL, NULL); |
| 1572 | wpa_s->wps_er = NULL; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1573 | wpas_wps_nfc_clear(wpa_s->wps); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1574 | #endif /* CONFIG_WPS_ER */ |
| 1575 | |
| 1576 | wps_registrar_deinit(wpa_s->wps->registrar); |
| 1577 | wpabuf_free(wpa_s->wps->dh_pubkey); |
| 1578 | wpabuf_free(wpa_s->wps->dh_privkey); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1579 | wpabuf_free(wpa_s->wps->dev.vendor_ext_m1); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1580 | os_free(wpa_s->wps->network_key); |
| 1581 | os_free(wpa_s->wps); |
| 1582 | wpa_s->wps = NULL; |
| 1583 | } |
| 1584 | |
| 1585 | |
| 1586 | int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | 9bce59c | 2012-09-11 15:06:38 -0700 | [diff] [blame] | 1587 | struct wpa_ssid *ssid, struct wpa_bss *bss) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1588 | { |
| 1589 | struct wpabuf *wps_ie; |
| 1590 | |
| 1591 | if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS)) |
| 1592 | return -1; |
| 1593 | |
Dmitry Shmidt | 9bce59c | 2012-09-11 15:06:38 -0700 | [diff] [blame] | 1594 | wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1595 | if (eap_is_wps_pbc_enrollee(&ssid->eap)) { |
| 1596 | if (!wps_ie) { |
| 1597 | wpa_printf(MSG_DEBUG, " skip - non-WPS AP"); |
| 1598 | return 0; |
| 1599 | } |
| 1600 | |
| 1601 | if (!wps_is_selected_pbc_registrar(wps_ie)) { |
| 1602 | wpa_printf(MSG_DEBUG, " skip - WPS AP " |
| 1603 | "without active PBC Registrar"); |
| 1604 | wpabuf_free(wps_ie); |
| 1605 | return 0; |
| 1606 | } |
| 1607 | |
| 1608 | /* TODO: overlap detection */ |
| 1609 | wpa_printf(MSG_DEBUG, " selected based on WPS IE " |
| 1610 | "(Active PBC)"); |
| 1611 | wpabuf_free(wps_ie); |
| 1612 | return 1; |
| 1613 | } |
| 1614 | |
| 1615 | if (eap_is_wps_pin_enrollee(&ssid->eap)) { |
| 1616 | if (!wps_ie) { |
| 1617 | wpa_printf(MSG_DEBUG, " skip - non-WPS AP"); |
| 1618 | return 0; |
| 1619 | } |
| 1620 | |
| 1621 | /* |
| 1622 | * Start with WPS APs that advertise our address as an |
| 1623 | * authorized MAC (v2.0) or active PIN Registrar (v1.0) and |
| 1624 | * allow any WPS AP after couple of scans since some APs do not |
| 1625 | * set Selected Registrar attribute properly when using |
| 1626 | * external Registrar. |
| 1627 | */ |
| 1628 | if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) { |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 1629 | struct os_reltime age; |
| 1630 | |
| 1631 | os_reltime_age(&wpa_s->wps_pin_start_time, &age); |
| 1632 | |
| 1633 | if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG || |
| 1634 | age.sec < WPS_PIN_TIME_IGNORE_SEL_REG) { |
| 1635 | wpa_printf(MSG_DEBUG, |
| 1636 | " skip - WPS AP without active PIN Registrar (scan_runs=%d age=%d)", |
| 1637 | wpa_s->scan_runs, (int) age.sec); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1638 | wpabuf_free(wps_ie); |
| 1639 | return 0; |
| 1640 | } |
| 1641 | wpa_printf(MSG_DEBUG, " selected based on WPS IE"); |
| 1642 | } else { |
| 1643 | wpa_printf(MSG_DEBUG, " selected based on WPS IE " |
| 1644 | "(Authorized MAC or Active PIN)"); |
| 1645 | } |
| 1646 | wpabuf_free(wps_ie); |
| 1647 | return 1; |
| 1648 | } |
| 1649 | |
| 1650 | if (wps_ie) { |
| 1651 | wpa_printf(MSG_DEBUG, " selected based on WPS IE"); |
| 1652 | wpabuf_free(wps_ie); |
| 1653 | return 1; |
| 1654 | } |
| 1655 | |
| 1656 | return -1; |
| 1657 | } |
| 1658 | |
| 1659 | |
| 1660 | int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s, |
| 1661 | struct wpa_ssid *ssid, |
Dmitry Shmidt | 9bce59c | 2012-09-11 15:06:38 -0700 | [diff] [blame] | 1662 | struct wpa_bss *bss) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1663 | { |
| 1664 | struct wpabuf *wps_ie = NULL; |
| 1665 | int ret = 0; |
| 1666 | |
| 1667 | if (eap_is_wps_pbc_enrollee(&ssid->eap)) { |
Dmitry Shmidt | 9bce59c | 2012-09-11 15:06:38 -0700 | [diff] [blame] | 1668 | wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1669 | if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) { |
| 1670 | /* allow wildcard SSID for WPS PBC */ |
| 1671 | ret = 1; |
| 1672 | } |
| 1673 | } else if (eap_is_wps_pin_enrollee(&ssid->eap)) { |
Dmitry Shmidt | 9bce59c | 2012-09-11 15:06:38 -0700 | [diff] [blame] | 1674 | wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1675 | if (wps_ie && |
| 1676 | (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) || |
| 1677 | wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) { |
| 1678 | /* allow wildcard SSID for WPS PIN */ |
| 1679 | ret = 1; |
| 1680 | } |
| 1681 | } |
| 1682 | |
| 1683 | if (!ret && ssid->bssid_set && |
| 1684 | os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) { |
| 1685 | /* allow wildcard SSID due to hardcoded BSSID match */ |
| 1686 | ret = 1; |
| 1687 | } |
| 1688 | |
| 1689 | #ifdef CONFIG_WPS_STRICT |
| 1690 | if (wps_ie) { |
| 1691 | if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len > |
| 1692 | 0, bss->bssid) < 0) |
| 1693 | ret = 0; |
| 1694 | if (bss->beacon_ie_len) { |
| 1695 | struct wpabuf *bcn_wps; |
Dmitry Shmidt | 9bce59c | 2012-09-11 15:06:38 -0700 | [diff] [blame] | 1696 | bcn_wps = wpa_bss_get_vendor_ie_multi_beacon( |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1697 | bss, WPS_IE_VENDOR_TYPE); |
| 1698 | if (bcn_wps == NULL) { |
| 1699 | wpa_printf(MSG_DEBUG, "WPS: Mandatory WPS IE " |
| 1700 | "missing from AP Beacon"); |
| 1701 | ret = 0; |
| 1702 | } else { |
| 1703 | if (wps_validate_beacon(wps_ie) < 0) |
| 1704 | ret = 0; |
| 1705 | wpabuf_free(bcn_wps); |
| 1706 | } |
| 1707 | } |
| 1708 | } |
| 1709 | #endif /* CONFIG_WPS_STRICT */ |
| 1710 | |
| 1711 | wpabuf_free(wps_ie); |
| 1712 | |
| 1713 | return ret; |
| 1714 | } |
| 1715 | |
| 1716 | |
| 1717 | int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s, |
| 1718 | struct wpa_bss *selected, struct wpa_ssid *ssid) |
| 1719 | { |
| 1720 | const u8 *sel_uuid, *uuid; |
| 1721 | struct wpabuf *wps_ie; |
| 1722 | int ret = 0; |
| 1723 | struct wpa_bss *bss; |
| 1724 | |
| 1725 | if (!eap_is_wps_pbc_enrollee(&ssid->eap)) |
| 1726 | return 0; |
| 1727 | |
| 1728 | wpa_printf(MSG_DEBUG, "WPS: Check whether PBC session overlap is " |
| 1729 | "present in scan results; selected BSSID " MACSTR, |
| 1730 | MAC2STR(selected->bssid)); |
| 1731 | |
| 1732 | /* Make sure that only one AP is in active PBC mode */ |
| 1733 | wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE); |
| 1734 | if (wps_ie) { |
| 1735 | sel_uuid = wps_get_uuid_e(wps_ie); |
| 1736 | wpa_hexdump(MSG_DEBUG, "WPS: UUID of the selected BSS", |
| 1737 | sel_uuid, UUID_LEN); |
| 1738 | } else { |
| 1739 | wpa_printf(MSG_DEBUG, "WPS: Selected BSS does not include " |
| 1740 | "WPS IE?!"); |
| 1741 | sel_uuid = NULL; |
| 1742 | } |
| 1743 | |
| 1744 | dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { |
| 1745 | struct wpabuf *ie; |
| 1746 | if (bss == selected) |
| 1747 | continue; |
| 1748 | ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
| 1749 | if (!ie) |
| 1750 | continue; |
| 1751 | if (!wps_is_selected_pbc_registrar(ie)) { |
| 1752 | wpabuf_free(ie); |
| 1753 | continue; |
| 1754 | } |
| 1755 | wpa_printf(MSG_DEBUG, "WPS: Another BSS in active PBC mode: " |
| 1756 | MACSTR, MAC2STR(bss->bssid)); |
| 1757 | uuid = wps_get_uuid_e(ie); |
| 1758 | wpa_hexdump(MSG_DEBUG, "WPS: UUID of the other BSS", |
| 1759 | uuid, UUID_LEN); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1760 | if (os_memcmp(selected->bssid, bss->bssid, ETH_ALEN) == 0) { |
| 1761 | wpabuf_free(ie); |
| 1762 | continue; |
| 1763 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1764 | if (sel_uuid == NULL || uuid == NULL || |
| 1765 | os_memcmp(sel_uuid, uuid, UUID_LEN) != 0) { |
| 1766 | ret = 1; /* PBC overlap */ |
| 1767 | wpa_msg(wpa_s, MSG_INFO, "WPS: PBC overlap detected: " |
| 1768 | MACSTR " and " MACSTR, |
| 1769 | MAC2STR(selected->bssid), |
| 1770 | MAC2STR(bss->bssid)); |
| 1771 | wpabuf_free(ie); |
| 1772 | break; |
| 1773 | } |
| 1774 | |
| 1775 | /* TODO: verify that this is reasonable dual-band situation */ |
| 1776 | |
| 1777 | wpabuf_free(ie); |
| 1778 | } |
| 1779 | |
| 1780 | wpabuf_free(wps_ie); |
| 1781 | |
| 1782 | return ret; |
| 1783 | } |
| 1784 | |
| 1785 | |
| 1786 | void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s) |
| 1787 | { |
| 1788 | struct wpa_bss *bss; |
| 1789 | unsigned int pbc = 0, auth = 0, pin = 0, wps = 0; |
| 1790 | |
| 1791 | if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED) |
| 1792 | return; |
| 1793 | |
| 1794 | dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { |
| 1795 | struct wpabuf *ie; |
| 1796 | ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
| 1797 | if (!ie) |
| 1798 | continue; |
| 1799 | if (wps_is_selected_pbc_registrar(ie)) |
| 1800 | pbc++; |
| 1801 | else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0)) |
| 1802 | auth++; |
| 1803 | else if (wps_is_selected_pin_registrar(ie)) |
| 1804 | pin++; |
| 1805 | else |
| 1806 | wps++; |
| 1807 | wpabuf_free(ie); |
| 1808 | } |
| 1809 | |
| 1810 | if (pbc) |
| 1811 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PBC); |
| 1812 | else if (auth) |
| 1813 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_AUTH); |
| 1814 | else if (pin) |
| 1815 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PIN); |
| 1816 | else if (wps) |
| 1817 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE); |
| 1818 | } |
| 1819 | |
| 1820 | |
| 1821 | int wpas_wps_searching(struct wpa_supplicant *wpa_s) |
| 1822 | { |
| 1823 | struct wpa_ssid *ssid; |
| 1824 | |
| 1825 | for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) { |
| 1826 | if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled) |
| 1827 | return 1; |
| 1828 | } |
| 1829 | |
| 1830 | return 0; |
| 1831 | } |
| 1832 | |
| 1833 | |
| 1834 | int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf, |
| 1835 | char *end) |
| 1836 | { |
| 1837 | struct wpabuf *wps_ie; |
| 1838 | int ret; |
| 1839 | |
| 1840 | wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA); |
| 1841 | if (wps_ie == NULL) |
| 1842 | return 0; |
| 1843 | |
| 1844 | ret = wps_attr_text(wps_ie, buf, end); |
| 1845 | wpabuf_free(wps_ie); |
| 1846 | return ret; |
| 1847 | } |
| 1848 | |
| 1849 | |
| 1850 | int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter) |
| 1851 | { |
| 1852 | #ifdef CONFIG_WPS_ER |
| 1853 | if (wpa_s->wps_er) { |
| 1854 | wps_er_refresh(wpa_s->wps_er); |
| 1855 | return 0; |
| 1856 | } |
| 1857 | wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter); |
| 1858 | if (wpa_s->wps_er == NULL) |
| 1859 | return -1; |
| 1860 | return 0; |
| 1861 | #else /* CONFIG_WPS_ER */ |
| 1862 | return 0; |
| 1863 | #endif /* CONFIG_WPS_ER */ |
| 1864 | } |
| 1865 | |
| 1866 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1867 | void wpas_wps_er_stop(struct wpa_supplicant *wpa_s) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1868 | { |
| 1869 | #ifdef CONFIG_WPS_ER |
| 1870 | wps_er_deinit(wpa_s->wps_er, NULL, NULL); |
| 1871 | wpa_s->wps_er = NULL; |
| 1872 | #endif /* CONFIG_WPS_ER */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1873 | } |
| 1874 | |
| 1875 | |
| 1876 | #ifdef CONFIG_WPS_ER |
| 1877 | int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr, |
| 1878 | const char *uuid, const char *pin) |
| 1879 | { |
| 1880 | u8 u[UUID_LEN]; |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1881 | const u8 *use_uuid = NULL; |
| 1882 | u8 addr_buf[ETH_ALEN]; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1883 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1884 | if (os_strcmp(uuid, "any") == 0) { |
| 1885 | } else if (uuid_str2bin(uuid, u) == 0) { |
| 1886 | use_uuid = u; |
| 1887 | } else if (hwaddr_aton(uuid, addr_buf) == 0) { |
| 1888 | use_uuid = wps_er_get_sta_uuid(wpa_s->wps_er, addr_buf); |
| 1889 | if (use_uuid == NULL) |
| 1890 | return -1; |
| 1891 | } else |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1892 | return -1; |
| 1893 | return wps_registrar_add_pin(wpa_s->wps->registrar, addr, |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1894 | use_uuid, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1895 | (const u8 *) pin, os_strlen(pin), 300); |
| 1896 | } |
| 1897 | |
| 1898 | |
| 1899 | int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid) |
| 1900 | { |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1901 | u8 u[UUID_LEN], *use_uuid = NULL; |
| 1902 | u8 addr[ETH_ALEN], *use_addr = NULL; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1903 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1904 | if (uuid_str2bin(uuid, u) == 0) |
| 1905 | use_uuid = u; |
| 1906 | else if (hwaddr_aton(uuid, addr) == 0) |
| 1907 | use_addr = addr; |
| 1908 | else |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1909 | return -1; |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1910 | return wps_er_pbc(wpa_s->wps_er, use_uuid, use_addr); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1911 | } |
| 1912 | |
| 1913 | |
| 1914 | int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid, |
| 1915 | const char *pin) |
| 1916 | { |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1917 | u8 u[UUID_LEN], *use_uuid = NULL; |
| 1918 | u8 addr[ETH_ALEN], *use_addr = NULL; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1919 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1920 | if (uuid_str2bin(uuid, u) == 0) |
| 1921 | use_uuid = u; |
| 1922 | else if (hwaddr_aton(uuid, addr) == 0) |
| 1923 | use_addr = addr; |
| 1924 | else |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1925 | return -1; |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1926 | |
| 1927 | return wps_er_learn(wpa_s->wps_er, use_uuid, use_addr, (const u8 *) pin, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1928 | os_strlen(pin)); |
| 1929 | } |
| 1930 | |
| 1931 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1932 | static int wpas_wps_network_to_cred(struct wpa_ssid *ssid, |
| 1933 | struct wps_credential *cred) |
| 1934 | { |
| 1935 | os_memset(cred, 0, sizeof(*cred)); |
Dmitry Shmidt | 9d9e602 | 2015-04-23 10:34:55 -0700 | [diff] [blame] | 1936 | if (ssid->ssid_len > SSID_MAX_LEN) |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1937 | return -1; |
| 1938 | os_memcpy(cred->ssid, ssid->ssid, ssid->ssid_len); |
| 1939 | cred->ssid_len = ssid->ssid_len; |
| 1940 | if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) { |
| 1941 | cred->auth_type = (ssid->proto & WPA_PROTO_RSN) ? |
| 1942 | WPS_AUTH_WPA2PSK : WPS_AUTH_WPAPSK; |
| 1943 | if (ssid->pairwise_cipher & WPA_CIPHER_CCMP) |
| 1944 | cred->encr_type = WPS_ENCR_AES; |
| 1945 | else |
| 1946 | cred->encr_type = WPS_ENCR_TKIP; |
| 1947 | if (ssid->passphrase) { |
| 1948 | cred->key_len = os_strlen(ssid->passphrase); |
| 1949 | if (cred->key_len >= 64) |
| 1950 | return -1; |
| 1951 | os_memcpy(cred->key, ssid->passphrase, cred->key_len); |
| 1952 | } else if (ssid->psk_set) { |
| 1953 | cred->key_len = 32; |
| 1954 | os_memcpy(cred->key, ssid->psk, 32); |
| 1955 | } else |
| 1956 | return -1; |
| 1957 | } else { |
| 1958 | cred->auth_type = WPS_AUTH_OPEN; |
| 1959 | cred->encr_type = WPS_ENCR_NONE; |
| 1960 | } |
| 1961 | |
| 1962 | return 0; |
| 1963 | } |
| 1964 | |
| 1965 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1966 | int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid, |
| 1967 | int id) |
| 1968 | { |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1969 | u8 u[UUID_LEN], *use_uuid = NULL; |
| 1970 | u8 addr[ETH_ALEN], *use_addr = NULL; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1971 | struct wpa_ssid *ssid; |
| 1972 | struct wps_credential cred; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1973 | int ret; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1974 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1975 | if (uuid_str2bin(uuid, u) == 0) |
| 1976 | use_uuid = u; |
| 1977 | else if (hwaddr_aton(uuid, addr) == 0) |
| 1978 | use_addr = addr; |
| 1979 | else |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1980 | return -1; |
| 1981 | ssid = wpa_config_get_network(wpa_s->conf, id); |
| 1982 | if (ssid == NULL || ssid->ssid == NULL) |
| 1983 | return -1; |
| 1984 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1985 | if (wpas_wps_network_to_cred(ssid, &cred) < 0) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1986 | return -1; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1987 | ret = wps_er_set_config(wpa_s->wps_er, use_uuid, use_addr, &cred); |
| 1988 | os_memset(&cred, 0, sizeof(cred)); |
| 1989 | return ret; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1990 | } |
| 1991 | |
| 1992 | |
| 1993 | int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid, |
| 1994 | const char *pin, struct wps_new_ap_settings *settings) |
| 1995 | { |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 1996 | u8 u[UUID_LEN], *use_uuid = NULL; |
| 1997 | u8 addr[ETH_ALEN], *use_addr = NULL; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1998 | struct wps_credential cred; |
| 1999 | size_t len; |
| 2000 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2001 | if (uuid_str2bin(uuid, u) == 0) |
| 2002 | use_uuid = u; |
| 2003 | else if (hwaddr_aton(uuid, addr) == 0) |
| 2004 | use_addr = addr; |
| 2005 | else |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2006 | return -1; |
| 2007 | if (settings->ssid_hex == NULL || settings->auth == NULL || |
| 2008 | settings->encr == NULL || settings->key_hex == NULL) |
| 2009 | return -1; |
| 2010 | |
| 2011 | os_memset(&cred, 0, sizeof(cred)); |
| 2012 | len = os_strlen(settings->ssid_hex); |
| 2013 | if ((len & 1) || len > 2 * sizeof(cred.ssid) || |
| 2014 | hexstr2bin(settings->ssid_hex, cred.ssid, len / 2)) |
| 2015 | return -1; |
| 2016 | cred.ssid_len = len / 2; |
| 2017 | |
| 2018 | len = os_strlen(settings->key_hex); |
| 2019 | if ((len & 1) || len > 2 * sizeof(cred.key) || |
| 2020 | hexstr2bin(settings->key_hex, cred.key, len / 2)) |
| 2021 | return -1; |
| 2022 | cred.key_len = len / 2; |
| 2023 | |
| 2024 | if (os_strcmp(settings->auth, "OPEN") == 0) |
| 2025 | cred.auth_type = WPS_AUTH_OPEN; |
| 2026 | else if (os_strcmp(settings->auth, "WPAPSK") == 0) |
| 2027 | cred.auth_type = WPS_AUTH_WPAPSK; |
| 2028 | else if (os_strcmp(settings->auth, "WPA2PSK") == 0) |
| 2029 | cred.auth_type = WPS_AUTH_WPA2PSK; |
| 2030 | else |
| 2031 | return -1; |
| 2032 | |
| 2033 | if (os_strcmp(settings->encr, "NONE") == 0) |
| 2034 | cred.encr_type = WPS_ENCR_NONE; |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 2035 | #ifdef CONFIG_TESTING_OPTIONS |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2036 | else if (os_strcmp(settings->encr, "WEP") == 0) |
| 2037 | cred.encr_type = WPS_ENCR_WEP; |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 2038 | #endif /* CONFIG_TESTING_OPTIONS */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2039 | else if (os_strcmp(settings->encr, "TKIP") == 0) |
| 2040 | cred.encr_type = WPS_ENCR_TKIP; |
| 2041 | else if (os_strcmp(settings->encr, "CCMP") == 0) |
| 2042 | cred.encr_type = WPS_ENCR_AES; |
| 2043 | else |
| 2044 | return -1; |
| 2045 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2046 | return wps_er_config(wpa_s->wps_er, use_uuid, use_addr, |
| 2047 | (const u8 *) pin, os_strlen(pin), &cred); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2048 | } |
| 2049 | |
| 2050 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2051 | #ifdef CONFIG_WPS_NFC |
| 2052 | struct wpabuf * wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s, |
| 2053 | int ndef, const char *uuid) |
| 2054 | { |
| 2055 | struct wpabuf *ret; |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2056 | u8 u[UUID_LEN], *use_uuid = NULL; |
| 2057 | u8 addr[ETH_ALEN], *use_addr = NULL; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2058 | |
| 2059 | if (!wpa_s->wps_er) |
| 2060 | return NULL; |
| 2061 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2062 | if (uuid_str2bin(uuid, u) == 0) |
| 2063 | use_uuid = u; |
| 2064 | else if (hwaddr_aton(uuid, addr) == 0) |
| 2065 | use_addr = addr; |
| 2066 | else |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2067 | return NULL; |
| 2068 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2069 | ret = wps_er_nfc_config_token(wpa_s->wps_er, use_uuid, use_addr); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2070 | if (ndef && ret) { |
| 2071 | struct wpabuf *tmp; |
| 2072 | tmp = ndef_build_wifi(ret); |
| 2073 | wpabuf_free(ret); |
| 2074 | if (tmp == NULL) |
| 2075 | return NULL; |
| 2076 | ret = tmp; |
| 2077 | } |
| 2078 | |
| 2079 | return ret; |
| 2080 | } |
| 2081 | #endif /* CONFIG_WPS_NFC */ |
| 2082 | |
| 2083 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2084 | static int callbacks_pending = 0; |
| 2085 | |
| 2086 | static void wpas_wps_terminate_cb(void *ctx) |
| 2087 | { |
| 2088 | wpa_printf(MSG_DEBUG, "WPS ER: Terminated"); |
| 2089 | if (--callbacks_pending <= 0) |
| 2090 | eloop_terminate(); |
| 2091 | } |
| 2092 | #endif /* CONFIG_WPS_ER */ |
| 2093 | |
| 2094 | |
| 2095 | int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s) |
| 2096 | { |
| 2097 | #ifdef CONFIG_WPS_ER |
| 2098 | if (wpa_s->wps_er) { |
| 2099 | callbacks_pending++; |
| 2100 | wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s); |
| 2101 | wpa_s->wps_er = NULL; |
| 2102 | return 1; |
| 2103 | } |
| 2104 | #endif /* CONFIG_WPS_ER */ |
| 2105 | return 0; |
| 2106 | } |
| 2107 | |
| 2108 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2109 | void wpas_wps_update_config(struct wpa_supplicant *wpa_s) |
| 2110 | { |
| 2111 | struct wps_context *wps = wpa_s->wps; |
| 2112 | |
| 2113 | if (wps == NULL) |
| 2114 | return; |
| 2115 | |
| 2116 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS) { |
| 2117 | wps->config_methods = wps_config_methods_str2bin( |
| 2118 | wpa_s->conf->config_methods); |
| 2119 | if ((wps->config_methods & |
| 2120 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) == |
| 2121 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) { |
| 2122 | wpa_printf(MSG_ERROR, "WPS: Both Label and Display " |
| 2123 | "config methods are not allowed at the " |
| 2124 | "same time"); |
| 2125 | wps->config_methods &= ~WPS_CONFIG_LABEL; |
| 2126 | } |
| 2127 | } |
| 2128 | wps->config_methods = wps_fix_config_methods(wps->config_methods); |
jim1_lin | ff2bda6 | 2012-06-26 11:04:38 +0800 | [diff] [blame] | 2129 | wps->dev.config_methods = wps->config_methods; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2130 | |
| 2131 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE) |
| 2132 | os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type, |
| 2133 | WPS_DEV_TYPE_LEN); |
| 2134 | |
| 2135 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) { |
| 2136 | wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types; |
| 2137 | os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type, |
| 2138 | wps->dev.num_sec_dev_types * WPS_DEV_TYPE_LEN); |
| 2139 | } |
| 2140 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2141 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) |
| 2142 | wpas_wps_set_vendor_ext_m1(wpa_s, wps); |
| 2143 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 2144 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_OS_VERSION) |
| 2145 | wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version); |
| 2146 | |
| 2147 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID) |
| 2148 | wpas_wps_set_uuid(wpa_s, wps); |
| 2149 | |
| 2150 | if (wpa_s->conf->changed_parameters & |
| 2151 | (CFG_CHANGED_DEVICE_NAME | CFG_CHANGED_WPS_STRING)) { |
| 2152 | /* Update pointers to make sure they refer current values */ |
| 2153 | wps->dev.device_name = wpa_s->conf->device_name; |
| 2154 | wps->dev.manufacturer = wpa_s->conf->manufacturer; |
| 2155 | wps->dev.model_name = wpa_s->conf->model_name; |
| 2156 | wps->dev.model_number = wpa_s->conf->model_number; |
| 2157 | wps->dev.serial_number = wpa_s->conf->serial_number; |
| 2158 | } |
| 2159 | } |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2160 | |
| 2161 | |
| 2162 | #ifdef CONFIG_WPS_NFC |
| 2163 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2164 | #ifdef CONFIG_WPS_ER |
| 2165 | static struct wpabuf * |
| 2166 | wpas_wps_network_config_token(struct wpa_supplicant *wpa_s, int ndef, |
| 2167 | struct wpa_ssid *ssid) |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 2168 | { |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2169 | struct wpabuf *ret; |
| 2170 | struct wps_credential cred; |
| 2171 | |
| 2172 | if (wpas_wps_network_to_cred(ssid, &cred) < 0) |
| 2173 | return NULL; |
| 2174 | |
| 2175 | ret = wps_er_config_token_from_cred(wpa_s->wps, &cred); |
| 2176 | |
| 2177 | if (ndef && ret) { |
| 2178 | struct wpabuf *tmp; |
| 2179 | tmp = ndef_build_wifi(ret); |
| 2180 | wpabuf_free(ret); |
| 2181 | if (tmp == NULL) |
| 2182 | return NULL; |
| 2183 | ret = tmp; |
| 2184 | } |
| 2185 | |
| 2186 | return ret; |
| 2187 | } |
| 2188 | #endif /* CONFIG_WPS_ER */ |
| 2189 | |
| 2190 | |
| 2191 | struct wpabuf * wpas_wps_nfc_config_token(struct wpa_supplicant *wpa_s, |
| 2192 | int ndef, const char *id_str) |
| 2193 | { |
| 2194 | #ifdef CONFIG_WPS_ER |
| 2195 | if (id_str) { |
| 2196 | int id; |
| 2197 | char *end = NULL; |
| 2198 | struct wpa_ssid *ssid; |
| 2199 | |
| 2200 | id = strtol(id_str, &end, 10); |
| 2201 | if (end && *end) |
| 2202 | return NULL; |
| 2203 | |
| 2204 | ssid = wpa_config_get_network(wpa_s->conf, id); |
| 2205 | if (ssid == NULL) |
| 2206 | return NULL; |
| 2207 | return wpas_wps_network_config_token(wpa_s, ndef, ssid); |
| 2208 | } |
| 2209 | #endif /* CONFIG_WPS_ER */ |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 2210 | #ifdef CONFIG_AP |
| 2211 | if (wpa_s->ap_iface) |
| 2212 | return wpas_ap_wps_nfc_config_token(wpa_s, ndef); |
| 2213 | #endif /* CONFIG_AP */ |
| 2214 | return NULL; |
| 2215 | } |
| 2216 | |
| 2217 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2218 | struct wpabuf * wpas_wps_nfc_token(struct wpa_supplicant *wpa_s, int ndef) |
| 2219 | { |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 2220 | if (wpa_s->conf->wps_nfc_pw_from_config) { |
| 2221 | return wps_nfc_token_build(ndef, |
| 2222 | wpa_s->conf->wps_nfc_dev_pw_id, |
| 2223 | wpa_s->conf->wps_nfc_dh_pubkey, |
| 2224 | wpa_s->conf->wps_nfc_dev_pw); |
| 2225 | } |
| 2226 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2227 | return wps_nfc_token_gen(ndef, &wpa_s->conf->wps_nfc_dev_pw_id, |
| 2228 | &wpa_s->conf->wps_nfc_dh_pubkey, |
| 2229 | &wpa_s->conf->wps_nfc_dh_privkey, |
| 2230 | &wpa_s->conf->wps_nfc_dev_pw); |
| 2231 | } |
| 2232 | |
| 2233 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2234 | int wpas_wps_start_nfc(struct wpa_supplicant *wpa_s, const u8 *go_dev_addr, |
| 2235 | const u8 *bssid, |
| 2236 | const struct wpabuf *dev_pw, u16 dev_pw_id, |
| 2237 | int p2p_group, const u8 *peer_pubkey_hash, |
| 2238 | const u8 *ssid, size_t ssid_len, int freq) |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2239 | { |
| 2240 | struct wps_context *wps = wpa_s->wps; |
| 2241 | char pw[32 * 2 + 1]; |
| 2242 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2243 | if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER && dev_pw == NULL) { |
| 2244 | dev_pw = wpa_s->conf->wps_nfc_dev_pw; |
| 2245 | dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id; |
| 2246 | } |
| 2247 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2248 | if (wpa_s->conf->wps_nfc_dh_pubkey == NULL || |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2249 | wpa_s->conf->wps_nfc_dh_privkey == NULL) { |
| 2250 | wpa_printf(MSG_DEBUG, "WPS: Missing DH params - " |
| 2251 | "cannot start NFC-triggered connection"); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2252 | return -1; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2253 | } |
| 2254 | |
| 2255 | if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER && dev_pw == NULL) { |
| 2256 | wpa_printf(MSG_DEBUG, "WPS: Missing Device Password (id=%u) - " |
| 2257 | "cannot start NFC-triggered connection", dev_pw_id); |
| 2258 | return -1; |
| 2259 | } |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2260 | |
| 2261 | dh5_free(wps->dh_ctx); |
| 2262 | wpabuf_free(wps->dh_pubkey); |
| 2263 | wpabuf_free(wps->dh_privkey); |
| 2264 | wps->dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey); |
| 2265 | wps->dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey); |
| 2266 | if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) { |
| 2267 | wps->dh_ctx = NULL; |
| 2268 | wpabuf_free(wps->dh_pubkey); |
| 2269 | wps->dh_pubkey = NULL; |
| 2270 | wpabuf_free(wps->dh_privkey); |
| 2271 | wps->dh_privkey = NULL; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2272 | wpa_printf(MSG_DEBUG, "WPS: Failed to get DH priv/pub key"); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2273 | return -1; |
| 2274 | } |
| 2275 | wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey); |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2276 | if (wps->dh_ctx == NULL) { |
| 2277 | wpabuf_free(wps->dh_pubkey); |
| 2278 | wps->dh_pubkey = NULL; |
| 2279 | wpabuf_free(wps->dh_privkey); |
| 2280 | wps->dh_privkey = NULL; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2281 | wpa_printf(MSG_DEBUG, "WPS: Failed to initialize DH context"); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2282 | return -1; |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2283 | } |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2284 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2285 | if (dev_pw) { |
| 2286 | wpa_snprintf_hex_uppercase(pw, sizeof(pw), |
| 2287 | wpabuf_head(dev_pw), |
| 2288 | wpabuf_len(dev_pw)); |
| 2289 | } |
| 2290 | return wpas_wps_start_dev_pw(wpa_s, go_dev_addr, bssid, |
| 2291 | dev_pw ? pw : NULL, |
| 2292 | p2p_group, dev_pw_id, peer_pubkey_hash, |
| 2293 | ssid, ssid_len, freq); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2294 | } |
| 2295 | |
| 2296 | |
| 2297 | static int wpas_wps_use_cred(struct wpa_supplicant *wpa_s, |
| 2298 | struct wps_parse_attr *attr) |
| 2299 | { |
Dmitry Shmidt | 44c9578 | 2013-05-17 09:51:35 -0700 | [diff] [blame] | 2300 | /* |
| 2301 | * Disable existing networks temporarily to allow the newly learned |
| 2302 | * credential to be preferred. Enable the temporarily disabled networks |
| 2303 | * after 10 seconds. |
| 2304 | */ |
| 2305 | wpas_wps_temp_disable(wpa_s, NULL); |
| 2306 | eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s, |
| 2307 | NULL); |
| 2308 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2309 | if (wps_oob_use_cred(wpa_s->wps, attr) < 0) |
| 2310 | return -1; |
| 2311 | |
| 2312 | if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) |
| 2313 | return 0; |
| 2314 | |
Dmitry Shmidt | 3c47937 | 2014-02-04 10:50:36 -0800 | [diff] [blame] | 2315 | if (attr->ap_channel) { |
| 2316 | u16 chan = WPA_GET_BE16(attr->ap_channel); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2317 | int freq = 0; |
| 2318 | |
| 2319 | if (chan >= 1 && chan <= 13) |
| 2320 | freq = 2407 + 5 * chan; |
| 2321 | else if (chan == 14) |
| 2322 | freq = 2484; |
| 2323 | else if (chan >= 30) |
| 2324 | freq = 5000 + 5 * chan; |
| 2325 | |
| 2326 | if (freq) { |
Dmitry Shmidt | 3c47937 | 2014-02-04 10:50:36 -0800 | [diff] [blame] | 2327 | wpa_printf(MSG_DEBUG, "WPS: Credential container indicated AP channel %u -> %u MHz", |
| 2328 | chan, freq); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2329 | wpa_s->after_wps = 5; |
| 2330 | wpa_s->wps_freq = freq; |
| 2331 | } |
| 2332 | } |
Dmitry Shmidt | 3c47937 | 2014-02-04 10:50:36 -0800 | [diff] [blame] | 2333 | |
| 2334 | wpa_printf(MSG_DEBUG, "WPS: Request reconnection with new network " |
| 2335 | "based on the received credential added"); |
| 2336 | wpa_s->normal_scans = 0; |
| 2337 | wpa_supplicant_reinit_autoscan(wpa_s); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2338 | wpa_s->disconnected = 0; |
| 2339 | wpa_s->reassociate = 1; |
Dmitry Shmidt | 9657139 | 2013-10-14 12:54:46 -0700 | [diff] [blame] | 2340 | |
| 2341 | wpa_supplicant_cancel_sched_scan(wpa_s); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2342 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 2343 | |
| 2344 | return 0; |
| 2345 | } |
| 2346 | |
| 2347 | |
Dmitry Shmidt | aa53251 | 2012-09-24 10:35:31 -0700 | [diff] [blame] | 2348 | #ifdef CONFIG_WPS_ER |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2349 | static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s, |
| 2350 | struct wps_parse_attr *attr) |
| 2351 | { |
| 2352 | return wps_registrar_add_nfc_password_token( |
| 2353 | wpa_s->wps->registrar, attr->oob_dev_password, |
| 2354 | attr->oob_dev_password_len); |
| 2355 | } |
Dmitry Shmidt | aa53251 | 2012-09-24 10:35:31 -0700 | [diff] [blame] | 2356 | #endif /* CONFIG_WPS_ER */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2357 | |
| 2358 | |
| 2359 | static int wpas_wps_nfc_tag_process(struct wpa_supplicant *wpa_s, |
| 2360 | const struct wpabuf *wps) |
| 2361 | { |
| 2362 | struct wps_parse_attr attr; |
| 2363 | |
| 2364 | wpa_hexdump_buf(MSG_DEBUG, "WPS: Received NFC tag payload", wps); |
| 2365 | |
| 2366 | if (wps_parse_msg(wps, &attr)) { |
| 2367 | wpa_printf(MSG_DEBUG, "WPS: Ignore invalid data from NFC tag"); |
| 2368 | return -1; |
| 2369 | } |
| 2370 | |
| 2371 | if (attr.num_cred) |
| 2372 | return wpas_wps_use_cred(wpa_s, &attr); |
| 2373 | |
| 2374 | #ifdef CONFIG_WPS_ER |
| 2375 | if (attr.oob_dev_password) |
| 2376 | return wpas_wps_add_nfc_password_token(wpa_s, &attr); |
| 2377 | #endif /* CONFIG_WPS_ER */ |
| 2378 | |
| 2379 | wpa_printf(MSG_DEBUG, "WPS: Ignore unrecognized NFC tag"); |
| 2380 | return -1; |
| 2381 | } |
| 2382 | |
| 2383 | |
| 2384 | int wpas_wps_nfc_tag_read(struct wpa_supplicant *wpa_s, |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2385 | const struct wpabuf *data, int forced_freq) |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2386 | { |
| 2387 | const struct wpabuf *wps = data; |
| 2388 | struct wpabuf *tmp = NULL; |
| 2389 | int ret; |
| 2390 | |
| 2391 | if (wpabuf_len(data) < 4) |
| 2392 | return -1; |
| 2393 | |
| 2394 | if (*wpabuf_head_u8(data) != 0x10) { |
| 2395 | /* Assume this contains full NDEF record */ |
| 2396 | tmp = ndef_parse_wifi(data); |
| 2397 | if (tmp == NULL) { |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2398 | #ifdef CONFIG_P2P |
| 2399 | tmp = ndef_parse_p2p(data); |
| 2400 | if (tmp) { |
| 2401 | ret = wpas_p2p_nfc_tag_process(wpa_s, tmp, |
| 2402 | forced_freq); |
| 2403 | wpabuf_free(tmp); |
| 2404 | return ret; |
| 2405 | } |
| 2406 | #endif /* CONFIG_P2P */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2407 | wpa_printf(MSG_DEBUG, "WPS: Could not parse NDEF"); |
| 2408 | return -1; |
| 2409 | } |
| 2410 | wps = tmp; |
| 2411 | } |
| 2412 | |
| 2413 | ret = wpas_wps_nfc_tag_process(wpa_s, wps); |
| 2414 | wpabuf_free(tmp); |
| 2415 | return ret; |
| 2416 | } |
| 2417 | |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2418 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2419 | struct wpabuf * wpas_wps_nfc_handover_req(struct wpa_supplicant *wpa_s, |
| 2420 | int ndef) |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2421 | { |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2422 | struct wpabuf *ret; |
| 2423 | |
| 2424 | if (wpa_s->conf->wps_nfc_dh_pubkey == NULL && |
| 2425 | wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey, |
| 2426 | &wpa_s->conf->wps_nfc_dh_privkey) < 0) |
| 2427 | return NULL; |
| 2428 | |
| 2429 | ret = wps_build_nfc_handover_req(wpa_s->wps, |
| 2430 | wpa_s->conf->wps_nfc_dh_pubkey); |
| 2431 | |
| 2432 | if (ndef && ret) { |
| 2433 | struct wpabuf *tmp; |
| 2434 | tmp = ndef_build_wifi(ret); |
| 2435 | wpabuf_free(ret); |
| 2436 | if (tmp == NULL) |
| 2437 | return NULL; |
| 2438 | ret = tmp; |
| 2439 | } |
| 2440 | |
| 2441 | return ret; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2442 | } |
| 2443 | |
| 2444 | |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2445 | #ifdef CONFIG_WPS_NFC |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2446 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 2447 | static struct wpabuf * |
| 2448 | wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, |
| 2449 | const char *uuid) |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2450 | { |
Dmitry Shmidt | 700a137 | 2013-03-15 14:14:44 -0700 | [diff] [blame] | 2451 | #ifdef CONFIG_WPS_ER |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2452 | struct wpabuf *ret; |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2453 | u8 u[UUID_LEN], *use_uuid = NULL; |
| 2454 | u8 addr[ETH_ALEN], *use_addr = NULL; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2455 | struct wps_context *wps = wpa_s->wps; |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2456 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2457 | if (wps == NULL) |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2458 | return NULL; |
| 2459 | |
Dmitry Shmidt | 1e78e76 | 2013-04-02 11:05:36 -0700 | [diff] [blame] | 2460 | if (uuid == NULL) |
| 2461 | return NULL; |
| 2462 | if (uuid_str2bin(uuid, u) == 0) |
| 2463 | use_uuid = u; |
| 2464 | else if (hwaddr_aton(uuid, addr) == 0) |
| 2465 | use_addr = addr; |
| 2466 | else |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2467 | return NULL; |
| 2468 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2469 | if (wpa_s->conf->wps_nfc_dh_pubkey == NULL) { |
| 2470 | if (wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey, |
| 2471 | &wpa_s->conf->wps_nfc_dh_privkey) < 0) |
| 2472 | return NULL; |
| 2473 | } |
| 2474 | |
| 2475 | wpas_wps_nfc_clear(wps); |
| 2476 | wps->ap_nfc_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER; |
| 2477 | wps->ap_nfc_dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey); |
| 2478 | wps->ap_nfc_dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey); |
| 2479 | if (!wps->ap_nfc_dh_pubkey || !wps->ap_nfc_dh_privkey) { |
| 2480 | wpas_wps_nfc_clear(wps); |
| 2481 | return NULL; |
| 2482 | } |
| 2483 | |
| 2484 | ret = wps_er_nfc_handover_sel(wpa_s->wps_er, wpa_s->wps, use_uuid, |
| 2485 | use_addr, wpa_s->conf->wps_nfc_dh_pubkey); |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2486 | if (ndef && ret) { |
| 2487 | struct wpabuf *tmp; |
| 2488 | tmp = ndef_build_wifi(ret); |
| 2489 | wpabuf_free(ret); |
| 2490 | if (tmp == NULL) |
| 2491 | return NULL; |
| 2492 | ret = tmp; |
| 2493 | } |
| 2494 | |
| 2495 | return ret; |
Dmitry Shmidt | 700a137 | 2013-03-15 14:14:44 -0700 | [diff] [blame] | 2496 | #else /* CONFIG_WPS_ER */ |
| 2497 | return NULL; |
| 2498 | #endif /* CONFIG_WPS_ER */ |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2499 | } |
| 2500 | #endif /* CONFIG_WPS_NFC */ |
| 2501 | |
| 2502 | |
| 2503 | struct wpabuf * wpas_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, |
| 2504 | int ndef, int cr, const char *uuid) |
| 2505 | { |
| 2506 | struct wpabuf *ret; |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 2507 | if (!cr) |
| 2508 | return NULL; |
Dmitry Shmidt | 33e38bf | 2013-02-27 12:56:00 -0800 | [diff] [blame] | 2509 | ret = wpas_ap_wps_nfc_handover_sel(wpa_s, ndef); |
| 2510 | if (ret) |
| 2511 | return ret; |
| 2512 | return wpas_wps_er_nfc_handover_sel(wpa_s, ndef, uuid); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2513 | } |
| 2514 | |
| 2515 | |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 2516 | static int wpas_wps_nfc_rx_handover_sel(struct wpa_supplicant *wpa_s, |
| 2517 | const struct wpabuf *data) |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2518 | { |
| 2519 | struct wpabuf *wps; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2520 | int ret = -1; |
| 2521 | u16 wsc_len; |
| 2522 | const u8 *pos; |
| 2523 | struct wpabuf msg; |
| 2524 | struct wps_parse_attr attr; |
| 2525 | u16 dev_pw_id; |
| 2526 | const u8 *bssid = NULL; |
| 2527 | int freq = 0; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2528 | |
| 2529 | wps = ndef_parse_wifi(data); |
| 2530 | if (wps == NULL) |
| 2531 | return -1; |
| 2532 | wpa_printf(MSG_DEBUG, "WPS: Received application/vnd.wfa.wsc " |
| 2533 | "payload from NFC connection handover"); |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2534 | wpa_hexdump_buf(MSG_DEBUG, "WPS: NFC payload", wps); |
| 2535 | if (wpabuf_len(wps) < 2) { |
| 2536 | wpa_printf(MSG_DEBUG, "WPS: Too short Wi-Fi Handover Select " |
| 2537 | "Message"); |
| 2538 | goto out; |
| 2539 | } |
| 2540 | pos = wpabuf_head(wps); |
| 2541 | wsc_len = WPA_GET_BE16(pos); |
| 2542 | if (wsc_len > wpabuf_len(wps) - 2) { |
| 2543 | wpa_printf(MSG_DEBUG, "WPS: Invalid WSC attribute length (%u) " |
| 2544 | "in Wi-Fi Handover Select Message", wsc_len); |
| 2545 | goto out; |
| 2546 | } |
| 2547 | pos += 2; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2548 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2549 | wpa_hexdump(MSG_DEBUG, |
| 2550 | "WPS: WSC attributes in Wi-Fi Handover Select Message", |
| 2551 | pos, wsc_len); |
| 2552 | if (wsc_len < wpabuf_len(wps) - 2) { |
| 2553 | wpa_hexdump(MSG_DEBUG, |
| 2554 | "WPS: Ignore extra data after WSC attributes", |
| 2555 | pos + wsc_len, wpabuf_len(wps) - 2 - wsc_len); |
| 2556 | } |
| 2557 | |
| 2558 | wpabuf_set(&msg, pos, wsc_len); |
| 2559 | ret = wps_parse_msg(&msg, &attr); |
| 2560 | if (ret < 0) { |
| 2561 | wpa_printf(MSG_DEBUG, "WPS: Could not parse WSC attributes in " |
| 2562 | "Wi-Fi Handover Select Message"); |
| 2563 | goto out; |
| 2564 | } |
| 2565 | |
| 2566 | if (attr.oob_dev_password == NULL || |
| 2567 | attr.oob_dev_password_len < WPS_OOB_PUBKEY_HASH_LEN + 2) { |
| 2568 | wpa_printf(MSG_DEBUG, "WPS: No Out-of-Band Device Password " |
| 2569 | "included in Wi-Fi Handover Select Message"); |
| 2570 | ret = -1; |
| 2571 | goto out; |
| 2572 | } |
| 2573 | |
| 2574 | if (attr.ssid == NULL) { |
| 2575 | wpa_printf(MSG_DEBUG, "WPS: No SSID included in Wi-Fi Handover " |
| 2576 | "Select Message"); |
| 2577 | ret = -1; |
| 2578 | goto out; |
| 2579 | } |
| 2580 | |
| 2581 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", attr.ssid, attr.ssid_len); |
| 2582 | |
| 2583 | if (attr.mac_addr) { |
| 2584 | bssid = attr.mac_addr; |
| 2585 | wpa_printf(MSG_DEBUG, "WPS: MAC Address (BSSID): " MACSTR, |
| 2586 | MAC2STR(bssid)); |
| 2587 | } |
| 2588 | |
| 2589 | if (attr.rf_bands) |
| 2590 | wpa_printf(MSG_DEBUG, "WPS: RF Bands: %d", *attr.rf_bands); |
| 2591 | |
| 2592 | if (attr.ap_channel) { |
| 2593 | u16 chan = WPA_GET_BE16(attr.ap_channel); |
| 2594 | |
| 2595 | wpa_printf(MSG_DEBUG, "WPS: AP Channel: %d", chan); |
| 2596 | |
| 2597 | if (chan >= 1 && chan <= 13 && |
| 2598 | (attr.rf_bands == NULL || *attr.rf_bands & WPS_RF_24GHZ)) |
| 2599 | freq = 2407 + 5 * chan; |
| 2600 | else if (chan == 14 && |
| 2601 | (attr.rf_bands == NULL || |
| 2602 | *attr.rf_bands & WPS_RF_24GHZ)) |
| 2603 | freq = 2484; |
| 2604 | else if (chan >= 30 && |
| 2605 | (attr.rf_bands == NULL || |
| 2606 | *attr.rf_bands & WPS_RF_50GHZ)) |
| 2607 | freq = 5000 + 5 * chan; |
Dmitry Shmidt | 1d755d0 | 2015-04-28 10:34:29 -0700 | [diff] [blame] | 2608 | else if (chan >= 1 && chan <= 4 && |
| 2609 | (attr.rf_bands == NULL || |
| 2610 | *attr.rf_bands & WPS_RF_60GHZ)) |
| 2611 | freq = 56160 + 2160 * chan; |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2612 | |
| 2613 | if (freq) { |
| 2614 | wpa_printf(MSG_DEBUG, |
| 2615 | "WPS: AP indicated channel %u -> %u MHz", |
| 2616 | chan, freq); |
| 2617 | } |
| 2618 | } |
| 2619 | |
| 2620 | wpa_hexdump(MSG_DEBUG, "WPS: Out-of-Band Device Password", |
| 2621 | attr.oob_dev_password, attr.oob_dev_password_len); |
| 2622 | dev_pw_id = WPA_GET_BE16(attr.oob_dev_password + |
| 2623 | WPS_OOB_PUBKEY_HASH_LEN); |
| 2624 | if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER) { |
| 2625 | wpa_printf(MSG_DEBUG, "WPS: Unexpected OOB Device Password ID " |
| 2626 | "%u in Wi-Fi Handover Select Message", dev_pw_id); |
| 2627 | ret = -1; |
| 2628 | goto out; |
| 2629 | } |
| 2630 | wpa_hexdump(MSG_DEBUG, "WPS: AP Public Key hash", |
| 2631 | attr.oob_dev_password, WPS_OOB_PUBKEY_HASH_LEN); |
| 2632 | |
| 2633 | ret = wpas_wps_start_nfc(wpa_s, NULL, bssid, NULL, dev_pw_id, 0, |
| 2634 | attr.oob_dev_password, |
| 2635 | attr.ssid, attr.ssid_len, freq); |
| 2636 | |
| 2637 | out: |
| 2638 | wpabuf_free(wps); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 2639 | return ret; |
| 2640 | } |
| 2641 | |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 2642 | |
| 2643 | int wpas_wps_nfc_report_handover(struct wpa_supplicant *wpa_s, |
| 2644 | const struct wpabuf *req, |
| 2645 | const struct wpabuf *sel) |
| 2646 | { |
| 2647 | wpa_printf(MSG_DEBUG, "NFC: WPS connection handover reported"); |
| 2648 | wpa_hexdump_buf_key(MSG_DEBUG, "WPS: Carrier record in request", req); |
| 2649 | wpa_hexdump_buf_key(MSG_DEBUG, "WPS: Carrier record in select", sel); |
| 2650 | return wpas_wps_nfc_rx_handover_sel(wpa_s, sel); |
| 2651 | } |
| 2652 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 2653 | |
| 2654 | int wpas_er_wps_nfc_report_handover(struct wpa_supplicant *wpa_s, |
| 2655 | const struct wpabuf *req, |
| 2656 | const struct wpabuf *sel) |
| 2657 | { |
| 2658 | struct wpabuf *wps; |
| 2659 | int ret = -1; |
| 2660 | u16 wsc_len; |
| 2661 | const u8 *pos; |
| 2662 | struct wpabuf msg; |
| 2663 | struct wps_parse_attr attr; |
| 2664 | u16 dev_pw_id; |
| 2665 | |
| 2666 | /* |
| 2667 | * Enrollee/station is always initiator of the NFC connection handover, |
| 2668 | * so use the request message here to find Enrollee public key hash. |
| 2669 | */ |
| 2670 | wps = ndef_parse_wifi(req); |
| 2671 | if (wps == NULL) |
| 2672 | return -1; |
| 2673 | wpa_printf(MSG_DEBUG, "WPS: Received application/vnd.wfa.wsc " |
| 2674 | "payload from NFC connection handover"); |
| 2675 | wpa_hexdump_buf(MSG_DEBUG, "WPS: NFC payload", wps); |
| 2676 | if (wpabuf_len(wps) < 2) { |
| 2677 | wpa_printf(MSG_DEBUG, "WPS: Too short Wi-Fi Handover Request " |
| 2678 | "Message"); |
| 2679 | goto out; |
| 2680 | } |
| 2681 | pos = wpabuf_head(wps); |
| 2682 | wsc_len = WPA_GET_BE16(pos); |
| 2683 | if (wsc_len > wpabuf_len(wps) - 2) { |
| 2684 | wpa_printf(MSG_DEBUG, "WPS: Invalid WSC attribute length (%u) " |
| 2685 | "in rt Wi-Fi Handover Request Message", wsc_len); |
| 2686 | goto out; |
| 2687 | } |
| 2688 | pos += 2; |
| 2689 | |
| 2690 | wpa_hexdump(MSG_DEBUG, |
| 2691 | "WPS: WSC attributes in Wi-Fi Handover Request Message", |
| 2692 | pos, wsc_len); |
| 2693 | if (wsc_len < wpabuf_len(wps) - 2) { |
| 2694 | wpa_hexdump(MSG_DEBUG, |
| 2695 | "WPS: Ignore extra data after WSC attributes", |
| 2696 | pos + wsc_len, wpabuf_len(wps) - 2 - wsc_len); |
| 2697 | } |
| 2698 | |
| 2699 | wpabuf_set(&msg, pos, wsc_len); |
| 2700 | ret = wps_parse_msg(&msg, &attr); |
| 2701 | if (ret < 0) { |
| 2702 | wpa_printf(MSG_DEBUG, "WPS: Could not parse WSC attributes in " |
| 2703 | "Wi-Fi Handover Request Message"); |
| 2704 | goto out; |
| 2705 | } |
| 2706 | |
| 2707 | if (attr.oob_dev_password == NULL || |
| 2708 | attr.oob_dev_password_len < WPS_OOB_PUBKEY_HASH_LEN + 2) { |
| 2709 | wpa_printf(MSG_DEBUG, "WPS: No Out-of-Band Device Password " |
| 2710 | "included in Wi-Fi Handover Request Message"); |
| 2711 | ret = -1; |
| 2712 | goto out; |
| 2713 | } |
| 2714 | |
| 2715 | if (attr.uuid_e == NULL) { |
| 2716 | wpa_printf(MSG_DEBUG, "WPS: No UUID-E included in Wi-Fi " |
| 2717 | "Handover Request Message"); |
| 2718 | ret = -1; |
| 2719 | goto out; |
| 2720 | } |
| 2721 | |
| 2722 | wpa_hexdump(MSG_DEBUG, "WPS: UUID-E", attr.uuid_e, WPS_UUID_LEN); |
| 2723 | |
| 2724 | wpa_hexdump(MSG_DEBUG, "WPS: Out-of-Band Device Password", |
| 2725 | attr.oob_dev_password, attr.oob_dev_password_len); |
| 2726 | dev_pw_id = WPA_GET_BE16(attr.oob_dev_password + |
| 2727 | WPS_OOB_PUBKEY_HASH_LEN); |
| 2728 | if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER) { |
| 2729 | wpa_printf(MSG_DEBUG, "WPS: Unexpected OOB Device Password ID " |
| 2730 | "%u in Wi-Fi Handover Request Message", dev_pw_id); |
| 2731 | ret = -1; |
| 2732 | goto out; |
| 2733 | } |
| 2734 | wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Public Key hash", |
| 2735 | attr.oob_dev_password, WPS_OOB_PUBKEY_HASH_LEN); |
| 2736 | |
| 2737 | ret = wps_registrar_add_nfc_pw_token(wpa_s->wps->registrar, |
| 2738 | attr.oob_dev_password, |
| 2739 | DEV_PW_NFC_CONNECTION_HANDOVER, |
| 2740 | NULL, 0, 1); |
| 2741 | |
| 2742 | out: |
| 2743 | wpabuf_free(wps); |
| 2744 | return ret; |
| 2745 | } |
| 2746 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 2747 | #endif /* CONFIG_WPS_NFC */ |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2748 | |
| 2749 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2750 | static void wpas_wps_dump_ap_info(struct wpa_supplicant *wpa_s) |
| 2751 | { |
| 2752 | size_t i; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 2753 | struct os_reltime now; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2754 | |
| 2755 | if (wpa_debug_level > MSG_DEBUG) |
| 2756 | return; |
| 2757 | |
| 2758 | if (wpa_s->wps_ap == NULL) |
| 2759 | return; |
| 2760 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 2761 | os_get_reltime(&now); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2762 | |
| 2763 | for (i = 0; i < wpa_s->num_wps_ap; i++) { |
| 2764 | struct wps_ap_info *ap = &wpa_s->wps_ap[i]; |
| 2765 | struct wpa_blacklist *e = wpa_blacklist_get(wpa_s, ap->bssid); |
| 2766 | |
| 2767 | wpa_printf(MSG_DEBUG, "WPS: AP[%d] " MACSTR " type=%d " |
| 2768 | "tries=%d last_attempt=%d sec ago blacklist=%d", |
| 2769 | (int) i, MAC2STR(ap->bssid), ap->type, ap->tries, |
| 2770 | ap->last_attempt.sec > 0 ? |
| 2771 | (int) now.sec - (int) ap->last_attempt.sec : -1, |
| 2772 | e ? e->count : 0); |
| 2773 | } |
| 2774 | } |
| 2775 | |
| 2776 | |
| 2777 | static struct wps_ap_info * wpas_wps_get_ap_info(struct wpa_supplicant *wpa_s, |
| 2778 | const u8 *bssid) |
| 2779 | { |
| 2780 | size_t i; |
| 2781 | |
| 2782 | if (wpa_s->wps_ap == NULL) |
| 2783 | return NULL; |
| 2784 | |
| 2785 | for (i = 0; i < wpa_s->num_wps_ap; i++) { |
| 2786 | struct wps_ap_info *ap = &wpa_s->wps_ap[i]; |
| 2787 | if (os_memcmp(ap->bssid, bssid, ETH_ALEN) == 0) |
| 2788 | return ap; |
| 2789 | } |
| 2790 | |
| 2791 | return NULL; |
| 2792 | } |
| 2793 | |
| 2794 | |
| 2795 | static void wpas_wps_update_ap_info_bss(struct wpa_supplicant *wpa_s, |
| 2796 | struct wpa_scan_res *res) |
| 2797 | { |
| 2798 | struct wpabuf *wps; |
| 2799 | enum wps_ap_info_type type; |
| 2800 | struct wps_ap_info *ap; |
| 2801 | int r; |
| 2802 | |
| 2803 | if (wpa_scan_get_vendor_ie(res, WPS_IE_VENDOR_TYPE) == NULL) |
| 2804 | return; |
| 2805 | |
| 2806 | wps = wpa_scan_get_vendor_ie_multi(res, WPS_IE_VENDOR_TYPE); |
| 2807 | if (wps == NULL) |
| 2808 | return; |
| 2809 | |
| 2810 | r = wps_is_addr_authorized(wps, wpa_s->own_addr, 1); |
| 2811 | if (r == 2) |
| 2812 | type = WPS_AP_SEL_REG_OUR; |
| 2813 | else if (r == 1) |
| 2814 | type = WPS_AP_SEL_REG; |
| 2815 | else |
| 2816 | type = WPS_AP_NOT_SEL_REG; |
| 2817 | |
| 2818 | wpabuf_free(wps); |
| 2819 | |
| 2820 | ap = wpas_wps_get_ap_info(wpa_s, res->bssid); |
| 2821 | if (ap) { |
| 2822 | if (ap->type != type) { |
| 2823 | wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR |
| 2824 | " changed type %d -> %d", |
| 2825 | MAC2STR(res->bssid), ap->type, type); |
| 2826 | ap->type = type; |
| 2827 | if (type != WPS_AP_NOT_SEL_REG) |
| 2828 | wpa_blacklist_del(wpa_s, ap->bssid); |
| 2829 | } |
| 2830 | return; |
| 2831 | } |
| 2832 | |
| 2833 | ap = os_realloc_array(wpa_s->wps_ap, wpa_s->num_wps_ap + 1, |
| 2834 | sizeof(struct wps_ap_info)); |
| 2835 | if (ap == NULL) |
| 2836 | return; |
| 2837 | |
| 2838 | wpa_s->wps_ap = ap; |
| 2839 | ap = &wpa_s->wps_ap[wpa_s->num_wps_ap]; |
| 2840 | wpa_s->num_wps_ap++; |
| 2841 | |
| 2842 | os_memset(ap, 0, sizeof(*ap)); |
| 2843 | os_memcpy(ap->bssid, res->bssid, ETH_ALEN); |
| 2844 | ap->type = type; |
| 2845 | wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR " type %d added", |
| 2846 | MAC2STR(ap->bssid), ap->type); |
| 2847 | } |
| 2848 | |
| 2849 | |
| 2850 | void wpas_wps_update_ap_info(struct wpa_supplicant *wpa_s, |
| 2851 | struct wpa_scan_results *scan_res) |
| 2852 | { |
| 2853 | size_t i; |
| 2854 | |
| 2855 | for (i = 0; i < scan_res->num; i++) |
| 2856 | wpas_wps_update_ap_info_bss(wpa_s, scan_res->res[i]); |
| 2857 | |
| 2858 | wpas_wps_dump_ap_info(wpa_s); |
| 2859 | } |
| 2860 | |
| 2861 | |
| 2862 | void wpas_wps_notify_assoc(struct wpa_supplicant *wpa_s, const u8 *bssid) |
| 2863 | { |
| 2864 | struct wps_ap_info *ap; |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 2865 | |
| 2866 | wpa_s->after_wps = 0; |
| 2867 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2868 | if (!wpa_s->wps_ap_iter) |
| 2869 | return; |
| 2870 | ap = wpas_wps_get_ap_info(wpa_s, bssid); |
| 2871 | if (ap == NULL) |
| 2872 | return; |
| 2873 | ap->tries++; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 2874 | os_get_reltime(&ap->last_attempt); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 2875 | } |