a3950d3d3438030ebcd91839da1dda18cf753359
[mech_eap.git] / src / ap / wps_hostapd.c
1 /*
2  * hostapd / 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 "utils/includes.h"
10
11 #include "utils/common.h"
12 #include "utils/eloop.h"
13 #include "utils/uuid.h"
14 #include "common/wpa_ctrl.h"
15 #include "common/ieee802_11_defs.h"
16 #include "common/ieee802_11_common.h"
17 #include "eapol_auth/eapol_auth_sm.h"
18 #include "eapol_auth/eapol_auth_sm_i.h"
19 #include "wps/wps.h"
20 #include "wps/wps_defs.h"
21 #include "wps/wps_dev_attr.h"
22 #include "wps/wps_attr_parse.h"
23 #include "hostapd.h"
24 #include "ap_config.h"
25 #include "ap_drv_ops.h"
26 #include "beacon.h"
27 #include "sta_info.h"
28 #include "wps_hostapd.h"
29
30
31 #ifdef CONFIG_WPS_UPNP
32 #include "wps/wps_upnp.h"
33 static int hostapd_wps_upnp_init(struct hostapd_data *hapd,
34                                  struct wps_context *wps);
35 static void hostapd_wps_upnp_deinit(struct hostapd_data *hapd);
36 #endif /* CONFIG_WPS_UPNP */
37
38 static int hostapd_wps_probe_req_rx(void *ctx, const u8 *addr, const u8 *da,
39                                     const u8 *bssid,
40                                     const u8 *ie, size_t ie_len,
41                                     int ssi_signal);
42 static void hostapd_wps_ap_pin_timeout(void *eloop_data, void *user_ctx);
43
44
45 struct wps_for_each_data {
46         int (*func)(struct hostapd_data *h, void *ctx);
47         void *ctx;
48         struct hostapd_data *calling_hapd;
49 };
50
51
52 static int wps_for_each(struct hostapd_iface *iface, void *ctx)
53 {
54         struct wps_for_each_data *data = ctx;
55         size_t j;
56
57         if (iface == NULL)
58                 return 0;
59         for (j = 0; j < iface->num_bss; j++) {
60                 struct hostapd_data *hapd = iface->bss[j];
61                 int ret;
62
63                 if (hapd != data->calling_hapd &&
64                     (hapd->conf->wps_independent ||
65                      data->calling_hapd->conf->wps_independent))
66                         continue;
67
68                 ret = data->func(hapd, data->ctx);
69                 if (ret)
70                         return ret;
71         }
72
73         return 0;
74 }
75
76
77 static int hostapd_wps_for_each(struct hostapd_data *hapd,
78                                 int (*func)(struct hostapd_data *h, void *ctx),
79                                 void *ctx)
80 {
81         struct hostapd_iface *iface = hapd->iface;
82         struct wps_for_each_data data;
83         data.func = func;
84         data.ctx = ctx;
85         data.calling_hapd = hapd;
86         if (iface->interfaces == NULL ||
87             iface->interfaces->for_each_interface == NULL)
88                 return wps_for_each(iface, &data);
89         return iface->interfaces->for_each_interface(iface->interfaces,
90                                                      wps_for_each, &data);
91 }
92
93
94 static int hostapd_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
95                                   size_t psk_len)
96 {
97         struct hostapd_data *hapd = ctx;
98         struct hostapd_wpa_psk *p;
99         struct hostapd_ssid *ssid = &hapd->conf->ssid;
100
101         wpa_printf(MSG_DEBUG, "Received new WPA/WPA2-PSK from WPS for STA "
102                    MACSTR, MAC2STR(mac_addr));
103         wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
104
105         if (psk_len != PMK_LEN) {
106                 wpa_printf(MSG_DEBUG, "Unexpected PSK length %lu",
107                            (unsigned long) psk_len);
108                 return -1;
109         }
110
111         /* Add the new PSK to runtime PSK list */
112         p = os_zalloc(sizeof(*p));
113         if (p == NULL)
114                 return -1;
115         os_memcpy(p->addr, mac_addr, ETH_ALEN);
116         os_memcpy(p->psk, psk, PMK_LEN);
117
118         p->next = ssid->wpa_psk;
119         ssid->wpa_psk = p;
120
121         if (ssid->wpa_psk_file) {
122                 FILE *f;
123                 char hex[PMK_LEN * 2 + 1];
124                 /* Add the new PSK to PSK list file */
125                 f = fopen(ssid->wpa_psk_file, "a");
126                 if (f == NULL) {
127                         wpa_printf(MSG_DEBUG, "Failed to add the PSK to "
128                                    "'%s'", ssid->wpa_psk_file);
129                         return -1;
130                 }
131
132                 wpa_snprintf_hex(hex, sizeof(hex), psk, psk_len);
133                 fprintf(f, MACSTR " %s\n", MAC2STR(mac_addr), hex);
134                 fclose(f);
135         }
136
137         return 0;
138 }
139
140
141 static int hostapd_wps_set_ie_cb(void *ctx, struct wpabuf *beacon_ie,
142                                  struct wpabuf *probe_resp_ie)
143 {
144         struct hostapd_data *hapd = ctx;
145         wpabuf_free(hapd->wps_beacon_ie);
146         hapd->wps_beacon_ie = beacon_ie;
147         wpabuf_free(hapd->wps_probe_resp_ie);
148         hapd->wps_probe_resp_ie = probe_resp_ie;
149         if (hapd->beacon_set_done)
150                 ieee802_11_set_beacon(hapd);
151         return hostapd_set_ap_wps_ie(hapd);
152 }
153
154
155 static void hostapd_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
156                                       const struct wps_device_data *dev)
157 {
158         struct hostapd_data *hapd = ctx;
159         char uuid[40], txt[400];
160         int len;
161         char devtype[WPS_DEV_TYPE_BUFSIZE];
162         if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
163                 return;
164         wpa_printf(MSG_DEBUG, "WPS: PIN needed for E-UUID %s", uuid);
165         len = os_snprintf(txt, sizeof(txt), WPS_EVENT_PIN_NEEDED
166                           "%s " MACSTR " [%s|%s|%s|%s|%s|%s]",
167                           uuid, MAC2STR(dev->mac_addr), dev->device_name,
168                           dev->manufacturer, dev->model_name,
169                           dev->model_number, dev->serial_number,
170                           wps_dev_type_bin2str(dev->pri_dev_type, devtype,
171                                                sizeof(devtype)));
172         if (len > 0 && len < (int) sizeof(txt))
173                 wpa_msg(hapd->msg_ctx, MSG_INFO, "%s", txt);
174
175         if (hapd->conf->wps_pin_requests) {
176                 FILE *f;
177                 struct os_time t;
178                 f = fopen(hapd->conf->wps_pin_requests, "a");
179                 if (f == NULL)
180                         return;
181                 os_get_time(&t);
182                 fprintf(f, "%ld\t%s\t" MACSTR "\t%s\t%s\t%s\t%s\t%s"
183                         "\t%s\n",
184                         t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name,
185                         dev->manufacturer, dev->model_name, dev->model_number,
186                         dev->serial_number,
187                         wps_dev_type_bin2str(dev->pri_dev_type, devtype,
188                                              sizeof(devtype)));
189                 fclose(f);
190         }
191 }
192
193
194 struct wps_stop_reg_data {
195         struct hostapd_data *current_hapd;
196         const u8 *uuid_e;
197         const u8 *dev_pw;
198         size_t dev_pw_len;
199 };
200
201 static int wps_stop_registrar(struct hostapd_data *hapd, void *ctx)
202 {
203         struct wps_stop_reg_data *data = ctx;
204         if (hapd != data->current_hapd && hapd->wps != NULL)
205                 wps_registrar_complete(hapd->wps->registrar, data->uuid_e,
206                                        data->dev_pw, data->dev_pw_len);
207         return 0;
208 }
209
210
211 static void hostapd_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
212                                        const u8 *uuid_e, const u8 *dev_pw,
213                                        size_t dev_pw_len)
214 {
215         struct hostapd_data *hapd = ctx;
216         char uuid[40];
217         struct wps_stop_reg_data data;
218         if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
219                 return;
220         wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_REG_SUCCESS MACSTR " %s",
221                 MAC2STR(mac_addr), uuid);
222         if (hapd->wps_reg_success_cb)
223                 hapd->wps_reg_success_cb(hapd->wps_reg_success_cb_ctx,
224                                          mac_addr, uuid_e);
225         data.current_hapd = hapd;
226         data.uuid_e = uuid_e;
227         data.dev_pw = dev_pw;
228         data.dev_pw_len = dev_pw_len;
229         hostapd_wps_for_each(hapd, wps_stop_registrar, &data);
230 }
231
232
233 static void hostapd_wps_enrollee_seen_cb(void *ctx, const u8 *addr,
234                                          const u8 *uuid_e,
235                                          const u8 *pri_dev_type,
236                                          u16 config_methods,
237                                          u16 dev_password_id, u8 request_type,
238                                          const char *dev_name)
239 {
240         struct hostapd_data *hapd = ctx;
241         char uuid[40];
242         char devtype[WPS_DEV_TYPE_BUFSIZE];
243         if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
244                 return;
245         if (dev_name == NULL)
246                 dev_name = "";
247         wpa_msg_ctrl(hapd->msg_ctx, MSG_INFO, WPS_EVENT_ENROLLEE_SEEN MACSTR
248                      " %s %s 0x%x %u %u [%s]",
249                      MAC2STR(addr), uuid,
250                      wps_dev_type_bin2str(pri_dev_type, devtype,
251                                           sizeof(devtype)),
252                      config_methods, dev_password_id, request_type, dev_name);
253 }
254
255
256 static int str_starts(const char *str, const char *start)
257 {
258         return os_strncmp(str, start, os_strlen(start)) == 0;
259 }
260
261
262 static void wps_reload_config(void *eloop_data, void *user_ctx)
263 {
264         struct hostapd_iface *iface = eloop_data;
265
266         wpa_printf(MSG_DEBUG, "WPS: Reload configuration data");
267         if (iface->interfaces == NULL ||
268             iface->interfaces->reload_config(iface) < 0) {
269                 wpa_printf(MSG_WARNING, "WPS: Failed to reload the updated "
270                            "configuration");
271         }
272 }
273
274
275 static void hapd_new_ap_event(struct hostapd_data *hapd, const u8 *attr,
276                               size_t attr_len)
277 {
278         size_t blen = attr_len * 2 + 1;
279         char *buf = os_malloc(blen);
280         if (buf) {
281                 wpa_snprintf_hex(buf, blen, attr, attr_len);
282                 wpa_msg(hapd->msg_ctx, MSG_INFO,
283                         WPS_EVENT_NEW_AP_SETTINGS "%s", buf);
284                 os_free(buf);
285         }
286 }
287
288
289 static int hapd_wps_reconfig_in_memory(struct hostapd_data *hapd,
290                                        const struct wps_credential *cred)
291 {
292         struct hostapd_bss_config *bss = hapd->conf;
293
294         wpa_printf(MSG_DEBUG, "WPS: Updating in-memory configuration");
295
296         bss->wps_state = 2;
297         if (cred->ssid_len <= HOSTAPD_MAX_SSID_LEN) {
298                 os_memcpy(bss->ssid.ssid, cred->ssid, cred->ssid_len);
299                 bss->ssid.ssid_len = cred->ssid_len;
300                 bss->ssid.ssid_set = 1;
301         }
302
303         if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) &&
304             (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)))
305                 bss->wpa = 3;
306         else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK))
307                 bss->wpa = 2;
308         else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))
309                 bss->wpa = 1;
310         else
311                 bss->wpa = 0;
312
313         if (bss->wpa) {
314                 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA))
315                         bss->wpa_key_mgmt = WPA_KEY_MGMT_IEEE8021X;
316                 if (cred->auth_type & (WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK))
317                         bss->wpa_key_mgmt = WPA_KEY_MGMT_PSK;
318
319                 bss->wpa_pairwise = 0;
320                 if (cred->encr_type & WPS_ENCR_AES)
321                         bss->wpa_pairwise |= WPA_CIPHER_CCMP;
322                 if (cred->encr_type & WPS_ENCR_TKIP)
323                         bss->wpa_pairwise |= WPA_CIPHER_TKIP;
324                 bss->rsn_pairwise = bss->wpa_pairwise;
325                 bss->wpa_group = wpa_select_ap_group_cipher(bss->wpa,
326                                                             bss->wpa_pairwise,
327                                                             bss->rsn_pairwise);
328
329                 if (cred->key_len >= 8 && cred->key_len < 64) {
330                         os_free(bss->ssid.wpa_passphrase);
331                         bss->ssid.wpa_passphrase = os_zalloc(cred->key_len + 1);
332                         if (bss->ssid.wpa_passphrase)
333                                 os_memcpy(bss->ssid.wpa_passphrase, cred->key,
334                                           cred->key_len);
335                         os_free(bss->ssid.wpa_psk);
336                         bss->ssid.wpa_psk = NULL;
337                 } else if (cred->key_len == 64) {
338                         os_free(bss->ssid.wpa_psk);
339                         bss->ssid.wpa_psk =
340                                 os_zalloc(sizeof(struct hostapd_wpa_psk));
341                         if (bss->ssid.wpa_psk &&
342                             hexstr2bin((const char *) cred->key,
343                                        bss->ssid.wpa_psk->psk, PMK_LEN) == 0) {
344                                 bss->ssid.wpa_psk->group = 1;
345                                 os_free(bss->ssid.wpa_passphrase);
346                                 bss->ssid.wpa_passphrase = NULL;
347                         }
348                 }
349                 bss->auth_algs = 1;
350         } else {
351                 if ((cred->auth_type & WPS_AUTH_OPEN) &&
352                     (cred->auth_type & WPS_AUTH_SHARED))
353                         bss->auth_algs = 3;
354                 else if (cred->auth_type & WPS_AUTH_SHARED)
355                         bss->auth_algs = 2;
356                 else
357                         bss->auth_algs = 1;
358                 if (cred->encr_type & WPS_ENCR_WEP && cred->key_idx > 0 &&
359                     cred->key_idx <= 4) {
360                         struct hostapd_wep_keys *wep = &bss->ssid.wep;
361                         int idx = cred->key_idx;
362                         if (idx)
363                                 idx--;
364                         wep->idx = idx;
365                         if (cred->key_len == 10 || cred->key_len == 26) {
366                                 os_free(wep->key[idx]);
367                                 wep->key[idx] = os_malloc(cred->key_len / 2);
368                                 if (wep->key[idx] == NULL ||
369                                     hexstr2bin((const char *) cred->key,
370                                                wep->key[idx],
371                                                cred->key_len / 2))
372                                         return -1;
373                                 wep->len[idx] = cred->key_len / 2;
374                         } else {
375                                 os_free(wep->key[idx]);
376                                 wep->key[idx] = os_malloc(cred->key_len);
377                                 if (wep->key[idx] == NULL)
378                                         return -1;
379                                 os_memcpy(wep->key[idx], cred->key,
380                                           cred->key_len);
381                                 wep->len[idx] = cred->key_len;
382                         }
383                         wep->keys_set = 1;
384                 }
385         }
386
387         /* Schedule configuration reload after short period of time to allow
388          * EAP-WSC to be finished.
389          */
390         eloop_register_timeout(0, 100000, wps_reload_config, hapd->iface,
391                                NULL);
392
393         return 0;
394 }
395
396
397 static int hapd_wps_cred_cb(struct hostapd_data *hapd, void *ctx)
398 {
399         const struct wps_credential *cred = ctx;
400         FILE *oconf, *nconf;
401         size_t len, i;
402         char *tmp_fname;
403         char buf[1024];
404         int multi_bss;
405         int wpa;
406
407         if (hapd->wps == NULL)
408                 return 0;
409
410         wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
411                         cred->cred_attr, cred->cred_attr_len);
412
413         wpa_printf(MSG_DEBUG, "WPS: Received new AP Settings");
414         wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
415         wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
416                    cred->auth_type);
417         wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
418         wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
419         wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
420                         cred->key, cred->key_len);
421         wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
422                    MAC2STR(cred->mac_addr));
423
424         if ((hapd->conf->wps_cred_processing == 1 ||
425              hapd->conf->wps_cred_processing == 2) && cred->cred_attr) {
426                 hapd_new_ap_event(hapd, cred->cred_attr, cred->cred_attr_len);
427         } else if (hapd->conf->wps_cred_processing == 1 ||
428                    hapd->conf->wps_cred_processing == 2) {
429                 struct wpabuf *attr;
430                 attr = wpabuf_alloc(200);
431                 if (attr && wps_build_credential_wrap(attr, cred) == 0)
432                         hapd_new_ap_event(hapd, wpabuf_head_u8(attr),
433                                           wpabuf_len(attr));
434                 wpabuf_free(attr);
435         } else
436                 wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_NEW_AP_SETTINGS);
437
438         if (hapd->conf->wps_cred_processing == 1)
439                 return 0;
440
441         os_memcpy(hapd->wps->ssid, cred->ssid, cred->ssid_len);
442         hapd->wps->ssid_len = cred->ssid_len;
443         hapd->wps->encr_types = cred->encr_type;
444         hapd->wps->auth_types = cred->auth_type;
445         if (cred->key_len == 0) {
446                 os_free(hapd->wps->network_key);
447                 hapd->wps->network_key = NULL;
448                 hapd->wps->network_key_len = 0;
449         } else {
450                 if (hapd->wps->network_key == NULL ||
451                     hapd->wps->network_key_len < cred->key_len) {
452                         hapd->wps->network_key_len = 0;
453                         os_free(hapd->wps->network_key);
454                         hapd->wps->network_key = os_malloc(cred->key_len);
455                         if (hapd->wps->network_key == NULL)
456                                 return -1;
457                 }
458                 hapd->wps->network_key_len = cred->key_len;
459                 os_memcpy(hapd->wps->network_key, cred->key, cred->key_len);
460         }
461         hapd->wps->wps_state = WPS_STATE_CONFIGURED;
462
463         if (hapd->iface->config_fname == NULL)
464                 return hapd_wps_reconfig_in_memory(hapd, cred);
465         len = os_strlen(hapd->iface->config_fname) + 5;
466         tmp_fname = os_malloc(len);
467         if (tmp_fname == NULL)
468                 return -1;
469         os_snprintf(tmp_fname, len, "%s-new", hapd->iface->config_fname);
470
471         oconf = fopen(hapd->iface->config_fname, "r");
472         if (oconf == NULL) {
473                 wpa_printf(MSG_WARNING, "WPS: Could not open current "
474                            "configuration file");
475                 os_free(tmp_fname);
476                 return -1;
477         }
478
479         nconf = fopen(tmp_fname, "w");
480         if (nconf == NULL) {
481                 wpa_printf(MSG_WARNING, "WPS: Could not write updated "
482                            "configuration file");
483                 os_free(tmp_fname);
484                 fclose(oconf);
485                 return -1;
486         }
487
488         fprintf(nconf, "# WPS configuration - START\n");
489
490         fprintf(nconf, "wps_state=2\n");
491
492         if (is_hex(cred->ssid, cred->ssid_len)) {
493                 fprintf(nconf, "ssid2=");
494                 for (i = 0; i < cred->ssid_len; i++)
495                         fprintf(nconf, "%02x", cred->ssid[i]);
496                 fprintf(nconf, "\n");
497         } else {
498                 fprintf(nconf, "ssid=");
499                 for (i = 0; i < cred->ssid_len; i++)
500                         fputc(cred->ssid[i], nconf);
501                 fprintf(nconf, "\n");
502         }
503
504         if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) &&
505             (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)))
506                 wpa = 3;
507         else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK))
508                 wpa = 2;
509         else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))
510                 wpa = 1;
511         else
512                 wpa = 0;
513
514         if (wpa) {
515                 char *prefix;
516                 fprintf(nconf, "wpa=%d\n", wpa);
517
518                 fprintf(nconf, "wpa_key_mgmt=");
519                 prefix = "";
520                 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA)) {
521                         fprintf(nconf, "WPA-EAP");
522                         prefix = " ";
523                 }
524                 if (cred->auth_type & (WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK))
525                         fprintf(nconf, "%sWPA-PSK", prefix);
526                 fprintf(nconf, "\n");
527
528                 fprintf(nconf, "wpa_pairwise=");
529                 prefix = "";
530                 if (cred->encr_type & WPS_ENCR_AES) {
531                         fprintf(nconf, "CCMP");
532                         prefix = " ";
533                 }
534                 if (cred->encr_type & WPS_ENCR_TKIP) {
535                         fprintf(nconf, "%sTKIP", prefix);
536                 }
537                 fprintf(nconf, "\n");
538
539                 if (cred->key_len >= 8 && cred->key_len < 64) {
540                         fprintf(nconf, "wpa_passphrase=");
541                         for (i = 0; i < cred->key_len; i++)
542                                 fputc(cred->key[i], nconf);
543                         fprintf(nconf, "\n");
544                 } else if (cred->key_len == 64) {
545                         fprintf(nconf, "wpa_psk=");
546                         for (i = 0; i < cred->key_len; i++)
547                                 fputc(cred->key[i], nconf);
548                         fprintf(nconf, "\n");
549                 } else {
550                         wpa_printf(MSG_WARNING, "WPS: Invalid key length %lu "
551                                    "for WPA/WPA2",
552                                    (unsigned long) cred->key_len);
553                 }
554
555                 fprintf(nconf, "auth_algs=1\n");
556         } else {
557                 if ((cred->auth_type & WPS_AUTH_OPEN) &&
558                     (cred->auth_type & WPS_AUTH_SHARED))
559                         fprintf(nconf, "auth_algs=3\n");
560                 else if (cred->auth_type & WPS_AUTH_SHARED)
561                         fprintf(nconf, "auth_algs=2\n");
562                 else
563                         fprintf(nconf, "auth_algs=1\n");
564
565                 if (cred->encr_type & WPS_ENCR_WEP && cred->key_idx <= 4) {
566                         int key_idx = cred->key_idx;
567                         if (key_idx)
568                                 key_idx--;
569                         fprintf(nconf, "wep_default_key=%d\n", key_idx);
570                         fprintf(nconf, "wep_key%d=", key_idx);
571                         if (cred->key_len == 10 || cred->key_len == 26) {
572                                 /* WEP key as a hex string */
573                                 for (i = 0; i < cred->key_len; i++)
574                                         fputc(cred->key[i], nconf);
575                         } else {
576                                 /* Raw WEP key; convert to hex */
577                                 for (i = 0; i < cred->key_len; i++)
578                                         fprintf(nconf, "%02x", cred->key[i]);
579                         }
580                         fprintf(nconf, "\n");
581                 }
582         }
583
584         fprintf(nconf, "# WPS configuration - END\n");
585
586         multi_bss = 0;
587         while (fgets(buf, sizeof(buf), oconf)) {
588                 if (os_strncmp(buf, "bss=", 4) == 0)
589                         multi_bss = 1;
590                 if (!multi_bss &&
591                     (str_starts(buf, "ssid=") ||
592                      str_starts(buf, "ssid2=") ||
593                      str_starts(buf, "auth_algs=") ||
594                      str_starts(buf, "wep_default_key=") ||
595                      str_starts(buf, "wep_key") ||
596                      str_starts(buf, "wps_state=") ||
597                      str_starts(buf, "wpa=") ||
598                      str_starts(buf, "wpa_psk=") ||
599                      str_starts(buf, "wpa_pairwise=") ||
600                      str_starts(buf, "rsn_pairwise=") ||
601                      str_starts(buf, "wpa_key_mgmt=") ||
602                      str_starts(buf, "wpa_passphrase="))) {
603                         fprintf(nconf, "#WPS# %s", buf);
604                 } else
605                         fprintf(nconf, "%s", buf);
606         }
607
608         fclose(nconf);
609         fclose(oconf);
610
611         if (rename(tmp_fname, hapd->iface->config_fname) < 0) {
612                 wpa_printf(MSG_WARNING, "WPS: Failed to rename the updated "
613                            "configuration file: %s", strerror(errno));
614                 os_free(tmp_fname);
615                 return -1;
616         }
617
618         os_free(tmp_fname);
619
620         /* Schedule configuration reload after short period of time to allow
621          * EAP-WSC to be finished.
622          */
623         eloop_register_timeout(0, 100000, wps_reload_config, hapd->iface,
624                                NULL);
625
626         wpa_printf(MSG_DEBUG, "WPS: AP configuration updated");
627
628         return 0;
629 }
630
631
632 static int hostapd_wps_cred_cb(void *ctx, const struct wps_credential *cred)
633 {
634         struct hostapd_data *hapd = ctx;
635         return hostapd_wps_for_each(hapd, hapd_wps_cred_cb, (void *) cred);
636 }
637
638
639 static void hostapd_wps_reenable_ap_pin(void *eloop_data, void *user_ctx)
640 {
641         struct hostapd_data *hapd = eloop_data;
642
643         if (hapd->conf->ap_setup_locked)
644                 return;
645         if (hapd->ap_pin_failures_consecutive >= 10)
646                 return;
647
648         wpa_printf(MSG_DEBUG, "WPS: Re-enable AP PIN");
649         wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_AP_SETUP_UNLOCKED);
650         hapd->wps->ap_setup_locked = 0;
651         wps_registrar_update_ie(hapd->wps->registrar);
652 }
653
654
655 static int wps_pwd_auth_fail(struct hostapd_data *hapd, void *ctx)
656 {
657         struct wps_event_pwd_auth_fail *data = ctx;
658
659         if (!data->enrollee || hapd->conf->ap_pin == NULL || hapd->wps == NULL)
660                 return 0;
661
662         /*
663          * Registrar failed to prove its knowledge of the AP PIN. Lock AP setup
664          * for some time if this happens multiple times to slow down brute
665          * force attacks.
666          */
667         hapd->ap_pin_failures++;
668         hapd->ap_pin_failures_consecutive++;
669         wpa_printf(MSG_DEBUG, "WPS: AP PIN authentication failure number %u "
670                    "(%u consecutive)",
671                    hapd->ap_pin_failures, hapd->ap_pin_failures_consecutive);
672         if (hapd->ap_pin_failures < 3)
673                 return 0;
674
675         wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_AP_SETUP_LOCKED);
676         hapd->wps->ap_setup_locked = 1;
677
678         wps_registrar_update_ie(hapd->wps->registrar);
679
680         if (!hapd->conf->ap_setup_locked &&
681             hapd->ap_pin_failures_consecutive >= 10) {
682                 /*
683                  * In indefinite lockdown - disable automatic AP PIN
684                  * reenablement.
685                  */
686                 eloop_cancel_timeout(hostapd_wps_reenable_ap_pin, hapd, NULL);
687                 wpa_printf(MSG_DEBUG, "WPS: AP PIN disabled indefinitely");
688         } else if (!hapd->conf->ap_setup_locked) {
689                 if (hapd->ap_pin_lockout_time == 0)
690                         hapd->ap_pin_lockout_time = 60;
691                 else if (hapd->ap_pin_lockout_time < 365 * 24 * 60 * 60 &&
692                          (hapd->ap_pin_failures % 3) == 0)
693                         hapd->ap_pin_lockout_time *= 2;
694
695                 wpa_printf(MSG_DEBUG, "WPS: Disable AP PIN for %u seconds",
696                            hapd->ap_pin_lockout_time);
697                 eloop_cancel_timeout(hostapd_wps_reenable_ap_pin, hapd, NULL);
698                 eloop_register_timeout(hapd->ap_pin_lockout_time, 0,
699                                        hostapd_wps_reenable_ap_pin, hapd,
700                                        NULL);
701         }
702
703         return 0;
704 }
705
706
707 static void hostapd_pwd_auth_fail(struct hostapd_data *hapd,
708                                   struct wps_event_pwd_auth_fail *data)
709 {
710         hostapd_wps_for_each(hapd, wps_pwd_auth_fail, data);
711 }
712
713
714 static int wps_ap_pin_success(struct hostapd_data *hapd, void *ctx)
715 {
716         if (hapd->conf->ap_pin == NULL || hapd->wps == NULL)
717                 return 0;
718
719         if (hapd->ap_pin_failures_consecutive == 0)
720                 return 0;
721
722         wpa_printf(MSG_DEBUG, "WPS: Clear consecutive AP PIN failure counter "
723                    "- total validation failures %u (%u consecutive)",
724                    hapd->ap_pin_failures, hapd->ap_pin_failures_consecutive);
725         hapd->ap_pin_failures_consecutive = 0;
726
727         return 0;
728 }
729
730
731 static void hostapd_wps_ap_pin_success(struct hostapd_data *hapd)
732 {
733         hostapd_wps_for_each(hapd, wps_ap_pin_success, NULL);
734 }
735
736
737 static void hostapd_wps_event_fail(struct hostapd_data *hapd,
738                                    struct wps_event_fail *fail)
739 {
740         if (fail->error_indication > 0 &&
741             fail->error_indication < NUM_WPS_EI_VALUES) {
742                 wpa_msg(hapd->msg_ctx, MSG_INFO,
743                         WPS_EVENT_FAIL "msg=%d config_error=%d reason=%d (%s)",
744                         fail->msg, fail->config_error, fail->error_indication,
745                         wps_ei_str(fail->error_indication));
746         } else {
747                 wpa_msg(hapd->msg_ctx, MSG_INFO,
748                         WPS_EVENT_FAIL "msg=%d config_error=%d",
749                         fail->msg, fail->config_error);
750         }
751 }
752
753
754 static void hostapd_wps_event_cb(void *ctx, enum wps_event event,
755                                  union wps_event_data *data)
756 {
757         struct hostapd_data *hapd = ctx;
758
759         switch (event) {
760         case WPS_EV_M2D:
761                 wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_M2D);
762                 break;
763         case WPS_EV_FAIL:
764                 hostapd_wps_event_fail(hapd, &data->fail);
765                 break;
766         case WPS_EV_SUCCESS:
767                 wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_SUCCESS);
768                 break;
769         case WPS_EV_PWD_AUTH_FAIL:
770                 hostapd_pwd_auth_fail(hapd, &data->pwd_auth_fail);
771                 break;
772         case WPS_EV_PBC_OVERLAP:
773                 wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_OVERLAP);
774                 break;
775         case WPS_EV_PBC_TIMEOUT:
776                 wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_TIMEOUT);
777                 break;
778         case WPS_EV_ER_AP_ADD:
779                 break;
780         case WPS_EV_ER_AP_REMOVE:
781                 break;
782         case WPS_EV_ER_ENROLLEE_ADD:
783                 break;
784         case WPS_EV_ER_ENROLLEE_REMOVE:
785                 break;
786         case WPS_EV_ER_AP_SETTINGS:
787                 break;
788         case WPS_EV_ER_SET_SELECTED_REGISTRAR:
789                 break;
790         case WPS_EV_AP_PIN_SUCCESS:
791                 hostapd_wps_ap_pin_success(hapd);
792                 break;
793         }
794         if (hapd->wps_event_cb)
795                 hapd->wps_event_cb(hapd->wps_event_cb_ctx, event, data);
796 }
797
798
799 static void hostapd_wps_clear_ies(struct hostapd_data *hapd)
800 {
801         wpabuf_free(hapd->wps_beacon_ie);
802         hapd->wps_beacon_ie = NULL;
803
804         wpabuf_free(hapd->wps_probe_resp_ie);
805         hapd->wps_probe_resp_ie = NULL;
806
807         hostapd_set_ap_wps_ie(hapd);
808 }
809
810
811 static int get_uuid_cb(struct hostapd_iface *iface, void *ctx)
812 {
813         const u8 **uuid = ctx;
814         size_t j;
815
816         if (iface == NULL)
817                 return 0;
818         for (j = 0; j < iface->num_bss; j++) {
819                 struct hostapd_data *hapd = iface->bss[j];
820                 if (hapd->wps && !hapd->conf->wps_independent &&
821                     !is_nil_uuid(hapd->wps->uuid)) {
822                         *uuid = hapd->wps->uuid;
823                         return 1;
824                 }
825         }
826
827         return 0;
828 }
829
830
831 static const u8 * get_own_uuid(struct hostapd_iface *iface)
832 {
833         const u8 *uuid;
834         if (iface->interfaces == NULL ||
835             iface->interfaces->for_each_interface == NULL)
836                 return NULL;
837         uuid = NULL;
838         iface->interfaces->for_each_interface(iface->interfaces, get_uuid_cb,
839                                               &uuid);
840         return uuid;
841 }
842
843
844 static int count_interface_cb(struct hostapd_iface *iface, void *ctx)
845 {
846         int *count= ctx;
847         (*count)++;
848         return 0;
849 }
850
851
852 static int interface_count(struct hostapd_iface *iface)
853 {
854         int count = 0;
855         if (iface->interfaces == NULL ||
856             iface->interfaces->for_each_interface == NULL)
857                 return 0;
858         iface->interfaces->for_each_interface(iface->interfaces,
859                                               count_interface_cb, &count);
860         return count;
861 }
862
863
864 static int hostapd_wps_set_vendor_ext(struct hostapd_data *hapd,
865                                       struct wps_context *wps)
866 {
867         int i;
868
869         for (i = 0; i < MAX_WPS_VENDOR_EXTENSIONS; i++) {
870                 wpabuf_free(wps->dev.vendor_ext[i]);
871                 wps->dev.vendor_ext[i] = NULL;
872
873                 if (hapd->conf->wps_vendor_ext[i] == NULL)
874                         continue;
875
876                 wps->dev.vendor_ext[i] =
877                         wpabuf_dup(hapd->conf->wps_vendor_ext[i]);
878                 if (wps->dev.vendor_ext[i] == NULL) {
879                         while (--i >= 0)
880                                 wpabuf_free(wps->dev.vendor_ext[i]);
881                         return -1;
882                 }
883         }
884
885         return 0;
886 }
887
888
889 int hostapd_init_wps(struct hostapd_data *hapd,
890                      struct hostapd_bss_config *conf)
891 {
892         struct wps_context *wps;
893         struct wps_registrar_config cfg;
894
895         if (conf->wps_state == 0) {
896                 hostapd_wps_clear_ies(hapd);
897                 return 0;
898         }
899
900         wps = os_zalloc(sizeof(*wps));
901         if (wps == NULL)
902                 return -1;
903
904         wps->cred_cb = hostapd_wps_cred_cb;
905         wps->event_cb = hostapd_wps_event_cb;
906         wps->cb_ctx = hapd;
907
908         os_memset(&cfg, 0, sizeof(cfg));
909         wps->wps_state = hapd->conf->wps_state;
910         wps->ap_setup_locked = hapd->conf->ap_setup_locked;
911         if (is_nil_uuid(hapd->conf->uuid)) {
912                 const u8 *uuid;
913                 uuid = get_own_uuid(hapd->iface);
914                 if (uuid && !conf->wps_independent) {
915                         os_memcpy(wps->uuid, uuid, UUID_LEN);
916                         wpa_hexdump(MSG_DEBUG, "WPS: Clone UUID from another "
917                                     "interface", wps->uuid, UUID_LEN);
918                 } else {
919                         uuid_gen_mac_addr(hapd->own_addr, wps->uuid);
920                         wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC "
921                                     "address", wps->uuid, UUID_LEN);
922                 }
923         } else {
924                 os_memcpy(wps->uuid, hapd->conf->uuid, UUID_LEN);
925                 wpa_hexdump(MSG_DEBUG, "WPS: Use configured UUID",
926                             wps->uuid, UUID_LEN);
927         }
928         wps->ssid_len = hapd->conf->ssid.ssid_len;
929         os_memcpy(wps->ssid, hapd->conf->ssid.ssid, wps->ssid_len);
930         wps->ap = 1;
931         os_memcpy(wps->dev.mac_addr, hapd->own_addr, ETH_ALEN);
932         wps->dev.device_name = hapd->conf->device_name ?
933                 os_strdup(hapd->conf->device_name) : NULL;
934         wps->dev.manufacturer = hapd->conf->manufacturer ?
935                 os_strdup(hapd->conf->manufacturer) : NULL;
936         wps->dev.model_name = hapd->conf->model_name ?
937                 os_strdup(hapd->conf->model_name) : NULL;
938         wps->dev.model_number = hapd->conf->model_number ?
939                 os_strdup(hapd->conf->model_number) : NULL;
940         wps->dev.serial_number = hapd->conf->serial_number ?
941                 os_strdup(hapd->conf->serial_number) : NULL;
942         wps->config_methods =
943                 wps_config_methods_str2bin(hapd->conf->config_methods);
944 #ifdef CONFIG_WPS2
945         if ((wps->config_methods &
946              (WPS_CONFIG_DISPLAY | WPS_CONFIG_VIRT_DISPLAY |
947               WPS_CONFIG_PHY_DISPLAY)) == WPS_CONFIG_DISPLAY) {
948                 wpa_printf(MSG_INFO, "WPS: Converting display to "
949                            "virtual_display for WPS 2.0 compliance");
950                 wps->config_methods |= WPS_CONFIG_VIRT_DISPLAY;
951         }
952         if ((wps->config_methods &
953              (WPS_CONFIG_PUSHBUTTON | WPS_CONFIG_VIRT_PUSHBUTTON |
954               WPS_CONFIG_PHY_PUSHBUTTON)) == WPS_CONFIG_PUSHBUTTON) {
955                 wpa_printf(MSG_INFO, "WPS: Converting push_button to "
956                            "virtual_push_button for WPS 2.0 compliance");
957                 wps->config_methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
958         }
959 #endif /* CONFIG_WPS2 */
960         os_memcpy(wps->dev.pri_dev_type, hapd->conf->device_type,
961                   WPS_DEV_TYPE_LEN);
962
963         if (hostapd_wps_set_vendor_ext(hapd, wps) < 0) {
964                 os_free(wps);
965                 return -1;
966         }
967
968         wps->dev.os_version = WPA_GET_BE32(hapd->conf->os_version);
969
970         if (conf->wps_rf_bands) {
971                 wps->dev.rf_bands = conf->wps_rf_bands;
972         } else {
973                 wps->dev.rf_bands =
974                         hapd->iconf->hw_mode == HOSTAPD_MODE_IEEE80211A ?
975                         WPS_RF_50GHZ : WPS_RF_24GHZ; /* FIX: dualband AP */
976         }
977
978         if (conf->wpa & WPA_PROTO_RSN) {
979                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK)
980                         wps->auth_types |= WPS_AUTH_WPA2PSK;
981                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X)
982                         wps->auth_types |= WPS_AUTH_WPA2;
983
984                 if (conf->rsn_pairwise & WPA_CIPHER_CCMP)
985                         wps->encr_types |= WPS_ENCR_AES;
986                 if (conf->rsn_pairwise & WPA_CIPHER_TKIP)
987                         wps->encr_types |= WPS_ENCR_TKIP;
988         }
989
990         if (conf->wpa & WPA_PROTO_WPA) {
991                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK)
992                         wps->auth_types |= WPS_AUTH_WPAPSK;
993                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X)
994                         wps->auth_types |= WPS_AUTH_WPA;
995
996                 if (conf->wpa_pairwise & WPA_CIPHER_CCMP)
997                         wps->encr_types |= WPS_ENCR_AES;
998                 if (conf->wpa_pairwise & WPA_CIPHER_TKIP)
999                         wps->encr_types |= WPS_ENCR_TKIP;
1000         }
1001
1002         if (conf->ssid.security_policy == SECURITY_PLAINTEXT) {
1003                 wps->encr_types |= WPS_ENCR_NONE;
1004                 wps->auth_types |= WPS_AUTH_OPEN;
1005         } else if (conf->ssid.security_policy == SECURITY_STATIC_WEP) {
1006                 wps->encr_types |= WPS_ENCR_WEP;
1007                 if (conf->auth_algs & WPA_AUTH_ALG_OPEN)
1008                         wps->auth_types |= WPS_AUTH_OPEN;
1009                 if (conf->auth_algs & WPA_AUTH_ALG_SHARED)
1010                         wps->auth_types |= WPS_AUTH_SHARED;
1011         } else if (conf->ssid.security_policy == SECURITY_IEEE_802_1X) {
1012                 wps->auth_types |= WPS_AUTH_OPEN;
1013                 if (conf->default_wep_key_len)
1014                         wps->encr_types |= WPS_ENCR_WEP;
1015                 else
1016                         wps->encr_types |= WPS_ENCR_NONE;
1017         }
1018
1019         if (conf->ssid.wpa_psk_file) {
1020                 /* Use per-device PSKs */
1021         } else if (conf->ssid.wpa_passphrase) {
1022                 wps->network_key = (u8 *) os_strdup(conf->ssid.wpa_passphrase);
1023                 wps->network_key_len = os_strlen(conf->ssid.wpa_passphrase);
1024         } else if (conf->ssid.wpa_psk) {
1025                 wps->network_key = os_malloc(2 * PMK_LEN + 1);
1026                 if (wps->network_key == NULL) {
1027                         os_free(wps);
1028                         return -1;
1029                 }
1030                 wpa_snprintf_hex((char *) wps->network_key, 2 * PMK_LEN + 1,
1031                                  conf->ssid.wpa_psk->psk, PMK_LEN);
1032                 wps->network_key_len = 2 * PMK_LEN;
1033         } else if (conf->ssid.wep.keys_set && conf->ssid.wep.key[0]) {
1034                 wps->network_key = os_malloc(conf->ssid.wep.len[0]);
1035                 if (wps->network_key == NULL) {
1036                         os_free(wps);
1037                         return -1;
1038                 }
1039                 os_memcpy(wps->network_key, conf->ssid.wep.key[0],
1040                           conf->ssid.wep.len[0]);
1041                 wps->network_key_len = conf->ssid.wep.len[0];
1042         }
1043
1044         if (conf->ssid.wpa_psk) {
1045                 os_memcpy(wps->psk, conf->ssid.wpa_psk->psk, PMK_LEN);
1046                 wps->psk_set = 1;
1047         }
1048
1049         if (conf->wps_state == WPS_STATE_NOT_CONFIGURED) {
1050                 /* Override parameters to enable security by default */
1051                 wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
1052                 wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
1053         }
1054
1055         wps->ap_settings = conf->ap_settings;
1056         wps->ap_settings_len = conf->ap_settings_len;
1057
1058         cfg.new_psk_cb = hostapd_wps_new_psk_cb;
1059         cfg.set_ie_cb = hostapd_wps_set_ie_cb;
1060         cfg.pin_needed_cb = hostapd_wps_pin_needed_cb;
1061         cfg.reg_success_cb = hostapd_wps_reg_success_cb;
1062         cfg.enrollee_seen_cb = hostapd_wps_enrollee_seen_cb;
1063         cfg.cb_ctx = hapd;
1064         cfg.skip_cred_build = conf->skip_cred_build;
1065         cfg.extra_cred = conf->extra_cred;
1066         cfg.extra_cred_len = conf->extra_cred_len;
1067         cfg.disable_auto_conf = (hapd->conf->wps_cred_processing == 1) &&
1068                 conf->skip_cred_build;
1069         if (conf->ssid.security_policy == SECURITY_STATIC_WEP)
1070                 cfg.static_wep_only = 1;
1071         cfg.dualband = interface_count(hapd->iface) > 1;
1072         if ((wps->dev.rf_bands & (WPS_RF_50GHZ | WPS_RF_24GHZ)) ==
1073             (WPS_RF_50GHZ | WPS_RF_24GHZ))
1074                 cfg.dualband = 1;
1075         if (cfg.dualband)
1076                 wpa_printf(MSG_DEBUG, "WPS: Dualband AP");
1077
1078         wps->registrar = wps_registrar_init(wps, &cfg);
1079         if (wps->registrar == NULL) {
1080                 wpa_printf(MSG_ERROR, "Failed to initialize WPS Registrar");
1081                 os_free(wps->network_key);
1082                 os_free(wps);
1083                 return -1;
1084         }
1085
1086 #ifdef CONFIG_WPS_UPNP
1087         wps->friendly_name = hapd->conf->friendly_name;
1088         wps->manufacturer_url = hapd->conf->manufacturer_url;
1089         wps->model_description = hapd->conf->model_description;
1090         wps->model_url = hapd->conf->model_url;
1091         wps->upc = hapd->conf->upc;
1092 #endif /* CONFIG_WPS_UPNP */
1093
1094         hostapd_register_probereq_cb(hapd, hostapd_wps_probe_req_rx, hapd);
1095
1096         hapd->wps = wps;
1097
1098         return 0;
1099 }
1100
1101
1102 int hostapd_init_wps_complete(struct hostapd_data *hapd)
1103 {
1104         struct wps_context *wps = hapd->wps;
1105
1106         if (wps == NULL)
1107                 return 0;
1108
1109 #ifdef CONFIG_WPS_UPNP
1110         if (hostapd_wps_upnp_init(hapd, wps) < 0) {
1111                 wpa_printf(MSG_ERROR, "Failed to initialize WPS UPnP");
1112                 wps_registrar_deinit(wps->registrar);
1113                 os_free(wps->network_key);
1114                 os_free(wps);
1115                 hapd->wps = NULL;
1116                 return -1;
1117         }
1118 #endif /* CONFIG_WPS_UPNP */
1119
1120         return 0;
1121 }
1122
1123
1124 static void hostapd_wps_nfc_clear(struct wps_context *wps)
1125 {
1126 #ifdef CONFIG_WPS_NFC
1127         wps->ap_nfc_dev_pw_id = 0;
1128         wpabuf_free(wps->ap_nfc_dh_pubkey);
1129         wps->ap_nfc_dh_pubkey = NULL;
1130         wpabuf_free(wps->ap_nfc_dh_privkey);
1131         wps->ap_nfc_dh_privkey = NULL;
1132         wpabuf_free(wps->ap_nfc_dev_pw);
1133         wps->ap_nfc_dev_pw = NULL;
1134 #endif /* CONFIG_WPS_NFC */
1135 }
1136
1137
1138 void hostapd_deinit_wps(struct hostapd_data *hapd)
1139 {
1140         eloop_cancel_timeout(hostapd_wps_reenable_ap_pin, hapd, NULL);
1141         eloop_cancel_timeout(hostapd_wps_ap_pin_timeout, hapd, NULL);
1142         if (hapd->wps == NULL)
1143                 return;
1144 #ifdef CONFIG_WPS_UPNP
1145         hostapd_wps_upnp_deinit(hapd);
1146 #endif /* CONFIG_WPS_UPNP */
1147         wps_registrar_deinit(hapd->wps->registrar);
1148         os_free(hapd->wps->network_key);
1149         wps_device_data_free(&hapd->wps->dev);
1150         wpabuf_free(hapd->wps->dh_pubkey);
1151         wpabuf_free(hapd->wps->dh_privkey);
1152         wps_free_pending_msgs(hapd->wps->upnp_msgs);
1153         hostapd_wps_nfc_clear(hapd->wps);
1154         os_free(hapd->wps);
1155         hapd->wps = NULL;
1156         hostapd_wps_clear_ies(hapd);
1157 }
1158
1159
1160 void hostapd_update_wps(struct hostapd_data *hapd)
1161 {
1162         if (hapd->wps == NULL)
1163                 return;
1164
1165 #ifdef CONFIG_WPS_UPNP
1166         hapd->wps->friendly_name = hapd->conf->friendly_name;
1167         hapd->wps->manufacturer_url = hapd->conf->manufacturer_url;
1168         hapd->wps->model_description = hapd->conf->model_description;
1169         hapd->wps->model_url = hapd->conf->model_url;
1170         hapd->wps->upc = hapd->conf->upc;
1171 #endif /* CONFIG_WPS_UPNP */
1172
1173         hostapd_wps_set_vendor_ext(hapd, hapd->wps);
1174
1175         if (hapd->conf->wps_state)
1176                 wps_registrar_update_ie(hapd->wps->registrar);
1177         else
1178                 hostapd_deinit_wps(hapd);
1179 }
1180
1181
1182 struct wps_add_pin_data {
1183         const u8 *addr;
1184         const u8 *uuid;
1185         const u8 *pin;
1186         size_t pin_len;
1187         int timeout;
1188         int added;
1189 };
1190
1191
1192 static int wps_add_pin(struct hostapd_data *hapd, void *ctx)
1193 {
1194         struct wps_add_pin_data *data = ctx;
1195         int ret;
1196
1197         if (hapd->wps == NULL)
1198                 return 0;
1199         ret = wps_registrar_add_pin(hapd->wps->registrar, data->addr,
1200                                     data->uuid, data->pin, data->pin_len,
1201                                     data->timeout);
1202         if (ret == 0)
1203                 data->added++;
1204         return ret;
1205 }
1206
1207
1208 int hostapd_wps_add_pin(struct hostapd_data *hapd, const u8 *addr,
1209                         const char *uuid, const char *pin, int timeout)
1210 {
1211         u8 u[UUID_LEN];
1212         struct wps_add_pin_data data;
1213
1214         data.addr = addr;
1215         data.uuid = u;
1216         data.pin = (const u8 *) pin;
1217         data.pin_len = os_strlen(pin);
1218         data.timeout = timeout;
1219         data.added = 0;
1220
1221         if (os_strcmp(uuid, "any") == 0)
1222                 data.uuid = NULL;
1223         else {
1224                 if (uuid_str2bin(uuid, u))
1225                         return -1;
1226                 data.uuid = u;
1227         }
1228         if (hostapd_wps_for_each(hapd, wps_add_pin, &data) < 0)
1229                 return -1;
1230         return data.added ? 0 : -1;
1231 }
1232
1233
1234 static int wps_button_pushed(struct hostapd_data *hapd, void *ctx)
1235 {
1236         const u8 *p2p_dev_addr = ctx;
1237         if (hapd->wps == NULL)
1238                 return 0;
1239         return wps_registrar_button_pushed(hapd->wps->registrar, p2p_dev_addr);
1240 }
1241
1242
1243 int hostapd_wps_button_pushed(struct hostapd_data *hapd,
1244                               const u8 *p2p_dev_addr)
1245 {
1246         return hostapd_wps_for_each(hapd, wps_button_pushed,
1247                                     (void *) p2p_dev_addr);
1248 }
1249
1250
1251 static int wps_cancel(struct hostapd_data *hapd, void *ctx)
1252 {
1253         if (hapd->wps == NULL)
1254                 return 0;
1255
1256         wps_registrar_wps_cancel(hapd->wps->registrar);
1257         ap_for_each_sta(hapd, ap_sta_wps_cancel, NULL);
1258
1259         return 0;
1260 }
1261
1262
1263 int hostapd_wps_cancel(struct hostapd_data *hapd)
1264 {
1265         return hostapd_wps_for_each(hapd, wps_cancel, NULL);
1266 }
1267
1268
1269 static int hostapd_wps_probe_req_rx(void *ctx, const u8 *addr, const u8 *da,
1270                                     const u8 *bssid,
1271                                     const u8 *ie, size_t ie_len,
1272                                     int ssi_signal)
1273 {
1274         struct hostapd_data *hapd = ctx;
1275         struct wpabuf *wps_ie;
1276         struct ieee802_11_elems elems;
1277
1278         if (hapd->wps == NULL)
1279                 return 0;
1280
1281         if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
1282                 wpa_printf(MSG_DEBUG, "WPS: Could not parse ProbeReq from "
1283                            MACSTR, MAC2STR(addr));
1284                 return 0;
1285         }
1286
1287         if (elems.ssid && elems.ssid_len > 0 &&
1288             (elems.ssid_len != hapd->conf->ssid.ssid_len ||
1289              os_memcmp(elems.ssid, hapd->conf->ssid.ssid, elems.ssid_len) !=
1290              0))
1291                 return 0; /* Not for us */
1292
1293         wps_ie = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
1294         if (wps_ie == NULL)
1295                 return 0;
1296         if (wps_validate_probe_req(wps_ie, addr) < 0) {
1297                 wpabuf_free(wps_ie);
1298                 return 0;
1299         }
1300
1301         if (wpabuf_len(wps_ie) > 0) {
1302                 int p2p_wildcard = 0;
1303 #ifdef CONFIG_P2P
1304                 if (elems.ssid && elems.ssid_len == P2P_WILDCARD_SSID_LEN &&
1305                     os_memcmp(elems.ssid, P2P_WILDCARD_SSID,
1306                               P2P_WILDCARD_SSID_LEN) == 0)
1307                         p2p_wildcard = 1;
1308 #endif /* CONFIG_P2P */
1309                 wps_registrar_probe_req_rx(hapd->wps->registrar, addr, wps_ie,
1310                                            p2p_wildcard);
1311 #ifdef CONFIG_WPS_UPNP
1312                 /* FIX: what exactly should be included in the WLANEvent?
1313                  * WPS attributes? Full ProbeReq frame? */
1314                 if (!p2p_wildcard)
1315                         upnp_wps_device_send_wlan_event(
1316                                 hapd->wps_upnp, addr,
1317                                 UPNP_WPS_WLANEVENT_TYPE_PROBE, wps_ie);
1318 #endif /* CONFIG_WPS_UPNP */
1319         }
1320
1321         wpabuf_free(wps_ie);
1322
1323         return 0;
1324 }
1325
1326
1327 #ifdef CONFIG_WPS_UPNP
1328
1329 static int hostapd_rx_req_put_wlan_response(
1330         void *priv, enum upnp_wps_wlanevent_type ev_type,
1331         const u8 *mac_addr, const struct wpabuf *msg,
1332         enum wps_msg_type msg_type)
1333 {
1334         struct hostapd_data *hapd = priv;
1335         struct sta_info *sta;
1336         struct upnp_pending_message *p;
1337
1338         wpa_printf(MSG_DEBUG, "WPS UPnP: PutWLANResponse ev_type=%d mac_addr="
1339                    MACSTR, ev_type, MAC2STR(mac_addr));
1340         wpa_hexdump(MSG_MSGDUMP, "WPS UPnP: PutWLANResponse NewMessage",
1341                     wpabuf_head(msg), wpabuf_len(msg));
1342         if (ev_type != UPNP_WPS_WLANEVENT_TYPE_EAP) {
1343                 wpa_printf(MSG_DEBUG, "WPS UPnP: Ignored unexpected "
1344                            "PutWLANResponse WLANEventType %d", ev_type);
1345                 return -1;
1346         }
1347
1348         /*
1349          * EAP response to ongoing to WPS Registration. Send it to EAP-WSC
1350          * server implementation for delivery to the peer.
1351          */
1352
1353         sta = ap_get_sta(hapd, mac_addr);
1354 #ifndef CONFIG_WPS_STRICT
1355         if (!sta) {
1356                 /*
1357                  * Workaround - Intel wsccmd uses bogus NewWLANEventMAC:
1358                  * Pick STA that is in an ongoing WPS registration without
1359                  * checking the MAC address.
1360                  */
1361                 wpa_printf(MSG_DEBUG, "WPS UPnP: No matching STA found based "
1362                            "on NewWLANEventMAC; try wildcard match");
1363                 for (sta = hapd->sta_list; sta; sta = sta->next) {
1364                         if (sta->eapol_sm && (sta->flags & WLAN_STA_WPS))
1365                                 break;
1366                 }
1367         }
1368 #endif /* CONFIG_WPS_STRICT */
1369
1370         if (!sta || !(sta->flags & WLAN_STA_WPS)) {
1371                 wpa_printf(MSG_DEBUG, "WPS UPnP: No matching STA found");
1372                 return 0;
1373         }
1374
1375         p = os_zalloc(sizeof(*p));
1376         if (p == NULL)
1377                 return -1;
1378         os_memcpy(p->addr, sta->addr, ETH_ALEN);
1379         p->msg = wpabuf_dup(msg);
1380         p->type = msg_type;
1381         p->next = hapd->wps->upnp_msgs;
1382         hapd->wps->upnp_msgs = p;
1383
1384         return eapol_auth_eap_pending_cb(sta->eapol_sm, sta->eapol_sm->eap);
1385 }
1386
1387
1388 static int hostapd_wps_upnp_init(struct hostapd_data *hapd,
1389                                  struct wps_context *wps)
1390 {
1391         struct upnp_wps_device_ctx *ctx;
1392
1393         if (!hapd->conf->upnp_iface)
1394                 return 0;
1395         ctx = os_zalloc(sizeof(*ctx));
1396         if (ctx == NULL)
1397                 return -1;
1398
1399         ctx->rx_req_put_wlan_response = hostapd_rx_req_put_wlan_response;
1400         if (hapd->conf->ap_pin)
1401                 ctx->ap_pin = os_strdup(hapd->conf->ap_pin);
1402
1403         hapd->wps_upnp = upnp_wps_device_init(ctx, wps, hapd,
1404                                               hapd->conf->upnp_iface);
1405         if (hapd->wps_upnp == NULL)
1406                 return -1;
1407         wps->wps_upnp = hapd->wps_upnp;
1408
1409         return 0;
1410 }
1411
1412
1413 static void hostapd_wps_upnp_deinit(struct hostapd_data *hapd)
1414 {
1415         upnp_wps_device_deinit(hapd->wps_upnp, hapd);
1416 }
1417
1418 #endif /* CONFIG_WPS_UPNP */
1419
1420
1421 int hostapd_wps_get_mib_sta(struct hostapd_data *hapd, const u8 *addr,
1422                             char *buf, size_t buflen)
1423 {
1424         if (hapd->wps == NULL)
1425                 return 0;
1426         return wps_registrar_get_info(hapd->wps->registrar, addr, buf, buflen);
1427 }
1428
1429
1430 static void hostapd_wps_ap_pin_timeout(void *eloop_data, void *user_ctx)
1431 {
1432         struct hostapd_data *hapd = eloop_data;
1433         wpa_printf(MSG_DEBUG, "WPS: AP PIN timed out");
1434         hostapd_wps_ap_pin_disable(hapd);
1435         wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_AP_PIN_DISABLED);
1436 }
1437
1438
1439 static void hostapd_wps_ap_pin_enable(struct hostapd_data *hapd, int timeout)
1440 {
1441         wpa_printf(MSG_DEBUG, "WPS: Enabling AP PIN (timeout=%d)", timeout);
1442         hapd->ap_pin_failures = 0;
1443         hapd->ap_pin_failures_consecutive = 0;
1444         hapd->conf->ap_setup_locked = 0;
1445         if (hapd->wps->ap_setup_locked) {
1446                 wpa_msg(hapd->msg_ctx, MSG_INFO, WPS_EVENT_AP_SETUP_UNLOCKED);
1447                 hapd->wps->ap_setup_locked = 0;
1448                 wps_registrar_update_ie(hapd->wps->registrar);
1449         }
1450         eloop_cancel_timeout(hostapd_wps_ap_pin_timeout, hapd, NULL);
1451         if (timeout > 0)
1452                 eloop_register_timeout(timeout, 0,
1453                                        hostapd_wps_ap_pin_timeout, hapd, NULL);
1454 }
1455
1456
1457 static int wps_ap_pin_disable(struct hostapd_data *hapd, void *ctx)
1458 {
1459         os_free(hapd->conf->ap_pin);
1460         hapd->conf->ap_pin = NULL;
1461 #ifdef CONFIG_WPS_UPNP
1462         upnp_wps_set_ap_pin(hapd->wps_upnp, NULL);
1463 #endif /* CONFIG_WPS_UPNP */
1464         eloop_cancel_timeout(hostapd_wps_ap_pin_timeout, hapd, NULL);
1465         return 0;
1466 }
1467
1468
1469 void hostapd_wps_ap_pin_disable(struct hostapd_data *hapd)
1470 {
1471         wpa_printf(MSG_DEBUG, "WPS: Disabling AP PIN");
1472         hostapd_wps_for_each(hapd, wps_ap_pin_disable, NULL);
1473 }
1474
1475
1476 struct wps_ap_pin_data {
1477         char pin_txt[9];
1478         int timeout;
1479 };
1480
1481
1482 static int wps_ap_pin_set(struct hostapd_data *hapd, void *ctx)
1483 {
1484         struct wps_ap_pin_data *data = ctx;
1485         os_free(hapd->conf->ap_pin);
1486         hapd->conf->ap_pin = os_strdup(data->pin_txt);
1487 #ifdef CONFIG_WPS_UPNP
1488         upnp_wps_set_ap_pin(hapd->wps_upnp, data->pin_txt);
1489 #endif /* CONFIG_WPS_UPNP */
1490         hostapd_wps_ap_pin_enable(hapd, data->timeout);
1491         return 0;
1492 }
1493
1494
1495 const char * hostapd_wps_ap_pin_random(struct hostapd_data *hapd, int timeout)
1496 {
1497         unsigned int pin;
1498         struct wps_ap_pin_data data;
1499
1500         pin = wps_generate_pin();
1501         os_snprintf(data.pin_txt, sizeof(data.pin_txt), "%08u", pin);
1502         data.timeout = timeout;
1503         hostapd_wps_for_each(hapd, wps_ap_pin_set, &data);
1504         return hapd->conf->ap_pin;
1505 }
1506
1507
1508 const char * hostapd_wps_ap_pin_get(struct hostapd_data *hapd)
1509 {
1510         return hapd->conf->ap_pin;
1511 }
1512
1513
1514 int hostapd_wps_ap_pin_set(struct hostapd_data *hapd, const char *pin,
1515                            int timeout)
1516 {
1517         struct wps_ap_pin_data data;
1518         int ret;
1519
1520         ret = os_snprintf(data.pin_txt, sizeof(data.pin_txt), "%s", pin);
1521         if (ret < 0 || ret >= (int) sizeof(data.pin_txt))
1522                 return -1;
1523         data.timeout = timeout;
1524         return hostapd_wps_for_each(hapd, wps_ap_pin_set, &data);
1525 }
1526
1527
1528 static int wps_update_ie(struct hostapd_data *hapd, void *ctx)
1529 {
1530         if (hapd->wps)
1531                 wps_registrar_update_ie(hapd->wps->registrar);
1532         return 0;
1533 }
1534
1535
1536 void hostapd_wps_update_ie(struct hostapd_data *hapd)
1537 {
1538         hostapd_wps_for_each(hapd, wps_update_ie, NULL);
1539 }
1540
1541
1542 int hostapd_wps_config_ap(struct hostapd_data *hapd, const char *ssid,
1543                           const char *auth, const char *encr, const char *key)
1544 {
1545         struct wps_credential cred;
1546         size_t len;
1547
1548         os_memset(&cred, 0, sizeof(cred));
1549
1550         len = os_strlen(ssid);
1551         if ((len & 1) || len > 2 * sizeof(cred.ssid) ||
1552             hexstr2bin(ssid, cred.ssid, len / 2))
1553                 return -1;
1554         cred.ssid_len = len / 2;
1555
1556         if (os_strncmp(auth, "OPEN", 4) == 0)
1557                 cred.auth_type = WPS_AUTH_OPEN;
1558         else if (os_strncmp(auth, "WPAPSK", 6) == 0)
1559                 cred.auth_type = WPS_AUTH_WPAPSK;
1560         else if (os_strncmp(auth, "WPA2PSK", 7) == 0)
1561                 cred.auth_type = WPS_AUTH_WPA2PSK;
1562         else
1563                 return -1;
1564
1565         if (encr) {
1566                 if (os_strncmp(encr, "NONE", 4) == 0)
1567                         cred.encr_type = WPS_ENCR_NONE;
1568                 else if (os_strncmp(encr, "WEP", 3) == 0)
1569                         cred.encr_type = WPS_ENCR_WEP;
1570                 else if (os_strncmp(encr, "TKIP", 4) == 0)
1571                         cred.encr_type = WPS_ENCR_TKIP;
1572                 else if (os_strncmp(encr, "CCMP", 4) == 0)
1573                         cred.encr_type = WPS_ENCR_AES;
1574                 else
1575                         return -1;
1576         } else
1577                 cred.encr_type = WPS_ENCR_NONE;
1578
1579         if (key) {
1580                 len = os_strlen(key);
1581                 if ((len & 1) || len > 2 * sizeof(cred.key) ||
1582                     hexstr2bin(key, cred.key, len / 2))
1583                         return -1;
1584                 cred.key_len = len / 2;
1585         }
1586
1587         return wps_registrar_config_ap(hapd->wps->registrar, &cred);
1588 }
1589
1590
1591 #ifdef CONFIG_WPS_NFC
1592
1593 struct wps_nfc_password_token_data {
1594         const u8 *oob_dev_pw;
1595         size_t oob_dev_pw_len;
1596         int added;
1597 };
1598
1599
1600 static int wps_add_nfc_password_token(struct hostapd_data *hapd, void *ctx)
1601 {
1602         struct wps_nfc_password_token_data *data = ctx;
1603         int ret;
1604
1605         if (hapd->wps == NULL)
1606                 return 0;
1607         ret = wps_registrar_add_nfc_password_token(hapd->wps->registrar,
1608                                                    data->oob_dev_pw,
1609                                                    data->oob_dev_pw_len);
1610         if (ret == 0)
1611                 data->added++;
1612         return ret;
1613 }
1614
1615
1616 static int hostapd_wps_add_nfc_password_token(struct hostapd_data *hapd,
1617                                               struct wps_parse_attr *attr)
1618 {
1619         struct wps_nfc_password_token_data data;
1620
1621         data.oob_dev_pw = attr->oob_dev_password;
1622         data.oob_dev_pw_len = attr->oob_dev_password_len;
1623         data.added = 0;
1624         if (hostapd_wps_for_each(hapd, wps_add_nfc_password_token, &data) < 0)
1625                 return -1;
1626         return data.added ? 0 : -1;
1627 }
1628
1629
1630 static int hostapd_wps_nfc_tag_process(struct hostapd_data *hapd,
1631                                        const struct wpabuf *wps)
1632 {
1633         struct wps_parse_attr attr;
1634
1635         wpa_hexdump_buf(MSG_DEBUG, "WPS: Received NFC tag payload", wps);
1636
1637         if (wps_parse_msg(wps, &attr)) {
1638                 wpa_printf(MSG_DEBUG, "WPS: Ignore invalid data from NFC tag");
1639                 return -1;
1640         }
1641
1642         if (attr.oob_dev_password)
1643                 return hostapd_wps_add_nfc_password_token(hapd, &attr);
1644
1645         wpa_printf(MSG_DEBUG, "WPS: Ignore unrecognized NFC tag");
1646         return -1;
1647 }
1648
1649
1650 int hostapd_wps_nfc_tag_read(struct hostapd_data *hapd,
1651                              const struct wpabuf *data)
1652 {
1653         const struct wpabuf *wps = data;
1654         struct wpabuf *tmp = NULL;
1655         int ret;
1656
1657         if (wpabuf_len(data) < 4)
1658                 return -1;
1659
1660         if (*wpabuf_head_u8(data) != 0x10) {
1661                 /* Assume this contains full NDEF record */
1662                 tmp = ndef_parse_wifi(data);
1663                 if (tmp == NULL) {
1664                         wpa_printf(MSG_DEBUG, "WPS: Could not parse NDEF");
1665                         return -1;
1666                 }
1667                 wps = tmp;
1668         }
1669
1670         ret = hostapd_wps_nfc_tag_process(hapd, wps);
1671         wpabuf_free(tmp);
1672         return ret;
1673 }
1674
1675
1676 struct wpabuf * hostapd_wps_nfc_config_token(struct hostapd_data *hapd,
1677                                              int ndef)
1678 {
1679         struct wpabuf *ret;
1680
1681         if (hapd->wps == NULL)
1682                 return NULL;
1683
1684         ret = wps_get_oob_cred(hapd->wps);
1685         if (ndef && ret) {
1686                 struct wpabuf *tmp;
1687                 tmp = ndef_build_wifi(ret);
1688                 wpabuf_free(ret);
1689                 if (tmp == NULL)
1690                         return NULL;
1691                 ret = tmp;
1692         }
1693
1694         return ret;
1695 }
1696
1697
1698 struct wpabuf * hostapd_wps_nfc_hs_cr(struct hostapd_data *hapd, int ndef)
1699 {
1700         /*
1701          * Handover Select carrier record for WPS uses the same format as
1702          * configuration token.
1703          */
1704         return hostapd_wps_nfc_config_token(hapd, ndef);
1705 }
1706
1707
1708 struct wpabuf * hostapd_wps_nfc_token_gen(struct hostapd_data *hapd, int ndef)
1709 {
1710         if (hapd->conf->wps_nfc_pw_from_config) {
1711                 return wps_nfc_token_build(ndef,
1712                                            hapd->conf->wps_nfc_dev_pw_id,
1713                                            hapd->conf->wps_nfc_dh_pubkey,
1714                                            hapd->conf->wps_nfc_dev_pw);
1715         }
1716
1717         return wps_nfc_token_gen(ndef, &hapd->conf->wps_nfc_dev_pw_id,
1718                                  &hapd->conf->wps_nfc_dh_pubkey,
1719                                  &hapd->conf->wps_nfc_dh_privkey,
1720                                  &hapd->conf->wps_nfc_dev_pw);
1721 }
1722
1723
1724 int hostapd_wps_nfc_token_enable(struct hostapd_data *hapd)
1725 {
1726         struct wps_context *wps = hapd->wps;
1727         struct wpabuf *pw;
1728
1729         if (wps == NULL)
1730                 return -1;
1731
1732         if (!hapd->conf->wps_nfc_dh_pubkey ||
1733             !hapd->conf->wps_nfc_dh_privkey ||
1734             !hapd->conf->wps_nfc_dev_pw ||
1735             !hapd->conf->wps_nfc_dev_pw_id)
1736                 return -1;
1737
1738         hostapd_wps_nfc_clear(wps);
1739         wps->ap_nfc_dev_pw_id = hapd->conf->wps_nfc_dev_pw_id;
1740         wps->ap_nfc_dh_pubkey = wpabuf_dup(hapd->conf->wps_nfc_dh_pubkey);
1741         wps->ap_nfc_dh_privkey = wpabuf_dup(hapd->conf->wps_nfc_dh_privkey);
1742         pw = hapd->conf->wps_nfc_dev_pw;
1743         wps->ap_nfc_dev_pw = wpabuf_alloc(
1744                 wpabuf_len(pw) * 2 + 1);
1745         if (wps->ap_nfc_dev_pw) {
1746                 wpa_snprintf_hex_uppercase(
1747                         (char *) wpabuf_put(wps->ap_nfc_dev_pw,
1748                                             wpabuf_len(pw) * 2),
1749                         wpabuf_len(pw) * 2 + 1,
1750                         wpabuf_head(pw), wpabuf_len(pw));
1751         }
1752
1753         if (!wps->ap_nfc_dh_pubkey || !wps->ap_nfc_dh_privkey ||
1754             !wps->ap_nfc_dev_pw) {
1755                 hostapd_wps_nfc_clear(wps);
1756                 return -1;
1757         }
1758
1759         return 0;
1760 }
1761
1762
1763 void hostapd_wps_nfc_token_disable(struct hostapd_data *hapd)
1764 {
1765         hostapd_wps_nfc_clear(hapd->wps);
1766 }
1767
1768 #endif /* CONFIG_WPS_NFC */