WPS: Use single channel scan if AP channel already known
[mech_eap.git] / wpa_supplicant / wps_supplicant.c
1 /*
2  * wpa_supplicant / WPS integration
3  * Copyright (c) 2008-2010, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16
17 #include "common.h"
18 #include "eloop.h"
19 #include "uuid.h"
20 #include "crypto/dh_group5.h"
21 #include "common/ieee802_11_defs.h"
22 #include "common/ieee802_11_common.h"
23 #include "common/wpa_common.h"
24 #include "common/wpa_ctrl.h"
25 #include "eap_common/eap_wsc_common.h"
26 #include "eap_peer/eap.h"
27 #include "eapol_supp/eapol_supp_sm.h"
28 #include "rsn_supp/wpa.h"
29 #include "config.h"
30 #include "wpa_supplicant_i.h"
31 #include "driver_i.h"
32 #include "notify.h"
33 #include "blacklist.h"
34 #include "bss.h"
35 #include "scan.h"
36 #include "ap.h"
37 #include "p2p/p2p.h"
38 #include "p2p_supplicant.h"
39 #include "wps_supplicant.h"
40
41
42 #ifndef WPS_PIN_SCAN_IGNORE_SEL_REG
43 #define WPS_PIN_SCAN_IGNORE_SEL_REG 3
44 #endif /* WPS_PIN_SCAN_IGNORE_SEL_REG */
45
46 static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
47 static void wpas_clear_wps(struct wpa_supplicant *wpa_s);
48
49
50 int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
51 {
52         if (!wpa_s->wps_success &&
53             wpa_s->current_ssid &&
54             eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) {
55                 const u8 *bssid = wpa_s->bssid;
56                 if (is_zero_ether_addr(bssid))
57                         bssid = wpa_s->pending_bssid;
58
59                 wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR
60                            " did not succeed - continue trying to find "
61                            "suitable AP", MAC2STR(bssid));
62                 wpa_blacklist_add(wpa_s, bssid);
63
64                 wpa_supplicant_deauthenticate(wpa_s,
65                                               WLAN_REASON_DEAUTH_LEAVING);
66                 wpa_s->reassociate = 1;
67                 wpa_supplicant_req_scan(wpa_s,
68                                         wpa_s->blacklist_cleared ? 5 : 0, 0);
69                 wpa_s->blacklist_cleared = 0;
70                 return 1;
71         }
72
73         eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
74         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && !wpa_s->wps_success)
75                 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL);
76
77         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
78             !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
79                 int disabled = wpa_s->current_ssid->disabled;
80                 wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
81                            "try to associate with the received credential");
82                 wpa_supplicant_deauthenticate(wpa_s,
83                                               WLAN_REASON_DEAUTH_LEAVING);
84                 if (disabled) {
85                         wpa_printf(MSG_DEBUG, "WPS: Current network is "
86                                    "disabled - wait for user to enable");
87                         return 1;
88                 }
89                 wpa_s->after_wps = 5;
90                 wpa_s->wps_freq = wpa_s->assoc_freq;
91                 wpa_s->normal_scans = 0;
92                 wpa_s->reassociate = 1;
93                 wpa_supplicant_req_scan(wpa_s, 0, 0);
94                 return 1;
95         }
96
97         if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid) {
98                 wpa_printf(MSG_DEBUG, "WPS: Registration completed - waiting "
99                            "for external credential processing");
100                 wpas_clear_wps(wpa_s);
101                 wpa_supplicant_deauthenticate(wpa_s,
102                                               WLAN_REASON_DEAUTH_LEAVING);
103                 return 1;
104         }
105
106         return 0;
107 }
108
109
110 static void wpas_wps_security_workaround(struct wpa_supplicant *wpa_s,
111                                          struct wpa_ssid *ssid,
112                                          const struct wps_credential *cred)
113 {
114         struct wpa_driver_capa capa;
115         struct wpa_bss *bss;
116         const u8 *ie;
117         struct wpa_ie_data adv;
118         int wpa2 = 0, ccmp = 0;
119
120         /*
121          * Many existing WPS APs do not know how to negotiate WPA2 or CCMP in
122          * case they are configured for mixed mode operation (WPA+WPA2 and
123          * TKIP+CCMP). Try to use scan results to figure out whether the AP
124          * actually supports stronger security and select that if the client
125          * has support for it, too.
126          */
127
128         if (wpa_drv_get_capa(wpa_s, &capa))
129                 return; /* Unknown what driver supports */
130
131         if (ssid->ssid == NULL)
132                 return;
133         bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len);
134         if (bss == NULL) {
135                 wpa_printf(MSG_DEBUG, "WPS: The AP was not found from BSS "
136                            "table - use credential as-is");
137                 return;
138         }
139
140         wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table");
141
142         ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
143         if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) {
144                 wpa2 = 1;
145                 if (adv.pairwise_cipher & WPA_CIPHER_CCMP)
146                         ccmp = 1;
147         } else {
148                 ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
149                 if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 &&
150                     adv.pairwise_cipher & WPA_CIPHER_CCMP)
151                         ccmp = 1;
152         }
153
154         if (ie == NULL && (ssid->proto & WPA_PROTO_WPA) &&
155             (ssid->pairwise_cipher & WPA_CIPHER_TKIP)) {
156                 /*
157                  * TODO: This could be the initial AP configuration and the
158                  * Beacon contents could change shortly. Should request a new
159                  * scan and delay addition of the network until the updated
160                  * scan results are available.
161                  */
162                 wpa_printf(MSG_DEBUG, "WPS: The AP did not yet advertise WPA "
163                            "support - use credential as-is");
164                 return;
165         }
166
167         if (ccmp && !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
168             (ssid->pairwise_cipher & WPA_CIPHER_TKIP) &&
169             (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
170                 wpa_printf(MSG_DEBUG, "WPS: Add CCMP into the credential "
171                            "based on scan results");
172                 if (wpa_s->conf->ap_scan == 1)
173                         ssid->pairwise_cipher |= WPA_CIPHER_CCMP;
174                 else
175                         ssid->pairwise_cipher = WPA_CIPHER_CCMP;
176         }
177
178         if (wpa2 && !(ssid->proto & WPA_PROTO_RSN) &&
179             (ssid->proto & WPA_PROTO_WPA) &&
180             (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP)) {
181                 wpa_printf(MSG_DEBUG, "WPS: Add WPA2 into the credential "
182                            "based on scan results");
183                 if (wpa_s->conf->ap_scan == 1)
184                         ssid->proto |= WPA_PROTO_RSN;
185                 else
186                         ssid->proto = WPA_PROTO_RSN;
187         }
188 }
189
190
191 static int wpa_supplicant_wps_cred(void *ctx,
192                                    const struct wps_credential *cred)
193 {
194         struct wpa_supplicant *wpa_s = ctx;
195         struct wpa_ssid *ssid = wpa_s->current_ssid;
196         u8 key_idx = 0;
197         u16 auth_type;
198 #ifdef CONFIG_WPS_REG_DISABLE_OPEN
199         int registrar = 0;
200 #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
201
202         if ((wpa_s->conf->wps_cred_processing == 1 ||
203              wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) {
204                 size_t blen = cred->cred_attr_len * 2 + 1;
205                 char *buf = os_malloc(blen);
206                 if (buf) {
207                         wpa_snprintf_hex(buf, blen,
208                                          cred->cred_attr, cred->cred_attr_len);
209                         wpa_msg(wpa_s, MSG_INFO, "%s%s",
210                                 WPS_EVENT_CRED_RECEIVED, buf);
211                         os_free(buf);
212                 }
213
214                 wpas_notify_wps_credential(wpa_s, cred);
215         } else
216                 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED);
217
218         wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
219                         cred->cred_attr, cred->cred_attr_len);
220
221         if (wpa_s->conf->wps_cred_processing == 1)
222                 return 0;
223
224         wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
225         wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
226                    cred->auth_type);
227         wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
228         wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
229         wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
230                         cred->key, cred->key_len);
231         wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
232                    MAC2STR(cred->mac_addr));
233
234         auth_type = cred->auth_type;
235         if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
236                 wpa_printf(MSG_DEBUG, "WPS: Workaround - convert mixed-mode "
237                            "auth_type into WPA2PSK");
238                 auth_type = WPS_AUTH_WPA2PSK;
239         }
240
241         if (auth_type != WPS_AUTH_OPEN &&
242             auth_type != WPS_AUTH_SHARED &&
243             auth_type != WPS_AUTH_WPAPSK &&
244             auth_type != WPS_AUTH_WPA2PSK) {
245                 wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for "
246                            "unsupported authentication type 0x%x",
247                            auth_type);
248                 return 0;
249         }
250
251         if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
252                 wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based "
253                            "on the received credential");
254 #ifdef CONFIG_WPS_REG_DISABLE_OPEN
255                 if (ssid->eap.identity &&
256                     ssid->eap.identity_len == WSC_ID_REGISTRAR_LEN &&
257                     os_memcmp(ssid->eap.identity, WSC_ID_REGISTRAR,
258                               WSC_ID_REGISTRAR_LEN) == 0)
259                         registrar = 1;
260 #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
261                 os_free(ssid->eap.identity);
262                 ssid->eap.identity = NULL;
263                 ssid->eap.identity_len = 0;
264                 os_free(ssid->eap.phase1);
265                 ssid->eap.phase1 = NULL;
266                 os_free(ssid->eap.eap_methods);
267                 ssid->eap.eap_methods = NULL;
268                 if (!ssid->p2p_group)
269                         ssid->temporary = 0;
270         } else {
271                 wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the "
272                            "received credential");
273                 ssid = wpa_config_add_network(wpa_s->conf);
274                 if (ssid == NULL)
275                         return -1;
276                 wpas_notify_network_added(wpa_s, ssid);
277         }
278
279         wpa_config_set_network_defaults(ssid);
280
281         os_free(ssid->ssid);
282         ssid->ssid = os_malloc(cred->ssid_len);
283         if (ssid->ssid) {
284                 os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len);
285                 ssid->ssid_len = cred->ssid_len;
286         }
287
288         switch (cred->encr_type) {
289         case WPS_ENCR_NONE:
290                 break;
291         case WPS_ENCR_WEP:
292                 if (cred->key_len <= 0)
293                         break;
294                 if (cred->key_len != 5 && cred->key_len != 13 &&
295                     cred->key_len != 10 && cred->key_len != 26) {
296                         wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key length "
297                                    "%lu", (unsigned long) cred->key_len);
298                         return -1;
299                 }
300                 if (cred->key_idx > NUM_WEP_KEYS) {
301                         wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key index %d",
302                                    cred->key_idx);
303                         return -1;
304                 }
305                 if (cred->key_idx)
306                         key_idx = cred->key_idx - 1;
307                 if (cred->key_len == 10 || cred->key_len == 26) {
308                         if (hexstr2bin((char *) cred->key,
309                                        ssid->wep_key[key_idx],
310                                        cred->key_len / 2) < 0) {
311                                 wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key "
312                                            "%d", key_idx);
313                                 return -1;
314                         }
315                         ssid->wep_key_len[key_idx] = cred->key_len / 2;
316                 } else {
317                         os_memcpy(ssid->wep_key[key_idx], cred->key,
318                                   cred->key_len);
319                         ssid->wep_key_len[key_idx] = cred->key_len;
320                 }
321                 ssid->wep_tx_keyidx = key_idx;
322                 break;
323         case WPS_ENCR_TKIP:
324                 ssid->pairwise_cipher = WPA_CIPHER_TKIP;
325                 break;
326         case WPS_ENCR_AES:
327                 ssid->pairwise_cipher = WPA_CIPHER_CCMP;
328                 break;
329         }
330
331         switch (auth_type) {
332         case WPS_AUTH_OPEN:
333                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
334                 ssid->key_mgmt = WPA_KEY_MGMT_NONE;
335                 ssid->proto = 0;
336 #ifdef CONFIG_WPS_REG_DISABLE_OPEN
337                 if (registrar) {
338                         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OPEN_NETWORK
339                                 "id=%d - Credentials for an open "
340                                 "network disabled by default - use "
341                                 "'select_network %d' to enable",
342                                 ssid->id, ssid->id);
343                         ssid->disabled = 1;
344                 }
345 #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
346                 break;
347         case WPS_AUTH_SHARED:
348                 ssid->auth_alg = WPA_AUTH_ALG_SHARED;
349                 ssid->key_mgmt = WPA_KEY_MGMT_NONE;
350                 ssid->proto = 0;
351                 break;
352         case WPS_AUTH_WPAPSK:
353                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
354                 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
355                 ssid->proto = WPA_PROTO_WPA;
356                 break;
357         case WPS_AUTH_WPA:
358                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
359                 ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
360                 ssid->proto = WPA_PROTO_WPA;
361                 break;
362         case WPS_AUTH_WPA2:
363                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
364                 ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
365                 ssid->proto = WPA_PROTO_RSN;
366                 break;
367         case WPS_AUTH_WPA2PSK:
368                 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
369                 ssid->key_mgmt = WPA_KEY_MGMT_PSK;
370                 ssid->proto = WPA_PROTO_RSN;
371                 break;
372         }
373
374         if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) {
375                 if (cred->key_len == 2 * PMK_LEN) {
376                         if (hexstr2bin((const char *) cred->key, ssid->psk,
377                                        PMK_LEN)) {
378                                 wpa_printf(MSG_ERROR, "WPS: Invalid Network "
379                                            "Key");
380                                 return -1;
381                         }
382                         ssid->psk_set = 1;
383                         ssid->export_keys = 1;
384                 } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) {
385                         os_free(ssid->passphrase);
386                         ssid->passphrase = os_malloc(cred->key_len + 1);
387                         if (ssid->passphrase == NULL)
388                                 return -1;
389                         os_memcpy(ssid->passphrase, cred->key, cred->key_len);
390                         ssid->passphrase[cred->key_len] = '\0';
391                         wpa_config_update_psk(ssid);
392                         ssid->export_keys = 1;
393                 } else {
394                         wpa_printf(MSG_ERROR, "WPS: Invalid Network Key "
395                                    "length %lu",
396                                    (unsigned long) cred->key_len);
397                         return -1;
398                 }
399         }
400
401         wpas_wps_security_workaround(wpa_s, ssid, cred);
402
403 #ifndef CONFIG_NO_CONFIG_WRITE
404         if (wpa_s->conf->update_config &&
405             wpa_config_write(wpa_s->confname, wpa_s->conf)) {
406                 wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration");
407                 return -1;
408         }
409 #endif /* CONFIG_NO_CONFIG_WRITE */
410
411         return 0;
412 }
413
414
415 #ifdef CONFIG_P2P
416 static void wpas_wps_pbc_overlap_cb(void *eloop_ctx, void *timeout_ctx)
417 {
418         struct wpa_supplicant *wpa_s = eloop_ctx;
419         wpas_p2p_notif_pbc_overlap(wpa_s);
420 }
421 #endif /* CONFIG_P2P */
422
423
424 static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s,
425                                          struct wps_event_m2d *m2d)
426 {
427         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D
428                 "dev_password_id=%d config_error=%d",
429                 m2d->dev_password_id, m2d->config_error);
430         wpas_notify_wps_event_m2d(wpa_s, m2d);
431 #ifdef CONFIG_P2P
432         if (wpa_s->parent && wpa_s->parent != wpa_s) {
433                 wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_M2D
434                         "dev_password_id=%d config_error=%d",
435                         m2d->dev_password_id, m2d->config_error);
436         }
437         if (m2d->config_error == WPS_CFG_MULTIPLE_PBC_DETECTED) {
438                 /*
439                  * Notify P2P from eloop timeout to avoid issues with the
440                  * interface getting removed while processing a message.
441                  */
442                 eloop_register_timeout(0, 0, wpas_wps_pbc_overlap_cb, wpa_s,
443                                        NULL);
444         }
445 #endif /* CONFIG_P2P */
446 }
447
448
449 static const char * wps_event_fail_reason[NUM_WPS_EI_VALUES] = {
450         "No Error", /* WPS_EI_NO_ERROR */
451         "TKIP Only Prohibited", /* WPS_EI_SECURITY_TKIP_ONLY_PROHIBITED */
452         "WEP Prohibited" /* WPS_EI_SECURITY_WEP_PROHIBITED */
453 };
454
455 static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s,
456                                           struct wps_event_fail *fail)
457 {
458         if (fail->error_indication > 0 &&
459             fail->error_indication < NUM_WPS_EI_VALUES) {
460                 wpa_msg(wpa_s, MSG_INFO,
461                         WPS_EVENT_FAIL "msg=%d config_error=%d reason=%d (%s)",
462                         fail->msg, fail->config_error, fail->error_indication,
463                         wps_event_fail_reason[fail->error_indication]);
464                 if (wpa_s->parent && wpa_s->parent != wpa_s)
465                         wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
466                                 "msg=%d config_error=%d reason=%d (%s)",
467                                 fail->msg, fail->config_error,
468                                 fail->error_indication,
469                                 wps_event_fail_reason[fail->error_indication]);
470         } else {
471                 wpa_msg(wpa_s, MSG_INFO,
472                         WPS_EVENT_FAIL "msg=%d config_error=%d",
473                         fail->msg, fail->config_error);
474                 if (wpa_s->parent && wpa_s->parent != wpa_s)
475                         wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
476                                 "msg=%d config_error=%d",
477                                 fail->msg, fail->config_error);
478         }
479         wpas_clear_wps(wpa_s);
480         wpas_notify_wps_event_fail(wpa_s, fail);
481 #ifdef CONFIG_P2P
482         wpas_p2p_wps_failed(wpa_s, fail);
483 #endif /* CONFIG_P2P */
484 }
485
486
487 static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s)
488 {
489         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS);
490         wpa_s->wps_success = 1;
491         wpas_notify_wps_event_success(wpa_s);
492 #ifdef CONFIG_P2P
493         wpas_p2p_wps_success(wpa_s, wpa_s->bssid, 0);
494 #endif /* CONFIG_P2P */
495 }
496
497
498 static void wpa_supplicant_wps_event_er_ap_add(struct wpa_supplicant *wpa_s,
499                                                struct wps_event_er_ap *ap)
500 {
501         char uuid_str[100];
502         char dev_type[WPS_DEV_TYPE_BUFSIZE];
503
504         uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
505         if (ap->pri_dev_type)
506                 wps_dev_type_bin2str(ap->pri_dev_type, dev_type,
507                                      sizeof(dev_type));
508         else
509                 dev_type[0] = '\0';
510
511         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_ADD "%s " MACSTR
512                 " pri_dev_type=%s wps_state=%d |%s|%s|%s|%s|%s|%s|",
513                 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
514                 ap->friendly_name ? ap->friendly_name : "",
515                 ap->manufacturer ? ap->manufacturer : "",
516                 ap->model_description ? ap->model_description : "",
517                 ap->model_name ? ap->model_name : "",
518                 ap->manufacturer_url ? ap->manufacturer_url : "",
519                 ap->model_url ? ap->model_url : "");
520 }
521
522
523 static void wpa_supplicant_wps_event_er_ap_remove(struct wpa_supplicant *wpa_s,
524                                                   struct wps_event_er_ap *ap)
525 {
526         char uuid_str[100];
527         uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
528         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
529 }
530
531
532 static void wpa_supplicant_wps_event_er_enrollee_add(
533         struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
534 {
535         char uuid_str[100];
536         char dev_type[WPS_DEV_TYPE_BUFSIZE];
537
538         uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
539         if (enrollee->pri_dev_type)
540                 wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type,
541                                      sizeof(dev_type));
542         else
543                 dev_type[0] = '\0';
544
545         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_ADD "%s " MACSTR
546                 " M1=%d config_methods=0x%x dev_passwd_id=%d pri_dev_type=%s "
547                 "|%s|%s|%s|%s|%s|",
548                 uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received,
549                 enrollee->config_methods, enrollee->dev_passwd_id, dev_type,
550                 enrollee->dev_name ? enrollee->dev_name : "",
551                 enrollee->manufacturer ? enrollee->manufacturer : "",
552                 enrollee->model_name ? enrollee->model_name : "",
553                 enrollee->model_number ? enrollee->model_number : "",
554                 enrollee->serial_number ? enrollee->serial_number : "");
555 }
556
557
558 static void wpa_supplicant_wps_event_er_enrollee_remove(
559         struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
560 {
561         char uuid_str[100];
562         uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
563         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_REMOVE "%s " MACSTR,
564                 uuid_str, MAC2STR(enrollee->mac_addr));
565 }
566
567
568 static void wpa_supplicant_wps_event_er_ap_settings(
569         struct wpa_supplicant *wpa_s,
570         struct wps_event_er_ap_settings *ap_settings)
571 {
572         char uuid_str[100];
573         char key_str[65];
574         const struct wps_credential *cred = ap_settings->cred;
575
576         key_str[0] = '\0';
577         if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
578                 if (cred->key_len >= 8 && cred->key_len <= 64) {
579                         os_memcpy(key_str, cred->key, cred->key_len);
580                         key_str[cred->key_len] = '\0';
581                 }
582         }
583
584         uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str));
585         /* Use wpa_msg_ctrl to avoid showing the key in debug log */
586         wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_SETTINGS
587                      "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x "
588                      "key=%s",
589                      uuid_str, wpa_ssid_txt(cred->ssid, cred->ssid_len),
590                      cred->auth_type, cred->encr_type, key_str);
591 }
592
593
594 static void wpa_supplicant_wps_event_er_set_sel_reg(
595         struct wpa_supplicant *wpa_s,
596         struct wps_event_er_set_selected_registrar *ev)
597 {
598         char uuid_str[100];
599
600         uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str));
601         switch (ev->state) {
602         case WPS_ER_SET_SEL_REG_START:
603                 wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG
604                         "uuid=%s state=START sel_reg=%d dev_passwd_id=%u "
605                         "sel_reg_config_methods=0x%x",
606                         uuid_str, ev->sel_reg, ev->dev_passwd_id,
607                         ev->sel_reg_config_methods);
608                 break;
609         case WPS_ER_SET_SEL_REG_DONE:
610                 wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG
611                         "uuid=%s state=DONE", uuid_str);
612                 break;
613         case WPS_ER_SET_SEL_REG_FAILED:
614                 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_SET_SEL_REG
615                         "uuid=%s state=FAILED", uuid_str);
616                 break;
617         }
618 }
619
620
621 static void wpa_supplicant_wps_event(void *ctx, enum wps_event event,
622                                      union wps_event_data *data)
623 {
624         struct wpa_supplicant *wpa_s = ctx;
625         switch (event) {
626         case WPS_EV_M2D:
627                 wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d);
628                 break;
629         case WPS_EV_FAIL:
630                 wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
631                 break;
632         case WPS_EV_SUCCESS:
633                 wpa_supplicant_wps_event_success(wpa_s);
634                 break;
635         case WPS_EV_PWD_AUTH_FAIL:
636 #ifdef CONFIG_AP
637                 if (wpa_s->ap_iface && data->pwd_auth_fail.enrollee)
638                         wpa_supplicant_ap_pwd_auth_fail(wpa_s);
639 #endif /* CONFIG_AP */
640                 break;
641         case WPS_EV_PBC_OVERLAP:
642                 break;
643         case WPS_EV_PBC_TIMEOUT:
644                 break;
645         case WPS_EV_ER_AP_ADD:
646                 wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap);
647                 break;
648         case WPS_EV_ER_AP_REMOVE:
649                 wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap);
650                 break;
651         case WPS_EV_ER_ENROLLEE_ADD:
652                 wpa_supplicant_wps_event_er_enrollee_add(wpa_s,
653                                                          &data->enrollee);
654                 break;
655         case WPS_EV_ER_ENROLLEE_REMOVE:
656                 wpa_supplicant_wps_event_er_enrollee_remove(wpa_s,
657                                                             &data->enrollee);
658                 break;
659         case WPS_EV_ER_AP_SETTINGS:
660                 wpa_supplicant_wps_event_er_ap_settings(wpa_s,
661                                                         &data->ap_settings);
662                 break;
663         case WPS_EV_ER_SET_SELECTED_REGISTRAR:
664                 wpa_supplicant_wps_event_er_set_sel_reg(wpa_s,
665                                                         &data->set_sel_reg);
666                 break;
667         }
668 }
669
670
671 enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid)
672 {
673         if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
674             eap_is_wps_pin_enrollee(&ssid->eap))
675                 return WPS_REQ_ENROLLEE;
676         else
677                 return WPS_REQ_REGISTRAR;
678 }
679
680
681 static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
682 {
683         int id;
684         struct wpa_ssid *ssid, *remove_ssid = NULL, *prev_current;
685
686         prev_current = wpa_s->current_ssid;
687
688         eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
689
690         /* Remove any existing WPS network from configuration */
691         ssid = wpa_s->conf->ssid;
692         while (ssid) {
693                 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
694                         if (ssid == wpa_s->current_ssid) {
695                                 wpa_s->current_ssid = NULL;
696                                 if (ssid != NULL)
697                                         wpas_notify_network_changed(wpa_s);
698                         }
699                         id = ssid->id;
700                         remove_ssid = ssid;
701                 } else
702                         id = -1;
703                 ssid = ssid->next;
704                 if (id >= 0) {
705                         if (prev_current == remove_ssid) {
706                                 wpa_sm_set_config(wpa_s->wpa, NULL);
707                                 eapol_sm_notify_config(wpa_s->eapol, NULL,
708                                                        NULL);
709                         }
710                         wpas_notify_network_removed(wpa_s, remove_ssid);
711                         wpa_config_remove_network(wpa_s->conf, id);
712                 }
713         }
714 }
715
716
717 static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
718 {
719         struct wpa_supplicant *wpa_s = eloop_ctx;
720         wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed "
721                 "out");
722         wpas_clear_wps(wpa_s);
723 }
724
725
726 static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
727                                               int registrar, const u8 *bssid)
728 {
729         struct wpa_ssid *ssid;
730
731         ssid = wpa_config_add_network(wpa_s->conf);
732         if (ssid == NULL)
733                 return NULL;
734         wpas_notify_network_added(wpa_s, ssid);
735         wpa_config_set_network_defaults(ssid);
736         ssid->temporary = 1;
737         if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
738             wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
739             wpa_config_set(ssid, "identity", registrar ?
740                            "\"" WSC_ID_REGISTRAR "\"" :
741                            "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
742                 wpas_notify_network_removed(wpa_s, ssid);
743                 wpa_config_remove_network(wpa_s->conf, ssid->id);
744                 return NULL;
745         }
746
747         if (bssid) {
748 #ifndef CONFIG_P2P
749                 struct wpa_bss *bss;
750                 int count = 0;
751 #endif /* CONFIG_P2P */
752
753                 os_memcpy(ssid->bssid, bssid, ETH_ALEN);
754                 ssid->bssid_set = 1;
755
756                 /*
757                  * Note: With P2P, the SSID may change at the time the WPS
758                  * provisioning is started, so better not filter the AP based
759                  * on the current SSID in the scan results.
760                  */
761 #ifndef CONFIG_P2P
762                 dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
763                         if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0)
764                                 continue;
765
766                         os_free(ssid->ssid);
767                         ssid->ssid = os_malloc(bss->ssid_len);
768                         if (ssid->ssid == NULL)
769                                 break;
770                         os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
771                         ssid->ssid_len = bss->ssid_len;
772                         wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from "
773                                           "scan results",
774                                           ssid->ssid, ssid->ssid_len);
775                         count++;
776                 }
777
778                 if (count > 1) {
779                         wpa_printf(MSG_DEBUG, "WPS: More than one SSID found "
780                                    "for the AP; use wildcard");
781                         os_free(ssid->ssid);
782                         ssid->ssid = NULL;
783                         ssid->ssid_len = 0;
784                 }
785 #endif /* CONFIG_P2P */
786         }
787
788         return ssid;
789 }
790
791
792 static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
793                              struct wpa_ssid *selected, const u8 *bssid)
794 {
795         struct wpa_ssid *ssid;
796         struct wpa_bss *bss;
797
798         wpa_s->known_wps_freq = 0;
799         if (bssid) {
800                 bss = wpa_bss_get_bssid(wpa_s, bssid);
801                 if (bss && bss->freq > 0) {
802                         wpa_s->known_wps_freq = 1;
803                         wpa_s->wps_freq = bss->freq;
804                 }
805         }
806
807         if (wpa_s->current_ssid)
808                 wpa_supplicant_deauthenticate(
809                         wpa_s, WLAN_REASON_DEAUTH_LEAVING);
810
811         /* Mark all other networks disabled and trigger reassociation */
812         ssid = wpa_s->conf->ssid;
813         while (ssid) {
814                 int was_disabled = ssid->disabled;
815                 /*
816                  * In case the network object corresponds to a persistent group
817                  * then do not send out network disabled signal. In addition,
818                  * do not change disabled status of persistent network objects
819                  * from 2 to 1 should we connect to another network.
820                  */
821                 if (was_disabled != 2) {
822                         ssid->disabled = ssid != selected;
823                         if (was_disabled != ssid->disabled)
824                                 wpas_notify_network_enabled_changed(wpa_s,
825                                                                     ssid);
826                 }
827                 ssid = ssid->next;
828         }
829         wpa_s->disconnected = 0;
830         wpa_s->reassociate = 1;
831         wpa_s->scan_runs = 0;
832         wpa_s->normal_scans = 0;
833         wpa_s->wps_success = 0;
834         wpa_s->blacklist_cleared = 0;
835         wpa_supplicant_req_scan(wpa_s, 0, 0);
836 }
837
838
839 int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
840                        int p2p_group)
841 {
842         struct wpa_ssid *ssid;
843         wpas_clear_wps(wpa_s);
844         ssid = wpas_wps_add_network(wpa_s, 0, bssid);
845         if (ssid == NULL)
846                 return -1;
847         ssid->temporary = 1;
848         ssid->p2p_group = p2p_group;
849 #ifdef CONFIG_P2P
850         if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) {
851                 ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1);
852                 if (ssid->ssid) {
853                         ssid->ssid_len = wpa_s->go_params->ssid_len;
854                         os_memcpy(ssid->ssid, wpa_s->go_params->ssid,
855                                   ssid->ssid_len);
856                         wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP "
857                                           "SSID", ssid->ssid, ssid->ssid_len);
858                 }
859         }
860 #endif /* CONFIG_P2P */
861         wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
862         if (wpa_s->wps_fragment_size)
863                 ssid->eap.fragment_size = wpa_s->wps_fragment_size;
864         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
865                                wpa_s, NULL);
866         wpas_wps_reassoc(wpa_s, ssid, bssid);
867         return 0;
868 }
869
870
871 int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
872                        const char *pin, int p2p_group, u16 dev_pw_id)
873 {
874         struct wpa_ssid *ssid;
875         char val[128];
876         unsigned int rpin = 0;
877
878         wpas_clear_wps(wpa_s);
879         ssid = wpas_wps_add_network(wpa_s, 0, bssid);
880         if (ssid == NULL)
881                 return -1;
882         ssid->temporary = 1;
883         ssid->p2p_group = p2p_group;
884 #ifdef CONFIG_P2P
885         if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) {
886                 ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1);
887                 if (ssid->ssid) {
888                         ssid->ssid_len = wpa_s->go_params->ssid_len;
889                         os_memcpy(ssid->ssid, wpa_s->go_params->ssid,
890                                   ssid->ssid_len);
891                         wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP "
892                                           "SSID", ssid->ssid, ssid->ssid_len);
893                 }
894         }
895 #endif /* CONFIG_P2P */
896         if (pin)
897                 os_snprintf(val, sizeof(val), "\"pin=%s dev_pw_id=%u\"",
898                             pin, dev_pw_id);
899         else {
900                 rpin = wps_generate_pin();
901                 os_snprintf(val, sizeof(val), "\"pin=%08d dev_pw_id=%u\"",
902                             rpin, dev_pw_id);
903         }
904         wpa_config_set(ssid, "phase1", val, 0);
905         if (wpa_s->wps_fragment_size)
906                 ssid->eap.fragment_size = wpa_s->wps_fragment_size;
907         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
908                                wpa_s, NULL);
909         wpas_wps_reassoc(wpa_s, ssid, bssid);
910         return rpin;
911 }
912
913
914 /* Cancel the wps pbc/pin requests */
915 int wpas_wps_cancel(struct wpa_supplicant *wpa_s)
916 {
917 #ifdef CONFIG_AP
918         if (wpa_s->ap_iface) {
919                 wpa_printf(MSG_DEBUG, "WPS: Cancelling in AP mode");
920                 return wpa_supplicant_ap_wps_cancel(wpa_s);
921         }
922 #endif /* CONFIG_AP */
923
924         if (wpa_s->wpa_state == WPA_SCANNING) {
925                 wpa_printf(MSG_DEBUG, "WPS: Cancel operation - cancel scan");
926                 wpa_supplicant_cancel_scan(wpa_s);
927                 wpas_clear_wps(wpa_s);
928         } else if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
929                 wpa_printf(MSG_DEBUG, "WPS: Cancel operation - "
930                            "deauthenticate");
931                 wpa_supplicant_deauthenticate(wpa_s,
932                                               WLAN_REASON_DEAUTH_LEAVING);
933                 wpas_clear_wps(wpa_s);
934         }
935
936         return 0;
937 }
938
939
940 #ifdef CONFIG_WPS_OOB
941 int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
942                        char *path, char *method, char *name)
943 {
944         struct wps_context *wps = wpa_s->wps;
945         struct oob_device_data *oob_dev;
946
947         oob_dev = wps_get_oob_device(device_type);
948         if (oob_dev == NULL)
949                 return -1;
950         oob_dev->device_path = path;
951         oob_dev->device_name = name;
952         wps->oob_conf.oob_method = wps_get_oob_method(method);
953
954         if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E) {
955                 /*
956                  * Use pre-configured DH keys in order to be able to write the
957                  * key hash into the OOB file.
958                  */
959                 wpabuf_free(wps->dh_pubkey);
960                 wpabuf_free(wps->dh_privkey);
961                 wps->dh_privkey = NULL;
962                 wps->dh_pubkey = NULL;
963                 dh5_free(wps->dh_ctx);
964                 wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey);
965                 wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
966                 if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) {
967                         wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
968                                    "Diffie-Hellman handshake");
969                         return -1;
970                 }
971         }
972
973         if (wps->oob_conf.oob_method == OOB_METHOD_CRED)
974                 wpas_clear_wps(wpa_s);
975
976         if (wps_process_oob(wps, oob_dev, 0) < 0)
977                 return -1;
978
979         if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E ||
980              wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) &&
981             wpas_wps_start_pin(wpa_s, NULL,
982                                wpabuf_head(wps->oob_conf.dev_password), 0,
983                                DEV_PW_DEFAULT) < 0)
984                         return -1;
985
986         return 0;
987 }
988 #endif /* CONFIG_WPS_OOB */
989
990
991 int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
992                        const char *pin, struct wps_new_ap_settings *settings)
993 {
994         struct wpa_ssid *ssid;
995         char val[200];
996         char *pos, *end;
997         int res;
998
999         if (!pin)
1000                 return -1;
1001         wpas_clear_wps(wpa_s);
1002         ssid = wpas_wps_add_network(wpa_s, 1, bssid);
1003         if (ssid == NULL)
1004                 return -1;
1005         ssid->temporary = 1;
1006         pos = val;
1007         end = pos + sizeof(val);
1008         res = os_snprintf(pos, end - pos, "\"pin=%s", pin);
1009         if (res < 0 || res >= end - pos)
1010                 return -1;
1011         pos += res;
1012         if (settings) {
1013                 res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s "
1014                                   "new_encr=%s new_key=%s",
1015                                   settings->ssid_hex, settings->auth,
1016                                   settings->encr, settings->key_hex);
1017                 if (res < 0 || res >= end - pos)
1018                         return -1;
1019                 pos += res;
1020         }
1021         res = os_snprintf(pos, end - pos, "\"");
1022         if (res < 0 || res >= end - pos)
1023                 return -1;
1024         wpa_config_set(ssid, "phase1", val, 0);
1025         if (wpa_s->wps_fragment_size)
1026                 ssid->eap.fragment_size = wpa_s->wps_fragment_size;
1027         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
1028                                wpa_s, NULL);
1029         wpas_wps_reassoc(wpa_s, ssid, bssid);
1030         return 0;
1031 }
1032
1033
1034 static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
1035                                size_t psk_len)
1036 {
1037         wpa_printf(MSG_DEBUG, "WPS: Received new WPA/WPA2-PSK from WPS for "
1038                    "STA " MACSTR, MAC2STR(mac_addr));
1039         wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
1040
1041         /* TODO */
1042
1043         return 0;
1044 }
1045
1046
1047 static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
1048                                    const struct wps_device_data *dev)
1049 {
1050         char uuid[40], txt[400];
1051         int len;
1052         char devtype[WPS_DEV_TYPE_BUFSIZE];
1053         if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
1054                 return;
1055         wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid);
1056         len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR
1057                           " [%s|%s|%s|%s|%s|%s]",
1058                           uuid, MAC2STR(dev->mac_addr), dev->device_name,
1059                           dev->manufacturer, dev->model_name,
1060                           dev->model_number, dev->serial_number,
1061                           wps_dev_type_bin2str(dev->pri_dev_type, devtype,
1062                                                sizeof(devtype)));
1063         if (len > 0 && len < (int) sizeof(txt))
1064                 wpa_printf(MSG_INFO, "%s", txt);
1065 }
1066
1067
1068 static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id,
1069                                     u16 sel_reg_config_methods)
1070 {
1071 #ifdef CONFIG_WPS_ER
1072         struct wpa_supplicant *wpa_s = ctx;
1073
1074         if (wpa_s->wps_er == NULL)
1075                 return;
1076         wpa_printf(MSG_DEBUG, "WPS ER: SetSelectedRegistrar - sel_reg=%d "
1077                    "dev_password_id=%u sel_reg_config_methods=0x%x",
1078                    sel_reg, dev_passwd_id, sel_reg_config_methods);
1079         wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id,
1080                            sel_reg_config_methods);
1081 #endif /* CONFIG_WPS_ER */
1082 }
1083
1084
1085 static u16 wps_fix_config_methods(u16 config_methods)
1086 {
1087 #ifdef CONFIG_WPS2
1088         if ((config_methods &
1089              (WPS_CONFIG_DISPLAY | WPS_CONFIG_VIRT_DISPLAY |
1090               WPS_CONFIG_PHY_DISPLAY)) == WPS_CONFIG_DISPLAY) {
1091                 wpa_printf(MSG_INFO, "WPS: Converting display to "
1092                            "virtual_display for WPS 2.0 compliance");
1093                 config_methods |= WPS_CONFIG_VIRT_DISPLAY;
1094         }
1095         if ((config_methods &
1096              (WPS_CONFIG_PUSHBUTTON | WPS_CONFIG_VIRT_PUSHBUTTON |
1097               WPS_CONFIG_PHY_PUSHBUTTON)) == WPS_CONFIG_PUSHBUTTON) {
1098                 wpa_printf(MSG_INFO, "WPS: Converting push_button to "
1099                            "virtual_push_button for WPS 2.0 compliance");
1100                 config_methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
1101         }
1102 #endif /* CONFIG_WPS2 */
1103
1104         return config_methods;
1105 }
1106
1107
1108 static void wpas_wps_set_uuid(struct wpa_supplicant *wpa_s,
1109                               struct wps_context *wps)
1110 {
1111         wpa_printf(MSG_DEBUG, "WPS: Set UUID for interface %s", wpa_s->ifname);
1112         if (is_nil_uuid(wpa_s->conf->uuid)) {
1113                 struct wpa_supplicant *first;
1114                 first = wpa_s->global->ifaces;
1115                 while (first && first->next)
1116                         first = first->next;
1117                 if (first && first != wpa_s) {
1118                         os_memcpy(wps->uuid, wpa_s->global->ifaces->wps->uuid,
1119                                   WPS_UUID_LEN);
1120                         wpa_hexdump(MSG_DEBUG, "WPS: UUID from the first "
1121                                     "interface", wps->uuid, WPS_UUID_LEN);
1122                 } else {
1123                         uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
1124                         wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC "
1125                                     "address", wps->uuid, WPS_UUID_LEN);
1126                 }
1127         } else {
1128                 os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
1129                 wpa_hexdump(MSG_DEBUG, "WPS: UUID based on configuration",
1130                             wps->uuid, WPS_UUID_LEN);
1131         }
1132 }
1133
1134
1135 int wpas_wps_init(struct wpa_supplicant *wpa_s)
1136 {
1137         struct wps_context *wps;
1138         struct wps_registrar_config rcfg;
1139         struct hostapd_hw_modes *modes;
1140         u16 m;
1141
1142         wps = os_zalloc(sizeof(*wps));
1143         if (wps == NULL)
1144                 return -1;
1145
1146         wps->cred_cb = wpa_supplicant_wps_cred;
1147         wps->event_cb = wpa_supplicant_wps_event;
1148         wps->cb_ctx = wpa_s;
1149
1150         wps->dev.device_name = wpa_s->conf->device_name;
1151         wps->dev.manufacturer = wpa_s->conf->manufacturer;
1152         wps->dev.model_name = wpa_s->conf->model_name;
1153         wps->dev.model_number = wpa_s->conf->model_number;
1154         wps->dev.serial_number = wpa_s->conf->serial_number;
1155         wps->config_methods =
1156                 wps_config_methods_str2bin(wpa_s->conf->config_methods);
1157         if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
1158             (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
1159                 wpa_printf(MSG_ERROR, "WPS: Both Label and Display config "
1160                            "methods are not allowed at the same time");
1161                 os_free(wps);
1162                 return -1;
1163         }
1164         wps->config_methods = wps_fix_config_methods(wps->config_methods);
1165         wps->dev.config_methods = wps->config_methods;
1166         os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
1167                   WPS_DEV_TYPE_LEN);
1168
1169         wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
1170         os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type,
1171                   WPS_DEV_TYPE_LEN * wps->dev.num_sec_dev_types);
1172
1173         wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
1174         modes = wpa_s->hw.modes;
1175         if (modes) {
1176                 for (m = 0; m < wpa_s->hw.num_modes; m++) {
1177                         if (modes[m].mode == HOSTAPD_MODE_IEEE80211B ||
1178                             modes[m].mode == HOSTAPD_MODE_IEEE80211G)
1179                                 wps->dev.rf_bands |= WPS_RF_24GHZ;
1180                         else if (modes[m].mode == HOSTAPD_MODE_IEEE80211A)
1181                                 wps->dev.rf_bands |= WPS_RF_50GHZ;
1182                 }
1183         }
1184         if (wps->dev.rf_bands == 0) {
1185                 /*
1186                  * Default to claiming support for both bands if the driver
1187                  * does not provide support for fetching supported bands.
1188                  */
1189                 wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
1190         }
1191         os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
1192         wpas_wps_set_uuid(wpa_s, wps);
1193
1194         wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
1195         wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
1196
1197         os_memset(&rcfg, 0, sizeof(rcfg));
1198         rcfg.new_psk_cb = wpas_wps_new_psk_cb;
1199         rcfg.pin_needed_cb = wpas_wps_pin_needed_cb;
1200         rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
1201         rcfg.cb_ctx = wpa_s;
1202
1203         wps->registrar = wps_registrar_init(wps, &rcfg);
1204         if (wps->registrar == NULL) {
1205                 wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar");
1206                 os_free(wps);
1207                 return -1;
1208         }
1209
1210         wpa_s->wps = wps;
1211
1212         return 0;
1213 }
1214
1215
1216 void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
1217 {
1218         eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
1219
1220         if (wpa_s->wps == NULL)
1221                 return;
1222
1223 #ifdef CONFIG_WPS_ER
1224         wps_er_deinit(wpa_s->wps_er, NULL, NULL);
1225         wpa_s->wps_er = NULL;
1226 #endif /* CONFIG_WPS_ER */
1227
1228         wps_registrar_deinit(wpa_s->wps->registrar);
1229         wpabuf_free(wpa_s->wps->dh_pubkey);
1230         wpabuf_free(wpa_s->wps->dh_privkey);
1231         wpabuf_free(wpa_s->wps->oob_conf.pubkey_hash);
1232         wpabuf_free(wpa_s->wps->oob_conf.dev_password);
1233         os_free(wpa_s->wps->network_key);
1234         os_free(wpa_s->wps);
1235         wpa_s->wps = NULL;
1236 }
1237
1238
1239 int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
1240                             struct wpa_ssid *ssid, struct wpa_scan_res *bss)
1241 {
1242         struct wpabuf *wps_ie;
1243
1244         if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
1245                 return -1;
1246
1247         wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1248         if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
1249                 if (!wps_ie) {
1250                         wpa_printf(MSG_DEBUG, "   skip - non-WPS AP");
1251                         return 0;
1252                 }
1253
1254                 if (!wps_is_selected_pbc_registrar(wps_ie)) {
1255                         wpa_printf(MSG_DEBUG, "   skip - WPS AP "
1256                                    "without active PBC Registrar");
1257                         wpabuf_free(wps_ie);
1258                         return 0;
1259                 }
1260
1261                 /* TODO: overlap detection */
1262                 wpa_printf(MSG_DEBUG, "   selected based on WPS IE "
1263                            "(Active PBC)");
1264                 wpabuf_free(wps_ie);
1265                 return 1;
1266         }
1267
1268         if (eap_is_wps_pin_enrollee(&ssid->eap)) {
1269                 if (!wps_ie) {
1270                         wpa_printf(MSG_DEBUG, "   skip - non-WPS AP");
1271                         return 0;
1272                 }
1273
1274                 /*
1275                  * Start with WPS APs that advertise our address as an
1276                  * authorized MAC (v2.0) or active PIN Registrar (v1.0) and
1277                  * allow any WPS AP after couple of scans since some APs do not
1278                  * set Selected Registrar attribute properly when using
1279                  * external Registrar.
1280                  */
1281                 if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) {
1282                         if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) {
1283                                 wpa_printf(MSG_DEBUG, "   skip - WPS AP "
1284                                            "without active PIN Registrar");
1285                                 wpabuf_free(wps_ie);
1286                                 return 0;
1287                         }
1288                         wpa_printf(MSG_DEBUG, "   selected based on WPS IE");
1289                 } else {
1290                         wpa_printf(MSG_DEBUG, "   selected based on WPS IE "
1291                                    "(Authorized MAC or Active PIN)");
1292                 }
1293                 wpabuf_free(wps_ie);
1294                 return 1;
1295         }
1296
1297         if (wps_ie) {
1298                 wpa_printf(MSG_DEBUG, "   selected based on WPS IE");
1299                 wpabuf_free(wps_ie);
1300                 return 1;
1301         }
1302
1303         return -1;
1304 }
1305
1306
1307 int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
1308                               struct wpa_ssid *ssid,
1309                               struct wpa_scan_res *bss)
1310 {
1311         struct wpabuf *wps_ie = NULL;
1312         int ret = 0;
1313
1314         if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
1315                 wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1316                 if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
1317                         /* allow wildcard SSID for WPS PBC */
1318                         ret = 1;
1319                 }
1320         } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
1321                 wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1322                 if (wps_ie &&
1323                     (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) ||
1324                      wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
1325                         /* allow wildcard SSID for WPS PIN */
1326                         ret = 1;
1327                 }
1328         }
1329
1330         if (!ret && ssid->bssid_set &&
1331             os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) {
1332                 /* allow wildcard SSID due to hardcoded BSSID match */
1333                 ret = 1;
1334         }
1335
1336 #ifdef CONFIG_WPS_STRICT
1337         if (wps_ie) {
1338                 if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len >
1339                                                    0, bss->bssid) < 0)
1340                         ret = 0;
1341                 if (bss->beacon_ie_len) {
1342                         struct wpabuf *bcn_wps;
1343                         bcn_wps = wpa_scan_get_vendor_ie_multi_beacon(
1344                                 bss, WPS_IE_VENDOR_TYPE);
1345                         if (bcn_wps == NULL) {
1346                                 wpa_printf(MSG_DEBUG, "WPS: Mandatory WPS IE "
1347                                            "missing from AP Beacon");
1348                                 ret = 0;
1349                         } else {
1350                                 if (wps_validate_beacon(wps_ie) < 0)
1351                                         ret = 0;
1352                                 wpabuf_free(bcn_wps);
1353                         }
1354                 }
1355         }
1356 #endif /* CONFIG_WPS_STRICT */
1357
1358         wpabuf_free(wps_ie);
1359
1360         return ret;
1361 }
1362
1363
1364 int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
1365                               struct wpa_bss *selected, struct wpa_ssid *ssid)
1366 {
1367         const u8 *sel_uuid, *uuid;
1368         struct wpabuf *wps_ie;
1369         int ret = 0;
1370         struct wpa_bss *bss;
1371
1372         if (!eap_is_wps_pbc_enrollee(&ssid->eap))
1373                 return 0;
1374
1375         wpa_printf(MSG_DEBUG, "WPS: Check whether PBC session overlap is "
1376                    "present in scan results; selected BSSID " MACSTR,
1377                    MAC2STR(selected->bssid));
1378
1379         /* Make sure that only one AP is in active PBC mode */
1380         wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
1381         if (wps_ie) {
1382                 sel_uuid = wps_get_uuid_e(wps_ie);
1383                 wpa_hexdump(MSG_DEBUG, "WPS: UUID of the selected BSS",
1384                             sel_uuid, UUID_LEN);
1385         } else {
1386                 wpa_printf(MSG_DEBUG, "WPS: Selected BSS does not include "
1387                            "WPS IE?!");
1388                 sel_uuid = NULL;
1389         }
1390
1391         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
1392                 struct wpabuf *ie;
1393                 if (bss == selected)
1394                         continue;
1395                 ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1396                 if (!ie)
1397                         continue;
1398                 if (!wps_is_selected_pbc_registrar(ie)) {
1399                         wpabuf_free(ie);
1400                         continue;
1401                 }
1402                 wpa_printf(MSG_DEBUG, "WPS: Another BSS in active PBC mode: "
1403                            MACSTR, MAC2STR(bss->bssid));
1404                 uuid = wps_get_uuid_e(ie);
1405                 wpa_hexdump(MSG_DEBUG, "WPS: UUID of the other BSS",
1406                             uuid, UUID_LEN);
1407                 if (sel_uuid == NULL || uuid == NULL ||
1408                     os_memcmp(sel_uuid, uuid, UUID_LEN) != 0) {
1409                         ret = 1; /* PBC overlap */
1410                         wpa_msg(wpa_s, MSG_INFO, "WPS: PBC overlap detected: "
1411                                 MACSTR " and " MACSTR,
1412                                 MAC2STR(selected->bssid),
1413                                 MAC2STR(bss->bssid));
1414                         wpabuf_free(ie);
1415                         break;
1416                 }
1417
1418                 /* TODO: verify that this is reasonable dual-band situation */
1419
1420                 wpabuf_free(ie);
1421         }
1422
1423         wpabuf_free(wps_ie);
1424
1425         return ret;
1426 }
1427
1428
1429 void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
1430 {
1431         struct wpa_bss *bss;
1432         unsigned int pbc = 0, auth = 0, pin = 0, wps = 0;
1433
1434         if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
1435                 return;
1436
1437         dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
1438                 struct wpabuf *ie;
1439                 ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
1440                 if (!ie)
1441                         continue;
1442                 if (wps_is_selected_pbc_registrar(ie))
1443                         pbc++;
1444                 else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0))
1445                         auth++;
1446                 else if (wps_is_selected_pin_registrar(ie))
1447                         pin++;
1448                 else
1449                         wps++;
1450                 wpabuf_free(ie);
1451         }
1452
1453         if (pbc)
1454                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PBC);
1455         else if (auth)
1456                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_AUTH);
1457         else if (pin)
1458                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PIN);
1459         else if (wps)
1460                 wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE);
1461 }
1462
1463
1464 int wpas_wps_searching(struct wpa_supplicant *wpa_s)
1465 {
1466         struct wpa_ssid *ssid;
1467
1468         for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
1469                 if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled)
1470                         return 1;
1471         }
1472
1473         return 0;
1474 }
1475
1476
1477 int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
1478                               char *end)
1479 {
1480         struct wpabuf *wps_ie;
1481         int ret;
1482
1483         wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA);
1484         if (wps_ie == NULL)
1485                 return 0;
1486
1487         ret = wps_attr_text(wps_ie, buf, end);
1488         wpabuf_free(wps_ie);
1489         return ret;
1490 }
1491
1492
1493 int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter)
1494 {
1495 #ifdef CONFIG_WPS_ER
1496         if (wpa_s->wps_er) {
1497                 wps_er_refresh(wpa_s->wps_er);
1498                 return 0;
1499         }
1500         wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter);
1501         if (wpa_s->wps_er == NULL)
1502                 return -1;
1503         return 0;
1504 #else /* CONFIG_WPS_ER */
1505         return 0;
1506 #endif /* CONFIG_WPS_ER */
1507 }
1508
1509
1510 int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
1511 {
1512 #ifdef CONFIG_WPS_ER
1513         wps_er_deinit(wpa_s->wps_er, NULL, NULL);
1514         wpa_s->wps_er = NULL;
1515 #endif /* CONFIG_WPS_ER */
1516         return 0;
1517 }
1518
1519
1520 #ifdef CONFIG_WPS_ER
1521 int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr,
1522                         const char *uuid, const char *pin)
1523 {
1524         u8 u[UUID_LEN];
1525         int any = 0;
1526
1527         if (os_strcmp(uuid, "any") == 0)
1528                 any = 1;
1529         else if (uuid_str2bin(uuid, u))
1530                 return -1;
1531         return wps_registrar_add_pin(wpa_s->wps->registrar, addr,
1532                                      any ? NULL : u,
1533                                      (const u8 *) pin, os_strlen(pin), 300);
1534 }
1535
1536
1537 int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid)
1538 {
1539         u8 u[UUID_LEN];
1540
1541         if (uuid_str2bin(uuid, u))
1542                 return -1;
1543         return wps_er_pbc(wpa_s->wps_er, u);
1544 }
1545
1546
1547 int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
1548                       const char *pin)
1549 {
1550         u8 u[UUID_LEN];
1551
1552         if (uuid_str2bin(uuid, u))
1553                 return -1;
1554         return wps_er_learn(wpa_s->wps_er, u, (const u8 *) pin,
1555                             os_strlen(pin));
1556 }
1557
1558
1559 int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid,
1560                            int id)
1561 {
1562         u8 u[UUID_LEN];
1563         struct wpa_ssid *ssid;
1564         struct wps_credential cred;
1565
1566         if (uuid_str2bin(uuid, u))
1567                 return -1;
1568         ssid = wpa_config_get_network(wpa_s->conf, id);
1569         if (ssid == NULL || ssid->ssid == NULL)
1570                 return -1;
1571
1572         os_memset(&cred, 0, sizeof(cred));
1573         if (ssid->ssid_len > 32)
1574                 return -1;
1575         os_memcpy(cred.ssid, ssid->ssid, ssid->ssid_len);
1576         cred.ssid_len = ssid->ssid_len;
1577         if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
1578                 cred.auth_type = (ssid->proto & WPA_PROTO_RSN) ?
1579                         WPS_AUTH_WPA2PSK : WPS_AUTH_WPAPSK;
1580                 if (ssid->pairwise_cipher & WPA_CIPHER_CCMP)
1581                         cred.encr_type = WPS_ENCR_AES;
1582                 else
1583                         cred.encr_type = WPS_ENCR_TKIP;
1584                 if (ssid->passphrase) {
1585                         cred.key_len = os_strlen(ssid->passphrase);
1586                         if (cred.key_len >= 64)
1587                                 return -1;
1588                         os_memcpy(cred.key, ssid->passphrase, cred.key_len);
1589                 } else if (ssid->psk_set) {
1590                         cred.key_len = 32;
1591                         os_memcpy(cred.key, ssid->psk, 32);
1592                 } else
1593                         return -1;
1594         } else {
1595                 cred.auth_type = WPS_AUTH_OPEN;
1596                 cred.encr_type = WPS_ENCR_NONE;
1597         }
1598         return wps_er_set_config(wpa_s->wps_er, u, &cred);
1599 }
1600
1601
1602 int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
1603                        const char *pin, struct wps_new_ap_settings *settings)
1604 {
1605         u8 u[UUID_LEN];
1606         struct wps_credential cred;
1607         size_t len;
1608
1609         if (uuid_str2bin(uuid, u))
1610                 return -1;
1611         if (settings->ssid_hex == NULL || settings->auth == NULL ||
1612             settings->encr == NULL || settings->key_hex == NULL)
1613                 return -1;
1614
1615         os_memset(&cred, 0, sizeof(cred));
1616         len = os_strlen(settings->ssid_hex);
1617         if ((len & 1) || len > 2 * sizeof(cred.ssid) ||
1618             hexstr2bin(settings->ssid_hex, cred.ssid, len / 2))
1619                 return -1;
1620         cred.ssid_len = len / 2;
1621
1622         len = os_strlen(settings->key_hex);
1623         if ((len & 1) || len > 2 * sizeof(cred.key) ||
1624             hexstr2bin(settings->key_hex, cred.key, len / 2))
1625                 return -1;
1626         cred.key_len = len / 2;
1627
1628         if (os_strcmp(settings->auth, "OPEN") == 0)
1629                 cred.auth_type = WPS_AUTH_OPEN;
1630         else if (os_strcmp(settings->auth, "WPAPSK") == 0)
1631                 cred.auth_type = WPS_AUTH_WPAPSK;
1632         else if (os_strcmp(settings->auth, "WPA2PSK") == 0)
1633                 cred.auth_type = WPS_AUTH_WPA2PSK;
1634         else
1635                 return -1;
1636
1637         if (os_strcmp(settings->encr, "NONE") == 0)
1638                 cred.encr_type = WPS_ENCR_NONE;
1639         else if (os_strcmp(settings->encr, "WEP") == 0)
1640                 cred.encr_type = WPS_ENCR_WEP;
1641         else if (os_strcmp(settings->encr, "TKIP") == 0)
1642                 cred.encr_type = WPS_ENCR_TKIP;
1643         else if (os_strcmp(settings->encr, "CCMP") == 0)
1644                 cred.encr_type = WPS_ENCR_AES;
1645         else
1646                 return -1;
1647
1648         return wps_er_config(wpa_s->wps_er, u, (const u8 *) pin,
1649                              os_strlen(pin), &cred);
1650 }
1651
1652
1653 static int callbacks_pending = 0;
1654
1655 static void wpas_wps_terminate_cb(void *ctx)
1656 {
1657         wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
1658         if (--callbacks_pending <= 0)
1659                 eloop_terminate();
1660 }
1661 #endif /* CONFIG_WPS_ER */
1662
1663
1664 int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
1665 {
1666 #ifdef CONFIG_WPS_ER
1667         if (wpa_s->wps_er) {
1668                 callbacks_pending++;
1669                 wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s);
1670                 wpa_s->wps_er = NULL;
1671                 return 1;
1672         }
1673 #endif /* CONFIG_WPS_ER */
1674         return 0;
1675 }
1676
1677
1678 int wpas_wps_in_progress(struct wpa_supplicant *wpa_s)
1679 {
1680         struct wpa_ssid *ssid;
1681
1682         for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
1683                 if (!ssid->disabled && ssid->key_mgmt == WPA_KEY_MGMT_WPS)
1684                         return 1;
1685         }
1686
1687         return 0;
1688 }
1689
1690
1691 void wpas_wps_update_config(struct wpa_supplicant *wpa_s)
1692 {
1693         struct wps_context *wps = wpa_s->wps;
1694
1695         if (wps == NULL)
1696                 return;
1697
1698         if (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS) {
1699                 wps->config_methods = wps_config_methods_str2bin(
1700                         wpa_s->conf->config_methods);
1701                 if ((wps->config_methods &
1702                      (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
1703                     (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
1704                         wpa_printf(MSG_ERROR, "WPS: Both Label and Display "
1705                                    "config methods are not allowed at the "
1706                                    "same time");
1707                         wps->config_methods &= ~WPS_CONFIG_LABEL;
1708                 }
1709         }
1710         wps->config_methods = wps_fix_config_methods(wps->config_methods);
1711
1712         if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
1713                 os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
1714                           WPS_DEV_TYPE_LEN);
1715
1716         if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) {
1717                 wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
1718                 os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type,
1719                           wps->dev.num_sec_dev_types * WPS_DEV_TYPE_LEN);
1720         }
1721
1722         if (wpa_s->conf->changed_parameters & CFG_CHANGED_OS_VERSION)
1723                 wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
1724
1725         if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID)
1726                 wpas_wps_set_uuid(wpa_s, wps);
1727
1728         if (wpa_s->conf->changed_parameters &
1729             (CFG_CHANGED_DEVICE_NAME | CFG_CHANGED_WPS_STRING)) {
1730                 /* Update pointers to make sure they refer current values */
1731                 wps->dev.device_name = wpa_s->conf->device_name;
1732                 wps->dev.manufacturer = wpa_s->conf->manufacturer;
1733                 wps->dev.model_name = wpa_s->conf->model_name;
1734                 wps->dev.model_number = wpa_s->conf->model_number;
1735                 wps->dev.serial_number = wpa_s->conf->serial_number;
1736         }
1737 }