896c8564925155656cb6e3c2dc73ee24913194e0
[wpasupplicant] / hostapd / wps_hostapd.c
1 /*
2  * hostapd / WPS integration
3  * Copyright (c) 2008, 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 "hostapd.h"
18 #include "driver_i.h"
19 #include "eloop.h"
20 #include "uuid.h"
21 #include "wpa_ctrl.h"
22 #include "ieee802_11_defs.h"
23 #include "sta_info.h"
24 #include "eapol_sm.h"
25 #include "wps/wps.h"
26 #include "wps/wps_defs.h"
27 #include "wps/wps_dev_attr.h"
28 #include "wps_hostapd.h"
29 #include "dh_groups.h"
30
31
32 #ifdef CONFIG_WPS_UPNP
33 #include "wps/wps_upnp.h"
34 static int hostapd_wps_upnp_init(struct hostapd_data *hapd,
35                                  struct wps_context *wps);
36 static void hostapd_wps_upnp_deinit(struct hostapd_data *hapd);
37 #endif /* CONFIG_WPS_UPNP */
38
39
40 static int hostapd_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
41                                   size_t psk_len)
42 {
43         struct hostapd_data *hapd = ctx;
44         struct hostapd_wpa_psk *p;
45         struct hostapd_ssid *ssid = &hapd->conf->ssid;
46
47         wpa_printf(MSG_DEBUG, "Received new WPA/WPA2-PSK from WPS for STA "
48                    MACSTR, MAC2STR(mac_addr));
49         wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
50
51         if (psk_len != PMK_LEN) {
52                 wpa_printf(MSG_DEBUG, "Unexpected PSK length %lu",
53                            (unsigned long) psk_len);
54                 return -1;
55         }
56
57         /* Add the new PSK to runtime PSK list */
58         p = os_zalloc(sizeof(*p));
59         if (p == NULL)
60                 return -1;
61         os_memcpy(p->addr, mac_addr, ETH_ALEN);
62         os_memcpy(p->psk, psk, PMK_LEN);
63
64         p->next = ssid->wpa_psk;
65         ssid->wpa_psk = p;
66
67         if (ssid->wpa_psk_file) {
68                 FILE *f;
69                 char hex[PMK_LEN * 2 + 1];
70                 /* Add the new PSK to PSK list file */
71                 f = fopen(ssid->wpa_psk_file, "a");
72                 if (f == NULL) {
73                         wpa_printf(MSG_DEBUG, "Failed to add the PSK to "
74                                    "'%s'", ssid->wpa_psk_file);
75                         return -1;
76                 }
77
78                 wpa_snprintf_hex(hex, sizeof(hex), psk, psk_len);
79                 fprintf(f, MACSTR " %s\n", MAC2STR(mac_addr), hex);
80                 fclose(f);
81         }
82
83         return 0;
84 }
85
86
87 static int hostapd_wps_set_ie_cb(void *ctx, const u8 *beacon_ie,
88                                  size_t beacon_ie_len, const u8 *probe_resp_ie,
89                                  size_t probe_resp_ie_len)
90 {
91         struct hostapd_data *hapd = ctx;
92
93         os_free(hapd->wps_beacon_ie);
94         if (beacon_ie_len == 0) {
95                 hapd->wps_beacon_ie = NULL;
96                 hapd->wps_beacon_ie_len = 0;
97         } else {
98                 hapd->wps_beacon_ie = os_malloc(beacon_ie_len);
99                 if (hapd->wps_beacon_ie == NULL) {
100                         hapd->wps_beacon_ie_len = 0;
101                         return -1;
102                 }
103                 os_memcpy(hapd->wps_beacon_ie, beacon_ie, beacon_ie_len);
104                 hapd->wps_beacon_ie_len = beacon_ie_len;
105         }
106         hostapd_set_wps_beacon_ie(hapd, hapd->wps_beacon_ie,
107                                   hapd->wps_beacon_ie_len);
108
109         os_free(hapd->wps_probe_resp_ie);
110         if (probe_resp_ie_len == 0) {
111                 hapd->wps_probe_resp_ie = NULL;
112                 hapd->wps_probe_resp_ie_len = 0;
113         } else {
114                 hapd->wps_probe_resp_ie = os_malloc(probe_resp_ie_len);
115                 if (hapd->wps_probe_resp_ie == NULL) {
116                         hapd->wps_probe_resp_ie_len = 0;
117                         return -1;
118                 }
119                 os_memcpy(hapd->wps_probe_resp_ie, probe_resp_ie,
120                           probe_resp_ie_len);
121                 hapd->wps_probe_resp_ie_len = probe_resp_ie_len;
122         }
123         hostapd_set_wps_probe_resp_ie(hapd, hapd->wps_probe_resp_ie,
124                                       hapd->wps_probe_resp_ie_len);
125
126         return 0;
127 }
128
129
130 static void hostapd_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
131                                       const struct wps_device_data *dev)
132 {
133         struct hostapd_data *hapd = ctx;
134         char uuid[40], txt[400];
135         int len;
136         if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
137                 return;
138         wpa_printf(MSG_DEBUG, "WPS: PIN needed for E-UUID %s", uuid);
139         len = os_snprintf(txt, sizeof(txt), WPS_EVENT_PIN_NEEDED
140                           "%s " MACSTR " [%s|%s|%s|%s|%s|%d-%08X-%d]",
141                           uuid, MAC2STR(dev->mac_addr), dev->device_name,
142                           dev->manufacturer, dev->model_name,
143                           dev->model_number, dev->serial_number,
144                           dev->categ, dev->oui, dev->sub_categ);
145         if (len > 0 && len < (int) sizeof(txt))
146                 wpa_msg(hapd, MSG_INFO, "%s", txt);
147
148         if (hapd->conf->wps_pin_requests) {
149                 FILE *f;
150                 struct os_time t;
151                 f = fopen(hapd->conf->wps_pin_requests, "a");
152                 if (f == NULL)
153                         return;
154                 os_get_time(&t);
155                 fprintf(f, "%ld\t%s\t" MACSTR "\t%s\t%s\t%s\t%s\t%s"
156                         "\t%d-%08X-%d\n",
157                         t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name,
158                         dev->manufacturer, dev->model_name, dev->model_number,
159                         dev->serial_number,
160                         dev->categ, dev->oui, dev->sub_categ);
161                 fclose(f);
162         }
163 }
164
165
166 static void hostapd_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
167                                        const u8 *uuid_e)
168 {
169         struct hostapd_data *hapd = ctx;
170         char uuid[40];
171         if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
172                 return;
173         wpa_msg(hapd, MSG_INFO, WPS_EVENT_REG_SUCCESS MACSTR " %s",
174                 MAC2STR(mac_addr), uuid);
175 }
176
177
178 static int str_starts(const char *str, const char *start)
179 {
180         return os_strncmp(str, start, os_strlen(start)) == 0;
181 }
182
183
184 static void wps_reload_config(void *eloop_data, void *user_ctx)
185 {
186         struct hostapd_iface *iface = eloop_data;
187
188         wpa_printf(MSG_DEBUG, "WPS: Reload configuration data");
189         if (hostapd_reload_config(iface) < 0) {
190                 wpa_printf(MSG_WARNING, "WPS: Failed to reload the updated "
191                            "configuration");
192         }
193 }
194
195
196 static int hostapd_wps_cred_cb(void *ctx, const struct wps_credential *cred)
197 {
198         struct hostapd_data *hapd = ctx;
199         FILE *oconf, *nconf;
200         size_t len, i;
201         char *tmp_fname;
202         char buf[1024];
203         int multi_bss;
204         int wpa;
205
206         wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
207                         cred->cred_attr, cred->cred_attr_len);
208
209         wpa_printf(MSG_DEBUG, "WPS: Received new AP Settings");
210         wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
211         wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
212                    cred->auth_type);
213         wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
214         wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
215         wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
216                         cred->key, cred->key_len);
217         wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
218                    MAC2STR(cred->mac_addr));
219
220         if ((hapd->conf->wps_cred_processing == 1 ||
221              hapd->conf->wps_cred_processing == 2) && cred->cred_attr) {
222                 size_t blen = cred->cred_attr_len * 2 + 1;
223                 char *buf = os_malloc(blen);
224                 if (buf) {
225                         wpa_snprintf_hex(buf, blen,
226                                          cred->cred_attr, cred->cred_attr_len);
227                         wpa_msg(hapd, MSG_INFO, "%s%s",
228                                 WPS_EVENT_NEW_AP_SETTINGS, buf);
229                         os_free(buf);
230                 }
231         } else
232                 wpa_msg(hapd, MSG_INFO, WPS_EVENT_NEW_AP_SETTINGS);
233
234         if (hapd->conf->wps_cred_processing == 1)
235                 return 0;
236
237         len = os_strlen(hapd->iface->config_fname) + 5;
238         tmp_fname = os_malloc(len);
239         if (tmp_fname == NULL)
240                 return -1;
241         os_snprintf(tmp_fname, len, "%s-new", hapd->iface->config_fname);
242
243         oconf = fopen(hapd->iface->config_fname, "r");
244         if (oconf == NULL) {
245                 wpa_printf(MSG_WARNING, "WPS: Could not open current "
246                            "configuration file");
247                 os_free(tmp_fname);
248                 return -1;
249         }
250
251         nconf = fopen(tmp_fname, "w");
252         if (nconf == NULL) {
253                 wpa_printf(MSG_WARNING, "WPS: Could not write updated "
254                            "configuration file");
255                 os_free(tmp_fname);
256                 fclose(oconf);
257                 return -1;
258         }
259
260         fprintf(nconf, "# WPS configuration - START\n");
261
262         fprintf(nconf, "wps_state=2\n");
263
264         fprintf(nconf, "ssid=");
265         for (i = 0; i < cred->ssid_len; i++)
266                 fputc(cred->ssid[i], nconf);
267         fprintf(nconf, "\n");
268
269         if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) &&
270             (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)))
271                 wpa = 3;
272         else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK))
273                 wpa = 2;
274         else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))
275                 wpa = 1;
276         else
277                 wpa = 0;
278
279         if (wpa) {
280                 char *prefix;
281                 fprintf(nconf, "wpa=%d\n", wpa);
282
283                 fprintf(nconf, "wpa_key_mgmt=");
284                 prefix = "";
285                 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA)) {
286                         fprintf(nconf, "WPA-EAP");
287                         prefix = " ";
288                 }
289                 if (cred->auth_type & (WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK))
290                         fprintf(nconf, "%sWPA-PSK", prefix);
291                 fprintf(nconf, "\n");
292
293                 fprintf(nconf, "wpa_pairwise=");
294                 prefix = "";
295                 if (cred->encr_type & WPS_ENCR_AES) {
296                         fprintf(nconf, "CCMP");
297                         prefix = " ";
298                 }
299                 if (cred->encr_type & WPS_ENCR_TKIP) {
300                         fprintf(nconf, "%sTKIP", prefix);
301                 }
302                 fprintf(nconf, "\n");
303
304                 if (cred->key_len >= 8 && cred->key_len < 64) {
305                         fprintf(nconf, "wpa_passphrase=");
306                         for (i = 0; i < cred->key_len; i++)
307                                 fputc(cred->key[i], nconf);
308                         fprintf(nconf, "\n");
309                 } else if (cred->key_len == 64) {
310                         fprintf(nconf, "wpa_psk=");
311                         for (i = 0; i < cred->key_len; i++)
312                                 fputc(cred->key[i], nconf);
313                         fprintf(nconf, "\n");
314                 } else {
315                         wpa_printf(MSG_WARNING, "WPS: Invalid key length %lu "
316                                    "for WPA/WPA2",
317                                    (unsigned long) cred->key_len);
318                 }
319
320                 fprintf(nconf, "auth_algs=1\n");
321         } else {
322                 if ((cred->auth_type & WPS_AUTH_OPEN) &&
323                     (cred->auth_type & WPS_AUTH_SHARED))
324                         fprintf(nconf, "auth_algs=3\n");
325                 else if (cred->auth_type & WPS_AUTH_SHARED)
326                         fprintf(nconf, "auth_algs=2\n");
327                 else
328                         fprintf(nconf, "auth_algs=1\n");
329
330                 if (cred->encr_type & WPS_ENCR_WEP && cred->key_idx <= 4) {
331                         int key_idx = cred->key_idx;
332                         if (key_idx)
333                                 key_idx--;
334                         fprintf(nconf, "wep_default_key=%d\n", key_idx);
335                         fprintf(nconf, "wep_key%d=", key_idx);
336                         if (cred->key_len != 10 && cred->key_len != 26)
337                                 fputc('"', nconf);
338                         for (i = 0; i < cred->key_len; i++)
339                                 fputc(cred->key[i], nconf);
340                         if (cred->key_len != 10 && cred->key_len != 26)
341                                 fputc('"', nconf);
342                         fprintf(nconf, "\n");
343                 }
344         }
345
346         fprintf(nconf, "# WPS configuration - END\n");
347
348         multi_bss = 0;
349         while (fgets(buf, sizeof(buf), oconf)) {
350                 if (os_strncmp(buf, "bss=", 4) == 0)
351                         multi_bss = 1;
352                 if (!multi_bss &&
353                     (str_starts(buf, "ssid=") ||
354                      str_starts(buf, "auth_algs=") ||
355                      str_starts(buf, "wps_state=") ||
356                      str_starts(buf, "wpa=") ||
357                      str_starts(buf, "wpa_psk=") ||
358                      str_starts(buf, "wpa_pairwise=") ||
359                      str_starts(buf, "rsn_pairwise=") ||
360                      str_starts(buf, "wpa_key_mgmt=") ||
361                      str_starts(buf, "wpa_passphrase="))) {
362                         fprintf(nconf, "#WPS# %s", buf);
363                 } else
364                         fprintf(nconf, "%s", buf);
365         }
366
367         fclose(nconf);
368         fclose(oconf);
369
370         if (rename(tmp_fname, hapd->iface->config_fname) < 0) {
371                 wpa_printf(MSG_WARNING, "WPS: Failed to rename the updated "
372                            "configuration file: %s", strerror(errno));
373                 os_free(tmp_fname);
374                 return -1;
375         }
376
377         os_free(tmp_fname);
378
379         /* Schedule configuration reload after short period of time to allow
380          * EAP-WSC to be finished.
381          */
382         eloop_register_timeout(0, 100000, wps_reload_config, hapd->iface,
383                                NULL);
384
385         /* TODO: dualband AP may need to update multiple configuration files */
386
387         wpa_printf(MSG_DEBUG, "WPS: AP configuration updated");
388
389         return 0;
390 }
391
392
393 static void hostapd_pwd_auth_fail(struct hostapd_data *hapd,
394                                   struct wps_event_pwd_auth_fail *data)
395 {
396         FILE *f;
397
398         if (!data->enrollee)
399                 return;
400
401         /*
402          * Registrar failed to prove its knowledge of the AP PIN. Lock AP setup
403          * if this happens multiple times.
404          */
405         hapd->ap_pin_failures++;
406         if (hapd->ap_pin_failures < 4)
407                 return;
408
409         wpa_msg(hapd, MSG_INFO, WPS_EVENT_AP_SETUP_LOCKED);
410         hapd->wps->ap_setup_locked = 1;
411
412         wps_registrar_update_ie(hapd->wps->registrar);
413
414         if (hapd->conf->wps_cred_processing == 1)
415                 return;
416
417         f = fopen(hapd->iface->config_fname, "a");
418         if (f == NULL) {
419                 wpa_printf(MSG_WARNING, "WPS: Could not append to the current "
420                            "configuration file");
421                 return;
422         }
423
424         fprintf(f, "# WPS AP Setup Locked based on possible attack\n");
425         fprintf(f, "ap_setup_locked=1\n");
426         fclose(f);
427
428         /* TODO: dualband AP may need to update multiple configuration files */
429
430         wpa_printf(MSG_DEBUG, "WPS: AP configuration updated");
431 }
432
433
434 static void hostapd_wps_event_cb(void *ctx, enum wps_event event,
435                                  union wps_event_data *data)
436 {
437         struct hostapd_data *hapd = ctx;
438
439         if (event == WPS_EV_PWD_AUTH_FAIL)
440                 hostapd_pwd_auth_fail(hapd, &data->pwd_auth_fail);
441 }
442
443
444 static void hostapd_wps_clear_ies(struct hostapd_data *hapd)
445 {
446         os_free(hapd->wps_beacon_ie);
447         hapd->wps_beacon_ie = NULL;
448         hapd->wps_beacon_ie_len = 0;
449         hostapd_set_wps_beacon_ie(hapd, NULL, 0);
450
451         os_free(hapd->wps_probe_resp_ie);
452         hapd->wps_probe_resp_ie = NULL;
453         hapd->wps_probe_resp_ie_len = 0;
454         hostapd_set_wps_probe_resp_ie(hapd, NULL, 0);
455 }
456
457
458 int hostapd_init_wps(struct hostapd_data *hapd,
459                      struct hostapd_bss_config *conf)
460 {
461         struct wps_context *wps;
462         struct wps_registrar_config cfg;
463
464         if (conf->wps_state == 0) {
465                 hostapd_wps_clear_ies(hapd);
466                 return 0;
467         }
468
469         wps = os_zalloc(sizeof(*wps));
470         if (wps == NULL)
471                 return -1;
472
473         wps->cred_cb = hostapd_wps_cred_cb;
474         wps->event_cb = hostapd_wps_event_cb;
475         wps->cb_ctx = hapd;
476
477         os_memset(&cfg, 0, sizeof(cfg));
478         wps->wps_state = hapd->conf->wps_state;
479         wps->ap_setup_locked = hapd->conf->ap_setup_locked;
480         if (is_nil_uuid(hapd->conf->uuid)) {
481                 uuid_gen_mac_addr(hapd->own_addr, wps->uuid);
482                 wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC address",
483                             wps->uuid, UUID_LEN);
484         } else
485                 os_memcpy(wps->uuid, hapd->conf->uuid, UUID_LEN);
486         wps->ssid_len = hapd->conf->ssid.ssid_len;
487         os_memcpy(wps->ssid, hapd->conf->ssid.ssid, wps->ssid_len);
488         wps->ap = 1;
489         os_memcpy(wps->dev.mac_addr, hapd->own_addr, ETH_ALEN);
490         wps->dev.device_name = hapd->conf->device_name ?
491                 os_strdup(hapd->conf->device_name) : NULL;
492         wps->dev.manufacturer = hapd->conf->manufacturer ?
493                 os_strdup(hapd->conf->manufacturer) : NULL;
494         wps->dev.model_name = hapd->conf->model_name ?
495                 os_strdup(hapd->conf->model_name) : NULL;
496         wps->dev.model_number = hapd->conf->model_number ?
497                 os_strdup(hapd->conf->model_number) : NULL;
498         wps->dev.serial_number = hapd->conf->serial_number ?
499                 os_strdup(hapd->conf->serial_number) : NULL;
500         if (hapd->conf->config_methods) {
501                 char *m = hapd->conf->config_methods;
502                 if (os_strstr(m, "label"))
503                         wps->config_methods |= WPS_CONFIG_LABEL;
504                 if (os_strstr(m, "display"))
505                         wps->config_methods |= WPS_CONFIG_DISPLAY;
506                 if (os_strstr(m, "push_button"))
507                         wps->config_methods |= WPS_CONFIG_PUSHBUTTON;
508                 if (os_strstr(m, "keypad"))
509                         wps->config_methods |= WPS_CONFIG_KEYPAD;
510         }
511         if (hapd->conf->device_type) {
512                 char *pos;
513                 u8 oui[4];
514                 /* <categ>-<OUI>-<subcateg> */
515                 wps->dev.categ = atoi(hapd->conf->device_type);
516                 pos = os_strchr(hapd->conf->device_type, '-');
517                 if (pos == NULL) {
518                         wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
519                         os_free(wps);
520                         return -1;
521                 }
522                 pos++;
523                 if (hexstr2bin(pos, oui, 4)) {
524                         wpa_printf(MSG_ERROR, "WPS: Invalid device_type OUI");
525                         os_free(wps);
526                         return -1;
527                 }
528                 wps->dev.oui = WPA_GET_BE32(oui);
529                 pos = os_strchr(pos, '-');
530                 if (pos == NULL) {
531                         wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
532                         os_free(wps);
533                         return -1;
534                 }
535                 pos++;
536                 wps->dev.sub_categ = atoi(pos);
537         }
538         wps->dev.os_version = WPA_GET_BE32(hapd->conf->os_version);
539         wps->dev.rf_bands = hapd->iconf->hw_mode == HOSTAPD_MODE_IEEE80211A ?
540                 WPS_RF_50GHZ : WPS_RF_24GHZ; /* FIX: dualband AP */
541
542         if (conf->wpa & WPA_PROTO_RSN) {
543                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK)
544                         wps->auth_types |= WPS_AUTH_WPA2PSK;
545                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X)
546                         wps->auth_types |= WPS_AUTH_WPA2;
547
548                 if (conf->rsn_pairwise & WPA_CIPHER_CCMP)
549                         wps->encr_types |= WPS_ENCR_AES;
550                 if (conf->rsn_pairwise & WPA_CIPHER_TKIP)
551                         wps->encr_types |= WPS_ENCR_TKIP;
552         }
553
554         if (conf->wpa & WPA_PROTO_WPA) {
555                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK)
556                         wps->auth_types |= WPS_AUTH_WPAPSK;
557                 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X)
558                         wps->auth_types |= WPS_AUTH_WPA;
559
560                 if (conf->wpa_pairwise & WPA_CIPHER_CCMP)
561                         wps->encr_types |= WPS_ENCR_AES;
562                 if (conf->wpa_pairwise & WPA_CIPHER_TKIP)
563                         wps->encr_types |= WPS_ENCR_TKIP;
564         }
565
566         if (conf->ssid.security_policy == SECURITY_PLAINTEXT) {
567                 wps->encr_types |= WPS_ENCR_NONE;
568                 wps->auth_types |= WPS_AUTH_OPEN;
569         } else if (conf->ssid.security_policy == SECURITY_STATIC_WEP) {
570                 wps->encr_types |= WPS_ENCR_WEP;
571                 if (conf->auth_algs & WPA_AUTH_ALG_OPEN)
572                         wps->auth_types |= WPS_AUTH_OPEN;
573                 if (conf->auth_algs & WPA_AUTH_ALG_SHARED)
574                         wps->auth_types |= WPS_AUTH_SHARED;
575         } else if (conf->ssid.security_policy == SECURITY_IEEE_802_1X) {
576                 wps->auth_types |= WPS_AUTH_OPEN;
577                 if (conf->default_wep_key_len)
578                         wps->encr_types |= WPS_ENCR_WEP;
579                 else
580                         wps->encr_types |= WPS_ENCR_NONE;
581         }
582
583         if (conf->ssid.wpa_psk_file) {
584                 /* Use per-device PSKs */
585         } else if (conf->ssid.wpa_passphrase) {
586                 wps->network_key = (u8 *) os_strdup(conf->ssid.wpa_passphrase);
587                 wps->network_key_len = os_strlen(conf->ssid.wpa_passphrase);
588         } else if (conf->ssid.wpa_psk) {
589                 wps->network_key = os_malloc(2 * PMK_LEN + 1);
590                 if (wps->network_key == NULL) {
591                         os_free(wps);
592                         return -1;
593                 }
594                 wpa_snprintf_hex((char *) wps->network_key, 2 * PMK_LEN + 1,
595                                  conf->ssid.wpa_psk->psk, PMK_LEN);
596                 wps->network_key_len = 2 * PMK_LEN;
597         } else if (conf->ssid.wep.keys_set && conf->ssid.wep.key[0]) {
598                 wps->network_key = os_malloc(conf->ssid.wep.len[0]);
599                 if (wps->network_key == NULL) {
600                         os_free(wps);
601                         return -1;
602                 }
603                 os_memcpy(wps->network_key, conf->ssid.wep.key[0],
604                           conf->ssid.wep.len[0]);
605                 wps->network_key_len = conf->ssid.wep.len[0];
606         }
607
608         if (conf->wps_state == WPS_STATE_NOT_CONFIGURED) {
609                 /* Override parameters to enable security by default */
610                 wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
611                 wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
612         }
613
614         wps->ap_settings = conf->ap_settings;
615         wps->ap_settings_len = conf->ap_settings_len;
616
617         cfg.new_psk_cb = hostapd_wps_new_psk_cb;
618         cfg.set_ie_cb = hostapd_wps_set_ie_cb;
619         cfg.pin_needed_cb = hostapd_wps_pin_needed_cb;
620         cfg.reg_success_cb = hostapd_wps_reg_success_cb;
621         cfg.cb_ctx = hapd;
622         cfg.skip_cred_build = conf->skip_cred_build;
623         cfg.extra_cred = conf->extra_cred;
624         cfg.extra_cred_len = conf->extra_cred_len;
625         cfg.disable_auto_conf = (hapd->conf->wps_cred_processing == 1) &&
626                 conf->skip_cred_build;
627
628         wps->registrar = wps_registrar_init(wps, &cfg);
629         if (wps->registrar == NULL) {
630                 printf("Failed to initialize WPS Registrar\n");
631                 os_free(wps->network_key);
632                 os_free(wps);
633                 return -1;
634         }
635
636 #ifdef CONFIG_WPS_UPNP
637         wps->friendly_name = hapd->conf->friendly_name;
638         wps->manufacturer_url = hapd->conf->manufacturer_url;
639         wps->model_description = hapd->conf->model_description;
640         wps->model_url = hapd->conf->model_url;
641         wps->upc = hapd->conf->upc;
642
643         if (hostapd_wps_upnp_init(hapd, wps) < 0) {
644                 wpa_printf(MSG_ERROR, "Failed to initialize WPS UPnP");
645                 wps_registrar_deinit(wps->registrar);
646                 os_free(wps->network_key);
647                 os_free(wps);
648                 return -1;
649         }
650 #endif /* CONFIG_WPS_UPNP */
651
652         hapd->wps = wps;
653
654         return 0;
655 }
656
657
658 void hostapd_deinit_wps(struct hostapd_data *hapd)
659 {
660         if (hapd->wps == NULL)
661                 return;
662 #ifdef CONFIG_WPS_UPNP
663         hostapd_wps_upnp_deinit(hapd);
664 #endif /* CONFIG_WPS_UPNP */
665         wps_registrar_deinit(hapd->wps->registrar);
666         os_free(hapd->wps->network_key);
667         wps_device_data_free(&hapd->wps->dev);
668         wpabuf_free(hapd->wps->dh_pubkey);
669         wpabuf_free(hapd->wps->dh_privkey);
670         wps_free_pending_msgs(hapd->wps->upnp_msgs);
671         os_free(hapd->wps);
672         hapd->wps = NULL;
673         hostapd_wps_clear_ies(hapd);
674 }
675
676
677 int hostapd_wps_add_pin(struct hostapd_data *hapd, const char *uuid,
678                         const char *pin)
679 {
680         u8 u[UUID_LEN];
681         int any = 0;
682
683         if (hapd->wps == NULL)
684                 return -1;
685         if (os_strcmp(uuid, "any") == 0)
686                 any = 1;
687         else if (uuid_str2bin(uuid, u))
688                 return -1;
689         return wps_registrar_add_pin(hapd->wps->registrar, any ? NULL : u,
690                                      (const u8 *) pin, os_strlen(pin));
691 }
692
693
694 int hostapd_wps_button_pushed(struct hostapd_data *hapd)
695 {
696         if (hapd->wps == NULL)
697                 return -1;
698         return wps_registrar_button_pushed(hapd->wps->registrar);
699 }
700
701
702 int hostapd_wps_start_oob(struct hostapd_data *hapd, char *device_type,
703                           char *path, char *method)
704 {
705         struct wps_context *wps = hapd->wps;
706         struct oob_device_data *oob_dev;
707
708         oob_dev = wps_get_oob_device(device_type);
709         if (oob_dev == NULL)
710                 return -1;
711         oob_dev->device_path = path;
712         wps->oob_conf.oob_method = wps_get_oob_method(method);
713
714         if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) {
715                 /*
716                  * Use pre-configured DH keys in order to be able to write the
717                  * key hash into the OOB file.
718                  */
719                 wpabuf_free(wps->dh_pubkey);
720                 wpabuf_free(wps->dh_privkey);
721                 wps->dh_privkey = NULL;
722                 wps->dh_pubkey = dh_init(dh_groups_get(WPS_DH_GROUP),
723                                          &wps->dh_privkey);
724                 wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
725                 if (wps->dh_pubkey == NULL) {
726                         wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
727                                    "Diffie-Hellman handshake");
728                         return -1;
729                 }
730         }
731
732         if (wps_process_oob(wps, oob_dev, 1) < 0)
733                 goto error;
734
735         if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E ||
736              wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) &&
737             hostapd_wps_add_pin(hapd, "any",
738                                 wpabuf_head(wps->oob_conf.dev_password)) < 0)
739                 goto error;
740
741         return 0;
742
743 error:
744         wpabuf_free(wps->dh_pubkey);
745         wps->dh_pubkey = NULL;
746         wpabuf_free(wps->dh_privkey);
747         wps->dh_privkey = NULL;
748         return -1;
749 }
750
751
752 void hostapd_wps_probe_req_rx(struct hostapd_data *hapd, const u8 *addr,
753                               const u8 *ie, size_t ie_len)
754 {
755         struct wpabuf *wps_ie;
756         const u8 *end, *pos, *wps;
757
758         if (hapd->wps == NULL)
759                 return;
760
761         pos = ie;
762         end = ie + ie_len;
763         wps = NULL;
764
765         while (pos + 1 < end) {
766                 if (pos + 2 + pos[1] > end)
767                         return;
768                 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
769                     WPA_GET_BE32(&pos[2]) == WPS_DEV_OUI_WFA) {
770                         wps = pos;
771                         break;
772                 }
773                 pos += 2 + pos[1];
774         }
775
776         if (wps == NULL)
777                 return; /* No WPS IE in Probe Request */
778
779         wps_ie = wpabuf_alloc(ie_len);
780         if (wps_ie == NULL)
781                 return;
782
783         /* There may be multiple WPS IEs in the message, so need to concatenate
784          * their WPS Data fields */
785         while (pos + 1 < end) {
786                 if (pos + 2 + pos[1] > end)
787                         break;
788                 if (pos[0] == WLAN_EID_VENDOR_SPECIFIC && pos[1] >= 4 &&
789                     WPA_GET_BE32(&pos[2]) == WPS_DEV_OUI_WFA)
790                         wpabuf_put_data(wps_ie, pos + 6, pos[1] - 4);
791                 pos += 2 + pos[1];
792         }
793
794         if (wpabuf_len(wps_ie) > 0) {
795                 wps_registrar_probe_req_rx(hapd->wps->registrar, addr, wps_ie);
796 #ifdef CONFIG_WPS_UPNP
797                 /* FIX: what exactly should be included in the WLANEvent?
798                  * WPS attributes? Full ProbeReq frame? */
799                 upnp_wps_device_send_wlan_event(hapd->wps_upnp, addr,
800                                                 UPNP_WPS_WLANEVENT_TYPE_PROBE,
801                                                 wps_ie);
802 #endif /* CONFIG_WPS_UPNP */
803         }
804
805         wpabuf_free(wps_ie);
806 }
807
808
809 #ifdef CONFIG_WPS_UPNP
810
811 static struct wpabuf *
812 hostapd_rx_req_get_device_info(void *priv, struct upnp_wps_peer *peer)
813 {
814         struct hostapd_data *hapd = priv;
815         struct wps_config cfg;
816         struct wps_data *wps;
817         enum wsc_op_code op_code;
818         struct wpabuf *m1;
819
820         /*
821          * Request for DeviceInfo, i.e., M1 TLVs. This is a start of WPS
822          * registration over UPnP with the AP acting as an Enrollee. It should
823          * be noted that this is frequently used just to get the device data,
824          * i.e., there may not be any intent to actually complete the
825          * registration.
826          */
827
828         if (peer->wps)
829                 wps_deinit(peer->wps);
830
831         os_memset(&cfg, 0, sizeof(cfg));
832         cfg.wps = hapd->wps;
833         cfg.pin = (u8 *) hapd->conf->ap_pin;
834         cfg.pin_len = os_strlen(hapd->conf->ap_pin);
835         wps = wps_init(&cfg);
836         if (wps == NULL)
837                 return NULL;
838
839         m1 = wps_get_msg(wps, &op_code);
840         if (m1 == NULL) {
841                 wps_deinit(wps);
842                 return NULL;
843         }
844
845         peer->wps = wps;
846
847         return m1;
848 }
849
850
851 static struct wpabuf *
852 hostapd_rx_req_put_message(void *priv, struct upnp_wps_peer *peer,
853                            const struct wpabuf *msg)
854 {
855         enum wps_process_res res;
856         enum wsc_op_code op_code;
857
858         /* PutMessage: msg = InMessage, return OutMessage */
859         res = wps_process_msg(peer->wps, WSC_UPnP, msg);
860         if (res == WPS_FAILURE)
861                 return NULL;
862         return wps_get_msg(peer->wps, &op_code);
863 }
864
865
866 static struct wpabuf *
867 hostapd_rx_req_get_ap_settings(void *priv, const struct wpabuf *msg)
868 {
869         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
870         return NULL;
871 }
872
873
874 static int hostapd_rx_req_set_ap_settings(void *priv, const struct wpabuf *msg)
875 {
876         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
877         return -1;
878 }
879
880
881 static int hostapd_rx_req_del_ap_settings(void *priv, const struct wpabuf *msg)
882 {
883         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
884         return -1;
885 }
886
887
888 static struct wpabuf *
889 hostapd_rx_req_get_sta_settings(void *priv, const struct wpabuf *msg)
890 {
891         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
892         return NULL;
893 }
894
895
896 static int hostapd_rx_req_set_sta_settings(void *priv,
897                                            const struct wpabuf *msg)
898 {
899         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
900         return -1;
901 }
902
903
904 static int hostapd_rx_req_del_sta_settings(void *priv,
905                                            const struct wpabuf *msg)
906 {
907         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
908         return -1;
909 }
910
911
912 static int hostapd_rx_req_put_wlan_response(
913         void *priv, enum upnp_wps_wlanevent_type ev_type,
914         const u8 *mac_addr, const struct wpabuf *msg,
915         enum wps_msg_type msg_type)
916 {
917         struct hostapd_data *hapd = priv;
918         struct sta_info *sta;
919         struct upnp_pending_message *p;
920
921         wpa_printf(MSG_DEBUG, "WPS UPnP: PutWLANResponse ev_type=%d mac_addr="
922                    MACSTR, ev_type, MAC2STR(mac_addr));
923         wpa_hexdump_ascii(MSG_MSGDUMP, "WPS UPnP: PutWLANResponse NewMessage",
924                           wpabuf_head(msg), wpabuf_len(msg));
925         if (ev_type != UPNP_WPS_WLANEVENT_TYPE_EAP) {
926                 wpa_printf(MSG_DEBUG, "WPS UPnP: Ignored unexpected "
927                            "PutWLANResponse WLANEventType %d", ev_type);
928                 return -1;
929         }
930
931         /*
932          * EAP response to ongoing to WPS Registration. Send it to EAP-WSC
933          * server implementation for delivery to the peer.
934          */
935
936         sta = ap_get_sta(hapd, mac_addr);
937         if (!sta) {
938                 /*
939                  * Workaround - Intel wsccmd uses bogus NewWLANEventMAC:
940                  * Pick STA that is in an ongoing WPS registration without
941                  * checking the MAC address.
942                  */
943                 wpa_printf(MSG_DEBUG, "WPS UPnP: No matching STA found based "
944                            "on NewWLANEventMAC; try wildcard match");
945                 for (sta = hapd->sta_list; sta; sta = sta->next) {
946                         if (sta->eapol_sm && (sta->flags & WLAN_STA_WPS))
947                                 break;
948                 }
949         }
950
951         if (!sta) {
952                 wpa_printf(MSG_DEBUG, "WPS UPnP: No matching STA found");
953                 return 0;
954         }
955
956         p = os_zalloc(sizeof(*p));
957         if (p == NULL)
958                 return -1;
959         os_memcpy(p->addr, sta->addr, ETH_ALEN);
960         p->msg = wpabuf_dup(msg);
961         p->type = msg_type;
962         p->next = hapd->wps->upnp_msgs;
963         hapd->wps->upnp_msgs = p;
964
965         return eapol_auth_eap_pending_cb(sta->eapol_sm, sta->eapol_sm->eap);
966 }
967
968
969 static int hostapd_rx_req_set_selected_registrar(void *priv,
970                                                  const struct wpabuf *msg)
971 {
972         struct hostapd_data *hapd = priv;
973         return wps_registrar_set_selected_registrar(hapd->wps->registrar, msg);
974 }
975
976
977 static int hostapd_rx_req_reboot_ap(void *priv, const struct wpabuf *msg)
978 {
979         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
980         return -1;
981 }
982
983
984 static int hostapd_rx_req_reset_ap(void *priv, const struct wpabuf *msg)
985 {
986         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
987         return -1;
988 }
989
990
991 static int hostapd_rx_req_reboot_sta(void *priv, const struct wpabuf *msg)
992 {
993         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
994         return -1;
995 }
996
997
998 static int hostapd_rx_req_reset_sta(void *priv, const struct wpabuf *msg)
999 {
1000         wpa_printf(MSG_DEBUG, "WPS UPnP: TODO %s", __func__);
1001         return -1;
1002 }
1003
1004
1005 static int hostapd_wps_upnp_init(struct hostapd_data *hapd,
1006                                  struct wps_context *wps)
1007 {
1008         struct upnp_wps_device_ctx *ctx;
1009
1010         if (!hapd->conf->upnp_iface)
1011                 return 0;
1012         ctx = os_zalloc(sizeof(*ctx));
1013         if (ctx == NULL)
1014                 return -1;
1015
1016         ctx->rx_req_get_device_info = hostapd_rx_req_get_device_info;
1017         ctx->rx_req_put_message = hostapd_rx_req_put_message;
1018         ctx->rx_req_get_ap_settings = hostapd_rx_req_get_ap_settings;
1019         ctx->rx_req_set_ap_settings = hostapd_rx_req_set_ap_settings;
1020         ctx->rx_req_del_ap_settings = hostapd_rx_req_del_ap_settings;
1021         ctx->rx_req_get_sta_settings = hostapd_rx_req_get_sta_settings;
1022         ctx->rx_req_set_sta_settings = hostapd_rx_req_set_sta_settings;
1023         ctx->rx_req_del_sta_settings = hostapd_rx_req_del_sta_settings;
1024         ctx->rx_req_put_wlan_response = hostapd_rx_req_put_wlan_response;
1025         ctx->rx_req_set_selected_registrar =
1026                 hostapd_rx_req_set_selected_registrar;
1027         ctx->rx_req_reboot_ap = hostapd_rx_req_reboot_ap;
1028         ctx->rx_req_reset_ap = hostapd_rx_req_reset_ap;
1029         ctx->rx_req_reboot_sta = hostapd_rx_req_reboot_sta;
1030         ctx->rx_req_reset_sta = hostapd_rx_req_reset_sta;
1031
1032         hapd->wps_upnp = upnp_wps_device_init(ctx, wps, hapd);
1033         if (hapd->wps_upnp == NULL) {
1034                 os_free(ctx);
1035                 return -1;
1036         }
1037         wps->wps_upnp = hapd->wps_upnp;
1038
1039         if (upnp_wps_device_start(hapd->wps_upnp, hapd->conf->upnp_iface)) {
1040                 upnp_wps_device_deinit(hapd->wps_upnp);
1041                 hapd->wps_upnp = NULL;
1042                 return -1;
1043         }
1044
1045         return 0;
1046 }
1047
1048
1049 static void hostapd_wps_upnp_deinit(struct hostapd_data *hapd)
1050 {
1051         upnp_wps_device_deinit(hapd->wps_upnp);
1052 }
1053
1054 #endif /* CONFIG_WPS_UPNP */