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