blob: dd48ab7789f34a8b0849621b8634142580557556 [file] [log] [blame]
Jouni Malinenfa201b62008-11-28 19:46:22 +02001/*
2 * wpa_supplicant / WPS integration
Jouni Malinend7645d22012-06-28 13:59:29 +03003 * Copyright (c) 2008-2012, Jouni Malinen <j@w1.fi>
Jouni Malinenfa201b62008-11-28 19:46:22 +02004 *
Jouni Malinen0f3d5782012-02-11 16:46:35 +02005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Jouni Malinenfa201b62008-11-28 19:46:22 +02007 */
8
9#include "includes.h"
10
11#include "common.h"
Jouni Malinen03da66b2009-11-29 23:04:43 +020012#include "eloop.h"
13#include "uuid.h"
Jouni Malinen3f2c8ba2012-06-27 18:56:41 +030014#include "crypto/random.h"
Jouni Malinen03da66b2009-11-29 23:04:43 +020015#include "crypto/dh_group5.h"
Jouni Malinen90973fb2009-11-29 17:51:55 +020016#include "common/ieee802_11_defs.h"
17#include "common/ieee802_11_common.h"
18#include "common/wpa_common.h"
Jouni Malinen03da66b2009-11-29 23:04:43 +020019#include "common/wpa_ctrl.h"
20#include "eap_common/eap_wsc_common.h"
Jouni Malinenb01c18a2008-11-29 13:38:03 +020021#include "eap_peer/eap.h"
Jouni Malinen20a0b032011-06-27 19:02:24 +030022#include "eapol_supp/eapol_supp_sm.h"
Jouni Malinen03da66b2009-11-29 23:04:43 +020023#include "rsn_supp/wpa.h"
Jouni Malinend7645d22012-06-28 13:59:29 +030024#include "wps/wps_attr_parse.h"
Jouni Malinen03da66b2009-11-29 23:04:43 +020025#include "config.h"
Jouni Malinenfa201b62008-11-28 19:46:22 +020026#include "wpa_supplicant_i.h"
Jouni Malinen2d5b7922009-03-26 20:37:05 +020027#include "driver_i.h"
Jouni Malinen8bac4662009-09-13 20:53:32 +030028#include "notify.h"
Jouni Malinena6099152009-01-23 13:10:58 +020029#include "blacklist.h"
Jouni Malinen59f2caa2010-01-02 13:36:12 +020030#include "bss.h"
Jouni Malinen9ba9fa02010-01-03 18:48:11 +020031#include "scan.h"
Ardong Chen2f9929f2010-09-06 20:51:06 +030032#include "ap.h"
Jouni Malinene9a7ae42010-08-05 09:15:11 -070033#include "p2p/p2p.h"
Jouni Malinenb22128e2010-07-18 14:30:25 -070034#include "p2p_supplicant.h"
Jouni Malinenfa201b62008-11-28 19:46:22 +020035#include "wps_supplicant.h"
36
Jouni Malinenf7e54362009-12-28 16:07:15 +020037
Jouni Malinen31fcea92009-12-12 16:40:10 +020038#ifndef WPS_PIN_SCAN_IGNORE_SEL_REG
Jouni Malinena6099152009-01-23 13:10:58 +020039#define WPS_PIN_SCAN_IGNORE_SEL_REG 3
Jouni Malinen31fcea92009-12-12 16:40:10 +020040#endif /* WPS_PIN_SCAN_IGNORE_SEL_REG */
Jouni Malinenfa201b62008-11-28 19:46:22 +020041
Jouni Malinenfcc60db2008-11-29 20:59:45 +020042static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
Jouni Malinen469fc3a2008-12-19 22:19:41 +020043static void wpas_clear_wps(struct wpa_supplicant *wpa_s);
Jouni Malinenfcc60db2008-11-29 20:59:45 +020044
45
Jouni Malinenf9f05262012-08-27 13:48:11 +030046static 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 Malinenfa201b62008-11-28 19:46:22 +020055int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
56{
Jouni Malinena6099152009-01-23 13:10:58 +020057 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 Malinenf9f05262012-08-27 13:48:11 +030078 wpas_wps_clear_ap_info(wpa_s);
Jouni Malinenfcc60db2008-11-29 20:59:45 +020079 eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
Chao-Wen Yang449adba2011-01-13 18:04:33 +020080 if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && !wpa_s->wps_success)
81 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL);
Jouni Malinenfcc60db2008-11-29 20:59:45 +020082
Jouni Malinenfa201b62008-11-28 19:46:22 +020083 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 Malinenf981eab2010-12-22 11:33:59 +020085 int disabled = wpa_s->current_ssid->disabled;
Jouni Malinena565c232012-02-12 13:54:15 +020086 unsigned int freq = wpa_s->assoc_freq;
Jouni Malinenfa201b62008-11-28 19:46:22 +020087 wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
Jouni Malinena565c232012-02-12 13:54:15 +020088 "try to associate with the received credential "
89 "(freq=%u)", freq);
Jouni Malinenfa201b62008-11-28 19:46:22 +020090 wpa_supplicant_deauthenticate(wpa_s,
91 WLAN_REASON_DEAUTH_LEAVING);
Jouni Malinenf981eab2010-12-22 11:33:59 +020092 if (disabled) {
93 wpa_printf(MSG_DEBUG, "WPS: Current network is "
94 "disabled - wait for user to enable");
95 return 1;
96 }
Jouni Malinen17a47342010-04-11 19:06:42 +030097 wpa_s->after_wps = 5;
Jouni Malinena565c232012-02-12 13:54:15 +020098 wpa_s->wps_freq = freq;
Jouni Malinen0b7a25c2011-11-28 18:36:36 +020099 wpa_s->normal_scans = 0;
Jouni Malinenfa201b62008-11-28 19:46:22 +0200100 wpa_s->reassociate = 1;
101 wpa_supplicant_req_scan(wpa_s, 0, 0);
102 return 1;
103 }
104
Jouni Malinen47662162009-01-18 12:27:12 +0200105 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 Malinenfa201b62008-11-28 19:46:22 +0200114 return 0;
115}
116
117
Jouni Malinen7cc1b6c2009-03-05 21:39:39 +0200118static 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 Malinen59f2caa2010-01-02 13:36:12 +0200123 struct wpa_bss *bss;
Jouni Malinen7cc1b6c2009-03-05 21:39:39 +0200124 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 Malinend87e90b2011-07-15 14:21:50 +0300139 if (ssid->ssid == NULL)
140 return;
Jouni Malinen59f2caa2010-01-02 13:36:12 +0200141 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 Malinen7cc1b6c2009-03-05 21:39:39 +0200145 return;
146 }
147
Jouni Malinen59f2caa2010-01-02 13:36:12 +0200148 wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table");
149
150 ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
Jouni Malinen7cc1b6c2009-03-05 21:39:39 +0200151 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 Malinen59f2caa2010-01-02 13:36:12 +0200156 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
Jouni Malinen7cc1b6c2009-03-05 21:39:39 +0200157 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 Malinenbcbbc7a2008-11-28 20:02:32 +0200199static int wpa_supplicant_wps_cred(void *ctx,
200 const struct wps_credential *cred)
Jouni Malinenfa201b62008-11-28 19:46:22 +0200201{
202 struct wpa_supplicant *wpa_s = ctx;
203 struct wpa_ssid *ssid = wpa_s->current_ssid;
Andriy Tkachuk522b5b62009-02-18 19:58:44 +0200204 u8 key_idx = 0;
Jouni Malinen49eba5f2009-08-15 20:40:45 +0300205 u16 auth_type;
Andrii Bordunov2c4f80d2011-10-22 22:21:53 +0300206#ifdef CONFIG_WPS_REG_DISABLE_OPEN
Jouni Malinenf981eab2010-12-22 11:33:59 +0200207 int registrar = 0;
Andrii Bordunov2c4f80d2011-10-22 22:21:53 +0300208#endif /* CONFIG_WPS_REG_DISABLE_OPEN */
Jouni Malinenfa201b62008-11-28 19:46:22 +0200209
Jouni Malinen47662162009-01-18 12:27:12 +0200210 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 Malinen8bac4662009-09-13 20:53:32 +0300221
222 wpas_notify_wps_credential(wpa_s, cred);
Jouni Malinen47662162009-01-18 12:27:12 +0200223 } else
224 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED);
Jouni Malinenfa201b62008-11-28 19:46:22 +0200225
Jouni Malineneca6e0a2009-01-17 22:17:12 +0200226 wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
227 cred->cred_attr, cred->cred_attr_len);
228
Jouni Malinen47662162009-01-18 12:27:12 +0200229 if (wpa_s->conf->wps_cred_processing == 1)
230 return 0;
231
Jouni Malinen73267b92009-03-30 19:00:55 +0300232 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 Malinen49eba5f2009-08-15 20:40:45 +0300242 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 Malinenf2860772009-01-17 21:45:51 +0200253 wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for "
Jouni Malinen49eba5f2009-08-15 20:40:45 +0300254 "unsupported authentication type 0x%x",
255 auth_type);
Jouni Malinenf2860772009-01-17 21:45:51 +0200256 return 0;
257 }
258
Jouni Malinenfa201b62008-11-28 19:46:22 +0200259 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 Bordunov2c4f80d2011-10-22 22:21:53 +0300262#ifdef CONFIG_WPS_REG_DISABLE_OPEN
Jouni Malinenf981eab2010-12-22 11:33:59 +0200263 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 Bordunov2c4f80d2011-10-22 22:21:53 +0300268#endif /* CONFIG_WPS_REG_DISABLE_OPEN */
Jouni Malinenfa201b62008-11-28 19:46:22 +0200269 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 Malinencae21192012-07-25 16:18:12 +0300276 if (!ssid->p2p_group) {
Jouni Malinen2ff99b32010-07-18 14:30:24 -0700277 ssid->temporary = 0;
Jouni Malinencae21192012-07-25 16:18:12 +0300278 ssid->bssid_set = 0;
279 }
Jouni Malinen00e5e3d2012-08-26 23:01:26 +0300280 ssid->disabled_until.sec = 0;
281 ssid->disabled_until.usec = 0;
282 ssid->auth_failures = 0;
Jouni Malinenfa201b62008-11-28 19:46:22 +0200283 } 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 Malinen8bac4662009-09-13 20:53:32 +0300289 wpas_notify_network_added(wpa_s, ssid);
Jouni Malinenfa201b62008-11-28 19:46:22 +0200290 }
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 Malinenfa201b62008-11-28 19:46:22 +0200303 break;
304 case WPS_ENCR_WEP:
Andriy Tkachuk4b195a12009-02-17 10:30:43 +0200305 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 Malinenfa201b62008-11-28 19:46:22 +0200312 }
Andriy Tkachuk522b5b62009-02-18 19:58:44 +0200313 if (cred->key_idx > NUM_WEP_KEYS) {
Andriy Tkachuk4b195a12009-02-17 10:30:43 +0200314 wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key index %d",
315 cred->key_idx);
316 return -1;
317 }
Andriy Tkachuk522b5b62009-02-18 19:58:44 +0200318 if (cred->key_idx)
319 key_idx = cred->key_idx - 1;
Andriy Tkachuk4b195a12009-02-17 10:30:43 +0200320 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 Malinenfa201b62008-11-28 19:46:22 +0200335 break;
336 case WPS_ENCR_TKIP:
337 ssid->pairwise_cipher = WPA_CIPHER_TKIP;
Jouni Malinenfa201b62008-11-28 19:46:22 +0200338 break;
339 case WPS_ENCR_AES:
340 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
Jouni Malinenfa201b62008-11-28 19:46:22 +0200341 break;
342 }
343
Jouni Malinen49eba5f2009-08-15 20:40:45 +0300344 switch (auth_type) {
Jouni Malinenfa201b62008-11-28 19:46:22 +0200345 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 Malinenf981eab2010-12-22 11:33:59 +0200349#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 Malinenfa201b62008-11-28 19:46:22 +0200359 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 Malinenfa201b62008-11-28 19:46:22 +0200370 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 Bergd1c8ac82011-02-02 17:00:12 +0200386 ssid->export_keys = 1;
Jouni Malinenfa201b62008-11-28 19:46:22 +0200387 } 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 Bergd1c8ac82011-02-02 17:00:12 +0200395 ssid->export_keys = 1;
Jouni Malinenfa201b62008-11-28 19:46:22 +0200396 } 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 Malinen7cc1b6c2009-03-05 21:39:39 +0200404 wpas_wps_security_workaround(wpa_s, ssid, cred);
405
Jouni Malinenfa201b62008-11-28 19:46:22 +0200406#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 Malinenb89883a2011-02-22 12:20:16 +0200418#ifdef CONFIG_P2P
419static 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 Malinen4b682902008-12-18 21:58:42 +0200427static 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 Malinen8bac4662009-09-13 20:53:32 +0300433 wpas_notify_wps_event_m2d(wpa_s, m2d);
Jouni Malinenb89883a2011-02-22 12:20:16 +0200434#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 Malinen4b682902008-12-18 21:58:42 +0200449}
450
451
Chao-Wen Yangc5cf0a12011-01-13 17:50:59 +0200452static 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 Malinen469fc3a2008-12-19 22:19:41 +0200458static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s,
459 struct wps_event_fail *fail)
460{
Chao-Wen Yangc5cf0a12011-01-13 17:50:59 +0200461 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 Malinen545cc6a2010-10-14 20:52:31 +0300476 fail->msg, fail->config_error);
Chao-Wen Yangc5cf0a12011-01-13 17:50:59 +0200477 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 Malinen469fc3a2008-12-19 22:19:41 +0200482 wpas_clear_wps(wpa_s);
Jouni Malinen8bac4662009-09-13 20:53:32 +0300483 wpas_notify_wps_event_fail(wpa_s, fail);
Jayant Sane37345522011-06-25 11:47:04 +0300484#ifdef CONFIG_P2P
485 wpas_p2p_wps_failed(wpa_s, fail);
486#endif /* CONFIG_P2P */
Jouni Malinen469fc3a2008-12-19 22:19:41 +0200487}
488
489
Sunil Duttec947ff2012-10-04 21:11:04 +0300490static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx);
491
492static 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
508static 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 Malinenad5302a2008-12-19 22:34:18 +0200516static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s)
517{
518 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS);
Jouni Malinena6099152009-01-23 13:10:58 +0200519 wpa_s->wps_success = 1;
Jouni Malinen8bac4662009-09-13 20:53:32 +0300520 wpas_notify_wps_event_success(wpa_s);
Sunil Duttec947ff2012-10-04 21:11:04 +0300521
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 Malinenb22128e2010-07-18 14:30:25 -0700530#ifdef CONFIG_P2P
531 wpas_p2p_wps_success(wpa_s, wpa_s->bssid, 0);
532#endif /* CONFIG_P2P */
Jouni Malinenad5302a2008-12-19 22:34:18 +0200533}
534
535
Jouni Malinenb78bc3a2009-11-15 12:07:27 +0200536static 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 Malinened459472009-11-26 11:54:37 +0200540 char dev_type[WPS_DEV_TYPE_BUFSIZE];
Jouni Malinene694b342009-11-21 13:34:23 +0200541
Jouni Malinenb78bc3a2009-11-15 12:07:27 +0200542 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
Jouni Malinene694b342009-11-21 13:34:23 +0200543 if (ap->pri_dev_type)
Jouni Malinened459472009-11-26 11:54:37 +0200544 wps_dev_type_bin2str(ap->pri_dev_type, dev_type,
545 sizeof(dev_type));
Jouni Malinene694b342009-11-21 13:34:23 +0200546 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 Malinenb78bc3a2009-11-15 12:07:27 +0200552 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
561static 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
570static 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 Malinened459472009-11-26 11:54:37 +0200574 char dev_type[WPS_DEV_TYPE_BUFSIZE];
Jouni Malinenb78bc3a2009-11-15 12:07:27 +0200575
576 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
577 if (enrollee->pri_dev_type)
Jouni Malinened459472009-11-26 11:54:37 +0200578 wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type,
579 sizeof(dev_type));
Jouni Malinenb78bc3a2009-11-15 12:07:27 +0200580 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
596static 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 Malinen15dbf122010-05-27 15:24:45 +0300606static 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 Malinen3e7533b2010-10-25 21:29:22 +0300632static 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 Malinen4b682902008-12-18 21:58:42 +0200659static 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 Malinen469fc3a2008-12-19 22:19:41 +0200667 case WPS_EV_FAIL:
668 wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
669 break;
Jouni Malinenad5302a2008-12-19 22:34:18 +0200670 case WPS_EV_SUCCESS:
671 wpa_supplicant_wps_event_success(wpa_s);
672 break;
Jouni Malinen3b2cf802009-01-23 21:57:43 +0200673 case WPS_EV_PWD_AUTH_FAIL:
Jouni Malinen70d84f12010-11-17 16:46:55 +0200674#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 Malinen3b2cf802009-01-23 21:57:43 +0200678 break;
Oleg Kravtsov63330c62009-11-01 21:26:13 +0200679 case WPS_EV_PBC_OVERLAP:
680 break;
681 case WPS_EV_PBC_TIMEOUT:
682 break;
Jouni Malinenb78bc3a2009-11-15 12:07:27 +0200683 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 Malinen15dbf122010-05-27 15:24:45 +0300697 case WPS_EV_ER_AP_SETTINGS:
698 wpa_supplicant_wps_event_er_ap_settings(wpa_s,
699 &data->ap_settings);
700 break;
Jouni Malinen3e7533b2010-10-25 21:29:22 +0300701 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 Malinen32cdcf12012-01-30 17:31:06 +0200705 case WPS_EV_AP_PIN_SUCCESS:
706 break;
Jouni Malinen4b682902008-12-18 21:58:42 +0200707 }
708}
709
710
Jouni Malinenf90c86d2009-01-03 19:50:49 +0200711enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid)
Jouni Malinenfa201b62008-11-28 19:46:22 +0200712{
Jouni Malinenb01c18a2008-11-29 13:38:03 +0200713 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 Malinenfa201b62008-11-28 19:46:22 +0200718}
Jouni Malinen116654c2008-11-28 20:32:13 +0200719
720
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200721static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
722{
723 int id;
Jouni Malinen20a0b032011-06-27 19:02:24 +0300724 struct wpa_ssid *ssid, *remove_ssid = NULL, *prev_current;
725
726 prev_current = wpa_s->current_ssid;
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200727
Sunil Duttec947ff2012-10-04 21:11:04 +0300728 /* Enable the networks disabled during wpas_wps_reassoc */
729 wpas_wps_reenable_networks(wpa_s);
730
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200731 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 Malinenf0477202008-12-18 01:06:06 +0200736 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
Jouni Malinen8bac4662009-09-13 20:53:32 +0300737 if (ssid == wpa_s->current_ssid) {
Jouni Malinenf0477202008-12-18 01:06:06 +0200738 wpa_s->current_ssid = NULL;
Jouni Malinen8bac4662009-09-13 20:53:32 +0300739 if (ssid != NULL)
740 wpas_notify_network_changed(wpa_s);
741 }
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200742 id = ssid->id;
Jouni Malinen8bac4662009-09-13 20:53:32 +0300743 remove_ssid = ssid;
Jouni Malinenf0477202008-12-18 01:06:06 +0200744 } else
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200745 id = -1;
746 ssid = ssid->next;
Jouni Malinen8bac4662009-09-13 20:53:32 +0300747 if (id >= 0) {
Jouni Malinen20a0b032011-06-27 19:02:24 +0300748 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 Malinen8bac4662009-09-13 20:53:32 +0300753 wpas_notify_network_removed(wpa_s, remove_ssid);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200754 wpa_config_remove_network(wpa_s->conf, id);
Jouni Malinen8bac4662009-09-13 20:53:32 +0300755 }
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200756 }
Jouni Malinenf9f05262012-08-27 13:48:11 +0300757
758 wpas_wps_clear_ap_info(wpa_s);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200759}
760
761
762static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
763{
764 struct wpa_supplicant *wpa_s = eloop_ctx;
Ardong Chen014732e2010-09-06 18:13:18 +0300765 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed "
766 "out");
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200767 wpas_clear_wps(wpa_s);
768}
769
770
771static 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 Malinen8bac4662009-09-13 20:53:32 +0300779 wpas_notify_network_added(wpa_s, ssid);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200780 wpa_config_set_network_defaults(ssid);
Jouni Malinen2ff99b32010-07-18 14:30:24 -0700781 ssid->temporary = 1;
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200782 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 Malinen8bac4662009-09-13 20:53:32 +0300787 wpas_notify_network_removed(wpa_s, ssid);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200788 wpa_config_remove_network(wpa_s->conf, ssid->id);
789 return NULL;
790 }
791
792 if (bssid) {
Jouni Malinenb2c5a4a2010-07-18 14:30:24 -0700793#ifndef CONFIG_P2P
Jouni Malinen59f2caa2010-01-02 13:36:12 +0200794 struct wpa_bss *bss;
Jouni Malinenf7e54362009-12-28 16:07:15 +0200795 int count = 0;
Jouni Malinenb2c5a4a2010-07-18 14:30:24 -0700796#endif /* CONFIG_P2P */
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200797
798 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
Jouni Malinen24c23d12008-12-20 22:55:02 +0200799 ssid->bssid_set = 1;
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200800
Jouni Malinenb2c5a4a2010-07-18 14:30:24 -0700801 /*
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 Malinen59f2caa2010-01-02 13:36:12 +0200807 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
808 if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0)
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200809 continue;
810
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200811 os_free(ssid->ssid);
Jouni Malinen59f2caa2010-01-02 13:36:12 +0200812 ssid->ssid = os_malloc(bss->ssid_len);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200813 if (ssid->ssid == NULL)
814 break;
Jouni Malinen59f2caa2010-01-02 13:36:12 +0200815 os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
816 ssid->ssid_len = bss->ssid_len;
Jouni Malinenf7e54362009-12-28 16:07:15 +0200817 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 Malinenfcc60db2008-11-29 20:59:45 +0200829 }
Jouni Malinenb2c5a4a2010-07-18 14:30:24 -0700830#endif /* CONFIG_P2P */
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200831 }
832
833 return ssid;
834}
835
836
837static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
Jouni Malinen1e7fb4f2011-12-31 13:17:20 +0200838 struct wpa_ssid *selected, const u8 *bssid)
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200839{
840 struct wpa_ssid *ssid;
Jouni Malinen1e7fb4f2011-12-31 13:17:20 +0200841 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 Malinenfcc60db2008-11-29 20:59:45 +0200851
Jouni Malinend9d87c32011-12-11 18:30:47 +0200852 if (wpa_s->current_ssid)
853 wpa_supplicant_deauthenticate(
854 wpa_s, WLAN_REASON_DEAUTH_LEAVING);
855
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200856 /* Mark all other networks disabled and trigger reassociation */
857 ssid = wpa_s->conf->ssid;
858 while (ssid) {
Jouni Malinen8bac4662009-09-13 20:53:32 +0300859 int was_disabled = ssid->disabled;
Sunil Duttec947ff2012-10-04 21:11:04 +0300860 ssid->disabled_for_connect = 0;
Jayant Sanec2762e42011-06-23 21:25:13 +0300861 /*
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 Duttec947ff2012-10-04 21:11:04 +0300869 if (was_disabled != ssid->disabled) {
870 if (ssid->disabled)
871 ssid->disabled_for_connect = 1;
Jayant Sanec2762e42011-06-23 21:25:13 +0300872 wpas_notify_network_enabled_changed(wpa_s,
873 ssid);
Sunil Duttec947ff2012-10-04 21:11:04 +0300874 }
Jayant Sanec2762e42011-06-23 21:25:13 +0300875 }
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200876 ssid = ssid->next;
877 }
878 wpa_s->disconnected = 0;
879 wpa_s->reassociate = 1;
Jouni Malinena6099152009-01-23 13:10:58 +0200880 wpa_s->scan_runs = 0;
Jouni Malinen0b7a25c2011-11-28 18:36:36 +0200881 wpa_s->normal_scans = 0;
Jouni Malinena6099152009-01-23 13:10:58 +0200882 wpa_s->wps_success = 0;
883 wpa_s->blacklist_cleared = 0;
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200884 wpa_supplicant_req_scan(wpa_s, 0, 0);
885}
886
887
Jouni Malinen9fa243b2010-07-18 14:30:24 -0700888int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
889 int p2p_group)
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200890{
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 Malinen9fa243b2010-07-18 14:30:24 -0700896 ssid->temporary = 1;
897 ssid->p2p_group = p2p_group;
Jouni Malinen812bf562010-09-09 07:20:28 -0700898#ifdef CONFIG_P2P
Jouni Malinene9a7ae42010-08-05 09:15:11 -0700899 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 Malinen812bf562010-09-09 07:20:28 -0700909#endif /* CONFIG_P2P */
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200910 wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
Jouni Malinen42f50262010-07-22 10:24:23 -0700911 if (wpa_s->wps_fragment_size)
912 ssid->eap.fragment_size = wpa_s->wps_fragment_size;
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200913 eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
914 wpa_s, NULL);
Jouni Malinen1e7fb4f2011-12-31 13:17:20 +0200915 wpas_wps_reassoc(wpa_s, ssid, bssid);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200916 return 0;
917}
918
919
920int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
Jouni Malinen3c5126a2010-06-26 22:49:41 -0700921 const char *pin, int p2p_group, u16 dev_pw_id)
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200922{
923 struct wpa_ssid *ssid;
Masashi Honma46bdb832009-02-26 21:57:38 +0200924 char val[128];
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200925 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 Malinen9fa243b2010-07-18 14:30:24 -0700931 ssid->temporary = 1;
932 ssid->p2p_group = p2p_group;
Jouni Malinen812bf562010-09-09 07:20:28 -0700933#ifdef CONFIG_P2P
Jouni Malinene9a7ae42010-08-05 09:15:11 -0700934 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 Malinen812bf562010-09-09 07:20:28 -0700944#endif /* CONFIG_P2P */
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200945 if (pin)
Jouni Malinen3c5126a2010-06-26 22:49:41 -0700946 os_snprintf(val, sizeof(val), "\"pin=%s dev_pw_id=%u\"",
947 pin, dev_pw_id);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200948 else {
949 rpin = wps_generate_pin();
Jouni Malinen3c5126a2010-06-26 22:49:41 -0700950 os_snprintf(val, sizeof(val), "\"pin=%08d dev_pw_id=%u\"",
951 rpin, dev_pw_id);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200952 }
953 wpa_config_set(ssid, "phase1", val, 0);
Jouni Malinen42f50262010-07-22 10:24:23 -0700954 if (wpa_s->wps_fragment_size)
955 ssid->eap.fragment_size = wpa_s->wps_fragment_size;
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200956 eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
957 wpa_s, NULL);
Jouni Malinenf9f05262012-08-27 13:48:11 +0300958 wpa_s->wps_ap_iter = 1;
Jouni Malinen1e7fb4f2011-12-31 13:17:20 +0200959 wpas_wps_reassoc(wpa_s, ssid, bssid);
Jouni Malinenfcc60db2008-11-29 20:59:45 +0200960 return rpin;
961}
962
963
Ardong Chen2f9929f2010-09-06 20:51:06 +0300964/* Cancel the wps pbc/pin requests */
965int 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 Malinen476dea22012-06-06 22:07:11 +0300974 if (wpa_s->wpa_state == WPA_SCANNING ||
975 wpa_s->wpa_state == WPA_DISCONNECTED) {
Ardong Chen2f9929f2010-09-06 20:51:06 +0300976 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 Duttec947ff2012-10-04 21:11:04 +0300985 } else {
986 wpas_wps_reenable_networks(wpa_s);
Jouni Malinenf9f05262012-08-27 13:48:11 +0300987 wpas_wps_clear_ap_info(wpa_s);
Sunil Duttec947ff2012-10-04 21:11:04 +0300988 }
Ardong Chen2f9929f2010-09-06 20:51:06 +0300989
990 return 0;
991}
992
993
Jouni Malinen116f7bb2009-02-26 22:10:21 +0200994#ifdef CONFIG_WPS_OOB
Masashi Honma46bdb832009-02-26 21:57:38 +0200995int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
Masashi Honmae1ee6b62009-03-06 16:16:22 +0200996 char *path, char *method, char *name)
Masashi Honma46bdb832009-02-26 21:57:38 +0200997{
998 struct wps_context *wps = wpa_s->wps;
Jouni Malinen7cbf51b2009-02-26 22:07:55 +0200999 struct oob_device_data *oob_dev;
Masashi Honma46bdb832009-02-26 21:57:38 +02001000
Jouni Malinen7cbf51b2009-02-26 22:07:55 +02001001 oob_dev = wps_get_oob_device(device_type);
1002 if (oob_dev == NULL)
Masashi Honma46bdb832009-02-26 21:57:38 +02001003 return -1;
Jouni Malinen7cbf51b2009-02-26 22:07:55 +02001004 oob_dev->device_path = path;
Masashi Honmae1ee6b62009-03-06 16:16:22 +02001005 oob_dev->device_name = name;
Masashi Honma46bdb832009-02-26 21:57:38 +02001006 wps->oob_conf.oob_method = wps_get_oob_method(method);
1007
Jouni Malinend5e2b2d2009-02-26 22:09:35 +02001008 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 Malinenf0421222009-10-11 19:17:22 +03001016 wps->dh_pubkey = NULL;
1017 dh5_free(wps->dh_ctx);
1018 wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey);
Jouni Malinend5e2b2d2009-02-26 22:09:35 +02001019 wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
Jouni Malinenf0421222009-10-11 19:17:22 +03001020 if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) {
Jouni Malinend5e2b2d2009-02-26 22:09:35 +02001021 wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
1022 "Diffie-Hellman handshake");
1023 return -1;
1024 }
1025 }
1026
Masashi Honma46bdb832009-02-26 21:57:38 +02001027 if (wps->oob_conf.oob_method == OOB_METHOD_CRED)
1028 wpas_clear_wps(wpa_s);
1029
Jouni Malinen7cbf51b2009-02-26 22:07:55 +02001030 if (wps_process_oob(wps, oob_dev, 0) < 0)
Masashi Honma46bdb832009-02-26 21:57:38 +02001031 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 Malinend9c8a7c2010-10-06 16:40:20 +03001036 wpabuf_head(wps->oob_conf.dev_password), 0,
1037 DEV_PW_DEFAULT) < 0)
Masashi Honma46bdb832009-02-26 21:57:38 +02001038 return -1;
1039
1040 return 0;
1041}
Jouni Malinen116f7bb2009-02-26 22:10:21 +02001042#endif /* CONFIG_WPS_OOB */
Masashi Honma46bdb832009-02-26 21:57:38 +02001043
1044
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001045int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
Jouni Malinen52eb2932009-09-06 13:58:15 +03001046 const char *pin, struct wps_new_ap_settings *settings)
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001047{
1048 struct wpa_ssid *ssid;
Jouni Malinen52eb2932009-09-06 13:58:15 +03001049 char val[200];
1050 char *pos, *end;
1051 int res;
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001052
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 Malinen2ff99b32010-07-18 14:30:24 -07001059 ssid->temporary = 1;
Jouni Malinen52eb2932009-09-06 13:58:15 +03001060 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 Malinenfcc60db2008-11-29 20:59:45 +02001078 wpa_config_set(ssid, "phase1", val, 0);
Jouni Malinen42f50262010-07-22 10:24:23 -07001079 if (wpa_s->wps_fragment_size)
1080 ssid->eap.fragment_size = wpa_s->wps_fragment_size;
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001081 eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
1082 wpa_s, NULL);
Jouni Malinen1e7fb4f2011-12-31 13:17:20 +02001083 wpas_wps_reassoc(wpa_s, ssid, bssid);
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001084 return 0;
1085}
1086
1087
Jouni Malinenc5adf522009-01-03 20:18:35 +02001088static 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
1101static 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 Malinen96750ea2009-11-26 11:39:29 +02001106 char devtype[WPS_DEV_TYPE_BUFSIZE];
Jouni Malinenc5adf522009-01-03 20:18:35 +02001107 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 Malinen96750ea2009-11-26 11:39:29 +02001111 " [%s|%s|%s|%s|%s|%s]",
Jouni Malinenc5adf522009-01-03 20:18:35 +02001112 uuid, MAC2STR(dev->mac_addr), dev->device_name,
1113 dev->manufacturer, dev->model_name,
1114 dev->model_number, dev->serial_number,
Jouni Malinen96750ea2009-11-26 11:39:29 +02001115 wps_dev_type_bin2str(dev->pri_dev_type, devtype,
1116 sizeof(devtype)));
Jouni Malinenc5adf522009-01-03 20:18:35 +02001117 if (len > 0 && len < (int) sizeof(txt))
1118 wpa_printf(MSG_INFO, "%s", txt);
1119}
1120
1121
Jouni Malinen72df2f52009-11-13 22:07:11 +02001122static 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 Malinenad474112010-07-18 22:53:15 -07001130 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 Malinen72df2f52009-11-13 22:07:11 +02001133 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 Malinen092acb52010-10-16 12:57:47 +03001139static 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 Malinen85a821d2011-03-17 18:07:00 +02001162static 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 Greear157cdad2012-05-10 10:56:51 +03001172 if (wps != wpa_s->global->ifaces->wps)
1173 os_memcpy(wps->uuid,
1174 wpa_s->global->ifaces->wps->uuid,
1175 WPS_UUID_LEN);
Jouni Malinen85a821d2011-03-17 18:07:00 +02001176 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 Sirkhell71dd3b72012-04-04 00:08:57 +03001191static 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 Malinen116654c2008-11-28 20:32:13 +02001208int wpas_wps_init(struct wpa_supplicant *wpa_s)
1209{
1210 struct wps_context *wps;
Jouni Malinenc5adf522009-01-03 20:18:35 +02001211 struct wps_registrar_config rcfg;
Bharat Chakravarty6fb6d842011-08-31 17:53:55 +03001212 struct hostapd_hw_modes *modes;
Christian Lamparter6bf731e2011-10-23 11:58:54 +03001213 u16 m;
Jouni Malinen116654c2008-11-28 20:32:13 +02001214
1215 wps = os_zalloc(sizeof(*wps));
1216 if (wps == NULL)
1217 return -1;
1218
1219 wps->cred_cb = wpa_supplicant_wps_cred;
Jouni Malinen4b682902008-12-18 21:58:42 +02001220 wps->event_cb = wpa_supplicant_wps_event;
Jouni Malinen116654c2008-11-28 20:32:13 +02001221 wps->cb_ctx = wpa_s;
1222
Jouni Malinen3c0b7aa2008-12-13 17:20:46 +02001223 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 Malinenc0e4dd92009-12-21 15:59:25 +02001228 wps->config_methods =
1229 wps_config_methods_str2bin(wpa_s->conf->config_methods);
Jouni Malinen979b9882010-07-17 20:30:49 -07001230 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 Malinen092acb52010-10-16 12:57:47 +03001237 wps->config_methods = wps_fix_config_methods(wps->config_methods);
Bharat Chakravartya9355fa2011-09-01 15:24:45 +03001238 wps->dev.config_methods = wps->config_methods;
Johannes Berg2f646b62011-03-17 18:50:22 +02001239 os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
1240 WPS_DEV_TYPE_LEN);
Jean-Michel Bachota9e86bf2011-03-17 11:09:49 +02001241
Johannes Berg2f646b62011-03-17 18:50:22 +02001242 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 Bachota9e86bf2011-03-17 11:09:49 +02001245
Anirban Sirkhell71dd3b72012-04-04 00:08:57 +03001246 wpas_wps_set_vendor_ext_m1(wpa_s, wps);
1247
Jouni Malinen3c0b7aa2008-12-13 17:20:46 +02001248 wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
Christian Lamparter6bf731e2011-10-23 11:58:54 +03001249 modes = wpa_s->hw.modes;
Bharat Chakravarty6fb6d842011-08-31 17:53:55 +03001250 if (modes) {
Christian Lamparter6bf731e2011-10-23 11:58:54 +03001251 for (m = 0; m < wpa_s->hw.num_modes; m++) {
Bharat Chakravarty6fb6d842011-08-31 17:53:55 +03001252 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 Chakravarty6fb6d842011-08-31 17:53:55 +03001258 }
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 Malinen398cfbf2008-11-28 20:44:47 +02001266 os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
Jouni Malinen85a821d2011-03-17 18:07:00 +02001267 wpas_wps_set_uuid(wpa_s, wps);
Jouni Malinen116654c2008-11-28 20:32:13 +02001268
Jouni Malinenc5adf522009-01-03 20:18:35 +02001269 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 Malinen72df2f52009-11-13 22:07:11 +02001275 rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
Jouni Malinenc5adf522009-01-03 20:18:35 +02001276 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 Malinen116654c2008-11-28 20:32:13 +02001285 wpa_s->wps = wps;
1286
1287 return 0;
1288}
1289
1290
1291void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
1292{
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001293 eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
Sunil Duttec947ff2012-10-04 21:11:04 +03001294 eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL);
Jouni Malinenf9f05262012-08-27 13:48:11 +03001295 wpas_wps_clear_ap_info(wpa_s);
Jouni Malinenfcc60db2008-11-29 20:59:45 +02001296
Jouni Malinen116654c2008-11-28 20:32:13 +02001297 if (wpa_s->wps == NULL)
1298 return;
1299
Jouni Malinena6b63072009-11-15 22:52:17 +02001300#ifdef CONFIG_WPS_ER
Jouni Malinen1a1bf002009-12-19 23:47:54 +02001301 wps_er_deinit(wpa_s->wps_er, NULL, NULL);
Jouni Malinena6b63072009-11-15 22:52:17 +02001302 wpa_s->wps_er = NULL;
1303#endif /* CONFIG_WPS_ER */
1304
Jouni Malinenc5adf522009-01-03 20:18:35 +02001305 wps_registrar_deinit(wpa_s->wps->registrar);
Masashi Honma46bdb832009-02-26 21:57:38 +02001306 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 Sirkhell71dd3b72012-04-04 00:08:57 +03001310 wpabuf_free(wpa_s->wps->dev.vendor_ext_m1);
Jouni Malinen116654c2008-11-28 20:32:13 +02001311 os_free(wpa_s->wps->network_key);
1312 os_free(wpa_s->wps);
1313 wpa_s->wps = NULL;
1314}
Jouni Malinen351f09a2008-11-29 22:06:34 +02001315
1316
Jouni Malinena6099152009-01-23 13:10:58 +02001317int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
Jouni Malinen620c7832012-09-02 19:56:57 +03001318 struct wpa_ssid *ssid, struct wpa_bss *bss)
Jouni Malinen351f09a2008-11-29 22:06:34 +02001319{
1320 struct wpabuf *wps_ie;
1321
1322 if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
1323 return -1;
1324
Jouni Malinen620c7832012-09-02 19:56:57 +03001325 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
Jouni Malinen351f09a2008-11-29 22:06:34 +02001326 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 Malinena6099152009-01-23 13:10:58 +02001352 /*
Jouni Malinen31fcea92009-12-12 16:40:10 +02001353 * 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 Malinena6099152009-01-23 13:10:58 +02001358 */
Jouni Malinen31fcea92009-12-12 16:40:10 +02001359 if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) {
Jouni Malinena6099152009-01-23 13:10:58 +02001360 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 Malinen31fcea92009-12-12 16:40:10 +02001369 "(Authorized MAC or Active PIN)");
Jouni Malinen351f09a2008-11-29 22:06:34 +02001370 }
Jouni Malinen351f09a2008-11-29 22:06:34 +02001371 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 Malinena6099152009-01-23 13:10:58 +02001385int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
1386 struct wpa_ssid *ssid,
Jouni Malinen620c7832012-09-02 19:56:57 +03001387 struct wpa_bss *bss)
Jouni Malinen351f09a2008-11-29 22:06:34 +02001388{
1389 struct wpabuf *wps_ie = NULL;
1390 int ret = 0;
1391
1392 if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
Jouni Malinen620c7832012-09-02 19:56:57 +03001393 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
Jouni Malinen351f09a2008-11-29 22:06:34 +02001394 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 Malinen620c7832012-09-02 19:56:57 +03001399 wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
Jouni Malinena6099152009-01-23 13:10:58 +02001400 if (wps_ie &&
Jouni Malinen31fcea92009-12-12 16:40:10 +02001401 (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) ||
Jouni Malinena6099152009-01-23 13:10:58 +02001402 wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
Jouni Malinen351f09a2008-11-29 22:06:34 +02001403 /* allow wildcard SSID for WPS PIN */
1404 ret = 1;
1405 }
1406 }
1407
Jouni Malinen24c23d12008-12-20 22:55:02 +02001408 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 Malinen54f489b2010-05-26 17:16:14 +03001414#ifdef CONFIG_WPS_STRICT
1415 if (wps_ie) {
1416 if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len >
Jouni Malinenff28cca2010-09-20 14:54:22 -07001417 0, bss->bssid) < 0)
Jouni Malinen54f489b2010-05-26 17:16:14 +03001418 ret = 0;
1419 if (bss->beacon_ie_len) {
1420 struct wpabuf *bcn_wps;
Jouni Malinen620c7832012-09-02 19:56:57 +03001421 bcn_wps = wpa_bss_get_vendor_ie_multi_beacon(
Jouni Malinen54f489b2010-05-26 17:16:14 +03001422 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 Malinen351f09a2008-11-29 22:06:34 +02001436 wpabuf_free(wps_ie);
1437
1438 return ret;
1439}
1440
1441
1442int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001443 struct wpa_bss *selected, struct wpa_ssid *ssid)
Jouni Malinen351f09a2008-11-29 22:06:34 +02001444{
1445 const u8 *sel_uuid, *uuid;
Jouni Malinen351f09a2008-11-29 22:06:34 +02001446 struct wpabuf *wps_ie;
1447 int ret = 0;
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001448 struct wpa_bss *bss;
Jouni Malinen351f09a2008-11-29 22:06:34 +02001449
1450 if (!eap_is_wps_pbc_enrollee(&ssid->eap))
1451 return 0;
1452
Jouni Malinen96471202010-09-20 15:08:52 -07001453 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 Malinen351f09a2008-11-29 22:06:34 +02001457 /* Make sure that only one AP is in active PBC mode */
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001458 wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
Jouni Malinen96471202010-09-20 15:08:52 -07001459 if (wps_ie) {
Jouni Malinen351f09a2008-11-29 22:06:34 +02001460 sel_uuid = wps_get_uuid_e(wps_ie);
Jouni Malinen96471202010-09-20 15:08:52 -07001461 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 Malinen351f09a2008-11-29 22:06:34 +02001466 sel_uuid = NULL;
Jouni Malinen96471202010-09-20 15:08:52 -07001467 }
Jouni Malinen351f09a2008-11-29 22:06:34 +02001468
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001469 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
Jouni Malinen351f09a2008-11-29 22:06:34 +02001470 struct wpabuf *ie;
1471 if (bss == selected)
1472 continue;
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001473 ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
Jouni Malinen351f09a2008-11-29 22:06:34 +02001474 if (!ie)
1475 continue;
1476 if (!wps_is_selected_pbc_registrar(ie)) {
1477 wpabuf_free(ie);
1478 continue;
1479 }
Jouni Malinen96471202010-09-20 15:08:52 -07001480 wpa_printf(MSG_DEBUG, "WPS: Another BSS in active PBC mode: "
1481 MACSTR, MAC2STR(bss->bssid));
Jouni Malinen351f09a2008-11-29 22:06:34 +02001482 uuid = wps_get_uuid_e(ie);
Jouni Malinen96471202010-09-20 15:08:52 -07001483 wpa_hexdump(MSG_DEBUG, "WPS: UUID of the other BSS",
1484 uuid, UUID_LEN);
Jouni Malinen44cd4302008-12-21 17:28:01 +02001485 if (sel_uuid == NULL || uuid == NULL ||
Jouni Malinen96471202010-09-20 15:08:52 -07001486 os_memcmp(sel_uuid, uuid, UUID_LEN) != 0) {
Jouni Malinen351f09a2008-11-29 22:06:34 +02001487 ret = 1; /* PBC overlap */
Jouni Malinen96471202010-09-20 15:08:52 -07001488 wpa_msg(wpa_s, MSG_INFO, "WPS: PBC overlap detected: "
1489 MACSTR " and " MACSTR,
1490 MAC2STR(selected->bssid),
1491 MAC2STR(bss->bssid));
Jouni Malinen351f09a2008-11-29 22:06:34 +02001492 wpabuf_free(ie);
1493 break;
1494 }
1495
1496 /* TODO: verify that this is reasonable dual-band situation */
Jouni Malinen484957a2008-12-15 19:50:53 +02001497
1498 wpabuf_free(ie);
Jouni Malinen351f09a2008-11-29 22:06:34 +02001499 }
1500
1501 wpabuf_free(wps_ie);
1502
1503 return ret;
1504}
Jouni Malinena524f052008-12-15 20:09:57 +02001505
1506
1507void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
1508{
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001509 struct wpa_bss *bss;
Jouni Malinen6c6ad812011-01-05 11:49:03 +02001510 unsigned int pbc = 0, auth = 0, pin = 0, wps = 0;
Jouni Malinena524f052008-12-15 20:09:57 +02001511
1512 if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
1513 return;
1514
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001515 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
Jouni Malinena524f052008-12-15 20:09:57 +02001516 struct wpabuf *ie;
Jouni Malinen6fa81a32010-01-02 16:16:02 +02001517 ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
Jouni Malinena524f052008-12-15 20:09:57 +02001518 if (!ie)
1519 continue;
1520 if (wps_is_selected_pbc_registrar(ie))
Jouni Malinen6c6ad812011-01-05 11:49:03 +02001521 pbc++;
Jouni Malinen31fcea92009-12-12 16:40:10 +02001522 else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0))
Jouni Malinen6c6ad812011-01-05 11:49:03 +02001523 auth++;
Jouni Malinena524f052008-12-15 20:09:57 +02001524 else if (wps_is_selected_pin_registrar(ie))
Jouni Malinen6c6ad812011-01-05 11:49:03 +02001525 pin++;
Jouni Malinena524f052008-12-15 20:09:57 +02001526 else
Jouni Malinen6c6ad812011-01-05 11:49:03 +02001527 wps++;
Jouni Malinena524f052008-12-15 20:09:57 +02001528 wpabuf_free(ie);
Jouni Malinena524f052008-12-15 20:09:57 +02001529 }
Jouni Malinen6c6ad812011-01-05 11:49:03 +02001530
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 Malinena524f052008-12-15 20:09:57 +02001539}
Jouni Malinen24c23d12008-12-20 22:55:02 +02001540
1541
1542int 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 Malinen611ed492009-09-11 17:14:49 +03001553
1554
1555int 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 Malinene9bcfeb2009-11-07 12:41:01 +02001569
1570
Jouni Malinen08486682010-05-27 15:23:55 +03001571int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter)
Jouni Malinene9bcfeb2009-11-07 12:41:01 +02001572{
1573#ifdef CONFIG_WPS_ER
1574 if (wpa_s->wps_er) {
Jouni Malinenb3f371c2009-11-20 21:57:30 +02001575 wps_er_refresh(wpa_s->wps_er);
Jouni Malinene9bcfeb2009-11-07 12:41:01 +02001576 return 0;
1577 }
Jouni Malinen08486682010-05-27 15:23:55 +03001578 wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter);
Jouni Malinene9bcfeb2009-11-07 12:41:01 +02001579 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
1588int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
1589{
1590#ifdef CONFIG_WPS_ER
Jouni Malinen1a1bf002009-12-19 23:47:54 +02001591 wps_er_deinit(wpa_s->wps_er, NULL, NULL);
Jouni Malinene9bcfeb2009-11-07 12:41:01 +02001592 wpa_s->wps_er = NULL;
1593#endif /* CONFIG_WPS_ER */
1594 return 0;
1595}
Jouni Malinen72df2f52009-11-13 22:07:11 +02001596
1597
1598#ifdef CONFIG_WPS_ER
Jouni Malinen31fcea92009-12-12 16:40:10 +02001599int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr,
1600 const char *uuid, const char *pin)
Jouni Malinen72df2f52009-11-13 22:07:11 +02001601{
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 Malinen31fcea92009-12-12 16:40:10 +02001609 return wps_registrar_add_pin(wpa_s->wps->registrar, addr,
1610 any ? NULL : u,
Jouni Malinen72df2f52009-11-13 22:07:11 +02001611 (const u8 *) pin, os_strlen(pin), 300);
1612}
Jouni Malinen564cd7f2009-11-15 18:46:03 +02001613
1614
1615int 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 Malinene64dcfd2009-11-15 22:27:06 +02001623
1624
1625int 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 Malinen1a1bf002009-12-19 23:47:54 +02001635
1636
Jouni Malinenef10f472010-10-20 13:37:01 +03001637int 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 Malinen7d6640a2010-05-28 00:01:48 +03001680int 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 Malinen1cea09a2012-06-28 16:35:51 +03001731#ifdef CONFIG_WPS_NFC
1732struct 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 Greear4c9695b2011-02-21 21:47:46 +02001759static int callbacks_pending = 0;
1760
Jouni Malinen1a1bf002009-12-19 23:47:54 +02001761static void wpas_wps_terminate_cb(void *ctx)
1762{
1763 wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
Ben Greear4c9695b2011-02-21 21:47:46 +02001764 if (--callbacks_pending <= 0)
1765 eloop_terminate();
Jouni Malinen1a1bf002009-12-19 23:47:54 +02001766}
Jouni Malinen72df2f52009-11-13 22:07:11 +02001767#endif /* CONFIG_WPS_ER */
Jouni Malinen1a1bf002009-12-19 23:47:54 +02001768
1769
1770int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
1771{
1772#ifdef CONFIG_WPS_ER
1773 if (wpa_s->wps_er) {
Ben Greear4c9695b2011-02-21 21:47:46 +02001774 callbacks_pending++;
Jouni Malinen1a1bf002009-12-19 23:47:54 +02001775 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 Malinen41e650a2010-06-11 13:50:13 -07001782
1783
1784int 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 Malinen611aea72010-07-18 14:30:24 -07001795
1796
1797void 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 Malinen092acb52010-10-16 12:57:47 +03001816 wps->config_methods = wps_fix_config_methods(wps->config_methods);
jim1_linc8b245b2012-08-04 20:14:59 +03001817 wps->dev.config_methods = wps->config_methods;
Jouni Malinen611aea72010-07-18 14:30:24 -07001818
Johannes Berg2f646b62011-03-17 18:50:22 +02001819 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 Malinen611aea72010-07-18 14:30:24 -07001822
Jean-Michel Bachota9e86bf2011-03-17 11:09:49 +02001823 if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) {
Johannes Berg2f646b62011-03-17 18:50:22 +02001824 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 Bachota9e86bf2011-03-17 11:09:49 +02001827 }
1828
Anirban Sirkhell71dd3b72012-04-04 00:08:57 +03001829 if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION)
1830 wpas_wps_set_vendor_ext_m1(wpa_s, wps);
1831
Jouni Malinen611aea72010-07-18 14:30:24 -07001832 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 Malinen85a821d2011-03-17 18:07:00 +02001835 if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID)
1836 wpas_wps_set_uuid(wpa_s, wps);
Jouni Malinendcf788d2010-07-06 16:32:55 -07001837
Jouni Malinen1c9cb492010-07-29 17:13:11 -07001838 if (wpa_s->conf->changed_parameters &
1839 (CFG_CHANGED_DEVICE_NAME | CFG_CHANGED_WPS_STRING)) {
Jouni Malinendcf788d2010-07-06 16:32:55 -07001840 /* 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 Malinen611aea72010-07-18 14:30:24 -07001847}
Jouni Malinen3f2c8ba2012-06-27 18:56:41 +03001848
1849
1850#ifdef CONFIG_WPS_NFC
1851
1852struct wpabuf * wpas_wps_nfc_token(struct wpa_supplicant *wpa_s, int ndef)
1853{
Jouni Malinenbfc62fe2012-06-28 20:54:53 +03001854 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 Malinen3f2c8ba2012-06-27 18:56:41 +03001858}
1859
1860
1861int 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 Malinend7645d22012-06-28 13:59:29 +03001895
1896static 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 Honma6df865f2012-09-15 22:02:09 -07001917#ifdef CONFIG_WPS_ER
Jouni Malinene6ea2a42012-06-28 17:34:46 +03001918static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s,
1919 struct wps_parse_attr *attr)
1920{
Jouni Malinene6ea2a42012-06-28 17:34:46 +03001921 return wps_registrar_add_nfc_password_token(
1922 wpa_s->wps->registrar, attr->oob_dev_password,
1923 attr->oob_dev_password_len);
1924}
Masashi Honma6df865f2012-09-15 22:02:09 -07001925#endif /* CONFIG_WPS_ER */
Jouni Malinene6ea2a42012-06-28 17:34:46 +03001926
1927
Jouni Malinend7645d22012-06-28 13:59:29 +03001928static 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 Malinene6ea2a42012-06-28 17:34:46 +03001943#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 Malinend7645d22012-06-28 13:59:29 +03001948 wpa_printf(MSG_DEBUG, "WPS: Ignore unrecognized NFC tag");
1949 return -1;
1950}
1951
1952
1953int 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 Malinen3f2c8ba2012-06-27 18:56:41 +03001978#endif /* CONFIG_WPS_NFC */
Jouni Malinenf9f05262012-08-27 13:48:11 +03001979
1980
1981extern int wpa_debug_level;
1982
1983static 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
2010static 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
2028static 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 Malinena4620362012-08-27 13:51:35 +03002060 if (type != WPS_AP_NOT_SEL_REG)
2061 wpa_blacklist_del(wpa_s, ap->bssid);
Jouni Malinenf9f05262012-08-27 13:48:11 +03002062 }
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
2083void 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
2095void 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}