Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 1 | /* |
| 2 | * wpa_supplicant / WPS integration |
Jouni Malinen | d7645d2 | 2012-06-28 13:59:29 +0300 | [diff] [blame] | 3 | * Copyright (c) 2008-2012, Jouni Malinen <j@w1.fi> |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 4 | * |
Jouni Malinen | 0f3d578 | 2012-02-11 16:46:35 +0200 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include "includes.h" |
| 10 | |
| 11 | #include "common.h" |
Jouni Malinen | 03da66b | 2009-11-29 23:04:43 +0200 | [diff] [blame] | 12 | #include "eloop.h" |
| 13 | #include "uuid.h" |
Jouni Malinen | 3f2c8ba | 2012-06-27 18:56:41 +0300 | [diff] [blame] | 14 | #include "crypto/random.h" |
Jouni Malinen | 03da66b | 2009-11-29 23:04:43 +0200 | [diff] [blame] | 15 | #include "crypto/dh_group5.h" |
Jouni Malinen | 90973fb | 2009-11-29 17:51:55 +0200 | [diff] [blame] | 16 | #include "common/ieee802_11_defs.h" |
| 17 | #include "common/ieee802_11_common.h" |
| 18 | #include "common/wpa_common.h" |
Jouni Malinen | 03da66b | 2009-11-29 23:04:43 +0200 | [diff] [blame] | 19 | #include "common/wpa_ctrl.h" |
| 20 | #include "eap_common/eap_wsc_common.h" |
Jouni Malinen | b01c18a | 2008-11-29 13:38:03 +0200 | [diff] [blame] | 21 | #include "eap_peer/eap.h" |
Jouni Malinen | 20a0b03 | 2011-06-27 19:02:24 +0300 | [diff] [blame] | 22 | #include "eapol_supp/eapol_supp_sm.h" |
Jouni Malinen | 03da66b | 2009-11-29 23:04:43 +0200 | [diff] [blame] | 23 | #include "rsn_supp/wpa.h" |
Jouni Malinen | d7645d2 | 2012-06-28 13:59:29 +0300 | [diff] [blame] | 24 | #include "wps/wps_attr_parse.h" |
Jouni Malinen | 03da66b | 2009-11-29 23:04:43 +0200 | [diff] [blame] | 25 | #include "config.h" |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 26 | #include "wpa_supplicant_i.h" |
Jouni Malinen | 2d5b792 | 2009-03-26 20:37:05 +0200 | [diff] [blame] | 27 | #include "driver_i.h" |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 28 | #include "notify.h" |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 29 | #include "blacklist.h" |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 30 | #include "bss.h" |
Jouni Malinen | 9ba9fa0 | 2010-01-03 18:48:11 +0200 | [diff] [blame] | 31 | #include "scan.h" |
Ardong Chen | 2f9929f | 2010-09-06 20:51:06 +0300 | [diff] [blame] | 32 | #include "ap.h" |
Jouni Malinen | e9a7ae4 | 2010-08-05 09:15:11 -0700 | [diff] [blame] | 33 | #include "p2p/p2p.h" |
Jouni Malinen | b22128e | 2010-07-18 14:30:25 -0700 | [diff] [blame] | 34 | #include "p2p_supplicant.h" |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 35 | #include "wps_supplicant.h" |
| 36 | |
Jouni Malinen | f7e5436 | 2009-12-28 16:07:15 +0200 | [diff] [blame] | 37 | |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 38 | #ifndef WPS_PIN_SCAN_IGNORE_SEL_REG |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 39 | #define WPS_PIN_SCAN_IGNORE_SEL_REG 3 |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 40 | #endif /* WPS_PIN_SCAN_IGNORE_SEL_REG */ |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 41 | |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 42 | static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx); |
Jouni Malinen | 469fc3a | 2008-12-19 22:19:41 +0200 | [diff] [blame] | 43 | static void wpas_clear_wps(struct wpa_supplicant *wpa_s); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 44 | |
| 45 | |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 46 | static void wpas_wps_clear_ap_info(struct wpa_supplicant *wpa_s) |
| 47 | { |
| 48 | os_free(wpa_s->wps_ap); |
| 49 | wpa_s->wps_ap = NULL; |
| 50 | wpa_s->num_wps_ap = 0; |
| 51 | wpa_s->wps_ap_iter = 0; |
| 52 | } |
| 53 | |
| 54 | |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 55 | int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s) |
| 56 | { |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 57 | if (!wpa_s->wps_success && |
| 58 | wpa_s->current_ssid && |
| 59 | eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) { |
| 60 | const u8 *bssid = wpa_s->bssid; |
| 61 | if (is_zero_ether_addr(bssid)) |
| 62 | bssid = wpa_s->pending_bssid; |
| 63 | |
| 64 | wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR |
| 65 | " did not succeed - continue trying to find " |
| 66 | "suitable AP", MAC2STR(bssid)); |
| 67 | wpa_blacklist_add(wpa_s, bssid); |
| 68 | |
| 69 | wpa_supplicant_deauthenticate(wpa_s, |
| 70 | WLAN_REASON_DEAUTH_LEAVING); |
| 71 | wpa_s->reassociate = 1; |
| 72 | wpa_supplicant_req_scan(wpa_s, |
| 73 | wpa_s->blacklist_cleared ? 5 : 0, 0); |
| 74 | wpa_s->blacklist_cleared = 0; |
| 75 | return 1; |
| 76 | } |
| 77 | |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 78 | wpas_wps_clear_ap_info(wpa_s); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 79 | eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL); |
Chao-Wen Yang | 449adba | 2011-01-13 18:04:33 +0200 | [diff] [blame] | 80 | if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && !wpa_s->wps_success) |
| 81 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 82 | |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 83 | if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid && |
| 84 | !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) { |
Jouni Malinen | f981eab | 2010-12-22 11:33:59 +0200 | [diff] [blame] | 85 | int disabled = wpa_s->current_ssid->disabled; |
Jouni Malinen | a565c23 | 2012-02-12 13:54:15 +0200 | [diff] [blame] | 86 | unsigned int freq = wpa_s->assoc_freq; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 87 | wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - " |
Jouni Malinen | a565c23 | 2012-02-12 13:54:15 +0200 | [diff] [blame] | 88 | "try to associate with the received credential " |
| 89 | "(freq=%u)", freq); |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 90 | wpa_supplicant_deauthenticate(wpa_s, |
| 91 | WLAN_REASON_DEAUTH_LEAVING); |
Jouni Malinen | f981eab | 2010-12-22 11:33:59 +0200 | [diff] [blame] | 92 | if (disabled) { |
| 93 | wpa_printf(MSG_DEBUG, "WPS: Current network is " |
| 94 | "disabled - wait for user to enable"); |
| 95 | return 1; |
| 96 | } |
Jouni Malinen | 17a4734 | 2010-04-11 19:06:42 +0300 | [diff] [blame] | 97 | wpa_s->after_wps = 5; |
Jouni Malinen | a565c23 | 2012-02-12 13:54:15 +0200 | [diff] [blame] | 98 | wpa_s->wps_freq = freq; |
Jouni Malinen | 0b7a25c | 2011-11-28 18:36:36 +0200 | [diff] [blame] | 99 | wpa_s->normal_scans = 0; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 100 | wpa_s->reassociate = 1; |
| 101 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 102 | return 1; |
| 103 | } |
| 104 | |
Jouni Malinen | 4766216 | 2009-01-18 12:27:12 +0200 | [diff] [blame] | 105 | if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid) { |
| 106 | wpa_printf(MSG_DEBUG, "WPS: Registration completed - waiting " |
| 107 | "for external credential processing"); |
| 108 | wpas_clear_wps(wpa_s); |
| 109 | wpa_supplicant_deauthenticate(wpa_s, |
| 110 | WLAN_REASON_DEAUTH_LEAVING); |
| 111 | return 1; |
| 112 | } |
| 113 | |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | |
Jouni Malinen | 7cc1b6c | 2009-03-05 21:39:39 +0200 | [diff] [blame] | 118 | static void wpas_wps_security_workaround(struct wpa_supplicant *wpa_s, |
| 119 | struct wpa_ssid *ssid, |
| 120 | const struct wps_credential *cred) |
| 121 | { |
| 122 | struct wpa_driver_capa capa; |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 123 | struct wpa_bss *bss; |
Jouni Malinen | 7cc1b6c | 2009-03-05 21:39:39 +0200 | [diff] [blame] | 124 | const u8 *ie; |
| 125 | struct wpa_ie_data adv; |
| 126 | int wpa2 = 0, ccmp = 0; |
| 127 | |
| 128 | /* |
| 129 | * Many existing WPS APs do not know how to negotiate WPA2 or CCMP in |
| 130 | * case they are configured for mixed mode operation (WPA+WPA2 and |
| 131 | * TKIP+CCMP). Try to use scan results to figure out whether the AP |
| 132 | * actually supports stronger security and select that if the client |
| 133 | * has support for it, too. |
| 134 | */ |
| 135 | |
| 136 | if (wpa_drv_get_capa(wpa_s, &capa)) |
| 137 | return; /* Unknown what driver supports */ |
| 138 | |
Jouni Malinen | d87e90b | 2011-07-15 14:21:50 +0300 | [diff] [blame] | 139 | if (ssid->ssid == NULL) |
| 140 | return; |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 141 | bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len); |
| 142 | if (bss == NULL) { |
| 143 | wpa_printf(MSG_DEBUG, "WPS: The AP was not found from BSS " |
| 144 | "table - use credential as-is"); |
Jouni Malinen | 7cc1b6c | 2009-03-05 21:39:39 +0200 | [diff] [blame] | 145 | return; |
| 146 | } |
| 147 | |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 148 | wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table"); |
| 149 | |
| 150 | ie = wpa_bss_get_ie(bss, WLAN_EID_RSN); |
Jouni Malinen | 7cc1b6c | 2009-03-05 21:39:39 +0200 | [diff] [blame] | 151 | if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) { |
| 152 | wpa2 = 1; |
| 153 | if (adv.pairwise_cipher & WPA_CIPHER_CCMP) |
| 154 | ccmp = 1; |
| 155 | } else { |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 156 | ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE); |
Jouni Malinen | 7cc1b6c | 2009-03-05 21:39:39 +0200 | [diff] [blame] | 157 | if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 && |
| 158 | adv.pairwise_cipher & WPA_CIPHER_CCMP) |
| 159 | ccmp = 1; |
| 160 | } |
| 161 | |
| 162 | if (ie == NULL && (ssid->proto & WPA_PROTO_WPA) && |
| 163 | (ssid->pairwise_cipher & WPA_CIPHER_TKIP)) { |
| 164 | /* |
| 165 | * TODO: This could be the initial AP configuration and the |
| 166 | * Beacon contents could change shortly. Should request a new |
| 167 | * scan and delay addition of the network until the updated |
| 168 | * scan results are available. |
| 169 | */ |
| 170 | wpa_printf(MSG_DEBUG, "WPS: The AP did not yet advertise WPA " |
| 171 | "support - use credential as-is"); |
| 172 | return; |
| 173 | } |
| 174 | |
| 175 | if (ccmp && !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) && |
| 176 | (ssid->pairwise_cipher & WPA_CIPHER_TKIP) && |
| 177 | (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) { |
| 178 | wpa_printf(MSG_DEBUG, "WPS: Add CCMP into the credential " |
| 179 | "based on scan results"); |
| 180 | if (wpa_s->conf->ap_scan == 1) |
| 181 | ssid->pairwise_cipher |= WPA_CIPHER_CCMP; |
| 182 | else |
| 183 | ssid->pairwise_cipher = WPA_CIPHER_CCMP; |
| 184 | } |
| 185 | |
| 186 | if (wpa2 && !(ssid->proto & WPA_PROTO_RSN) && |
| 187 | (ssid->proto & WPA_PROTO_WPA) && |
| 188 | (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP)) { |
| 189 | wpa_printf(MSG_DEBUG, "WPS: Add WPA2 into the credential " |
| 190 | "based on scan results"); |
| 191 | if (wpa_s->conf->ap_scan == 1) |
| 192 | ssid->proto |= WPA_PROTO_RSN; |
| 193 | else |
| 194 | ssid->proto = WPA_PROTO_RSN; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | |
Jouni Malinen | bcbbc7a | 2008-11-28 20:02:32 +0200 | [diff] [blame] | 199 | static int wpa_supplicant_wps_cred(void *ctx, |
| 200 | const struct wps_credential *cred) |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 201 | { |
| 202 | struct wpa_supplicant *wpa_s = ctx; |
| 203 | struct wpa_ssid *ssid = wpa_s->current_ssid; |
Andriy Tkachuk | 522b5b6 | 2009-02-18 19:58:44 +0200 | [diff] [blame] | 204 | u8 key_idx = 0; |
Jouni Malinen | 49eba5f | 2009-08-15 20:40:45 +0300 | [diff] [blame] | 205 | u16 auth_type; |
Andrii Bordunov | 2c4f80d | 2011-10-22 22:21:53 +0300 | [diff] [blame] | 206 | #ifdef CONFIG_WPS_REG_DISABLE_OPEN |
Jouni Malinen | f981eab | 2010-12-22 11:33:59 +0200 | [diff] [blame] | 207 | int registrar = 0; |
Andrii Bordunov | 2c4f80d | 2011-10-22 22:21:53 +0300 | [diff] [blame] | 208 | #endif /* CONFIG_WPS_REG_DISABLE_OPEN */ |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 209 | |
Jouni Malinen | 4766216 | 2009-01-18 12:27:12 +0200 | [diff] [blame] | 210 | if ((wpa_s->conf->wps_cred_processing == 1 || |
| 211 | wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) { |
| 212 | size_t blen = cred->cred_attr_len * 2 + 1; |
| 213 | char *buf = os_malloc(blen); |
| 214 | if (buf) { |
| 215 | wpa_snprintf_hex(buf, blen, |
| 216 | cred->cred_attr, cred->cred_attr_len); |
| 217 | wpa_msg(wpa_s, MSG_INFO, "%s%s", |
| 218 | WPS_EVENT_CRED_RECEIVED, buf); |
| 219 | os_free(buf); |
| 220 | } |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 221 | |
| 222 | wpas_notify_wps_credential(wpa_s, cred); |
Jouni Malinen | 4766216 | 2009-01-18 12:27:12 +0200 | [diff] [blame] | 223 | } else |
| 224 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED); |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 225 | |
Jouni Malinen | eca6e0a | 2009-01-17 22:17:12 +0200 | [diff] [blame] | 226 | wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute", |
| 227 | cred->cred_attr, cred->cred_attr_len); |
| 228 | |
Jouni Malinen | 4766216 | 2009-01-18 12:27:12 +0200 | [diff] [blame] | 229 | if (wpa_s->conf->wps_cred_processing == 1) |
| 230 | return 0; |
| 231 | |
Jouni Malinen | 73267b9 | 2009-03-30 19:00:55 +0300 | [diff] [blame] | 232 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len); |
| 233 | wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x", |
| 234 | cred->auth_type); |
| 235 | wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type); |
| 236 | wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx); |
| 237 | wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key", |
| 238 | cred->key, cred->key_len); |
| 239 | wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR, |
| 240 | MAC2STR(cred->mac_addr)); |
| 241 | |
Jouni Malinen | 49eba5f | 2009-08-15 20:40:45 +0300 | [diff] [blame] | 242 | auth_type = cred->auth_type; |
| 243 | if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) { |
| 244 | wpa_printf(MSG_DEBUG, "WPS: Workaround - convert mixed-mode " |
| 245 | "auth_type into WPA2PSK"); |
| 246 | auth_type = WPS_AUTH_WPA2PSK; |
| 247 | } |
| 248 | |
| 249 | if (auth_type != WPS_AUTH_OPEN && |
| 250 | auth_type != WPS_AUTH_SHARED && |
| 251 | auth_type != WPS_AUTH_WPAPSK && |
| 252 | auth_type != WPS_AUTH_WPA2PSK) { |
Jouni Malinen | f286077 | 2009-01-17 21:45:51 +0200 | [diff] [blame] | 253 | wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for " |
Jouni Malinen | 49eba5f | 2009-08-15 20:40:45 +0300 | [diff] [blame] | 254 | "unsupported authentication type 0x%x", |
| 255 | auth_type); |
Jouni Malinen | f286077 | 2009-01-17 21:45:51 +0200 | [diff] [blame] | 256 | return 0; |
| 257 | } |
| 258 | |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 259 | if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) { |
| 260 | wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based " |
| 261 | "on the received credential"); |
Andrii Bordunov | 2c4f80d | 2011-10-22 22:21:53 +0300 | [diff] [blame] | 262 | #ifdef CONFIG_WPS_REG_DISABLE_OPEN |
Jouni Malinen | f981eab | 2010-12-22 11:33:59 +0200 | [diff] [blame] | 263 | if (ssid->eap.identity && |
| 264 | ssid->eap.identity_len == WSC_ID_REGISTRAR_LEN && |
| 265 | os_memcmp(ssid->eap.identity, WSC_ID_REGISTRAR, |
| 266 | WSC_ID_REGISTRAR_LEN) == 0) |
| 267 | registrar = 1; |
Andrii Bordunov | 2c4f80d | 2011-10-22 22:21:53 +0300 | [diff] [blame] | 268 | #endif /* CONFIG_WPS_REG_DISABLE_OPEN */ |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 269 | os_free(ssid->eap.identity); |
| 270 | ssid->eap.identity = NULL; |
| 271 | ssid->eap.identity_len = 0; |
| 272 | os_free(ssid->eap.phase1); |
| 273 | ssid->eap.phase1 = NULL; |
| 274 | os_free(ssid->eap.eap_methods); |
| 275 | ssid->eap.eap_methods = NULL; |
Jouni Malinen | cae2119 | 2012-07-25 16:18:12 +0300 | [diff] [blame] | 276 | if (!ssid->p2p_group) { |
Jouni Malinen | 2ff99b3 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 277 | ssid->temporary = 0; |
Jouni Malinen | cae2119 | 2012-07-25 16:18:12 +0300 | [diff] [blame] | 278 | ssid->bssid_set = 0; |
| 279 | } |
Jouni Malinen | 00e5e3d | 2012-08-26 23:01:26 +0300 | [diff] [blame] | 280 | ssid->disabled_until.sec = 0; |
| 281 | ssid->disabled_until.usec = 0; |
| 282 | ssid->auth_failures = 0; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 283 | } else { |
| 284 | wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the " |
| 285 | "received credential"); |
| 286 | ssid = wpa_config_add_network(wpa_s->conf); |
| 287 | if (ssid == NULL) |
| 288 | return -1; |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 289 | wpas_notify_network_added(wpa_s, ssid); |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | wpa_config_set_network_defaults(ssid); |
| 293 | |
| 294 | os_free(ssid->ssid); |
| 295 | ssid->ssid = os_malloc(cred->ssid_len); |
| 296 | if (ssid->ssid) { |
| 297 | os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len); |
| 298 | ssid->ssid_len = cred->ssid_len; |
| 299 | } |
| 300 | |
| 301 | switch (cred->encr_type) { |
| 302 | case WPS_ENCR_NONE: |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 303 | break; |
| 304 | case WPS_ENCR_WEP: |
Andriy Tkachuk | 4b195a1 | 2009-02-17 10:30:43 +0200 | [diff] [blame] | 305 | if (cred->key_len <= 0) |
| 306 | break; |
| 307 | if (cred->key_len != 5 && cred->key_len != 13 && |
| 308 | cred->key_len != 10 && cred->key_len != 26) { |
| 309 | wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key length " |
| 310 | "%lu", (unsigned long) cred->key_len); |
| 311 | return -1; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 312 | } |
Andriy Tkachuk | 522b5b6 | 2009-02-18 19:58:44 +0200 | [diff] [blame] | 313 | if (cred->key_idx > NUM_WEP_KEYS) { |
Andriy Tkachuk | 4b195a1 | 2009-02-17 10:30:43 +0200 | [diff] [blame] | 314 | wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key index %d", |
| 315 | cred->key_idx); |
| 316 | return -1; |
| 317 | } |
Andriy Tkachuk | 522b5b6 | 2009-02-18 19:58:44 +0200 | [diff] [blame] | 318 | if (cred->key_idx) |
| 319 | key_idx = cred->key_idx - 1; |
Andriy Tkachuk | 4b195a1 | 2009-02-17 10:30:43 +0200 | [diff] [blame] | 320 | if (cred->key_len == 10 || cred->key_len == 26) { |
| 321 | if (hexstr2bin((char *) cred->key, |
| 322 | ssid->wep_key[key_idx], |
| 323 | cred->key_len / 2) < 0) { |
| 324 | wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key " |
| 325 | "%d", key_idx); |
| 326 | return -1; |
| 327 | } |
| 328 | ssid->wep_key_len[key_idx] = cred->key_len / 2; |
| 329 | } else { |
| 330 | os_memcpy(ssid->wep_key[key_idx], cred->key, |
| 331 | cred->key_len); |
| 332 | ssid->wep_key_len[key_idx] = cred->key_len; |
| 333 | } |
| 334 | ssid->wep_tx_keyidx = key_idx; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 335 | break; |
| 336 | case WPS_ENCR_TKIP: |
| 337 | ssid->pairwise_cipher = WPA_CIPHER_TKIP; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 338 | break; |
| 339 | case WPS_ENCR_AES: |
| 340 | ssid->pairwise_cipher = WPA_CIPHER_CCMP; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 341 | break; |
| 342 | } |
| 343 | |
Jouni Malinen | 49eba5f | 2009-08-15 20:40:45 +0300 | [diff] [blame] | 344 | switch (auth_type) { |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 345 | case WPS_AUTH_OPEN: |
| 346 | ssid->auth_alg = WPA_AUTH_ALG_OPEN; |
| 347 | ssid->key_mgmt = WPA_KEY_MGMT_NONE; |
| 348 | ssid->proto = 0; |
Jouni Malinen | f981eab | 2010-12-22 11:33:59 +0200 | [diff] [blame] | 349 | #ifdef CONFIG_WPS_REG_DISABLE_OPEN |
| 350 | if (registrar) { |
| 351 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OPEN_NETWORK |
| 352 | "id=%d - Credentials for an open " |
| 353 | "network disabled by default - use " |
| 354 | "'select_network %d' to enable", |
| 355 | ssid->id, ssid->id); |
| 356 | ssid->disabled = 1; |
| 357 | } |
| 358 | #endif /* CONFIG_WPS_REG_DISABLE_OPEN */ |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 359 | break; |
| 360 | case WPS_AUTH_SHARED: |
| 361 | ssid->auth_alg = WPA_AUTH_ALG_SHARED; |
| 362 | ssid->key_mgmt = WPA_KEY_MGMT_NONE; |
| 363 | ssid->proto = 0; |
| 364 | break; |
| 365 | case WPS_AUTH_WPAPSK: |
| 366 | ssid->auth_alg = WPA_AUTH_ALG_OPEN; |
| 367 | ssid->key_mgmt = WPA_KEY_MGMT_PSK; |
| 368 | ssid->proto = WPA_PROTO_WPA; |
| 369 | break; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 370 | case WPS_AUTH_WPA2PSK: |
| 371 | ssid->auth_alg = WPA_AUTH_ALG_OPEN; |
| 372 | ssid->key_mgmt = WPA_KEY_MGMT_PSK; |
| 373 | ssid->proto = WPA_PROTO_RSN; |
| 374 | break; |
| 375 | } |
| 376 | |
| 377 | if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) { |
| 378 | if (cred->key_len == 2 * PMK_LEN) { |
| 379 | if (hexstr2bin((const char *) cred->key, ssid->psk, |
| 380 | PMK_LEN)) { |
| 381 | wpa_printf(MSG_ERROR, "WPS: Invalid Network " |
| 382 | "Key"); |
| 383 | return -1; |
| 384 | } |
| 385 | ssid->psk_set = 1; |
Johannes Berg | d1c8ac8 | 2011-02-02 17:00:12 +0200 | [diff] [blame] | 386 | ssid->export_keys = 1; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 387 | } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) { |
| 388 | os_free(ssid->passphrase); |
| 389 | ssid->passphrase = os_malloc(cred->key_len + 1); |
| 390 | if (ssid->passphrase == NULL) |
| 391 | return -1; |
| 392 | os_memcpy(ssid->passphrase, cred->key, cred->key_len); |
| 393 | ssid->passphrase[cred->key_len] = '\0'; |
| 394 | wpa_config_update_psk(ssid); |
Johannes Berg | d1c8ac8 | 2011-02-02 17:00:12 +0200 | [diff] [blame] | 395 | ssid->export_keys = 1; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 396 | } else { |
| 397 | wpa_printf(MSG_ERROR, "WPS: Invalid Network Key " |
| 398 | "length %lu", |
| 399 | (unsigned long) cred->key_len); |
| 400 | return -1; |
| 401 | } |
| 402 | } |
| 403 | |
Jouni Malinen | 7cc1b6c | 2009-03-05 21:39:39 +0200 | [diff] [blame] | 404 | wpas_wps_security_workaround(wpa_s, ssid, cred); |
| 405 | |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 406 | #ifndef CONFIG_NO_CONFIG_WRITE |
| 407 | if (wpa_s->conf->update_config && |
| 408 | wpa_config_write(wpa_s->confname, wpa_s->conf)) { |
| 409 | wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration"); |
| 410 | return -1; |
| 411 | } |
| 412 | #endif /* CONFIG_NO_CONFIG_WRITE */ |
| 413 | |
| 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | |
Jouni Malinen | b89883a | 2011-02-22 12:20:16 +0200 | [diff] [blame] | 418 | #ifdef CONFIG_P2P |
| 419 | static void wpas_wps_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx) |
| 420 | { |
| 421 | struct wpa_supplicant *wpa_s = eloop_ctx; |
| 422 | wpas_p2p_notif_pbc_overlap(wpa_s); |
| 423 | } |
| 424 | #endif /* CONFIG_P2P */ |
| 425 | |
| 426 | |
Jouni Malinen | 4b68290 | 2008-12-18 21:58:42 +0200 | [diff] [blame] | 427 | static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s, |
| 428 | struct wps_event_m2d *m2d) |
| 429 | { |
| 430 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D |
| 431 | "dev_password_id=%d config_error=%d", |
| 432 | m2d->dev_password_id, m2d->config_error); |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 433 | wpas_notify_wps_event_m2d(wpa_s, m2d); |
Jouni Malinen | b89883a | 2011-02-22 12:20:16 +0200 | [diff] [blame] | 434 | #ifdef CONFIG_P2P |
| 435 | if (wpa_s->parent && wpa_s->parent != wpa_s) { |
| 436 | wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_M2D |
| 437 | "dev_password_id=%d config_error=%d", |
| 438 | m2d->dev_password_id, m2d->config_error); |
| 439 | } |
| 440 | if (m2d->config_error == WPS_CFG_MULTIPLE_PBC_DETECTED) { |
| 441 | /* |
| 442 | * Notify P2P from eloop timeout to avoid issues with the |
| 443 | * interface getting removed while processing a message. |
| 444 | */ |
| 445 | eloop_register_timeout(0, 0, wpas_wps_pbc_overlap_cb, wpa_s, |
| 446 | NULL); |
| 447 | } |
| 448 | #endif /* CONFIG_P2P */ |
Jouni Malinen | 4b68290 | 2008-12-18 21:58:42 +0200 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | |
Chao-Wen Yang | c5cf0a1 | 2011-01-13 17:50:59 +0200 | [diff] [blame] | 452 | static const char * wps_event_fail_reason[NUM_WPS_EI_VALUES] = { |
| 453 | "No Error", /* WPS_EI_NO_ERROR */ |
| 454 | "TKIP Only Prohibited", /* WPS_EI_SECURITY_TKIP_ONLY_PROHIBITED */ |
| 455 | "WEP Prohibited" /* WPS_EI_SECURITY_WEP_PROHIBITED */ |
| 456 | }; |
| 457 | |
Jouni Malinen | 469fc3a | 2008-12-19 22:19:41 +0200 | [diff] [blame] | 458 | static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s, |
| 459 | struct wps_event_fail *fail) |
| 460 | { |
Chao-Wen Yang | c5cf0a1 | 2011-01-13 17:50:59 +0200 | [diff] [blame] | 461 | if (fail->error_indication > 0 && |
| 462 | fail->error_indication < NUM_WPS_EI_VALUES) { |
| 463 | wpa_msg(wpa_s, MSG_INFO, |
| 464 | WPS_EVENT_FAIL "msg=%d config_error=%d reason=%d (%s)", |
| 465 | fail->msg, fail->config_error, fail->error_indication, |
| 466 | wps_event_fail_reason[fail->error_indication]); |
| 467 | if (wpa_s->parent && wpa_s->parent != wpa_s) |
| 468 | wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL |
| 469 | "msg=%d config_error=%d reason=%d (%s)", |
| 470 | fail->msg, fail->config_error, |
| 471 | fail->error_indication, |
| 472 | wps_event_fail_reason[fail->error_indication]); |
| 473 | } else { |
| 474 | wpa_msg(wpa_s, MSG_INFO, |
| 475 | WPS_EVENT_FAIL "msg=%d config_error=%d", |
Jouni Malinen | 545cc6a | 2010-10-14 20:52:31 +0300 | [diff] [blame] | 476 | fail->msg, fail->config_error); |
Chao-Wen Yang | c5cf0a1 | 2011-01-13 17:50:59 +0200 | [diff] [blame] | 477 | if (wpa_s->parent && wpa_s->parent != wpa_s) |
| 478 | wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL |
| 479 | "msg=%d config_error=%d", |
| 480 | fail->msg, fail->config_error); |
| 481 | } |
Jouni Malinen | 469fc3a | 2008-12-19 22:19:41 +0200 | [diff] [blame] | 482 | wpas_clear_wps(wpa_s); |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 483 | wpas_notify_wps_event_fail(wpa_s, fail); |
Jayant Sane | 3734552 | 2011-06-25 11:47:04 +0300 | [diff] [blame] | 484 | #ifdef CONFIG_P2P |
| 485 | wpas_p2p_wps_failed(wpa_s, fail); |
| 486 | #endif /* CONFIG_P2P */ |
Jouni Malinen | 469fc3a | 2008-12-19 22:19:41 +0200 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 490 | static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx); |
| 491 | |
| 492 | static void wpas_wps_reenable_networks(struct wpa_supplicant *wpa_s) |
| 493 | { |
| 494 | struct wpa_ssid *ssid; |
| 495 | |
| 496 | eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL); |
| 497 | |
| 498 | for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) { |
| 499 | if (ssid->disabled_for_connect && ssid->disabled) { |
| 500 | ssid->disabled_for_connect = 0; |
| 501 | ssid->disabled = 0; |
| 502 | wpas_notify_network_enabled_changed(wpa_s, ssid); |
| 503 | } |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | |
| 508 | static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx) |
| 509 | { |
| 510 | struct wpa_supplicant *wpa_s = eloop_ctx; |
| 511 | /* Enable the networks disabled during wpas_wps_reassoc */ |
| 512 | wpas_wps_reenable_networks(wpa_s); |
| 513 | } |
| 514 | |
| 515 | |
Jouni Malinen | ad5302a | 2008-12-19 22:34:18 +0200 | [diff] [blame] | 516 | static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s) |
| 517 | { |
| 518 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS); |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 519 | wpa_s->wps_success = 1; |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 520 | wpas_notify_wps_event_success(wpa_s); |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 521 | |
| 522 | /* |
| 523 | * Enable the networks disabled during wpas_wps_reassoc after 10 |
| 524 | * seconds. The 10 seconds timer is to allow the data connection to be |
| 525 | * formed before allowing other networks to be selected. |
| 526 | */ |
| 527 | eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s, |
| 528 | NULL); |
| 529 | |
Jouni Malinen | b22128e | 2010-07-18 14:30:25 -0700 | [diff] [blame] | 530 | #ifdef CONFIG_P2P |
| 531 | wpas_p2p_wps_success(wpa_s, wpa_s->bssid, 0); |
| 532 | #endif /* CONFIG_P2P */ |
Jouni Malinen | ad5302a | 2008-12-19 22:34:18 +0200 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | |
Jouni Malinen | b78bc3a | 2009-11-15 12:07:27 +0200 | [diff] [blame] | 536 | static void wpa_supplicant_wps_event_er_ap_add(struct wpa_supplicant *wpa_s, |
| 537 | struct wps_event_er_ap *ap) |
| 538 | { |
| 539 | char uuid_str[100]; |
Jouni Malinen | ed45947 | 2009-11-26 11:54:37 +0200 | [diff] [blame] | 540 | char dev_type[WPS_DEV_TYPE_BUFSIZE]; |
Jouni Malinen | e694b34 | 2009-11-21 13:34:23 +0200 | [diff] [blame] | 541 | |
Jouni Malinen | b78bc3a | 2009-11-15 12:07:27 +0200 | [diff] [blame] | 542 | uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); |
Jouni Malinen | e694b34 | 2009-11-21 13:34:23 +0200 | [diff] [blame] | 543 | if (ap->pri_dev_type) |
Jouni Malinen | ed45947 | 2009-11-26 11:54:37 +0200 | [diff] [blame] | 544 | wps_dev_type_bin2str(ap->pri_dev_type, dev_type, |
| 545 | sizeof(dev_type)); |
Jouni Malinen | e694b34 | 2009-11-21 13:34:23 +0200 | [diff] [blame] | 546 | else |
| 547 | dev_type[0] = '\0'; |
| 548 | |
| 549 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_ADD "%s " MACSTR |
| 550 | " pri_dev_type=%s wps_state=%d |%s|%s|%s|%s|%s|%s|", |
| 551 | uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state, |
Jouni Malinen | b78bc3a | 2009-11-15 12:07:27 +0200 | [diff] [blame] | 552 | ap->friendly_name ? ap->friendly_name : "", |
| 553 | ap->manufacturer ? ap->manufacturer : "", |
| 554 | ap->model_description ? ap->model_description : "", |
| 555 | ap->model_name ? ap->model_name : "", |
| 556 | ap->manufacturer_url ? ap->manufacturer_url : "", |
| 557 | ap->model_url ? ap->model_url : ""); |
| 558 | } |
| 559 | |
| 560 | |
| 561 | static void wpa_supplicant_wps_event_er_ap_remove(struct wpa_supplicant *wpa_s, |
| 562 | struct wps_event_er_ap *ap) |
| 563 | { |
| 564 | char uuid_str[100]; |
| 565 | uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); |
| 566 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str); |
| 567 | } |
| 568 | |
| 569 | |
| 570 | static void wpa_supplicant_wps_event_er_enrollee_add( |
| 571 | struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee) |
| 572 | { |
| 573 | char uuid_str[100]; |
Jouni Malinen | ed45947 | 2009-11-26 11:54:37 +0200 | [diff] [blame] | 574 | char dev_type[WPS_DEV_TYPE_BUFSIZE]; |
Jouni Malinen | b78bc3a | 2009-11-15 12:07:27 +0200 | [diff] [blame] | 575 | |
| 576 | uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); |
| 577 | if (enrollee->pri_dev_type) |
Jouni Malinen | ed45947 | 2009-11-26 11:54:37 +0200 | [diff] [blame] | 578 | wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type, |
| 579 | sizeof(dev_type)); |
Jouni Malinen | b78bc3a | 2009-11-15 12:07:27 +0200 | [diff] [blame] | 580 | else |
| 581 | dev_type[0] = '\0'; |
| 582 | |
| 583 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_ADD "%s " MACSTR |
| 584 | " M1=%d config_methods=0x%x dev_passwd_id=%d pri_dev_type=%s " |
| 585 | "|%s|%s|%s|%s|%s|", |
| 586 | uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received, |
| 587 | enrollee->config_methods, enrollee->dev_passwd_id, dev_type, |
| 588 | enrollee->dev_name ? enrollee->dev_name : "", |
| 589 | enrollee->manufacturer ? enrollee->manufacturer : "", |
| 590 | enrollee->model_name ? enrollee->model_name : "", |
| 591 | enrollee->model_number ? enrollee->model_number : "", |
| 592 | enrollee->serial_number ? enrollee->serial_number : ""); |
| 593 | } |
| 594 | |
| 595 | |
| 596 | static void wpa_supplicant_wps_event_er_enrollee_remove( |
| 597 | struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee) |
| 598 | { |
| 599 | char uuid_str[100]; |
| 600 | uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); |
| 601 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_REMOVE "%s " MACSTR, |
| 602 | uuid_str, MAC2STR(enrollee->mac_addr)); |
| 603 | } |
| 604 | |
| 605 | |
Jouni Malinen | 15dbf12 | 2010-05-27 15:24:45 +0300 | [diff] [blame] | 606 | static void wpa_supplicant_wps_event_er_ap_settings( |
| 607 | struct wpa_supplicant *wpa_s, |
| 608 | struct wps_event_er_ap_settings *ap_settings) |
| 609 | { |
| 610 | char uuid_str[100]; |
| 611 | char key_str[65]; |
| 612 | const struct wps_credential *cred = ap_settings->cred; |
| 613 | |
| 614 | key_str[0] = '\0'; |
| 615 | if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) { |
| 616 | if (cred->key_len >= 8 && cred->key_len <= 64) { |
| 617 | os_memcpy(key_str, cred->key, cred->key_len); |
| 618 | key_str[cred->key_len] = '\0'; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str)); |
| 623 | /* Use wpa_msg_ctrl to avoid showing the key in debug log */ |
| 624 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_SETTINGS |
| 625 | "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x " |
| 626 | "key=%s", |
| 627 | uuid_str, wpa_ssid_txt(cred->ssid, cred->ssid_len), |
| 628 | cred->auth_type, cred->encr_type, key_str); |
| 629 | } |
| 630 | |
| 631 | |
Jouni Malinen | 3e7533b | 2010-10-25 21:29:22 +0300 | [diff] [blame] | 632 | static void wpa_supplicant_wps_event_er_set_sel_reg( |
| 633 | struct wpa_supplicant *wpa_s, |
| 634 | struct wps_event_er_set_selected_registrar *ev) |
| 635 | { |
| 636 | char uuid_str[100]; |
| 637 | |
| 638 | uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str)); |
| 639 | switch (ev->state) { |
| 640 | case WPS_ER_SET_SEL_REG_START: |
| 641 | wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG |
| 642 | "uuid=%s state=START sel_reg=%d dev_passwd_id=%u " |
| 643 | "sel_reg_config_methods=0x%x", |
| 644 | uuid_str, ev->sel_reg, ev->dev_passwd_id, |
| 645 | ev->sel_reg_config_methods); |
| 646 | break; |
| 647 | case WPS_ER_SET_SEL_REG_DONE: |
| 648 | wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG |
| 649 | "uuid=%s state=DONE", uuid_str); |
| 650 | break; |
| 651 | case WPS_ER_SET_SEL_REG_FAILED: |
| 652 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_SET_SEL_REG |
| 653 | "uuid=%s state=FAILED", uuid_str); |
| 654 | break; |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | |
Jouni Malinen | 4b68290 | 2008-12-18 21:58:42 +0200 | [diff] [blame] | 659 | static void wpa_supplicant_wps_event(void *ctx, enum wps_event event, |
| 660 | union wps_event_data *data) |
| 661 | { |
| 662 | struct wpa_supplicant *wpa_s = ctx; |
| 663 | switch (event) { |
| 664 | case WPS_EV_M2D: |
| 665 | wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d); |
| 666 | break; |
Jouni Malinen | 469fc3a | 2008-12-19 22:19:41 +0200 | [diff] [blame] | 667 | case WPS_EV_FAIL: |
| 668 | wpa_supplicant_wps_event_fail(wpa_s, &data->fail); |
| 669 | break; |
Jouni Malinen | ad5302a | 2008-12-19 22:34:18 +0200 | [diff] [blame] | 670 | case WPS_EV_SUCCESS: |
| 671 | wpa_supplicant_wps_event_success(wpa_s); |
| 672 | break; |
Jouni Malinen | 3b2cf80 | 2009-01-23 21:57:43 +0200 | [diff] [blame] | 673 | case WPS_EV_PWD_AUTH_FAIL: |
Jouni Malinen | 70d84f1 | 2010-11-17 16:46:55 +0200 | [diff] [blame] | 674 | #ifdef CONFIG_AP |
| 675 | if (wpa_s->ap_iface && data->pwd_auth_fail.enrollee) |
| 676 | wpa_supplicant_ap_pwd_auth_fail(wpa_s); |
| 677 | #endif /* CONFIG_AP */ |
Jouni Malinen | 3b2cf80 | 2009-01-23 21:57:43 +0200 | [diff] [blame] | 678 | break; |
Oleg Kravtsov | 63330c6 | 2009-11-01 21:26:13 +0200 | [diff] [blame] | 679 | case WPS_EV_PBC_OVERLAP: |
| 680 | break; |
| 681 | case WPS_EV_PBC_TIMEOUT: |
| 682 | break; |
Jouni Malinen | b78bc3a | 2009-11-15 12:07:27 +0200 | [diff] [blame] | 683 | case WPS_EV_ER_AP_ADD: |
| 684 | wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap); |
| 685 | break; |
| 686 | case WPS_EV_ER_AP_REMOVE: |
| 687 | wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap); |
| 688 | break; |
| 689 | case WPS_EV_ER_ENROLLEE_ADD: |
| 690 | wpa_supplicant_wps_event_er_enrollee_add(wpa_s, |
| 691 | &data->enrollee); |
| 692 | break; |
| 693 | case WPS_EV_ER_ENROLLEE_REMOVE: |
| 694 | wpa_supplicant_wps_event_er_enrollee_remove(wpa_s, |
| 695 | &data->enrollee); |
| 696 | break; |
Jouni Malinen | 15dbf12 | 2010-05-27 15:24:45 +0300 | [diff] [blame] | 697 | case WPS_EV_ER_AP_SETTINGS: |
| 698 | wpa_supplicant_wps_event_er_ap_settings(wpa_s, |
| 699 | &data->ap_settings); |
| 700 | break; |
Jouni Malinen | 3e7533b | 2010-10-25 21:29:22 +0300 | [diff] [blame] | 701 | case WPS_EV_ER_SET_SELECTED_REGISTRAR: |
| 702 | wpa_supplicant_wps_event_er_set_sel_reg(wpa_s, |
| 703 | &data->set_sel_reg); |
| 704 | break; |
Jouni Malinen | 32cdcf1 | 2012-01-30 17:31:06 +0200 | [diff] [blame] | 705 | case WPS_EV_AP_PIN_SUCCESS: |
| 706 | break; |
Jouni Malinen | 4b68290 | 2008-12-18 21:58:42 +0200 | [diff] [blame] | 707 | } |
| 708 | } |
| 709 | |
| 710 | |
Jouni Malinen | f90c86d | 2009-01-03 19:50:49 +0200 | [diff] [blame] | 711 | enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid) |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 712 | { |
Jouni Malinen | b01c18a | 2008-11-29 13:38:03 +0200 | [diff] [blame] | 713 | if (eap_is_wps_pbc_enrollee(&ssid->eap) || |
| 714 | eap_is_wps_pin_enrollee(&ssid->eap)) |
| 715 | return WPS_REQ_ENROLLEE; |
| 716 | else |
| 717 | return WPS_REQ_REGISTRAR; |
Jouni Malinen | fa201b6 | 2008-11-28 19:46:22 +0200 | [diff] [blame] | 718 | } |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 719 | |
| 720 | |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 721 | static void wpas_clear_wps(struct wpa_supplicant *wpa_s) |
| 722 | { |
| 723 | int id; |
Jouni Malinen | 20a0b03 | 2011-06-27 19:02:24 +0300 | [diff] [blame] | 724 | struct wpa_ssid *ssid, *remove_ssid = NULL, *prev_current; |
| 725 | |
| 726 | prev_current = wpa_s->current_ssid; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 727 | |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 728 | /* Enable the networks disabled during wpas_wps_reassoc */ |
| 729 | wpas_wps_reenable_networks(wpa_s); |
| 730 | |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 731 | eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL); |
| 732 | |
| 733 | /* Remove any existing WPS network from configuration */ |
| 734 | ssid = wpa_s->conf->ssid; |
| 735 | while (ssid) { |
Jouni Malinen | f047720 | 2008-12-18 01:06:06 +0200 | [diff] [blame] | 736 | if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) { |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 737 | if (ssid == wpa_s->current_ssid) { |
Jouni Malinen | f047720 | 2008-12-18 01:06:06 +0200 | [diff] [blame] | 738 | wpa_s->current_ssid = NULL; |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 739 | if (ssid != NULL) |
| 740 | wpas_notify_network_changed(wpa_s); |
| 741 | } |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 742 | id = ssid->id; |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 743 | remove_ssid = ssid; |
Jouni Malinen | f047720 | 2008-12-18 01:06:06 +0200 | [diff] [blame] | 744 | } else |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 745 | id = -1; |
| 746 | ssid = ssid->next; |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 747 | if (id >= 0) { |
Jouni Malinen | 20a0b03 | 2011-06-27 19:02:24 +0300 | [diff] [blame] | 748 | if (prev_current == remove_ssid) { |
| 749 | wpa_sm_set_config(wpa_s->wpa, NULL); |
| 750 | eapol_sm_notify_config(wpa_s->eapol, NULL, |
| 751 | NULL); |
| 752 | } |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 753 | wpas_notify_network_removed(wpa_s, remove_ssid); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 754 | wpa_config_remove_network(wpa_s->conf, id); |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 755 | } |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 756 | } |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 757 | |
| 758 | wpas_wps_clear_ap_info(wpa_s); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | |
| 762 | static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx) |
| 763 | { |
| 764 | struct wpa_supplicant *wpa_s = eloop_ctx; |
Ardong Chen | 014732e | 2010-09-06 18:13:18 +0300 | [diff] [blame] | 765 | wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed " |
| 766 | "out"); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 767 | wpas_clear_wps(wpa_s); |
| 768 | } |
| 769 | |
| 770 | |
| 771 | static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s, |
| 772 | int registrar, const u8 *bssid) |
| 773 | { |
| 774 | struct wpa_ssid *ssid; |
| 775 | |
| 776 | ssid = wpa_config_add_network(wpa_s->conf); |
| 777 | if (ssid == NULL) |
| 778 | return NULL; |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 779 | wpas_notify_network_added(wpa_s, ssid); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 780 | wpa_config_set_network_defaults(ssid); |
Jouni Malinen | 2ff99b3 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 781 | ssid->temporary = 1; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 782 | if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 || |
| 783 | wpa_config_set(ssid, "eap", "WSC", 0) < 0 || |
| 784 | wpa_config_set(ssid, "identity", registrar ? |
| 785 | "\"" WSC_ID_REGISTRAR "\"" : |
| 786 | "\"" WSC_ID_ENROLLEE "\"", 0) < 0) { |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 787 | wpas_notify_network_removed(wpa_s, ssid); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 788 | wpa_config_remove_network(wpa_s->conf, ssid->id); |
| 789 | return NULL; |
| 790 | } |
| 791 | |
| 792 | if (bssid) { |
Jouni Malinen | b2c5a4a | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 793 | #ifndef CONFIG_P2P |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 794 | struct wpa_bss *bss; |
Jouni Malinen | f7e5436 | 2009-12-28 16:07:15 +0200 | [diff] [blame] | 795 | int count = 0; |
Jouni Malinen | b2c5a4a | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 796 | #endif /* CONFIG_P2P */ |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 797 | |
| 798 | os_memcpy(ssid->bssid, bssid, ETH_ALEN); |
Jouni Malinen | 24c23d1 | 2008-12-20 22:55:02 +0200 | [diff] [blame] | 799 | ssid->bssid_set = 1; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 800 | |
Jouni Malinen | b2c5a4a | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 801 | /* |
| 802 | * Note: With P2P, the SSID may change at the time the WPS |
| 803 | * provisioning is started, so better not filter the AP based |
| 804 | * on the current SSID in the scan results. |
| 805 | */ |
| 806 | #ifndef CONFIG_P2P |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 807 | dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { |
| 808 | if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0) |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 809 | continue; |
| 810 | |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 811 | os_free(ssid->ssid); |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 812 | ssid->ssid = os_malloc(bss->ssid_len); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 813 | if (ssid->ssid == NULL) |
| 814 | break; |
Jouni Malinen | 59f2caa | 2010-01-02 13:36:12 +0200 | [diff] [blame] | 815 | os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len); |
| 816 | ssid->ssid_len = bss->ssid_len; |
Jouni Malinen | f7e5436 | 2009-12-28 16:07:15 +0200 | [diff] [blame] | 817 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from " |
| 818 | "scan results", |
| 819 | ssid->ssid, ssid->ssid_len); |
| 820 | count++; |
| 821 | } |
| 822 | |
| 823 | if (count > 1) { |
| 824 | wpa_printf(MSG_DEBUG, "WPS: More than one SSID found " |
| 825 | "for the AP; use wildcard"); |
| 826 | os_free(ssid->ssid); |
| 827 | ssid->ssid = NULL; |
| 828 | ssid->ssid_len = 0; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 829 | } |
Jouni Malinen | b2c5a4a | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 830 | #endif /* CONFIG_P2P */ |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 831 | } |
| 832 | |
| 833 | return ssid; |
| 834 | } |
| 835 | |
| 836 | |
| 837 | static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s, |
Jouni Malinen | 1e7fb4f | 2011-12-31 13:17:20 +0200 | [diff] [blame] | 838 | struct wpa_ssid *selected, const u8 *bssid) |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 839 | { |
| 840 | struct wpa_ssid *ssid; |
Jouni Malinen | 1e7fb4f | 2011-12-31 13:17:20 +0200 | [diff] [blame] | 841 | struct wpa_bss *bss; |
| 842 | |
| 843 | wpa_s->known_wps_freq = 0; |
| 844 | if (bssid) { |
| 845 | bss = wpa_bss_get_bssid(wpa_s, bssid); |
| 846 | if (bss && bss->freq > 0) { |
| 847 | wpa_s->known_wps_freq = 1; |
| 848 | wpa_s->wps_freq = bss->freq; |
| 849 | } |
| 850 | } |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 851 | |
Jouni Malinen | d9d87c3 | 2011-12-11 18:30:47 +0200 | [diff] [blame] | 852 | if (wpa_s->current_ssid) |
| 853 | wpa_supplicant_deauthenticate( |
| 854 | wpa_s, WLAN_REASON_DEAUTH_LEAVING); |
| 855 | |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 856 | /* Mark all other networks disabled and trigger reassociation */ |
| 857 | ssid = wpa_s->conf->ssid; |
| 858 | while (ssid) { |
Jouni Malinen | 8bac466 | 2009-09-13 20:53:32 +0300 | [diff] [blame] | 859 | int was_disabled = ssid->disabled; |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 860 | ssid->disabled_for_connect = 0; |
Jayant Sane | c2762e4 | 2011-06-23 21:25:13 +0300 | [diff] [blame] | 861 | /* |
| 862 | * In case the network object corresponds to a persistent group |
| 863 | * then do not send out network disabled signal. In addition, |
| 864 | * do not change disabled status of persistent network objects |
| 865 | * from 2 to 1 should we connect to another network. |
| 866 | */ |
| 867 | if (was_disabled != 2) { |
| 868 | ssid->disabled = ssid != selected; |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 869 | if (was_disabled != ssid->disabled) { |
| 870 | if (ssid->disabled) |
| 871 | ssid->disabled_for_connect = 1; |
Jayant Sane | c2762e4 | 2011-06-23 21:25:13 +0300 | [diff] [blame] | 872 | wpas_notify_network_enabled_changed(wpa_s, |
| 873 | ssid); |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 874 | } |
Jayant Sane | c2762e4 | 2011-06-23 21:25:13 +0300 | [diff] [blame] | 875 | } |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 876 | ssid = ssid->next; |
| 877 | } |
| 878 | wpa_s->disconnected = 0; |
| 879 | wpa_s->reassociate = 1; |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 880 | wpa_s->scan_runs = 0; |
Jouni Malinen | 0b7a25c | 2011-11-28 18:36:36 +0200 | [diff] [blame] | 881 | wpa_s->normal_scans = 0; |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 882 | wpa_s->wps_success = 0; |
| 883 | wpa_s->blacklist_cleared = 0; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 884 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 885 | } |
| 886 | |
| 887 | |
Jouni Malinen | 9fa243b | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 888 | int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 889 | int p2p_group) |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 890 | { |
| 891 | struct wpa_ssid *ssid; |
| 892 | wpas_clear_wps(wpa_s); |
| 893 | ssid = wpas_wps_add_network(wpa_s, 0, bssid); |
| 894 | if (ssid == NULL) |
| 895 | return -1; |
Jouni Malinen | 9fa243b | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 896 | ssid->temporary = 1; |
| 897 | ssid->p2p_group = p2p_group; |
Jouni Malinen | 812bf56 | 2010-09-09 07:20:28 -0700 | [diff] [blame] | 898 | #ifdef CONFIG_P2P |
Jouni Malinen | e9a7ae4 | 2010-08-05 09:15:11 -0700 | [diff] [blame] | 899 | if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) { |
| 900 | ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1); |
| 901 | if (ssid->ssid) { |
| 902 | ssid->ssid_len = wpa_s->go_params->ssid_len; |
| 903 | os_memcpy(ssid->ssid, wpa_s->go_params->ssid, |
| 904 | ssid->ssid_len); |
| 905 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP " |
| 906 | "SSID", ssid->ssid, ssid->ssid_len); |
| 907 | } |
| 908 | } |
Jouni Malinen | 812bf56 | 2010-09-09 07:20:28 -0700 | [diff] [blame] | 909 | #endif /* CONFIG_P2P */ |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 910 | wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0); |
Jouni Malinen | 42f5026 | 2010-07-22 10:24:23 -0700 | [diff] [blame] | 911 | if (wpa_s->wps_fragment_size) |
| 912 | ssid->eap.fragment_size = wpa_s->wps_fragment_size; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 913 | eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout, |
| 914 | wpa_s, NULL); |
Jouni Malinen | 1e7fb4f | 2011-12-31 13:17:20 +0200 | [diff] [blame] | 915 | wpas_wps_reassoc(wpa_s, ssid, bssid); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 916 | return 0; |
| 917 | } |
| 918 | |
| 919 | |
| 920 | int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid, |
Jouni Malinen | 3c5126a | 2010-06-26 22:49:41 -0700 | [diff] [blame] | 921 | const char *pin, int p2p_group, u16 dev_pw_id) |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 922 | { |
| 923 | struct wpa_ssid *ssid; |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 924 | char val[128]; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 925 | unsigned int rpin = 0; |
| 926 | |
| 927 | wpas_clear_wps(wpa_s); |
| 928 | ssid = wpas_wps_add_network(wpa_s, 0, bssid); |
| 929 | if (ssid == NULL) |
| 930 | return -1; |
Jouni Malinen | 9fa243b | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 931 | ssid->temporary = 1; |
| 932 | ssid->p2p_group = p2p_group; |
Jouni Malinen | 812bf56 | 2010-09-09 07:20:28 -0700 | [diff] [blame] | 933 | #ifdef CONFIG_P2P |
Jouni Malinen | e9a7ae4 | 2010-08-05 09:15:11 -0700 | [diff] [blame] | 934 | if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) { |
| 935 | ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1); |
| 936 | if (ssid->ssid) { |
| 937 | ssid->ssid_len = wpa_s->go_params->ssid_len; |
| 938 | os_memcpy(ssid->ssid, wpa_s->go_params->ssid, |
| 939 | ssid->ssid_len); |
| 940 | wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP " |
| 941 | "SSID", ssid->ssid, ssid->ssid_len); |
| 942 | } |
| 943 | } |
Jouni Malinen | 812bf56 | 2010-09-09 07:20:28 -0700 | [diff] [blame] | 944 | #endif /* CONFIG_P2P */ |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 945 | if (pin) |
Jouni Malinen | 3c5126a | 2010-06-26 22:49:41 -0700 | [diff] [blame] | 946 | os_snprintf(val, sizeof(val), "\"pin=%s dev_pw_id=%u\"", |
| 947 | pin, dev_pw_id); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 948 | else { |
| 949 | rpin = wps_generate_pin(); |
Jouni Malinen | 3c5126a | 2010-06-26 22:49:41 -0700 | [diff] [blame] | 950 | os_snprintf(val, sizeof(val), "\"pin=%08d dev_pw_id=%u\"", |
| 951 | rpin, dev_pw_id); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 952 | } |
| 953 | wpa_config_set(ssid, "phase1", val, 0); |
Jouni Malinen | 42f5026 | 2010-07-22 10:24:23 -0700 | [diff] [blame] | 954 | if (wpa_s->wps_fragment_size) |
| 955 | ssid->eap.fragment_size = wpa_s->wps_fragment_size; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 956 | eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout, |
| 957 | wpa_s, NULL); |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 958 | wpa_s->wps_ap_iter = 1; |
Jouni Malinen | 1e7fb4f | 2011-12-31 13:17:20 +0200 | [diff] [blame] | 959 | wpas_wps_reassoc(wpa_s, ssid, bssid); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 960 | return rpin; |
| 961 | } |
| 962 | |
| 963 | |
Ardong Chen | 2f9929f | 2010-09-06 20:51:06 +0300 | [diff] [blame] | 964 | /* Cancel the wps pbc/pin requests */ |
| 965 | int wpas_wps_cancel(struct wpa_supplicant *wpa_s) |
| 966 | { |
| 967 | #ifdef CONFIG_AP |
| 968 | if (wpa_s->ap_iface) { |
| 969 | wpa_printf(MSG_DEBUG, "WPS: Cancelling in AP mode"); |
| 970 | return wpa_supplicant_ap_wps_cancel(wpa_s); |
| 971 | } |
| 972 | #endif /* CONFIG_AP */ |
| 973 | |
Jouni Malinen | 476dea2 | 2012-06-06 22:07:11 +0300 | [diff] [blame] | 974 | if (wpa_s->wpa_state == WPA_SCANNING || |
| 975 | wpa_s->wpa_state == WPA_DISCONNECTED) { |
Ardong Chen | 2f9929f | 2010-09-06 20:51:06 +0300 | [diff] [blame] | 976 | wpa_printf(MSG_DEBUG, "WPS: Cancel operation - cancel scan"); |
| 977 | wpa_supplicant_cancel_scan(wpa_s); |
| 978 | wpas_clear_wps(wpa_s); |
| 979 | } else if (wpa_s->wpa_state >= WPA_ASSOCIATED) { |
| 980 | wpa_printf(MSG_DEBUG, "WPS: Cancel operation - " |
| 981 | "deauthenticate"); |
| 982 | wpa_supplicant_deauthenticate(wpa_s, |
| 983 | WLAN_REASON_DEAUTH_LEAVING); |
| 984 | wpas_clear_wps(wpa_s); |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 985 | } else { |
| 986 | wpas_wps_reenable_networks(wpa_s); |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 987 | wpas_wps_clear_ap_info(wpa_s); |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 988 | } |
Ardong Chen | 2f9929f | 2010-09-06 20:51:06 +0300 | [diff] [blame] | 989 | |
| 990 | return 0; |
| 991 | } |
| 992 | |
| 993 | |
Jouni Malinen | 116f7bb | 2009-02-26 22:10:21 +0200 | [diff] [blame] | 994 | #ifdef CONFIG_WPS_OOB |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 995 | int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type, |
Masashi Honma | e1ee6b6 | 2009-03-06 16:16:22 +0200 | [diff] [blame] | 996 | char *path, char *method, char *name) |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 997 | { |
| 998 | struct wps_context *wps = wpa_s->wps; |
Jouni Malinen | 7cbf51b | 2009-02-26 22:07:55 +0200 | [diff] [blame] | 999 | struct oob_device_data *oob_dev; |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1000 | |
Jouni Malinen | 7cbf51b | 2009-02-26 22:07:55 +0200 | [diff] [blame] | 1001 | oob_dev = wps_get_oob_device(device_type); |
| 1002 | if (oob_dev == NULL) |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1003 | return -1; |
Jouni Malinen | 7cbf51b | 2009-02-26 22:07:55 +0200 | [diff] [blame] | 1004 | oob_dev->device_path = path; |
Masashi Honma | e1ee6b6 | 2009-03-06 16:16:22 +0200 | [diff] [blame] | 1005 | oob_dev->device_name = name; |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1006 | wps->oob_conf.oob_method = wps_get_oob_method(method); |
| 1007 | |
Jouni Malinen | d5e2b2d | 2009-02-26 22:09:35 +0200 | [diff] [blame] | 1008 | if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E) { |
| 1009 | /* |
| 1010 | * Use pre-configured DH keys in order to be able to write the |
| 1011 | * key hash into the OOB file. |
| 1012 | */ |
| 1013 | wpabuf_free(wps->dh_pubkey); |
| 1014 | wpabuf_free(wps->dh_privkey); |
| 1015 | wps->dh_privkey = NULL; |
Jouni Malinen | f042122 | 2009-10-11 19:17:22 +0300 | [diff] [blame] | 1016 | wps->dh_pubkey = NULL; |
| 1017 | dh5_free(wps->dh_ctx); |
| 1018 | wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey); |
Jouni Malinen | d5e2b2d | 2009-02-26 22:09:35 +0200 | [diff] [blame] | 1019 | wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192); |
Jouni Malinen | f042122 | 2009-10-11 19:17:22 +0300 | [diff] [blame] | 1020 | if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) { |
Jouni Malinen | d5e2b2d | 2009-02-26 22:09:35 +0200 | [diff] [blame] | 1021 | wpa_printf(MSG_ERROR, "WPS: Failed to initialize " |
| 1022 | "Diffie-Hellman handshake"); |
| 1023 | return -1; |
| 1024 | } |
| 1025 | } |
| 1026 | |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1027 | if (wps->oob_conf.oob_method == OOB_METHOD_CRED) |
| 1028 | wpas_clear_wps(wpa_s); |
| 1029 | |
Jouni Malinen | 7cbf51b | 2009-02-26 22:07:55 +0200 | [diff] [blame] | 1030 | if (wps_process_oob(wps, oob_dev, 0) < 0) |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1031 | return -1; |
| 1032 | |
| 1033 | if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E || |
| 1034 | wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) && |
| 1035 | wpas_wps_start_pin(wpa_s, NULL, |
Jouni Malinen | d9c8a7c | 2010-10-06 16:40:20 +0300 | [diff] [blame] | 1036 | wpabuf_head(wps->oob_conf.dev_password), 0, |
| 1037 | DEV_PW_DEFAULT) < 0) |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1038 | return -1; |
| 1039 | |
| 1040 | return 0; |
| 1041 | } |
Jouni Malinen | 116f7bb | 2009-02-26 22:10:21 +0200 | [diff] [blame] | 1042 | #endif /* CONFIG_WPS_OOB */ |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1043 | |
| 1044 | |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1045 | int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid, |
Jouni Malinen | 52eb293 | 2009-09-06 13:58:15 +0300 | [diff] [blame] | 1046 | const char *pin, struct wps_new_ap_settings *settings) |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1047 | { |
| 1048 | struct wpa_ssid *ssid; |
Jouni Malinen | 52eb293 | 2009-09-06 13:58:15 +0300 | [diff] [blame] | 1049 | char val[200]; |
| 1050 | char *pos, *end; |
| 1051 | int res; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1052 | |
| 1053 | if (!pin) |
| 1054 | return -1; |
| 1055 | wpas_clear_wps(wpa_s); |
| 1056 | ssid = wpas_wps_add_network(wpa_s, 1, bssid); |
| 1057 | if (ssid == NULL) |
| 1058 | return -1; |
Jouni Malinen | 2ff99b3 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 1059 | ssid->temporary = 1; |
Jouni Malinen | 52eb293 | 2009-09-06 13:58:15 +0300 | [diff] [blame] | 1060 | pos = val; |
| 1061 | end = pos + sizeof(val); |
| 1062 | res = os_snprintf(pos, end - pos, "\"pin=%s", pin); |
| 1063 | if (res < 0 || res >= end - pos) |
| 1064 | return -1; |
| 1065 | pos += res; |
| 1066 | if (settings) { |
| 1067 | res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s " |
| 1068 | "new_encr=%s new_key=%s", |
| 1069 | settings->ssid_hex, settings->auth, |
| 1070 | settings->encr, settings->key_hex); |
| 1071 | if (res < 0 || res >= end - pos) |
| 1072 | return -1; |
| 1073 | pos += res; |
| 1074 | } |
| 1075 | res = os_snprintf(pos, end - pos, "\""); |
| 1076 | if (res < 0 || res >= end - pos) |
| 1077 | return -1; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1078 | wpa_config_set(ssid, "phase1", val, 0); |
Jouni Malinen | 42f5026 | 2010-07-22 10:24:23 -0700 | [diff] [blame] | 1079 | if (wpa_s->wps_fragment_size) |
| 1080 | ssid->eap.fragment_size = wpa_s->wps_fragment_size; |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1081 | eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout, |
| 1082 | wpa_s, NULL); |
Jouni Malinen | 1e7fb4f | 2011-12-31 13:17:20 +0200 | [diff] [blame] | 1083 | wpas_wps_reassoc(wpa_s, ssid, bssid); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1084 | return 0; |
| 1085 | } |
| 1086 | |
| 1087 | |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1088 | static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk, |
| 1089 | size_t psk_len) |
| 1090 | { |
| 1091 | wpa_printf(MSG_DEBUG, "WPS: Received new WPA/WPA2-PSK from WPS for " |
| 1092 | "STA " MACSTR, MAC2STR(mac_addr)); |
| 1093 | wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len); |
| 1094 | |
| 1095 | /* TODO */ |
| 1096 | |
| 1097 | return 0; |
| 1098 | } |
| 1099 | |
| 1100 | |
| 1101 | static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e, |
| 1102 | const struct wps_device_data *dev) |
| 1103 | { |
| 1104 | char uuid[40], txt[400]; |
| 1105 | int len; |
Jouni Malinen | 96750ea | 2009-11-26 11:39:29 +0200 | [diff] [blame] | 1106 | char devtype[WPS_DEV_TYPE_BUFSIZE]; |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1107 | if (uuid_bin2str(uuid_e, uuid, sizeof(uuid))) |
| 1108 | return; |
| 1109 | wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid); |
| 1110 | len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR |
Jouni Malinen | 96750ea | 2009-11-26 11:39:29 +0200 | [diff] [blame] | 1111 | " [%s|%s|%s|%s|%s|%s]", |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1112 | uuid, MAC2STR(dev->mac_addr), dev->device_name, |
| 1113 | dev->manufacturer, dev->model_name, |
| 1114 | dev->model_number, dev->serial_number, |
Jouni Malinen | 96750ea | 2009-11-26 11:39:29 +0200 | [diff] [blame] | 1115 | wps_dev_type_bin2str(dev->pri_dev_type, devtype, |
| 1116 | sizeof(devtype))); |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1117 | if (len > 0 && len < (int) sizeof(txt)) |
| 1118 | wpa_printf(MSG_INFO, "%s", txt); |
| 1119 | } |
| 1120 | |
| 1121 | |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1122 | static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id, |
| 1123 | u16 sel_reg_config_methods) |
| 1124 | { |
| 1125 | #ifdef CONFIG_WPS_ER |
| 1126 | struct wpa_supplicant *wpa_s = ctx; |
| 1127 | |
| 1128 | if (wpa_s->wps_er == NULL) |
| 1129 | return; |
Jouni Malinen | ad47411 | 2010-07-18 22:53:15 -0700 | [diff] [blame] | 1130 | wpa_printf(MSG_DEBUG, "WPS ER: SetSelectedRegistrar - sel_reg=%d " |
| 1131 | "dev_password_id=%u sel_reg_config_methods=0x%x", |
| 1132 | sel_reg, dev_passwd_id, sel_reg_config_methods); |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1133 | wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id, |
| 1134 | sel_reg_config_methods); |
| 1135 | #endif /* CONFIG_WPS_ER */ |
| 1136 | } |
| 1137 | |
| 1138 | |
Jouni Malinen | 092acb5 | 2010-10-16 12:57:47 +0300 | [diff] [blame] | 1139 | static u16 wps_fix_config_methods(u16 config_methods) |
| 1140 | { |
| 1141 | #ifdef CONFIG_WPS2 |
| 1142 | if ((config_methods & |
| 1143 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_VIRT_DISPLAY | |
| 1144 | WPS_CONFIG_PHY_DISPLAY)) == WPS_CONFIG_DISPLAY) { |
| 1145 | wpa_printf(MSG_INFO, "WPS: Converting display to " |
| 1146 | "virtual_display for WPS 2.0 compliance"); |
| 1147 | config_methods |= WPS_CONFIG_VIRT_DISPLAY; |
| 1148 | } |
| 1149 | if ((config_methods & |
| 1150 | (WPS_CONFIG_PUSHBUTTON | WPS_CONFIG_VIRT_PUSHBUTTON | |
| 1151 | WPS_CONFIG_PHY_PUSHBUTTON)) == WPS_CONFIG_PUSHBUTTON) { |
| 1152 | wpa_printf(MSG_INFO, "WPS: Converting push_button to " |
| 1153 | "virtual_push_button for WPS 2.0 compliance"); |
| 1154 | config_methods |= WPS_CONFIG_VIRT_PUSHBUTTON; |
| 1155 | } |
| 1156 | #endif /* CONFIG_WPS2 */ |
| 1157 | |
| 1158 | return config_methods; |
| 1159 | } |
| 1160 | |
| 1161 | |
Jouni Malinen | 85a821d | 2011-03-17 18:07:00 +0200 | [diff] [blame] | 1162 | static void wpas_wps_set_uuid(struct wpa_supplicant *wpa_s, |
| 1163 | struct wps_context *wps) |
| 1164 | { |
| 1165 | wpa_printf(MSG_DEBUG, "WPS: Set UUID for interface %s", wpa_s->ifname); |
| 1166 | if (is_nil_uuid(wpa_s->conf->uuid)) { |
| 1167 | struct wpa_supplicant *first; |
| 1168 | first = wpa_s->global->ifaces; |
| 1169 | while (first && first->next) |
| 1170 | first = first->next; |
| 1171 | if (first && first != wpa_s) { |
Ben Greear | 157cdad | 2012-05-10 10:56:51 +0300 | [diff] [blame] | 1172 | if (wps != wpa_s->global->ifaces->wps) |
| 1173 | os_memcpy(wps->uuid, |
| 1174 | wpa_s->global->ifaces->wps->uuid, |
| 1175 | WPS_UUID_LEN); |
Jouni Malinen | 85a821d | 2011-03-17 18:07:00 +0200 | [diff] [blame] | 1176 | wpa_hexdump(MSG_DEBUG, "WPS: UUID from the first " |
| 1177 | "interface", wps->uuid, WPS_UUID_LEN); |
| 1178 | } else { |
| 1179 | uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid); |
| 1180 | wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC " |
| 1181 | "address", wps->uuid, WPS_UUID_LEN); |
| 1182 | } |
| 1183 | } else { |
| 1184 | os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN); |
| 1185 | wpa_hexdump(MSG_DEBUG, "WPS: UUID based on configuration", |
| 1186 | wps->uuid, WPS_UUID_LEN); |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | |
Anirban Sirkhell | 71dd3b7 | 2012-04-04 00:08:57 +0300 | [diff] [blame] | 1191 | static void wpas_wps_set_vendor_ext_m1(struct wpa_supplicant *wpa_s, |
| 1192 | struct wps_context *wps) |
| 1193 | { |
| 1194 | wpabuf_free(wps->dev.vendor_ext_m1); |
| 1195 | wps->dev.vendor_ext_m1 = NULL; |
| 1196 | |
| 1197 | if (wpa_s->conf->wps_vendor_ext_m1) { |
| 1198 | wps->dev.vendor_ext_m1 = |
| 1199 | wpabuf_dup(wpa_s->conf->wps_vendor_ext_m1); |
| 1200 | if (!wps->dev.vendor_ext_m1) { |
| 1201 | wpa_printf(MSG_ERROR, "WPS: Cannot " |
| 1202 | "allocate memory for vendor_ext_m1"); |
| 1203 | } |
| 1204 | } |
| 1205 | } |
| 1206 | |
| 1207 | |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1208 | int wpas_wps_init(struct wpa_supplicant *wpa_s) |
| 1209 | { |
| 1210 | struct wps_context *wps; |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1211 | struct wps_registrar_config rcfg; |
Bharat Chakravarty | 6fb6d84 | 2011-08-31 17:53:55 +0300 | [diff] [blame] | 1212 | struct hostapd_hw_modes *modes; |
Christian Lamparter | 6bf731e | 2011-10-23 11:58:54 +0300 | [diff] [blame] | 1213 | u16 m; |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1214 | |
| 1215 | wps = os_zalloc(sizeof(*wps)); |
| 1216 | if (wps == NULL) |
| 1217 | return -1; |
| 1218 | |
| 1219 | wps->cred_cb = wpa_supplicant_wps_cred; |
Jouni Malinen | 4b68290 | 2008-12-18 21:58:42 +0200 | [diff] [blame] | 1220 | wps->event_cb = wpa_supplicant_wps_event; |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1221 | wps->cb_ctx = wpa_s; |
| 1222 | |
Jouni Malinen | 3c0b7aa | 2008-12-13 17:20:46 +0200 | [diff] [blame] | 1223 | wps->dev.device_name = wpa_s->conf->device_name; |
| 1224 | wps->dev.manufacturer = wpa_s->conf->manufacturer; |
| 1225 | wps->dev.model_name = wpa_s->conf->model_name; |
| 1226 | wps->dev.model_number = wpa_s->conf->model_number; |
| 1227 | wps->dev.serial_number = wpa_s->conf->serial_number; |
Jouni Malinen | c0e4dd9 | 2009-12-21 15:59:25 +0200 | [diff] [blame] | 1228 | wps->config_methods = |
| 1229 | wps_config_methods_str2bin(wpa_s->conf->config_methods); |
Jouni Malinen | 979b988 | 2010-07-17 20:30:49 -0700 | [diff] [blame] | 1230 | if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) == |
| 1231 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) { |
| 1232 | wpa_printf(MSG_ERROR, "WPS: Both Label and Display config " |
| 1233 | "methods are not allowed at the same time"); |
| 1234 | os_free(wps); |
| 1235 | return -1; |
| 1236 | } |
Jouni Malinen | 092acb5 | 2010-10-16 12:57:47 +0300 | [diff] [blame] | 1237 | wps->config_methods = wps_fix_config_methods(wps->config_methods); |
Bharat Chakravarty | a9355fa | 2011-09-01 15:24:45 +0300 | [diff] [blame] | 1238 | wps->dev.config_methods = wps->config_methods; |
Johannes Berg | 2f646b6 | 2011-03-17 18:50:22 +0200 | [diff] [blame] | 1239 | os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type, |
| 1240 | WPS_DEV_TYPE_LEN); |
Jean-Michel Bachot | a9e86bf | 2011-03-17 11:09:49 +0200 | [diff] [blame] | 1241 | |
Johannes Berg | 2f646b6 | 2011-03-17 18:50:22 +0200 | [diff] [blame] | 1242 | wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types; |
| 1243 | os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type, |
| 1244 | WPS_DEV_TYPE_LEN * wps->dev.num_sec_dev_types); |
Jean-Michel Bachot | a9e86bf | 2011-03-17 11:09:49 +0200 | [diff] [blame] | 1245 | |
Anirban Sirkhell | 71dd3b7 | 2012-04-04 00:08:57 +0300 | [diff] [blame] | 1246 | wpas_wps_set_vendor_ext_m1(wpa_s, wps); |
| 1247 | |
Jouni Malinen | 3c0b7aa | 2008-12-13 17:20:46 +0200 | [diff] [blame] | 1248 | wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version); |
Christian Lamparter | 6bf731e | 2011-10-23 11:58:54 +0300 | [diff] [blame] | 1249 | modes = wpa_s->hw.modes; |
Bharat Chakravarty | 6fb6d84 | 2011-08-31 17:53:55 +0300 | [diff] [blame] | 1250 | if (modes) { |
Christian Lamparter | 6bf731e | 2011-10-23 11:58:54 +0300 | [diff] [blame] | 1251 | for (m = 0; m < wpa_s->hw.num_modes; m++) { |
Bharat Chakravarty | 6fb6d84 | 2011-08-31 17:53:55 +0300 | [diff] [blame] | 1252 | if (modes[m].mode == HOSTAPD_MODE_IEEE80211B || |
| 1253 | modes[m].mode == HOSTAPD_MODE_IEEE80211G) |
| 1254 | wps->dev.rf_bands |= WPS_RF_24GHZ; |
| 1255 | else if (modes[m].mode == HOSTAPD_MODE_IEEE80211A) |
| 1256 | wps->dev.rf_bands |= WPS_RF_50GHZ; |
| 1257 | } |
Bharat Chakravarty | 6fb6d84 | 2011-08-31 17:53:55 +0300 | [diff] [blame] | 1258 | } |
| 1259 | if (wps->dev.rf_bands == 0) { |
| 1260 | /* |
| 1261 | * Default to claiming support for both bands if the driver |
| 1262 | * does not provide support for fetching supported bands. |
| 1263 | */ |
| 1264 | wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ; |
| 1265 | } |
Jouni Malinen | 398cfbf | 2008-11-28 20:44:47 +0200 | [diff] [blame] | 1266 | os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN); |
Jouni Malinen | 85a821d | 2011-03-17 18:07:00 +0200 | [diff] [blame] | 1267 | wpas_wps_set_uuid(wpa_s, wps); |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1268 | |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1269 | wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK; |
| 1270 | wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP; |
| 1271 | |
| 1272 | os_memset(&rcfg, 0, sizeof(rcfg)); |
| 1273 | rcfg.new_psk_cb = wpas_wps_new_psk_cb; |
| 1274 | rcfg.pin_needed_cb = wpas_wps_pin_needed_cb; |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1275 | rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb; |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1276 | rcfg.cb_ctx = wpa_s; |
| 1277 | |
| 1278 | wps->registrar = wps_registrar_init(wps, &rcfg); |
| 1279 | if (wps->registrar == NULL) { |
| 1280 | wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar"); |
| 1281 | os_free(wps); |
| 1282 | return -1; |
| 1283 | } |
| 1284 | |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1285 | wpa_s->wps = wps; |
| 1286 | |
| 1287 | return 0; |
| 1288 | } |
| 1289 | |
| 1290 | |
| 1291 | void wpas_wps_deinit(struct wpa_supplicant *wpa_s) |
| 1292 | { |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1293 | eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL); |
Sunil Dutt | ec947ff | 2012-10-04 21:11:04 +0300 | [diff] [blame] | 1294 | eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL); |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 1295 | wpas_wps_clear_ap_info(wpa_s); |
Jouni Malinen | fcc60db | 2008-11-29 20:59:45 +0200 | [diff] [blame] | 1296 | |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1297 | if (wpa_s->wps == NULL) |
| 1298 | return; |
| 1299 | |
Jouni Malinen | a6b6307 | 2009-11-15 22:52:17 +0200 | [diff] [blame] | 1300 | #ifdef CONFIG_WPS_ER |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1301 | wps_er_deinit(wpa_s->wps_er, NULL, NULL); |
Jouni Malinen | a6b6307 | 2009-11-15 22:52:17 +0200 | [diff] [blame] | 1302 | wpa_s->wps_er = NULL; |
| 1303 | #endif /* CONFIG_WPS_ER */ |
| 1304 | |
Jouni Malinen | c5adf52 | 2009-01-03 20:18:35 +0200 | [diff] [blame] | 1305 | wps_registrar_deinit(wpa_s->wps->registrar); |
Masashi Honma | 46bdb83 | 2009-02-26 21:57:38 +0200 | [diff] [blame] | 1306 | wpabuf_free(wpa_s->wps->dh_pubkey); |
| 1307 | wpabuf_free(wpa_s->wps->dh_privkey); |
| 1308 | wpabuf_free(wpa_s->wps->oob_conf.pubkey_hash); |
| 1309 | wpabuf_free(wpa_s->wps->oob_conf.dev_password); |
Anirban Sirkhell | 71dd3b7 | 2012-04-04 00:08:57 +0300 | [diff] [blame] | 1310 | wpabuf_free(wpa_s->wps->dev.vendor_ext_m1); |
Jouni Malinen | 116654c | 2008-11-28 20:32:13 +0200 | [diff] [blame] | 1311 | os_free(wpa_s->wps->network_key); |
| 1312 | os_free(wpa_s->wps); |
| 1313 | wpa_s->wps = NULL; |
| 1314 | } |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1315 | |
| 1316 | |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1317 | int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s, |
Jouni Malinen | 620c783 | 2012-09-02 19:56:57 +0300 | [diff] [blame] | 1318 | struct wpa_ssid *ssid, struct wpa_bss *bss) |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1319 | { |
| 1320 | struct wpabuf *wps_ie; |
| 1321 | |
| 1322 | if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS)) |
| 1323 | return -1; |
| 1324 | |
Jouni Malinen | 620c783 | 2012-09-02 19:56:57 +0300 | [diff] [blame] | 1325 | wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1326 | if (eap_is_wps_pbc_enrollee(&ssid->eap)) { |
| 1327 | if (!wps_ie) { |
| 1328 | wpa_printf(MSG_DEBUG, " skip - non-WPS AP"); |
| 1329 | return 0; |
| 1330 | } |
| 1331 | |
| 1332 | if (!wps_is_selected_pbc_registrar(wps_ie)) { |
| 1333 | wpa_printf(MSG_DEBUG, " skip - WPS AP " |
| 1334 | "without active PBC Registrar"); |
| 1335 | wpabuf_free(wps_ie); |
| 1336 | return 0; |
| 1337 | } |
| 1338 | |
| 1339 | /* TODO: overlap detection */ |
| 1340 | wpa_printf(MSG_DEBUG, " selected based on WPS IE " |
| 1341 | "(Active PBC)"); |
| 1342 | wpabuf_free(wps_ie); |
| 1343 | return 1; |
| 1344 | } |
| 1345 | |
| 1346 | if (eap_is_wps_pin_enrollee(&ssid->eap)) { |
| 1347 | if (!wps_ie) { |
| 1348 | wpa_printf(MSG_DEBUG, " skip - non-WPS AP"); |
| 1349 | return 0; |
| 1350 | } |
| 1351 | |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1352 | /* |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1353 | * Start with WPS APs that advertise our address as an |
| 1354 | * authorized MAC (v2.0) or active PIN Registrar (v1.0) and |
| 1355 | * allow any WPS AP after couple of scans since some APs do not |
| 1356 | * set Selected Registrar attribute properly when using |
| 1357 | * external Registrar. |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1358 | */ |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1359 | if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) { |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1360 | if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) { |
| 1361 | wpa_printf(MSG_DEBUG, " skip - WPS AP " |
| 1362 | "without active PIN Registrar"); |
| 1363 | wpabuf_free(wps_ie); |
| 1364 | return 0; |
| 1365 | } |
| 1366 | wpa_printf(MSG_DEBUG, " selected based on WPS IE"); |
| 1367 | } else { |
| 1368 | wpa_printf(MSG_DEBUG, " selected based on WPS IE " |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1369 | "(Authorized MAC or Active PIN)"); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1370 | } |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1371 | wpabuf_free(wps_ie); |
| 1372 | return 1; |
| 1373 | } |
| 1374 | |
| 1375 | if (wps_ie) { |
| 1376 | wpa_printf(MSG_DEBUG, " selected based on WPS IE"); |
| 1377 | wpabuf_free(wps_ie); |
| 1378 | return 1; |
| 1379 | } |
| 1380 | |
| 1381 | return -1; |
| 1382 | } |
| 1383 | |
| 1384 | |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1385 | int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s, |
| 1386 | struct wpa_ssid *ssid, |
Jouni Malinen | 620c783 | 2012-09-02 19:56:57 +0300 | [diff] [blame] | 1387 | struct wpa_bss *bss) |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1388 | { |
| 1389 | struct wpabuf *wps_ie = NULL; |
| 1390 | int ret = 0; |
| 1391 | |
| 1392 | if (eap_is_wps_pbc_enrollee(&ssid->eap)) { |
Jouni Malinen | 620c783 | 2012-09-02 19:56:57 +0300 | [diff] [blame] | 1393 | wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1394 | if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) { |
| 1395 | /* allow wildcard SSID for WPS PBC */ |
| 1396 | ret = 1; |
| 1397 | } |
| 1398 | } else if (eap_is_wps_pin_enrollee(&ssid->eap)) { |
Jouni Malinen | 620c783 | 2012-09-02 19:56:57 +0300 | [diff] [blame] | 1399 | wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1400 | if (wps_ie && |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1401 | (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) || |
Jouni Malinen | a609915 | 2009-01-23 13:10:58 +0200 | [diff] [blame] | 1402 | wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) { |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1403 | /* allow wildcard SSID for WPS PIN */ |
| 1404 | ret = 1; |
| 1405 | } |
| 1406 | } |
| 1407 | |
Jouni Malinen | 24c23d1 | 2008-12-20 22:55:02 +0200 | [diff] [blame] | 1408 | if (!ret && ssid->bssid_set && |
| 1409 | os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) { |
| 1410 | /* allow wildcard SSID due to hardcoded BSSID match */ |
| 1411 | ret = 1; |
| 1412 | } |
| 1413 | |
Jouni Malinen | 54f489b | 2010-05-26 17:16:14 +0300 | [diff] [blame] | 1414 | #ifdef CONFIG_WPS_STRICT |
| 1415 | if (wps_ie) { |
| 1416 | if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len > |
Jouni Malinen | ff28cca | 2010-09-20 14:54:22 -0700 | [diff] [blame] | 1417 | 0, bss->bssid) < 0) |
Jouni Malinen | 54f489b | 2010-05-26 17:16:14 +0300 | [diff] [blame] | 1418 | ret = 0; |
| 1419 | if (bss->beacon_ie_len) { |
| 1420 | struct wpabuf *bcn_wps; |
Jouni Malinen | 620c783 | 2012-09-02 19:56:57 +0300 | [diff] [blame] | 1421 | bcn_wps = wpa_bss_get_vendor_ie_multi_beacon( |
Jouni Malinen | 54f489b | 2010-05-26 17:16:14 +0300 | [diff] [blame] | 1422 | bss, WPS_IE_VENDOR_TYPE); |
| 1423 | if (bcn_wps == NULL) { |
| 1424 | wpa_printf(MSG_DEBUG, "WPS: Mandatory WPS IE " |
| 1425 | "missing from AP Beacon"); |
| 1426 | ret = 0; |
| 1427 | } else { |
| 1428 | if (wps_validate_beacon(wps_ie) < 0) |
| 1429 | ret = 0; |
| 1430 | wpabuf_free(bcn_wps); |
| 1431 | } |
| 1432 | } |
| 1433 | } |
| 1434 | #endif /* CONFIG_WPS_STRICT */ |
| 1435 | |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1436 | wpabuf_free(wps_ie); |
| 1437 | |
| 1438 | return ret; |
| 1439 | } |
| 1440 | |
| 1441 | |
| 1442 | int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s, |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1443 | struct wpa_bss *selected, struct wpa_ssid *ssid) |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1444 | { |
| 1445 | const u8 *sel_uuid, *uuid; |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1446 | struct wpabuf *wps_ie; |
| 1447 | int ret = 0; |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1448 | struct wpa_bss *bss; |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1449 | |
| 1450 | if (!eap_is_wps_pbc_enrollee(&ssid->eap)) |
| 1451 | return 0; |
| 1452 | |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1453 | wpa_printf(MSG_DEBUG, "WPS: Check whether PBC session overlap is " |
| 1454 | "present in scan results; selected BSSID " MACSTR, |
| 1455 | MAC2STR(selected->bssid)); |
| 1456 | |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1457 | /* Make sure that only one AP is in active PBC mode */ |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1458 | wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE); |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1459 | if (wps_ie) { |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1460 | sel_uuid = wps_get_uuid_e(wps_ie); |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1461 | wpa_hexdump(MSG_DEBUG, "WPS: UUID of the selected BSS", |
| 1462 | sel_uuid, UUID_LEN); |
| 1463 | } else { |
| 1464 | wpa_printf(MSG_DEBUG, "WPS: Selected BSS does not include " |
| 1465 | "WPS IE?!"); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1466 | sel_uuid = NULL; |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1467 | } |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1468 | |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1469 | dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1470 | struct wpabuf *ie; |
| 1471 | if (bss == selected) |
| 1472 | continue; |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1473 | ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1474 | if (!ie) |
| 1475 | continue; |
| 1476 | if (!wps_is_selected_pbc_registrar(ie)) { |
| 1477 | wpabuf_free(ie); |
| 1478 | continue; |
| 1479 | } |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1480 | wpa_printf(MSG_DEBUG, "WPS: Another BSS in active PBC mode: " |
| 1481 | MACSTR, MAC2STR(bss->bssid)); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1482 | uuid = wps_get_uuid_e(ie); |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1483 | wpa_hexdump(MSG_DEBUG, "WPS: UUID of the other BSS", |
| 1484 | uuid, UUID_LEN); |
Jouni Malinen | 44cd430 | 2008-12-21 17:28:01 +0200 | [diff] [blame] | 1485 | if (sel_uuid == NULL || uuid == NULL || |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1486 | os_memcmp(sel_uuid, uuid, UUID_LEN) != 0) { |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1487 | ret = 1; /* PBC overlap */ |
Jouni Malinen | 9647120 | 2010-09-20 15:08:52 -0700 | [diff] [blame] | 1488 | wpa_msg(wpa_s, MSG_INFO, "WPS: PBC overlap detected: " |
| 1489 | MACSTR " and " MACSTR, |
| 1490 | MAC2STR(selected->bssid), |
| 1491 | MAC2STR(bss->bssid)); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1492 | wpabuf_free(ie); |
| 1493 | break; |
| 1494 | } |
| 1495 | |
| 1496 | /* TODO: verify that this is reasonable dual-band situation */ |
Jouni Malinen | 484957a | 2008-12-15 19:50:53 +0200 | [diff] [blame] | 1497 | |
| 1498 | wpabuf_free(ie); |
Jouni Malinen | 351f09a | 2008-11-29 22:06:34 +0200 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | wpabuf_free(wps_ie); |
| 1502 | |
| 1503 | return ret; |
| 1504 | } |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1505 | |
| 1506 | |
| 1507 | void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s) |
| 1508 | { |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1509 | struct wpa_bss *bss; |
Jouni Malinen | 6c6ad81 | 2011-01-05 11:49:03 +0200 | [diff] [blame] | 1510 | unsigned int pbc = 0, auth = 0, pin = 0, wps = 0; |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1511 | |
| 1512 | if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED) |
| 1513 | return; |
| 1514 | |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1515 | dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) { |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1516 | struct wpabuf *ie; |
Jouni Malinen | 6fa81a3 | 2010-01-02 16:16:02 +0200 | [diff] [blame] | 1517 | ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE); |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1518 | if (!ie) |
| 1519 | continue; |
| 1520 | if (wps_is_selected_pbc_registrar(ie)) |
Jouni Malinen | 6c6ad81 | 2011-01-05 11:49:03 +0200 | [diff] [blame] | 1521 | pbc++; |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1522 | else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0)) |
Jouni Malinen | 6c6ad81 | 2011-01-05 11:49:03 +0200 | [diff] [blame] | 1523 | auth++; |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1524 | else if (wps_is_selected_pin_registrar(ie)) |
Jouni Malinen | 6c6ad81 | 2011-01-05 11:49:03 +0200 | [diff] [blame] | 1525 | pin++; |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1526 | else |
Jouni Malinen | 6c6ad81 | 2011-01-05 11:49:03 +0200 | [diff] [blame] | 1527 | wps++; |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1528 | wpabuf_free(ie); |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1529 | } |
Jouni Malinen | 6c6ad81 | 2011-01-05 11:49:03 +0200 | [diff] [blame] | 1530 | |
| 1531 | if (pbc) |
| 1532 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PBC); |
| 1533 | else if (auth) |
| 1534 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_AUTH); |
| 1535 | else if (pin) |
| 1536 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PIN); |
| 1537 | else if (wps) |
| 1538 | wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE); |
Jouni Malinen | a524f05 | 2008-12-15 20:09:57 +0200 | [diff] [blame] | 1539 | } |
Jouni Malinen | 24c23d1 | 2008-12-20 22:55:02 +0200 | [diff] [blame] | 1540 | |
| 1541 | |
| 1542 | int wpas_wps_searching(struct wpa_supplicant *wpa_s) |
| 1543 | { |
| 1544 | struct wpa_ssid *ssid; |
| 1545 | |
| 1546 | for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) { |
| 1547 | if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled) |
| 1548 | return 1; |
| 1549 | } |
| 1550 | |
| 1551 | return 0; |
| 1552 | } |
Jouni Malinen | 611ed49 | 2009-09-11 17:14:49 +0300 | [diff] [blame] | 1553 | |
| 1554 | |
| 1555 | int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf, |
| 1556 | char *end) |
| 1557 | { |
| 1558 | struct wpabuf *wps_ie; |
| 1559 | int ret; |
| 1560 | |
| 1561 | wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA); |
| 1562 | if (wps_ie == NULL) |
| 1563 | return 0; |
| 1564 | |
| 1565 | ret = wps_attr_text(wps_ie, buf, end); |
| 1566 | wpabuf_free(wps_ie); |
| 1567 | return ret; |
| 1568 | } |
Jouni Malinen | e9bcfeb | 2009-11-07 12:41:01 +0200 | [diff] [blame] | 1569 | |
| 1570 | |
Jouni Malinen | 0848668 | 2010-05-27 15:23:55 +0300 | [diff] [blame] | 1571 | int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter) |
Jouni Malinen | e9bcfeb | 2009-11-07 12:41:01 +0200 | [diff] [blame] | 1572 | { |
| 1573 | #ifdef CONFIG_WPS_ER |
| 1574 | if (wpa_s->wps_er) { |
Jouni Malinen | b3f371c | 2009-11-20 21:57:30 +0200 | [diff] [blame] | 1575 | wps_er_refresh(wpa_s->wps_er); |
Jouni Malinen | e9bcfeb | 2009-11-07 12:41:01 +0200 | [diff] [blame] | 1576 | return 0; |
| 1577 | } |
Jouni Malinen | 0848668 | 2010-05-27 15:23:55 +0300 | [diff] [blame] | 1578 | wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter); |
Jouni Malinen | e9bcfeb | 2009-11-07 12:41:01 +0200 | [diff] [blame] | 1579 | if (wpa_s->wps_er == NULL) |
| 1580 | return -1; |
| 1581 | return 0; |
| 1582 | #else /* CONFIG_WPS_ER */ |
| 1583 | return 0; |
| 1584 | #endif /* CONFIG_WPS_ER */ |
| 1585 | } |
| 1586 | |
| 1587 | |
| 1588 | int wpas_wps_er_stop(struct wpa_supplicant *wpa_s) |
| 1589 | { |
| 1590 | #ifdef CONFIG_WPS_ER |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1591 | wps_er_deinit(wpa_s->wps_er, NULL, NULL); |
Jouni Malinen | e9bcfeb | 2009-11-07 12:41:01 +0200 | [diff] [blame] | 1592 | wpa_s->wps_er = NULL; |
| 1593 | #endif /* CONFIG_WPS_ER */ |
| 1594 | return 0; |
| 1595 | } |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1596 | |
| 1597 | |
| 1598 | #ifdef CONFIG_WPS_ER |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1599 | int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr, |
| 1600 | const char *uuid, const char *pin) |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1601 | { |
| 1602 | u8 u[UUID_LEN]; |
| 1603 | int any = 0; |
| 1604 | |
| 1605 | if (os_strcmp(uuid, "any") == 0) |
| 1606 | any = 1; |
| 1607 | else if (uuid_str2bin(uuid, u)) |
| 1608 | return -1; |
Jouni Malinen | 31fcea9 | 2009-12-12 16:40:10 +0200 | [diff] [blame] | 1609 | return wps_registrar_add_pin(wpa_s->wps->registrar, addr, |
| 1610 | any ? NULL : u, |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1611 | (const u8 *) pin, os_strlen(pin), 300); |
| 1612 | } |
Jouni Malinen | 564cd7f | 2009-11-15 18:46:03 +0200 | [diff] [blame] | 1613 | |
| 1614 | |
| 1615 | int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid) |
| 1616 | { |
| 1617 | u8 u[UUID_LEN]; |
| 1618 | |
| 1619 | if (uuid_str2bin(uuid, u)) |
| 1620 | return -1; |
| 1621 | return wps_er_pbc(wpa_s->wps_er, u); |
| 1622 | } |
Jouni Malinen | e64dcfd | 2009-11-15 22:27:06 +0200 | [diff] [blame] | 1623 | |
| 1624 | |
| 1625 | int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid, |
| 1626 | const char *pin) |
| 1627 | { |
| 1628 | u8 u[UUID_LEN]; |
| 1629 | |
| 1630 | if (uuid_str2bin(uuid, u)) |
| 1631 | return -1; |
| 1632 | return wps_er_learn(wpa_s->wps_er, u, (const u8 *) pin, |
| 1633 | os_strlen(pin)); |
| 1634 | } |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1635 | |
| 1636 | |
Jouni Malinen | ef10f47 | 2010-10-20 13:37:01 +0300 | [diff] [blame] | 1637 | int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid, |
| 1638 | int id) |
| 1639 | { |
| 1640 | u8 u[UUID_LEN]; |
| 1641 | struct wpa_ssid *ssid; |
| 1642 | struct wps_credential cred; |
| 1643 | |
| 1644 | if (uuid_str2bin(uuid, u)) |
| 1645 | return -1; |
| 1646 | ssid = wpa_config_get_network(wpa_s->conf, id); |
| 1647 | if (ssid == NULL || ssid->ssid == NULL) |
| 1648 | return -1; |
| 1649 | |
| 1650 | os_memset(&cred, 0, sizeof(cred)); |
| 1651 | if (ssid->ssid_len > 32) |
| 1652 | return -1; |
| 1653 | os_memcpy(cred.ssid, ssid->ssid, ssid->ssid_len); |
| 1654 | cred.ssid_len = ssid->ssid_len; |
| 1655 | if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) { |
| 1656 | cred.auth_type = (ssid->proto & WPA_PROTO_RSN) ? |
| 1657 | WPS_AUTH_WPA2PSK : WPS_AUTH_WPAPSK; |
| 1658 | if (ssid->pairwise_cipher & WPA_CIPHER_CCMP) |
| 1659 | cred.encr_type = WPS_ENCR_AES; |
| 1660 | else |
| 1661 | cred.encr_type = WPS_ENCR_TKIP; |
| 1662 | if (ssid->passphrase) { |
| 1663 | cred.key_len = os_strlen(ssid->passphrase); |
| 1664 | if (cred.key_len >= 64) |
| 1665 | return -1; |
| 1666 | os_memcpy(cred.key, ssid->passphrase, cred.key_len); |
| 1667 | } else if (ssid->psk_set) { |
| 1668 | cred.key_len = 32; |
| 1669 | os_memcpy(cred.key, ssid->psk, 32); |
| 1670 | } else |
| 1671 | return -1; |
| 1672 | } else { |
| 1673 | cred.auth_type = WPS_AUTH_OPEN; |
| 1674 | cred.encr_type = WPS_ENCR_NONE; |
| 1675 | } |
| 1676 | return wps_er_set_config(wpa_s->wps_er, u, &cred); |
| 1677 | } |
| 1678 | |
| 1679 | |
Jouni Malinen | 7d6640a | 2010-05-28 00:01:48 +0300 | [diff] [blame] | 1680 | int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid, |
| 1681 | const char *pin, struct wps_new_ap_settings *settings) |
| 1682 | { |
| 1683 | u8 u[UUID_LEN]; |
| 1684 | struct wps_credential cred; |
| 1685 | size_t len; |
| 1686 | |
| 1687 | if (uuid_str2bin(uuid, u)) |
| 1688 | return -1; |
| 1689 | if (settings->ssid_hex == NULL || settings->auth == NULL || |
| 1690 | settings->encr == NULL || settings->key_hex == NULL) |
| 1691 | return -1; |
| 1692 | |
| 1693 | os_memset(&cred, 0, sizeof(cred)); |
| 1694 | len = os_strlen(settings->ssid_hex); |
| 1695 | if ((len & 1) || len > 2 * sizeof(cred.ssid) || |
| 1696 | hexstr2bin(settings->ssid_hex, cred.ssid, len / 2)) |
| 1697 | return -1; |
| 1698 | cred.ssid_len = len / 2; |
| 1699 | |
| 1700 | len = os_strlen(settings->key_hex); |
| 1701 | if ((len & 1) || len > 2 * sizeof(cred.key) || |
| 1702 | hexstr2bin(settings->key_hex, cred.key, len / 2)) |
| 1703 | return -1; |
| 1704 | cred.key_len = len / 2; |
| 1705 | |
| 1706 | if (os_strcmp(settings->auth, "OPEN") == 0) |
| 1707 | cred.auth_type = WPS_AUTH_OPEN; |
| 1708 | else if (os_strcmp(settings->auth, "WPAPSK") == 0) |
| 1709 | cred.auth_type = WPS_AUTH_WPAPSK; |
| 1710 | else if (os_strcmp(settings->auth, "WPA2PSK") == 0) |
| 1711 | cred.auth_type = WPS_AUTH_WPA2PSK; |
| 1712 | else |
| 1713 | return -1; |
| 1714 | |
| 1715 | if (os_strcmp(settings->encr, "NONE") == 0) |
| 1716 | cred.encr_type = WPS_ENCR_NONE; |
| 1717 | else if (os_strcmp(settings->encr, "WEP") == 0) |
| 1718 | cred.encr_type = WPS_ENCR_WEP; |
| 1719 | else if (os_strcmp(settings->encr, "TKIP") == 0) |
| 1720 | cred.encr_type = WPS_ENCR_TKIP; |
| 1721 | else if (os_strcmp(settings->encr, "CCMP") == 0) |
| 1722 | cred.encr_type = WPS_ENCR_AES; |
| 1723 | else |
| 1724 | return -1; |
| 1725 | |
| 1726 | return wps_er_config(wpa_s->wps_er, u, (const u8 *) pin, |
| 1727 | os_strlen(pin), &cred); |
| 1728 | } |
| 1729 | |
| 1730 | |
Jouni Malinen | 1cea09a | 2012-06-28 16:35:51 +0300 | [diff] [blame] | 1731 | #ifdef CONFIG_WPS_NFC |
| 1732 | struct wpabuf * wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s, |
| 1733 | int ndef, const char *uuid) |
| 1734 | { |
| 1735 | struct wpabuf *ret; |
| 1736 | u8 u[UUID_LEN]; |
| 1737 | |
| 1738 | if (!wpa_s->wps_er) |
| 1739 | return NULL; |
| 1740 | |
| 1741 | if (uuid_str2bin(uuid, u)) |
| 1742 | return NULL; |
| 1743 | |
| 1744 | ret = wps_er_nfc_config_token(wpa_s->wps_er, u); |
| 1745 | if (ndef && ret) { |
| 1746 | struct wpabuf *tmp; |
| 1747 | tmp = ndef_build_wifi(ret); |
| 1748 | wpabuf_free(ret); |
| 1749 | if (tmp == NULL) |
| 1750 | return NULL; |
| 1751 | ret = tmp; |
| 1752 | } |
| 1753 | |
| 1754 | return ret; |
| 1755 | } |
| 1756 | #endif /* CONFIG_WPS_NFC */ |
| 1757 | |
| 1758 | |
Ben Greear | 4c9695b | 2011-02-21 21:47:46 +0200 | [diff] [blame] | 1759 | static int callbacks_pending = 0; |
| 1760 | |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1761 | static void wpas_wps_terminate_cb(void *ctx) |
| 1762 | { |
| 1763 | wpa_printf(MSG_DEBUG, "WPS ER: Terminated"); |
Ben Greear | 4c9695b | 2011-02-21 21:47:46 +0200 | [diff] [blame] | 1764 | if (--callbacks_pending <= 0) |
| 1765 | eloop_terminate(); |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1766 | } |
Jouni Malinen | 72df2f5 | 2009-11-13 22:07:11 +0200 | [diff] [blame] | 1767 | #endif /* CONFIG_WPS_ER */ |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1768 | |
| 1769 | |
| 1770 | int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s) |
| 1771 | { |
| 1772 | #ifdef CONFIG_WPS_ER |
| 1773 | if (wpa_s->wps_er) { |
Ben Greear | 4c9695b | 2011-02-21 21:47:46 +0200 | [diff] [blame] | 1774 | callbacks_pending++; |
Jouni Malinen | 1a1bf00 | 2009-12-19 23:47:54 +0200 | [diff] [blame] | 1775 | wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s); |
| 1776 | wpa_s->wps_er = NULL; |
| 1777 | return 1; |
| 1778 | } |
| 1779 | #endif /* CONFIG_WPS_ER */ |
| 1780 | return 0; |
| 1781 | } |
Jouni Malinen | 41e650a | 2010-06-11 13:50:13 -0700 | [diff] [blame] | 1782 | |
| 1783 | |
| 1784 | int wpas_wps_in_progress(struct wpa_supplicant *wpa_s) |
| 1785 | { |
| 1786 | struct wpa_ssid *ssid; |
| 1787 | |
| 1788 | for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) { |
| 1789 | if (!ssid->disabled && ssid->key_mgmt == WPA_KEY_MGMT_WPS) |
| 1790 | return 1; |
| 1791 | } |
| 1792 | |
| 1793 | return 0; |
| 1794 | } |
Jouni Malinen | 611aea7 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 1795 | |
| 1796 | |
| 1797 | void wpas_wps_update_config(struct wpa_supplicant *wpa_s) |
| 1798 | { |
| 1799 | struct wps_context *wps = wpa_s->wps; |
| 1800 | |
| 1801 | if (wps == NULL) |
| 1802 | return; |
| 1803 | |
| 1804 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS) { |
| 1805 | wps->config_methods = wps_config_methods_str2bin( |
| 1806 | wpa_s->conf->config_methods); |
| 1807 | if ((wps->config_methods & |
| 1808 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) == |
| 1809 | (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) { |
| 1810 | wpa_printf(MSG_ERROR, "WPS: Both Label and Display " |
| 1811 | "config methods are not allowed at the " |
| 1812 | "same time"); |
| 1813 | wps->config_methods &= ~WPS_CONFIG_LABEL; |
| 1814 | } |
| 1815 | } |
Jouni Malinen | 092acb5 | 2010-10-16 12:57:47 +0300 | [diff] [blame] | 1816 | wps->config_methods = wps_fix_config_methods(wps->config_methods); |
jim1_lin | c8b245b | 2012-08-04 20:14:59 +0300 | [diff] [blame] | 1817 | wps->dev.config_methods = wps->config_methods; |
Jouni Malinen | 611aea7 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 1818 | |
Johannes Berg | 2f646b6 | 2011-03-17 18:50:22 +0200 | [diff] [blame] | 1819 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE) |
| 1820 | os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type, |
| 1821 | WPS_DEV_TYPE_LEN); |
Jouni Malinen | 611aea7 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 1822 | |
Jean-Michel Bachot | a9e86bf | 2011-03-17 11:09:49 +0200 | [diff] [blame] | 1823 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) { |
Johannes Berg | 2f646b6 | 2011-03-17 18:50:22 +0200 | [diff] [blame] | 1824 | wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types; |
| 1825 | os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type, |
| 1826 | wps->dev.num_sec_dev_types * WPS_DEV_TYPE_LEN); |
Jean-Michel Bachot | a9e86bf | 2011-03-17 11:09:49 +0200 | [diff] [blame] | 1827 | } |
| 1828 | |
Anirban Sirkhell | 71dd3b7 | 2012-04-04 00:08:57 +0300 | [diff] [blame] | 1829 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) |
| 1830 | wpas_wps_set_vendor_ext_m1(wpa_s, wps); |
| 1831 | |
Jouni Malinen | 611aea7 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 1832 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_OS_VERSION) |
| 1833 | wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version); |
| 1834 | |
Jouni Malinen | 85a821d | 2011-03-17 18:07:00 +0200 | [diff] [blame] | 1835 | if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID) |
| 1836 | wpas_wps_set_uuid(wpa_s, wps); |
Jouni Malinen | dcf788d | 2010-07-06 16:32:55 -0700 | [diff] [blame] | 1837 | |
Jouni Malinen | 1c9cb49 | 2010-07-29 17:13:11 -0700 | [diff] [blame] | 1838 | if (wpa_s->conf->changed_parameters & |
| 1839 | (CFG_CHANGED_DEVICE_NAME | CFG_CHANGED_WPS_STRING)) { |
Jouni Malinen | dcf788d | 2010-07-06 16:32:55 -0700 | [diff] [blame] | 1840 | /* Update pointers to make sure they refer current values */ |
| 1841 | wps->dev.device_name = wpa_s->conf->device_name; |
| 1842 | wps->dev.manufacturer = wpa_s->conf->manufacturer; |
| 1843 | wps->dev.model_name = wpa_s->conf->model_name; |
| 1844 | wps->dev.model_number = wpa_s->conf->model_number; |
| 1845 | wps->dev.serial_number = wpa_s->conf->serial_number; |
| 1846 | } |
Jouni Malinen | 611aea7 | 2010-07-18 14:30:24 -0700 | [diff] [blame] | 1847 | } |
Jouni Malinen | 3f2c8ba | 2012-06-27 18:56:41 +0300 | [diff] [blame] | 1848 | |
| 1849 | |
| 1850 | #ifdef CONFIG_WPS_NFC |
| 1851 | |
| 1852 | struct wpabuf * wpas_wps_nfc_token(struct wpa_supplicant *wpa_s, int ndef) |
| 1853 | { |
Jouni Malinen | bfc62fe | 2012-06-28 20:54:53 +0300 | [diff] [blame] | 1854 | return wps_nfc_token_gen(ndef, &wpa_s->conf->wps_nfc_dev_pw_id, |
| 1855 | &wpa_s->conf->wps_nfc_dh_pubkey, |
| 1856 | &wpa_s->conf->wps_nfc_dh_privkey, |
| 1857 | &wpa_s->conf->wps_nfc_dev_pw); |
Jouni Malinen | 3f2c8ba | 2012-06-27 18:56:41 +0300 | [diff] [blame] | 1858 | } |
| 1859 | |
| 1860 | |
| 1861 | int wpas_wps_start_nfc(struct wpa_supplicant *wpa_s, const u8 *bssid) |
| 1862 | { |
| 1863 | struct wps_context *wps = wpa_s->wps; |
| 1864 | char pw[32 * 2 + 1]; |
| 1865 | |
| 1866 | if (wpa_s->conf->wps_nfc_dh_pubkey == NULL || |
| 1867 | wpa_s->conf->wps_nfc_dh_privkey == NULL || |
| 1868 | wpa_s->conf->wps_nfc_dev_pw == NULL) |
| 1869 | return -1; |
| 1870 | |
| 1871 | dh5_free(wps->dh_ctx); |
| 1872 | wpabuf_free(wps->dh_pubkey); |
| 1873 | wpabuf_free(wps->dh_privkey); |
| 1874 | wps->dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey); |
| 1875 | wps->dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey); |
| 1876 | if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) { |
| 1877 | wps->dh_ctx = NULL; |
| 1878 | wpabuf_free(wps->dh_pubkey); |
| 1879 | wps->dh_pubkey = NULL; |
| 1880 | wpabuf_free(wps->dh_privkey); |
| 1881 | wps->dh_privkey = NULL; |
| 1882 | return -1; |
| 1883 | } |
| 1884 | wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey); |
| 1885 | if (wps->dh_ctx == NULL) |
| 1886 | return -1; |
| 1887 | |
| 1888 | wpa_snprintf_hex_uppercase(pw, sizeof(pw), |
| 1889 | wpabuf_head(wpa_s->conf->wps_nfc_dev_pw), |
| 1890 | wpabuf_len(wpa_s->conf->wps_nfc_dev_pw)); |
| 1891 | return wpas_wps_start_pin(wpa_s, bssid, pw, 0, |
| 1892 | wpa_s->conf->wps_nfc_dev_pw_id); |
| 1893 | } |
| 1894 | |
Jouni Malinen | d7645d2 | 2012-06-28 13:59:29 +0300 | [diff] [blame] | 1895 | |
| 1896 | static int wpas_wps_use_cred(struct wpa_supplicant *wpa_s, |
| 1897 | struct wps_parse_attr *attr) |
| 1898 | { |
| 1899 | if (wps_oob_use_cred(wpa_s->wps, attr) < 0) |
| 1900 | return -1; |
| 1901 | |
| 1902 | if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) |
| 1903 | return 0; |
| 1904 | |
| 1905 | wpa_printf(MSG_DEBUG, "WPS: Request reconnection with new network " |
| 1906 | "based on the received credential added"); |
| 1907 | wpa_s->normal_scans = 0; |
| 1908 | wpa_supplicant_reinit_autoscan(wpa_s); |
| 1909 | wpa_s->disconnected = 0; |
| 1910 | wpa_s->reassociate = 1; |
| 1911 | wpa_supplicant_req_scan(wpa_s, 0, 0); |
| 1912 | |
| 1913 | return 0; |
| 1914 | } |
| 1915 | |
| 1916 | |
Masashi Honma | 6df865f | 2012-09-15 22:02:09 -0700 | [diff] [blame] | 1917 | #ifdef CONFIG_WPS_ER |
Jouni Malinen | e6ea2a4 | 2012-06-28 17:34:46 +0300 | [diff] [blame] | 1918 | static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s, |
| 1919 | struct wps_parse_attr *attr) |
| 1920 | { |
Jouni Malinen | e6ea2a4 | 2012-06-28 17:34:46 +0300 | [diff] [blame] | 1921 | return wps_registrar_add_nfc_password_token( |
| 1922 | wpa_s->wps->registrar, attr->oob_dev_password, |
| 1923 | attr->oob_dev_password_len); |
| 1924 | } |
Masashi Honma | 6df865f | 2012-09-15 22:02:09 -0700 | [diff] [blame] | 1925 | #endif /* CONFIG_WPS_ER */ |
Jouni Malinen | e6ea2a4 | 2012-06-28 17:34:46 +0300 | [diff] [blame] | 1926 | |
| 1927 | |
Jouni Malinen | d7645d2 | 2012-06-28 13:59:29 +0300 | [diff] [blame] | 1928 | static int wpas_wps_nfc_tag_process(struct wpa_supplicant *wpa_s, |
| 1929 | const struct wpabuf *wps) |
| 1930 | { |
| 1931 | struct wps_parse_attr attr; |
| 1932 | |
| 1933 | wpa_hexdump_buf(MSG_DEBUG, "WPS: Received NFC tag payload", wps); |
| 1934 | |
| 1935 | if (wps_parse_msg(wps, &attr)) { |
| 1936 | wpa_printf(MSG_DEBUG, "WPS: Ignore invalid data from NFC tag"); |
| 1937 | return -1; |
| 1938 | } |
| 1939 | |
| 1940 | if (attr.num_cred) |
| 1941 | return wpas_wps_use_cred(wpa_s, &attr); |
| 1942 | |
Jouni Malinen | e6ea2a4 | 2012-06-28 17:34:46 +0300 | [diff] [blame] | 1943 | #ifdef CONFIG_WPS_ER |
| 1944 | if (attr.oob_dev_password) |
| 1945 | return wpas_wps_add_nfc_password_token(wpa_s, &attr); |
| 1946 | #endif /* CONFIG_WPS_ER */ |
| 1947 | |
Jouni Malinen | d7645d2 | 2012-06-28 13:59:29 +0300 | [diff] [blame] | 1948 | wpa_printf(MSG_DEBUG, "WPS: Ignore unrecognized NFC tag"); |
| 1949 | return -1; |
| 1950 | } |
| 1951 | |
| 1952 | |
| 1953 | int wpas_wps_nfc_tag_read(struct wpa_supplicant *wpa_s, |
| 1954 | const struct wpabuf *data) |
| 1955 | { |
| 1956 | const struct wpabuf *wps = data; |
| 1957 | struct wpabuf *tmp = NULL; |
| 1958 | int ret; |
| 1959 | |
| 1960 | if (wpabuf_len(data) < 4) |
| 1961 | return -1; |
| 1962 | |
| 1963 | if (*wpabuf_head_u8(data) != 0x10) { |
| 1964 | /* Assume this contains full NDEF record */ |
| 1965 | tmp = ndef_parse_wifi(data); |
| 1966 | if (tmp == NULL) { |
| 1967 | wpa_printf(MSG_DEBUG, "WPS: Could not parse NDEF"); |
| 1968 | return -1; |
| 1969 | } |
| 1970 | wps = tmp; |
| 1971 | } |
| 1972 | |
| 1973 | ret = wpas_wps_nfc_tag_process(wpa_s, wps); |
| 1974 | wpabuf_free(tmp); |
| 1975 | return ret; |
| 1976 | } |
| 1977 | |
Jouni Malinen | 3f2c8ba | 2012-06-27 18:56:41 +0300 | [diff] [blame] | 1978 | #endif /* CONFIG_WPS_NFC */ |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 1979 | |
| 1980 | |
| 1981 | extern int wpa_debug_level; |
| 1982 | |
| 1983 | static void wpas_wps_dump_ap_info(struct wpa_supplicant *wpa_s) |
| 1984 | { |
| 1985 | size_t i; |
| 1986 | struct os_time now; |
| 1987 | |
| 1988 | if (wpa_debug_level > MSG_DEBUG) |
| 1989 | return; |
| 1990 | |
| 1991 | if (wpa_s->wps_ap == NULL) |
| 1992 | return; |
| 1993 | |
| 1994 | os_get_time(&now); |
| 1995 | |
| 1996 | for (i = 0; i < wpa_s->num_wps_ap; i++) { |
| 1997 | struct wps_ap_info *ap = &wpa_s->wps_ap[i]; |
| 1998 | struct wpa_blacklist *e = wpa_blacklist_get(wpa_s, ap->bssid); |
| 1999 | |
| 2000 | wpa_printf(MSG_DEBUG, "WPS: AP[%d] " MACSTR " type=%d " |
| 2001 | "tries=%d last_attempt=%d sec ago blacklist=%d", |
| 2002 | (int) i, MAC2STR(ap->bssid), ap->type, ap->tries, |
| 2003 | ap->last_attempt.sec > 0 ? |
| 2004 | (int) now.sec - (int) ap->last_attempt.sec : -1, |
| 2005 | e ? e->count : 0); |
| 2006 | } |
| 2007 | } |
| 2008 | |
| 2009 | |
| 2010 | static struct wps_ap_info * wpas_wps_get_ap_info(struct wpa_supplicant *wpa_s, |
| 2011 | const u8 *bssid) |
| 2012 | { |
| 2013 | size_t i; |
| 2014 | |
| 2015 | if (wpa_s->wps_ap == NULL) |
| 2016 | return NULL; |
| 2017 | |
| 2018 | for (i = 0; i < wpa_s->num_wps_ap; i++) { |
| 2019 | struct wps_ap_info *ap = &wpa_s->wps_ap[i]; |
| 2020 | if (os_memcmp(ap->bssid, bssid, ETH_ALEN) == 0) |
| 2021 | return ap; |
| 2022 | } |
| 2023 | |
| 2024 | return NULL; |
| 2025 | } |
| 2026 | |
| 2027 | |
| 2028 | static void wpas_wps_update_ap_info_bss(struct wpa_supplicant *wpa_s, |
| 2029 | struct wpa_scan_res *res) |
| 2030 | { |
| 2031 | struct wpabuf *wps; |
| 2032 | enum wps_ap_info_type type; |
| 2033 | struct wps_ap_info *ap; |
| 2034 | int r; |
| 2035 | |
| 2036 | if (wpa_scan_get_vendor_ie(res, WPS_IE_VENDOR_TYPE) == NULL) |
| 2037 | return; |
| 2038 | |
| 2039 | wps = wpa_scan_get_vendor_ie_multi(res, WPS_IE_VENDOR_TYPE); |
| 2040 | if (wps == NULL) |
| 2041 | return; |
| 2042 | |
| 2043 | r = wps_is_addr_authorized(wps, wpa_s->own_addr, 1); |
| 2044 | if (r == 2) |
| 2045 | type = WPS_AP_SEL_REG_OUR; |
| 2046 | else if (r == 1) |
| 2047 | type = WPS_AP_SEL_REG; |
| 2048 | else |
| 2049 | type = WPS_AP_NOT_SEL_REG; |
| 2050 | |
| 2051 | wpabuf_free(wps); |
| 2052 | |
| 2053 | ap = wpas_wps_get_ap_info(wpa_s, res->bssid); |
| 2054 | if (ap) { |
| 2055 | if (ap->type != type) { |
| 2056 | wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR |
| 2057 | " changed type %d -> %d", |
| 2058 | MAC2STR(res->bssid), ap->type, type); |
| 2059 | ap->type = type; |
Jouni Malinen | a462036 | 2012-08-27 13:51:35 +0300 | [diff] [blame] | 2060 | if (type != WPS_AP_NOT_SEL_REG) |
| 2061 | wpa_blacklist_del(wpa_s, ap->bssid); |
Jouni Malinen | f9f0526 | 2012-08-27 13:48:11 +0300 | [diff] [blame] | 2062 | } |
| 2063 | return; |
| 2064 | } |
| 2065 | |
| 2066 | ap = os_realloc_array(wpa_s->wps_ap, wpa_s->num_wps_ap + 1, |
| 2067 | sizeof(struct wps_ap_info)); |
| 2068 | if (ap == NULL) |
| 2069 | return; |
| 2070 | |
| 2071 | wpa_s->wps_ap = ap; |
| 2072 | ap = &wpa_s->wps_ap[wpa_s->num_wps_ap]; |
| 2073 | wpa_s->num_wps_ap++; |
| 2074 | |
| 2075 | os_memset(ap, 0, sizeof(*ap)); |
| 2076 | os_memcpy(ap->bssid, res->bssid, ETH_ALEN); |
| 2077 | ap->type = type; |
| 2078 | wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR " type %d added", |
| 2079 | MAC2STR(ap->bssid), ap->type); |
| 2080 | } |
| 2081 | |
| 2082 | |
| 2083 | void wpas_wps_update_ap_info(struct wpa_supplicant *wpa_s, |
| 2084 | struct wpa_scan_results *scan_res) |
| 2085 | { |
| 2086 | size_t i; |
| 2087 | |
| 2088 | for (i = 0; i < scan_res->num; i++) |
| 2089 | wpas_wps_update_ap_info_bss(wpa_s, scan_res->res[i]); |
| 2090 | |
| 2091 | wpas_wps_dump_ap_info(wpa_s); |
| 2092 | } |
| 2093 | |
| 2094 | |
| 2095 | void wpas_wps_notify_assoc(struct wpa_supplicant *wpa_s, const u8 *bssid) |
| 2096 | { |
| 2097 | struct wps_ap_info *ap; |
| 2098 | if (!wpa_s->wps_ap_iter) |
| 2099 | return; |
| 2100 | ap = wpas_wps_get_ap_info(wpa_s, bssid); |
| 2101 | if (ap == NULL) |
| 2102 | return; |
| 2103 | ap->tries++; |
| 2104 | os_get_time(&ap->last_attempt); |
| 2105 | } |