WPS: Fix strict validation of encrypted data for WSC 2.0-only case
[libeap.git] / src / wps / wps_registrar.c
1 /*
2  * Wi-Fi Protected Setup - Registrar
3  * Copyright (c) 2008-2009, 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 "utils/includes.h"
16
17 #include "utils/common.h"
18 #include "utils/base64.h"
19 #include "utils/eloop.h"
20 #include "utils/uuid.h"
21 #include "utils/list.h"
22 #include "crypto/crypto.h"
23 #include "crypto/sha256.h"
24 #include "common/ieee802_11_defs.h"
25 #include "wps_i.h"
26 #include "wps_dev_attr.h"
27 #include "wps_upnp.h"
28 #include "wps_upnp_i.h"
29
30 #ifndef CONFIG_WPS_STRICT
31 #define WPS_WORKAROUNDS
32 #endif /* CONFIG_WPS_STRICT */
33
34 struct wps_uuid_pin {
35         struct dl_list list;
36         u8 uuid[WPS_UUID_LEN];
37         int wildcard_uuid;
38         u8 *pin;
39         size_t pin_len;
40 #define PIN_LOCKED BIT(0)
41 #define PIN_EXPIRES BIT(1)
42         int flags;
43         struct os_time expiration;
44         u8 enrollee_addr[ETH_ALEN];
45 };
46
47
48 static void wps_free_pin(struct wps_uuid_pin *pin)
49 {
50         os_free(pin->pin);
51         os_free(pin);
52 }
53
54
55 static void wps_remove_pin(struct wps_uuid_pin *pin)
56 {
57         dl_list_del(&pin->list);
58         wps_free_pin(pin);
59 }
60
61
62 static void wps_free_pins(struct dl_list *pins)
63 {
64         struct wps_uuid_pin *pin, *prev;
65         dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list)
66                 wps_remove_pin(pin);
67 }
68
69
70 struct wps_pbc_session {
71         struct wps_pbc_session *next;
72         u8 addr[ETH_ALEN];
73         u8 uuid_e[WPS_UUID_LEN];
74         struct os_time timestamp;
75 };
76
77
78 static void wps_free_pbc_sessions(struct wps_pbc_session *pbc)
79 {
80         struct wps_pbc_session *prev;
81
82         while (pbc) {
83                 prev = pbc;
84                 pbc = pbc->next;
85                 os_free(prev);
86         }
87 }
88
89
90 struct wps_registrar_device {
91         struct wps_registrar_device *next;
92         struct wps_device_data dev;
93         u8 uuid[WPS_UUID_LEN];
94 };
95
96
97 struct wps_registrar {
98         struct wps_context *wps;
99
100         int pbc;
101         int selected_registrar;
102
103         int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
104                           size_t psk_len);
105         int (*set_ie_cb)(void *ctx, struct wpabuf *beacon_ie,
106                          struct wpabuf *probe_resp_ie);
107         void (*pin_needed_cb)(void *ctx, const u8 *uuid_e,
108                               const struct wps_device_data *dev);
109         void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
110                                const u8 *uuid_e);
111         void (*set_sel_reg_cb)(void *ctx, int sel_reg, u16 dev_passwd_id,
112                                u16 sel_reg_config_methods);
113         void (*enrollee_seen_cb)(void *ctx, const u8 *addr, const u8 *uuid_e,
114                                  const u8 *pri_dev_type, u16 config_methods,
115                                  u16 dev_password_id, u8 request_type,
116                                  const char *dev_name);
117         void *cb_ctx;
118
119         struct dl_list pins;
120         struct wps_pbc_session *pbc_sessions;
121
122         int skip_cred_build;
123         struct wpabuf *extra_cred;
124         int disable_auto_conf;
125         int sel_reg_union;
126         int sel_reg_dev_password_id_override;
127         int sel_reg_config_methods_override;
128         int static_wep_only;
129         int dualband;
130
131         struct wps_registrar_device *devices;
132
133         int force_pbc_overlap;
134
135         u8 authorized_macs[WPS_MAX_AUTHORIZED_MACS][ETH_ALEN];
136         u8 authorized_macs_union[WPS_MAX_AUTHORIZED_MACS][ETH_ALEN];
137 };
138
139
140 static int wps_set_ie(struct wps_registrar *reg);
141 static void wps_registrar_pbc_timeout(void *eloop_ctx, void *timeout_ctx);
142 static void wps_registrar_set_selected_timeout(void *eloop_ctx,
143                                                void *timeout_ctx);
144
145
146 static void wps_registrar_add_authorized_mac(struct wps_registrar *reg,
147                                              const u8 *addr)
148 {
149         int i;
150         wpa_printf(MSG_DEBUG, "WPS: Add authorized MAC " MACSTR,
151                    MAC2STR(addr));
152         for (i = 0; i < WPS_MAX_AUTHORIZED_MACS; i++)
153                 if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) {
154                         wpa_printf(MSG_DEBUG, "WPS: Authorized MAC was "
155                                    "already in the list");
156                         return; /* already in list */
157                 }
158         for (i = WPS_MAX_AUTHORIZED_MACS - 1; i > 0; i--)
159                 os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i - 1],
160                           ETH_ALEN);
161         os_memcpy(reg->authorized_macs[0], addr, ETH_ALEN);
162         wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs",
163                     (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
164 }
165
166
167 static void wps_registrar_remove_authorized_mac(struct wps_registrar *reg,
168                                                 const u8 *addr)
169 {
170         int i;
171         wpa_printf(MSG_DEBUG, "WPS: Remove authorized MAC " MACSTR,
172                    MAC2STR(addr));
173         for (i = 0; i < WPS_MAX_AUTHORIZED_MACS; i++) {
174                 if (os_memcmp(reg->authorized_macs, addr, ETH_ALEN) == 0)
175                         break;
176         }
177         if (i == WPS_MAX_AUTHORIZED_MACS) {
178                 wpa_printf(MSG_DEBUG, "WPS: Authorized MAC was not in the "
179                            "list");
180                 return; /* not in the list */
181         }
182         for (; i + 1 < WPS_MAX_AUTHORIZED_MACS; i++)
183                 os_memcpy(reg->authorized_macs[i], reg->authorized_macs[i + 1],
184                           ETH_ALEN);
185         os_memset(reg->authorized_macs[WPS_MAX_AUTHORIZED_MACS - 1], 0,
186                   ETH_ALEN);
187         wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs",
188                     (u8 *) reg->authorized_macs, sizeof(reg->authorized_macs));
189 }
190
191
192 static void wps_free_devices(struct wps_registrar_device *dev)
193 {
194         struct wps_registrar_device *prev;
195
196         while (dev) {
197                 prev = dev;
198                 dev = dev->next;
199                 wps_device_data_free(&prev->dev);
200                 os_free(prev);
201         }
202 }
203
204
205 static struct wps_registrar_device * wps_device_get(struct wps_registrar *reg,
206                                                     const u8 *addr)
207 {
208         struct wps_registrar_device *dev;
209
210         for (dev = reg->devices; dev; dev = dev->next) {
211                 if (os_memcmp(dev->dev.mac_addr, addr, ETH_ALEN) == 0)
212                         return dev;
213         }
214         return NULL;
215 }
216
217
218 static void wps_device_clone_data(struct wps_device_data *dst,
219                                   struct wps_device_data *src)
220 {
221         os_memcpy(dst->mac_addr, src->mac_addr, ETH_ALEN);
222         os_memcpy(dst->pri_dev_type, src->pri_dev_type, WPS_DEV_TYPE_LEN);
223
224 #define WPS_STRDUP(n) \
225         os_free(dst->n); \
226         dst->n = src->n ? os_strdup(src->n) : NULL
227
228         WPS_STRDUP(device_name);
229         WPS_STRDUP(manufacturer);
230         WPS_STRDUP(model_name);
231         WPS_STRDUP(model_number);
232         WPS_STRDUP(serial_number);
233 #undef WPS_STRDUP
234 }
235
236
237 int wps_device_store(struct wps_registrar *reg,
238                      struct wps_device_data *dev, const u8 *uuid)
239 {
240         struct wps_registrar_device *d;
241
242         d = wps_device_get(reg, dev->mac_addr);
243         if (d == NULL) {
244                 d = os_zalloc(sizeof(*d));
245                 if (d == NULL)
246                         return -1;
247                 d->next = reg->devices;
248                 reg->devices = d;
249         }
250
251         wps_device_clone_data(&d->dev, dev);
252         os_memcpy(d->uuid, uuid, WPS_UUID_LEN);
253
254         return 0;
255 }
256
257
258 static void wps_registrar_add_pbc_session(struct wps_registrar *reg,
259                                           const u8 *addr, const u8 *uuid_e)
260 {
261         struct wps_pbc_session *pbc, *prev = NULL;
262         struct os_time now;
263
264         os_get_time(&now);
265
266         pbc = reg->pbc_sessions;
267         while (pbc) {
268                 if (os_memcmp(pbc->addr, addr, ETH_ALEN) == 0 &&
269                     os_memcmp(pbc->uuid_e, uuid_e, WPS_UUID_LEN) == 0) {
270                         if (prev)
271                                 prev->next = pbc->next;
272                         else
273                                 reg->pbc_sessions = pbc->next;
274                         break;
275                 }
276                 prev = pbc;
277                 pbc = pbc->next;
278         }
279
280         if (!pbc) {
281                 pbc = os_zalloc(sizeof(*pbc));
282                 if (pbc == NULL)
283                         return;
284                 os_memcpy(pbc->addr, addr, ETH_ALEN);
285                 if (uuid_e)
286                         os_memcpy(pbc->uuid_e, uuid_e, WPS_UUID_LEN);
287         }
288
289         pbc->next = reg->pbc_sessions;
290         reg->pbc_sessions = pbc;
291         pbc->timestamp = now;
292
293         /* remove entries that have timed out */
294         prev = pbc;
295         pbc = pbc->next;
296
297         while (pbc) {
298                 if (now.sec > pbc->timestamp.sec + WPS_PBC_WALK_TIME) {
299                         prev->next = NULL;
300                         wps_free_pbc_sessions(pbc);
301                         break;
302                 }
303                 prev = pbc;
304                 pbc = pbc->next;
305         }
306 }
307
308
309 static void wps_registrar_remove_pbc_session(struct wps_registrar *reg,
310                                              const u8 *addr, const u8 *uuid_e)
311 {
312         struct wps_pbc_session *pbc, *prev = NULL;
313
314         pbc = reg->pbc_sessions;
315         while (pbc) {
316                 if (os_memcmp(pbc->addr, addr, ETH_ALEN) == 0 &&
317                     os_memcmp(pbc->uuid_e, uuid_e, WPS_UUID_LEN) == 0) {
318                         if (prev)
319                                 prev->next = pbc->next;
320                         else
321                                 reg->pbc_sessions = pbc->next;
322                         os_free(pbc);
323                         break;
324                 }
325                 prev = pbc;
326                 pbc = pbc->next;
327         }
328 }
329
330
331 int wps_registrar_pbc_overlap(struct wps_registrar *reg,
332                               const u8 *addr, const u8 *uuid_e)
333 {
334         int count = 0;
335         struct wps_pbc_session *pbc;
336         struct os_time now;
337
338         os_get_time(&now);
339
340         for (pbc = reg->pbc_sessions; pbc; pbc = pbc->next) {
341                 if (now.sec > pbc->timestamp.sec + WPS_PBC_WALK_TIME)
342                         break;
343                 if (addr == NULL || os_memcmp(addr, pbc->addr, ETH_ALEN) ||
344                     uuid_e == NULL ||
345                     os_memcmp(uuid_e, pbc->uuid_e, WPS_UUID_LEN))
346                         count++;
347         }
348
349         if (addr || uuid_e)
350                 count++;
351
352         return count > 1 ? 1 : 0;
353 }
354
355
356 static int wps_build_wps_state(struct wps_context *wps, struct wpabuf *msg)
357 {
358         wpa_printf(MSG_DEBUG, "WPS:  * Wi-Fi Protected Setup State (%d)",
359                    wps->wps_state);
360         wpabuf_put_be16(msg, ATTR_WPS_STATE);
361         wpabuf_put_be16(msg, 1);
362         wpabuf_put_u8(msg, wps->wps_state);
363         return 0;
364 }
365
366
367 #ifdef CONFIG_WPS_UPNP
368 static void wps_registrar_free_pending_m2(struct wps_context *wps)
369 {
370         struct upnp_pending_message *p, *p2, *prev = NULL;
371         p = wps->upnp_msgs;
372         while (p) {
373                 if (p->type == WPS_M2 || p->type == WPS_M2D) {
374                         if (prev == NULL)
375                                 wps->upnp_msgs = p->next;
376                         else
377                                 prev->next = p->next;
378                         wpa_printf(MSG_DEBUG, "WPS UPnP: Drop pending M2/M2D");
379                         p2 = p;
380                         p = p->next;
381                         wpabuf_free(p2->msg);
382                         os_free(p2);
383                         continue;
384                 }
385                 prev = p;
386                 p = p->next;
387         }
388 }
389 #endif /* CONFIG_WPS_UPNP */
390
391
392 static int wps_build_ap_setup_locked(struct wps_context *wps,
393                                      struct wpabuf *msg)
394 {
395         if (wps->ap_setup_locked) {
396                 wpa_printf(MSG_DEBUG, "WPS:  * AP Setup Locked");
397                 wpabuf_put_be16(msg, ATTR_AP_SETUP_LOCKED);
398                 wpabuf_put_be16(msg, 1);
399                 wpabuf_put_u8(msg, 1);
400         }
401         return 0;
402 }
403
404
405 static int wps_build_selected_registrar(struct wps_registrar *reg,
406                                         struct wpabuf *msg)
407 {
408         if (!reg->sel_reg_union)
409                 return 0;
410         wpa_printf(MSG_DEBUG, "WPS:  * Selected Registrar");
411         wpabuf_put_be16(msg, ATTR_SELECTED_REGISTRAR);
412         wpabuf_put_be16(msg, 1);
413         wpabuf_put_u8(msg, 1);
414         return 0;
415 }
416
417
418 static int wps_build_sel_reg_dev_password_id(struct wps_registrar *reg,
419                                              struct wpabuf *msg)
420 {
421         u16 id = reg->pbc ? DEV_PW_PUSHBUTTON : DEV_PW_DEFAULT;
422         if (!reg->sel_reg_union)
423                 return 0;
424         if (reg->sel_reg_dev_password_id_override >= 0)
425                 id = reg->sel_reg_dev_password_id_override;
426         wpa_printf(MSG_DEBUG, "WPS:  * Device Password ID (%d)", id);
427         wpabuf_put_be16(msg, ATTR_DEV_PASSWORD_ID);
428         wpabuf_put_be16(msg, 2);
429         wpabuf_put_be16(msg, id);
430         return 0;
431 }
432
433
434 static int wps_build_sel_pbc_reg_uuid_e(struct wps_registrar *reg,
435                                         struct wpabuf *msg)
436 {
437         u16 id = reg->pbc ? DEV_PW_PUSHBUTTON : DEV_PW_DEFAULT;
438         if (!reg->sel_reg_union)
439                 return 0;
440         if (reg->sel_reg_dev_password_id_override >= 0)
441                 id = reg->sel_reg_dev_password_id_override;
442         if (id != DEV_PW_PUSHBUTTON || !reg->dualband)
443                 return 0;
444         return wps_build_uuid_e(msg, reg->wps->uuid);
445 }
446
447
448 static void wps_set_pushbutton(u16 *methods, u16 conf_methods)
449 {
450         *methods |= WPS_CONFIG_PUSHBUTTON;
451 #ifdef CONFIG_WPS2
452         if (conf_methods & WPS_CONFIG_VIRT_PUSHBUTTON)
453                 *methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
454         if (conf_methods & WPS_CONFIG_PHY_PUSHBUTTON)
455                 *methods |= WPS_CONFIG_PHY_PUSHBUTTON;
456         if ((*methods & WPS_CONFIG_VIRT_PUSHBUTTON) !=
457             WPS_CONFIG_VIRT_PUSHBUTTON ||
458             (*methods & WPS_CONFIG_PHY_PUSHBUTTON) !=
459             WPS_CONFIG_PHY_PUSHBUTTON) {
460                 /*
461                  * Required to include virtual/physical flag, but we were not
462                  * configured with push button type, so have to default to one
463                  * of them.
464                  */
465                 *methods |= WPS_CONFIG_PHY_PUSHBUTTON;
466         }
467 #endif /* CONFIG_WPS2 */
468 }
469
470
471 static int wps_build_sel_reg_config_methods(struct wps_registrar *reg,
472                                             struct wpabuf *msg)
473 {
474         u16 methods;
475         if (!reg->sel_reg_union)
476                 return 0;
477         methods = reg->wps->config_methods;
478         methods &= ~WPS_CONFIG_PUSHBUTTON;
479 #ifdef CONFIG_WPS2
480         methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
481                      WPS_CONFIG_PHY_PUSHBUTTON);
482 #endif /* CONFIG_WPS2 */
483         if (reg->pbc)
484                 wps_set_pushbutton(&methods, reg->wps->config_methods);
485         if (reg->sel_reg_config_methods_override >= 0)
486                 methods = reg->sel_reg_config_methods_override;
487         wpa_printf(MSG_DEBUG, "WPS:  * Selected Registrar Config Methods (%x)",
488                    methods);
489         wpabuf_put_be16(msg, ATTR_SELECTED_REGISTRAR_CONFIG_METHODS);
490         wpabuf_put_be16(msg, 2);
491         wpabuf_put_be16(msg, methods);
492         return 0;
493 }
494
495
496 static int wps_build_probe_config_methods(struct wps_registrar *reg,
497                                           struct wpabuf *msg)
498 {
499         u16 methods;
500         /*
501          * These are the methods that the AP supports as an Enrollee for adding
502          * external Registrars.
503          */
504         methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
505 #ifdef CONFIG_WPS2
506         methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
507                      WPS_CONFIG_PHY_PUSHBUTTON);
508 #endif /* CONFIG_WPS2 */
509         wpa_printf(MSG_DEBUG, "WPS:  * Config Methods (%x)", methods);
510         wpabuf_put_be16(msg, ATTR_CONFIG_METHODS);
511         wpabuf_put_be16(msg, 2);
512         wpabuf_put_be16(msg, methods);
513         return 0;
514 }
515
516
517 static int wps_build_config_methods_r(struct wps_registrar *reg,
518                                       struct wpabuf *msg)
519 {
520         u16 methods;
521         methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
522 #ifdef CONFIG_WPS2
523         methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
524                      WPS_CONFIG_PHY_PUSHBUTTON);
525 #endif /* CONFIG_WPS2 */
526         if (reg->pbc)
527                 wps_set_pushbutton(&methods, reg->wps->config_methods);
528         return wps_build_config_methods(msg, methods);
529 }
530
531
532 const u8 * wps_authorized_macs(struct wps_registrar *reg, size_t *count)
533 {
534         *count = 0;
535
536 #ifdef CONFIG_WPS2
537         while (*count < WPS_MAX_AUTHORIZED_MACS) {
538                 if (is_zero_ether_addr(reg->authorized_macs_union[*count]))
539                         break;
540                 (*count)++;
541         }
542 #endif /* CONFIG_WPS2 */
543
544         return (const u8 *) reg->authorized_macs_union;
545 }
546
547
548 /**
549  * wps_registrar_init - Initialize WPS Registrar data
550  * @wps: Pointer to longterm WPS context
551  * @cfg: Registrar configuration
552  * Returns: Pointer to allocated Registrar data or %NULL on failure
553  *
554  * This function is used to initialize WPS Registrar functionality. It can be
555  * used for a single Registrar run (e.g., when run in a supplicant) or multiple
556  * runs (e.g., when run as an internal Registrar in an AP). Caller is
557  * responsible for freeing the returned data with wps_registrar_deinit() when
558  * Registrar functionality is not needed anymore.
559  */
560 struct wps_registrar *
561 wps_registrar_init(struct wps_context *wps,
562                    const struct wps_registrar_config *cfg)
563 {
564         struct wps_registrar *reg = os_zalloc(sizeof(*reg));
565         if (reg == NULL)
566                 return NULL;
567
568         dl_list_init(&reg->pins);
569         reg->wps = wps;
570         reg->new_psk_cb = cfg->new_psk_cb;
571         reg->set_ie_cb = cfg->set_ie_cb;
572         reg->pin_needed_cb = cfg->pin_needed_cb;
573         reg->reg_success_cb = cfg->reg_success_cb;
574         reg->set_sel_reg_cb = cfg->set_sel_reg_cb;
575         reg->enrollee_seen_cb = cfg->enrollee_seen_cb;
576         reg->cb_ctx = cfg->cb_ctx;
577         reg->skip_cred_build = cfg->skip_cred_build;
578         if (cfg->extra_cred) {
579                 reg->extra_cred = wpabuf_alloc_copy(cfg->extra_cred,
580                                                     cfg->extra_cred_len);
581                 if (reg->extra_cred == NULL) {
582                         os_free(reg);
583                         return NULL;
584                 }
585         }
586         reg->disable_auto_conf = cfg->disable_auto_conf;
587         reg->sel_reg_dev_password_id_override = -1;
588         reg->sel_reg_config_methods_override = -1;
589         reg->static_wep_only = cfg->static_wep_only;
590         reg->dualband = cfg->dualband;
591
592         if (wps_set_ie(reg)) {
593                 wps_registrar_deinit(reg);
594                 return NULL;
595         }
596
597         return reg;
598 }
599
600
601 /**
602  * wps_registrar_deinit - Deinitialize WPS Registrar data
603  * @reg: Registrar data from wps_registrar_init()
604  */
605 void wps_registrar_deinit(struct wps_registrar *reg)
606 {
607         if (reg == NULL)
608                 return;
609         eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
610         eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
611         wps_free_pins(&reg->pins);
612         wps_free_pbc_sessions(reg->pbc_sessions);
613         wpabuf_free(reg->extra_cred);
614         wps_free_devices(reg->devices);
615         os_free(reg);
616 }
617
618
619 /**
620  * wps_registrar_add_pin - Configure a new PIN for Registrar
621  * @reg: Registrar data from wps_registrar_init()
622  * @addr: Enrollee MAC address or %NULL if not known
623  * @uuid: UUID-E or %NULL for wildcard (any UUID)
624  * @pin: PIN (Device Password)
625  * @pin_len: Length of pin in octets
626  * @timeout: Time (in seconds) when the PIN will be invalidated; 0 = no timeout
627  * Returns: 0 on success, -1 on failure
628  */
629 int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr,
630                           const u8 *uuid, const u8 *pin, size_t pin_len,
631                           int timeout)
632 {
633         struct wps_uuid_pin *p;
634
635         p = os_zalloc(sizeof(*p));
636         if (p == NULL)
637                 return -1;
638         if (addr)
639                 os_memcpy(p->enrollee_addr, addr, ETH_ALEN);
640         if (uuid == NULL)
641                 p->wildcard_uuid = 1;
642         else
643                 os_memcpy(p->uuid, uuid, WPS_UUID_LEN);
644         p->pin = os_malloc(pin_len);
645         if (p->pin == NULL) {
646                 os_free(p);
647                 return -1;
648         }
649         os_memcpy(p->pin, pin, pin_len);
650         p->pin_len = pin_len;
651
652         if (timeout) {
653                 p->flags |= PIN_EXPIRES;
654                 os_get_time(&p->expiration);
655                 p->expiration.sec += timeout;
656         }
657
658         dl_list_add(&reg->pins, &p->list);
659
660         wpa_printf(MSG_DEBUG, "WPS: A new PIN configured (timeout=%d)",
661                    timeout);
662         wpa_hexdump(MSG_DEBUG, "WPS: UUID", uuid, WPS_UUID_LEN);
663         wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: PIN", pin, pin_len);
664         reg->selected_registrar = 1;
665         reg->pbc = 0;
666         if (addr)
667                 wps_registrar_add_authorized_mac(reg, addr);
668         else
669                 wps_registrar_add_authorized_mac(
670                         reg, (u8 *) "\xff\xff\xff\xff\xff\xff");
671         wps_registrar_selected_registrar_changed(reg);
672         eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
673         eloop_register_timeout(WPS_PBC_WALK_TIME, 0,
674                                wps_registrar_set_selected_timeout,
675                                reg, NULL);
676
677         return 0;
678 }
679
680
681 static void wps_registrar_remove_pin(struct wps_registrar *reg,
682                                      struct wps_uuid_pin *pin)
683 {
684         u8 *addr;
685         u8 bcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
686
687         if (is_zero_ether_addr(pin->enrollee_addr))
688                 addr = bcast;
689         else
690                 addr = pin->enrollee_addr;
691         wps_registrar_remove_authorized_mac(reg, addr);
692         wps_remove_pin(pin);
693         wps_registrar_selected_registrar_changed(reg);
694 }
695
696
697 static void wps_registrar_expire_pins(struct wps_registrar *reg)
698 {
699         struct wps_uuid_pin *pin, *prev;
700         struct os_time now;
701
702         os_get_time(&now);
703         dl_list_for_each_safe(pin, prev, &reg->pins, struct wps_uuid_pin, list)
704         {
705                 if ((pin->flags & PIN_EXPIRES) &&
706                     os_time_before(&pin->expiration, &now)) {
707                         wpa_hexdump(MSG_DEBUG, "WPS: Expired PIN for UUID",
708                                     pin->uuid, WPS_UUID_LEN);
709                         wps_registrar_remove_pin(reg, pin);
710                 }
711         }
712 }
713
714
715 /**
716  * wps_registrar_invalidate_wildcard_pin - Invalidate a wildcard PIN
717  * @reg: Registrar data from wps_registrar_init()
718  * Returns: 0 on success, -1 if not wildcard PIN is enabled
719  */
720 static int wps_registrar_invalidate_wildcard_pin(struct wps_registrar *reg)
721 {
722         struct wps_uuid_pin *pin, *prev;
723
724         dl_list_for_each_safe(pin, prev, &reg->pins, struct wps_uuid_pin, list)
725         {
726                 if (pin->wildcard_uuid) {
727                         wpa_hexdump(MSG_DEBUG, "WPS: Invalidated PIN for UUID",
728                                     pin->uuid, WPS_UUID_LEN);
729                         wps_registrar_remove_pin(reg, pin);
730                         return 0;
731                 }
732         }
733
734         return -1;
735 }
736
737
738 /**
739  * wps_registrar_invalidate_pin - Invalidate a PIN for a specific UUID-E
740  * @reg: Registrar data from wps_registrar_init()
741  * @uuid: UUID-E
742  * Returns: 0 on success, -1 on failure (e.g., PIN not found)
743  */
744 int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid)
745 {
746         struct wps_uuid_pin *pin, *prev;
747
748         dl_list_for_each_safe(pin, prev, &reg->pins, struct wps_uuid_pin, list)
749         {
750                 if (os_memcmp(pin->uuid, uuid, WPS_UUID_LEN) == 0) {
751                         wpa_hexdump(MSG_DEBUG, "WPS: Invalidated PIN for UUID",
752                                     pin->uuid, WPS_UUID_LEN);
753                         wps_registrar_remove_pin(reg, pin);
754                         return 0;
755                 }
756         }
757
758         return -1;
759 }
760
761
762 static const u8 * wps_registrar_get_pin(struct wps_registrar *reg,
763                                         const u8 *uuid, size_t *pin_len)
764 {
765         struct wps_uuid_pin *pin, *found = NULL;
766
767         wps_registrar_expire_pins(reg);
768
769         dl_list_for_each(pin, &reg->pins, struct wps_uuid_pin, list) {
770                 if (!pin->wildcard_uuid &&
771                     os_memcmp(pin->uuid, uuid, WPS_UUID_LEN) == 0) {
772                         found = pin;
773                         break;
774                 }
775         }
776
777         if (!found) {
778                 /* Check for wildcard UUIDs since none of the UUID-specific
779                  * PINs matched */
780                 dl_list_for_each(pin, &reg->pins, struct wps_uuid_pin, list) {
781                         if (pin->wildcard_uuid == 1) {
782                                 wpa_printf(MSG_DEBUG, "WPS: Found a wildcard "
783                                            "PIN. Assigned it for this UUID-E");
784                                 pin->wildcard_uuid = 2;
785                                 os_memcpy(pin->uuid, uuid, WPS_UUID_LEN);
786                                 found = pin;
787                                 break;
788                         }
789                 }
790         }
791
792         if (!found)
793                 return NULL;
794
795         /*
796          * Lock the PIN to avoid attacks based on concurrent re-use of the PIN
797          * that could otherwise avoid PIN invalidations.
798          */
799         if (found->flags & PIN_LOCKED) {
800                 wpa_printf(MSG_DEBUG, "WPS: Selected PIN locked - do not "
801                            "allow concurrent re-use");
802                 return NULL;
803         }
804         *pin_len = found->pin_len;
805         found->flags |= PIN_LOCKED;
806         return found->pin;
807 }
808
809
810 /**
811  * wps_registrar_unlock_pin - Unlock a PIN for a specific UUID-E
812  * @reg: Registrar data from wps_registrar_init()
813  * @uuid: UUID-E
814  * Returns: 0 on success, -1 on failure
815  *
816  * PINs are locked to enforce only one concurrent use. This function unlocks a
817  * PIN to allow it to be used again. If the specified PIN was configured using
818  * a wildcard UUID, it will be removed instead of allowing multiple uses.
819  */
820 int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid)
821 {
822         struct wps_uuid_pin *pin;
823
824         dl_list_for_each(pin, &reg->pins, struct wps_uuid_pin, list) {
825                 if (os_memcmp(pin->uuid, uuid, WPS_UUID_LEN) == 0) {
826                         if (pin->wildcard_uuid == 2) {
827                                 wpa_printf(MSG_DEBUG, "WPS: Invalidating used "
828                                            "wildcard PIN");
829                                 return wps_registrar_invalidate_pin(reg, uuid);
830                         }
831                         pin->flags &= ~PIN_LOCKED;
832                         return 0;
833                 }
834         }
835
836         return -1;
837 }
838
839
840 static void wps_registrar_stop_pbc(struct wps_registrar *reg)
841 {
842         reg->selected_registrar = 0;
843         reg->pbc = 0;
844         wps_registrar_selected_registrar_changed(reg);
845 }
846
847
848 static void wps_registrar_pbc_timeout(void *eloop_ctx, void *timeout_ctx)
849 {
850         struct wps_registrar *reg = eloop_ctx;
851
852         wpa_printf(MSG_DEBUG, "WPS: PBC timed out - disable PBC mode");
853         wps_pbc_timeout_event(reg->wps);
854         wps_registrar_stop_pbc(reg);
855 }
856
857
858 /**
859  * wps_registrar_button_pushed - Notify Registrar that AP button was pushed
860  * @reg: Registrar data from wps_registrar_init()
861  * Returns: 0 on success, -1 on failure
862  *
863  * This function is called on an AP when a push button is pushed to activate
864  * PBC mode. The PBC mode will be stopped after walk time (2 minutes) timeout
865  * or when a PBC registration is completed.
866  */
867 int wps_registrar_button_pushed(struct wps_registrar *reg)
868 {
869         if (wps_registrar_pbc_overlap(reg, NULL, NULL)) {
870                 wpa_printf(MSG_DEBUG, "WPS: PBC overlap - do not start PBC "
871                            "mode");
872                 wps_pbc_overlap_event(reg->wps);
873                 return -1;
874         }
875         wpa_printf(MSG_DEBUG, "WPS: Button pushed - PBC mode started");
876         reg->force_pbc_overlap = 0;
877         reg->selected_registrar = 1;
878         reg->pbc = 1;
879         wps_registrar_selected_registrar_changed(reg);
880
881         eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
882         eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wps_registrar_pbc_timeout,
883                                reg, NULL);
884         return 0;
885 }
886
887
888 static void wps_registrar_pbc_completed(struct wps_registrar *reg)
889 {
890         wpa_printf(MSG_DEBUG, "WPS: PBC completed - stopping PBC mode");
891         eloop_cancel_timeout(wps_registrar_pbc_timeout, reg, NULL);
892         wps_registrar_stop_pbc(reg);
893 }
894
895
896 static void wps_registrar_pin_completed(struct wps_registrar *reg)
897 {
898         wpa_printf(MSG_DEBUG, "WPS: PIN completed using internal Registrar");
899         eloop_cancel_timeout(wps_registrar_set_selected_timeout, reg, NULL);
900         reg->selected_registrar = 0;
901         wps_registrar_selected_registrar_changed(reg);
902 }
903
904
905 int wps_registrar_wps_cancel(struct wps_registrar *reg)
906 {
907         if (reg->pbc) {
908                 wpa_printf(MSG_DEBUG, "WPS: PBC is set - cancelling it");
909                 wps_registrar_pbc_timeout(reg, NULL);
910                 return 1;
911         } else if (reg->selected_registrar) {
912                 /* PIN Method */
913                 wpa_printf(MSG_DEBUG, "WPS: PIN is set - cancelling it");
914                 wps_registrar_pin_completed(reg);
915                 wps_registrar_invalidate_wildcard_pin(reg);
916                 return 1;
917         }
918         return 0;
919 }
920
921
922 /**
923  * wps_registrar_probe_req_rx - Notify Registrar of Probe Request
924  * @reg: Registrar data from wps_registrar_init()
925  * @addr: MAC address of the Probe Request sender
926  * @wps_data: WPS IE contents
927  *
928  * This function is called on an AP when a Probe Request with WPS IE is
929  * received. This is used to track PBC mode use and to detect possible overlap
930  * situation with other WPS APs.
931  */
932 void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr,
933                                 const struct wpabuf *wps_data,
934                                 int p2p_wildcard)
935 {
936         struct wps_parse_attr attr;
937
938         wpa_hexdump_buf(MSG_MSGDUMP,
939                         "WPS: Probe Request with WPS data received",
940                         wps_data);
941
942         if (wps_parse_msg(wps_data, &attr) < 0)
943                 return;
944
945         if (attr.config_methods == NULL) {
946                 wpa_printf(MSG_DEBUG, "WPS: No Config Methods attribute in "
947                            "Probe Request");
948                 return;
949         }
950
951         if (attr.dev_password_id == NULL) {
952                 wpa_printf(MSG_DEBUG, "WPS: No Device Password Id attribute "
953                            "in Probe Request");
954                 return;
955         }
956
957         if (reg->enrollee_seen_cb && attr.uuid_e &&
958             attr.primary_dev_type && attr.request_type && !p2p_wildcard) {
959                 char *dev_name = NULL;
960                 if (attr.dev_name) {
961                         dev_name = os_zalloc(attr.dev_name_len + 1);
962                         if (dev_name) {
963                                 os_memcpy(dev_name, attr.dev_name,
964                                           attr.dev_name_len);
965                         }
966                 }
967                 reg->enrollee_seen_cb(reg->cb_ctx, addr, attr.uuid_e,
968                                       attr.primary_dev_type,
969                                       WPA_GET_BE16(attr.config_methods),
970                                       WPA_GET_BE16(attr.dev_password_id),
971                                       *attr.request_type, dev_name);
972                 os_free(dev_name);
973         }
974
975         if (WPA_GET_BE16(attr.dev_password_id) != DEV_PW_PUSHBUTTON)
976                 return; /* Not PBC */
977
978         wpa_printf(MSG_DEBUG, "WPS: Probe Request for PBC received from "
979                    MACSTR, MAC2STR(addr));
980         if (attr.uuid_e == NULL) {
981                 wpa_printf(MSG_DEBUG, "WPS: Invalid Probe Request WPS IE: No "
982                            "UUID-E included");
983                 return;
984         }
985
986         wps_registrar_add_pbc_session(reg, addr, attr.uuid_e);
987         if (wps_registrar_pbc_overlap(reg, addr, attr.uuid_e)) {
988                 wpa_printf(MSG_DEBUG, "WPS: PBC session overlap detected");
989                 reg->force_pbc_overlap = 1;
990                 wps_pbc_overlap_event(reg->wps);
991         }
992 }
993
994
995 static int wps_cb_new_psk(struct wps_registrar *reg, const u8 *mac_addr,
996                           const u8 *psk, size_t psk_len)
997 {
998         if (reg->new_psk_cb == NULL)
999                 return 0;
1000
1001         return reg->new_psk_cb(reg->cb_ctx, mac_addr, psk, psk_len);
1002 }
1003
1004
1005 static void wps_cb_pin_needed(struct wps_registrar *reg, const u8 *uuid_e,
1006                               const struct wps_device_data *dev)
1007 {
1008         if (reg->pin_needed_cb == NULL)
1009                 return;
1010
1011         reg->pin_needed_cb(reg->cb_ctx, uuid_e, dev);
1012 }
1013
1014
1015 static void wps_cb_reg_success(struct wps_registrar *reg, const u8 *mac_addr,
1016                                const u8 *uuid_e)
1017 {
1018         if (reg->reg_success_cb == NULL)
1019                 return;
1020
1021         reg->reg_success_cb(reg->cb_ctx, mac_addr, uuid_e);
1022 }
1023
1024
1025 static int wps_cb_set_ie(struct wps_registrar *reg, struct wpabuf *beacon_ie,
1026                          struct wpabuf *probe_resp_ie)
1027 {
1028         return reg->set_ie_cb(reg->cb_ctx, beacon_ie, probe_resp_ie);
1029 }
1030
1031
1032 static void wps_cb_set_sel_reg(struct wps_registrar *reg)
1033 {
1034         u16 methods = 0;
1035         if (reg->set_sel_reg_cb == NULL)
1036                 return;
1037
1038         if (reg->selected_registrar) {
1039                 methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
1040 #ifdef CONFIG_WPS2
1041                 methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
1042                              WPS_CONFIG_PHY_PUSHBUTTON);
1043 #endif /* CONFIG_WPS2 */
1044                 if (reg->pbc)
1045                         wps_set_pushbutton(&methods, reg->wps->config_methods);
1046         }
1047
1048         wpa_printf(MSG_DEBUG, "WPS: wps_cb_set_sel_reg: sel_reg=%d "
1049                    "config_methods=0x%x pbc=%d methods=0x%x",
1050                    reg->selected_registrar, reg->wps->config_methods,
1051                    reg->pbc, methods);
1052
1053         reg->set_sel_reg_cb(reg->cb_ctx, reg->selected_registrar,
1054                             reg->pbc ? DEV_PW_PUSHBUTTON : DEV_PW_DEFAULT,
1055                             methods);
1056 }
1057
1058
1059 static int wps_set_ie(struct wps_registrar *reg)
1060 {
1061         struct wpabuf *beacon;
1062         struct wpabuf *probe;
1063         const u8 *auth_macs;
1064         size_t count;
1065
1066         if (reg->set_ie_cb == NULL)
1067                 return 0;
1068
1069         beacon = wpabuf_alloc(400);
1070         if (beacon == NULL)
1071                 return -1;
1072         probe = wpabuf_alloc(500);
1073         if (probe == NULL) {
1074                 wpabuf_free(beacon);
1075                 return -1;
1076         }
1077
1078         auth_macs = wps_authorized_macs(reg, &count);
1079
1080         wpa_printf(MSG_DEBUG, "WPS: Build Beacon IEs");
1081
1082         if (wps_build_version(beacon) ||
1083             wps_build_wps_state(reg->wps, beacon) ||
1084             wps_build_ap_setup_locked(reg->wps, beacon) ||
1085             wps_build_selected_registrar(reg, beacon) ||
1086             wps_build_sel_reg_dev_password_id(reg, beacon) ||
1087             wps_build_sel_reg_config_methods(reg, beacon) ||
1088             wps_build_sel_pbc_reg_uuid_e(reg, beacon) ||
1089             (reg->dualband && wps_build_rf_bands(&reg->wps->dev, beacon)) ||
1090             wps_build_wfa_ext(beacon, 0, auth_macs, count)) {
1091                 wpabuf_free(beacon);
1092                 wpabuf_free(probe);
1093                 return -1;
1094         }
1095
1096         wpa_printf(MSG_DEBUG, "WPS: Build Probe Response IEs");
1097
1098         if (wps_build_version(probe) ||
1099             wps_build_wps_state(reg->wps, probe) ||
1100             wps_build_ap_setup_locked(reg->wps, probe) ||
1101             wps_build_selected_registrar(reg, probe) ||
1102             wps_build_sel_reg_dev_password_id(reg, probe) ||
1103             wps_build_sel_reg_config_methods(reg, probe) ||
1104             wps_build_resp_type(probe, reg->wps->ap ? WPS_RESP_AP :
1105                                 WPS_RESP_REGISTRAR) ||
1106             wps_build_uuid_e(probe, reg->wps->uuid) ||
1107             wps_build_device_attrs(&reg->wps->dev, probe) ||
1108             wps_build_probe_config_methods(reg, probe) ||
1109             wps_build_rf_bands(&reg->wps->dev, probe) ||
1110             wps_build_wfa_ext(probe, 0, auth_macs, count)) {
1111                 wpabuf_free(beacon);
1112                 wpabuf_free(probe);
1113                 return -1;
1114         }
1115
1116 #ifdef CONFIG_P2P
1117         if (wps_build_dev_name(&reg->wps->dev, beacon) ||
1118             wps_build_primary_dev_type(&reg->wps->dev, beacon)) {
1119                 wpabuf_free(beacon);
1120                 wpabuf_free(probe);
1121                 return -1;
1122         }
1123 #endif /* CONFIG_P2P */
1124
1125         beacon = wps_ie_encapsulate(beacon);
1126         probe = wps_ie_encapsulate(probe);
1127
1128         if (!beacon || !probe) {
1129                 wpabuf_free(beacon);
1130                 wpabuf_free(probe);
1131                 return -1;
1132         }
1133
1134         if (reg->static_wep_only) {
1135                 /*
1136                  * Windows XP and Vista clients can get confused about
1137                  * EAP-Identity/Request when they probe the network with
1138                  * EAPOL-Start. In such a case, they may assume the network is
1139                  * using IEEE 802.1X and prompt user for a certificate while
1140                  * the correct (non-WPS) behavior would be to ask for the
1141                  * static WEP key. As a workaround, use Microsoft Provisioning
1142                  * IE to advertise that legacy 802.1X is not supported.
1143                  */
1144                 const u8 ms_wps[7] = {
1145                         WLAN_EID_VENDOR_SPECIFIC, 5,
1146                         /* Microsoft Provisioning IE (00:50:f2:5) */
1147                         0x00, 0x50, 0xf2, 5,
1148                         0x00 /* no legacy 802.1X or MS WPS */
1149                 };
1150                 wpa_printf(MSG_DEBUG, "WPS: Add Microsoft Provisioning IE "
1151                            "into Beacon/Probe Response frames");
1152                 wpabuf_put_data(beacon, ms_wps, sizeof(ms_wps));
1153                 wpabuf_put_data(probe, ms_wps, sizeof(ms_wps));
1154         }
1155
1156         return wps_cb_set_ie(reg, beacon, probe);
1157 }
1158
1159
1160 static int wps_get_dev_password(struct wps_data *wps)
1161 {
1162         const u8 *pin;
1163         size_t pin_len = 0;
1164
1165         os_free(wps->dev_password);
1166         wps->dev_password = NULL;
1167
1168         if (wps->pbc) {
1169                 wpa_printf(MSG_DEBUG, "WPS: Use default PIN for PBC");
1170                 pin = (const u8 *) "00000000";
1171                 pin_len = 8;
1172         } else {
1173                 pin = wps_registrar_get_pin(wps->wps->registrar, wps->uuid_e,
1174                                             &pin_len);
1175         }
1176         if (pin == NULL) {
1177                 wpa_printf(MSG_DEBUG, "WPS: No Device Password available for "
1178                            "the Enrollee");
1179                 wps_cb_pin_needed(wps->wps->registrar, wps->uuid_e,
1180                                   &wps->peer_dev);
1181                 return -1;
1182         }
1183
1184         wps->dev_password = os_malloc(pin_len);
1185         if (wps->dev_password == NULL)
1186                 return -1;
1187         os_memcpy(wps->dev_password, pin, pin_len);
1188         wps->dev_password_len = pin_len;
1189
1190         return 0;
1191 }
1192
1193
1194 static int wps_build_uuid_r(struct wps_data *wps, struct wpabuf *msg)
1195 {
1196         wpa_printf(MSG_DEBUG, "WPS:  * UUID-R");
1197         wpabuf_put_be16(msg, ATTR_UUID_R);
1198         wpabuf_put_be16(msg, WPS_UUID_LEN);
1199         wpabuf_put_data(msg, wps->uuid_r, WPS_UUID_LEN);
1200         return 0;
1201 }
1202
1203
1204 static int wps_build_r_hash(struct wps_data *wps, struct wpabuf *msg)
1205 {
1206         u8 *hash;
1207         const u8 *addr[4];
1208         size_t len[4];
1209
1210         if (os_get_random(wps->snonce, 2 * WPS_SECRET_NONCE_LEN) < 0)
1211                 return -1;
1212         wpa_hexdump(MSG_DEBUG, "WPS: R-S1", wps->snonce, WPS_SECRET_NONCE_LEN);
1213         wpa_hexdump(MSG_DEBUG, "WPS: R-S2",
1214                     wps->snonce + WPS_SECRET_NONCE_LEN, WPS_SECRET_NONCE_LEN);
1215
1216         if (wps->dh_pubkey_e == NULL || wps->dh_pubkey_r == NULL) {
1217                 wpa_printf(MSG_DEBUG, "WPS: DH public keys not available for "
1218                            "R-Hash derivation");
1219                 return -1;
1220         }
1221
1222         wpa_printf(MSG_DEBUG, "WPS:  * R-Hash1");
1223         wpabuf_put_be16(msg, ATTR_R_HASH1);
1224         wpabuf_put_be16(msg, SHA256_MAC_LEN);
1225         hash = wpabuf_put(msg, SHA256_MAC_LEN);
1226         /* R-Hash1 = HMAC_AuthKey(R-S1 || PSK1 || PK_E || PK_R) */
1227         addr[0] = wps->snonce;
1228         len[0] = WPS_SECRET_NONCE_LEN;
1229         addr[1] = wps->psk1;
1230         len[1] = WPS_PSK_LEN;
1231         addr[2] = wpabuf_head(wps->dh_pubkey_e);
1232         len[2] = wpabuf_len(wps->dh_pubkey_e);
1233         addr[3] = wpabuf_head(wps->dh_pubkey_r);
1234         len[3] = wpabuf_len(wps->dh_pubkey_r);
1235         hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
1236         wpa_hexdump(MSG_DEBUG, "WPS: R-Hash1", hash, SHA256_MAC_LEN);
1237
1238         wpa_printf(MSG_DEBUG, "WPS:  * R-Hash2");
1239         wpabuf_put_be16(msg, ATTR_R_HASH2);
1240         wpabuf_put_be16(msg, SHA256_MAC_LEN);
1241         hash = wpabuf_put(msg, SHA256_MAC_LEN);
1242         /* R-Hash2 = HMAC_AuthKey(R-S2 || PSK2 || PK_E || PK_R) */
1243         addr[0] = wps->snonce + WPS_SECRET_NONCE_LEN;
1244         addr[1] = wps->psk2;
1245         hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
1246         wpa_hexdump(MSG_DEBUG, "WPS: R-Hash2", hash, SHA256_MAC_LEN);
1247
1248         return 0;
1249 }
1250
1251
1252 static int wps_build_r_snonce1(struct wps_data *wps, struct wpabuf *msg)
1253 {
1254         wpa_printf(MSG_DEBUG, "WPS:  * R-SNonce1");
1255         wpabuf_put_be16(msg, ATTR_R_SNONCE1);
1256         wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
1257         wpabuf_put_data(msg, wps->snonce, WPS_SECRET_NONCE_LEN);
1258         return 0;
1259 }
1260
1261
1262 static int wps_build_r_snonce2(struct wps_data *wps, struct wpabuf *msg)
1263 {
1264         wpa_printf(MSG_DEBUG, "WPS:  * R-SNonce2");
1265         wpabuf_put_be16(msg, ATTR_R_SNONCE2);
1266         wpabuf_put_be16(msg, WPS_SECRET_NONCE_LEN);
1267         wpabuf_put_data(msg, wps->snonce + WPS_SECRET_NONCE_LEN,
1268                         WPS_SECRET_NONCE_LEN);
1269         return 0;
1270 }
1271
1272
1273 static int wps_build_cred_network_idx(struct wpabuf *msg,
1274                                       const struct wps_credential *cred)
1275 {
1276         wpa_printf(MSG_DEBUG, "WPS:  * Network Index");
1277         wpabuf_put_be16(msg, ATTR_NETWORK_INDEX);
1278         wpabuf_put_be16(msg, 1);
1279         wpabuf_put_u8(msg, 1);
1280         return 0;
1281 }
1282
1283
1284 static int wps_build_cred_ssid(struct wpabuf *msg,
1285                                const struct wps_credential *cred)
1286 {
1287         wpa_printf(MSG_DEBUG, "WPS:  * SSID");
1288         wpabuf_put_be16(msg, ATTR_SSID);
1289         wpabuf_put_be16(msg, cred->ssid_len);
1290         wpabuf_put_data(msg, cred->ssid, cred->ssid_len);
1291         return 0;
1292 }
1293
1294
1295 static int wps_build_cred_auth_type(struct wpabuf *msg,
1296                                     const struct wps_credential *cred)
1297 {
1298         wpa_printf(MSG_DEBUG, "WPS:  * Authentication Type (0x%x)",
1299                    cred->auth_type);
1300         wpabuf_put_be16(msg, ATTR_AUTH_TYPE);
1301         wpabuf_put_be16(msg, 2);
1302         wpabuf_put_be16(msg, cred->auth_type);
1303         return 0;
1304 }
1305
1306
1307 static int wps_build_cred_encr_type(struct wpabuf *msg,
1308                                     const struct wps_credential *cred)
1309 {
1310         wpa_printf(MSG_DEBUG, "WPS:  * Encryption Type (0x%x)",
1311                    cred->encr_type);
1312         wpabuf_put_be16(msg, ATTR_ENCR_TYPE);
1313         wpabuf_put_be16(msg, 2);
1314         wpabuf_put_be16(msg, cred->encr_type);
1315         return 0;
1316 }
1317
1318
1319 static int wps_build_cred_network_key(struct wpabuf *msg,
1320                                       const struct wps_credential *cred)
1321 {
1322         wpa_printf(MSG_DEBUG, "WPS:  * Network Key (len=%d)",
1323                    (int) cred->key_len);
1324         wpabuf_put_be16(msg, ATTR_NETWORK_KEY);
1325         wpabuf_put_be16(msg, cred->key_len);
1326         wpabuf_put_data(msg, cred->key, cred->key_len);
1327         return 0;
1328 }
1329
1330
1331 static int wps_build_cred_mac_addr(struct wpabuf *msg,
1332                                    const struct wps_credential *cred)
1333 {
1334         wpa_printf(MSG_DEBUG, "WPS:  * MAC Address (" MACSTR ")",
1335                    MAC2STR(cred->mac_addr));
1336         wpabuf_put_be16(msg, ATTR_MAC_ADDR);
1337         wpabuf_put_be16(msg, ETH_ALEN);
1338         wpabuf_put_data(msg, cred->mac_addr, ETH_ALEN);
1339         return 0;
1340 }
1341
1342
1343 static int wps_build_credential(struct wpabuf *msg,
1344                                 const struct wps_credential *cred)
1345 {
1346         if (wps_build_cred_network_idx(msg, cred) ||
1347             wps_build_cred_ssid(msg, cred) ||
1348             wps_build_cred_auth_type(msg, cred) ||
1349             wps_build_cred_encr_type(msg, cred) ||
1350             wps_build_cred_network_key(msg, cred) ||
1351             wps_build_cred_mac_addr(msg, cred))
1352                 return -1;
1353         return 0;
1354 }
1355
1356
1357 int wps_build_cred(struct wps_data *wps, struct wpabuf *msg)
1358 {
1359         struct wpabuf *cred;
1360
1361         if (wps->wps->registrar->skip_cred_build)
1362                 goto skip_cred_build;
1363
1364         wpa_printf(MSG_DEBUG, "WPS:  * Credential");
1365         if (wps->use_cred) {
1366                 os_memcpy(&wps->cred, wps->use_cred, sizeof(wps->cred));
1367                 goto use_provided;
1368         }
1369         os_memset(&wps->cred, 0, sizeof(wps->cred));
1370
1371         os_memcpy(wps->cred.ssid, wps->wps->ssid, wps->wps->ssid_len);
1372         wps->cred.ssid_len = wps->wps->ssid_len;
1373
1374         /* Select the best authentication and encryption type */
1375         if (wps->auth_type & WPS_AUTH_WPA2PSK)
1376                 wps->auth_type = WPS_AUTH_WPA2PSK;
1377         else if (wps->auth_type & WPS_AUTH_WPAPSK)
1378                 wps->auth_type = WPS_AUTH_WPAPSK;
1379         else if (wps->auth_type & WPS_AUTH_OPEN)
1380                 wps->auth_type = WPS_AUTH_OPEN;
1381         else if (wps->auth_type & WPS_AUTH_SHARED)
1382                 wps->auth_type = WPS_AUTH_SHARED;
1383         else {
1384                 wpa_printf(MSG_DEBUG, "WPS: Unsupported auth_type 0x%x",
1385                            wps->auth_type);
1386                 return -1;
1387         }
1388         wps->cred.auth_type = wps->auth_type;
1389
1390         if (wps->auth_type == WPS_AUTH_WPA2PSK ||
1391             wps->auth_type == WPS_AUTH_WPAPSK) {
1392                 if (wps->encr_type & WPS_ENCR_AES)
1393                         wps->encr_type = WPS_ENCR_AES;
1394                 else if (wps->encr_type & WPS_ENCR_TKIP)
1395                         wps->encr_type = WPS_ENCR_TKIP;
1396                 else {
1397                         wpa_printf(MSG_DEBUG, "WPS: No suitable encryption "
1398                                    "type for WPA/WPA2");
1399                         return -1;
1400                 }
1401         } else {
1402                 if (wps->encr_type & WPS_ENCR_WEP)
1403                         wps->encr_type = WPS_ENCR_WEP;
1404                 else if (wps->encr_type & WPS_ENCR_NONE)
1405                         wps->encr_type = WPS_ENCR_NONE;
1406                 else {
1407                         wpa_printf(MSG_DEBUG, "WPS: No suitable encryption "
1408                                    "type for non-WPA/WPA2 mode");
1409                         return -1;
1410                 }
1411         }
1412         wps->cred.encr_type = wps->encr_type;
1413         /*
1414          * Set MAC address in the Credential to be the Enrollee's MAC address
1415          */
1416         os_memcpy(wps->cred.mac_addr, wps->mac_addr_e, ETH_ALEN);
1417
1418         if (wps->wps->wps_state == WPS_STATE_NOT_CONFIGURED && wps->wps->ap &&
1419             !wps->wps->registrar->disable_auto_conf) {
1420                 u8 r[16];
1421                 /* Generate a random passphrase */
1422                 if (os_get_random(r, sizeof(r)) < 0)
1423                         return -1;
1424                 os_free(wps->new_psk);
1425                 wps->new_psk = base64_encode(r, sizeof(r), &wps->new_psk_len);
1426                 if (wps->new_psk == NULL)
1427                         return -1;
1428                 wps->new_psk_len--; /* remove newline */
1429                 while (wps->new_psk_len &&
1430                        wps->new_psk[wps->new_psk_len - 1] == '=')
1431                         wps->new_psk_len--;
1432                 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: Generated passphrase",
1433                                       wps->new_psk, wps->new_psk_len);
1434                 os_memcpy(wps->cred.key, wps->new_psk, wps->new_psk_len);
1435                 wps->cred.key_len = wps->new_psk_len;
1436         } else if (wps->use_psk_key && wps->wps->psk_set) {
1437                 char hex[65];
1438                 wpa_printf(MSG_DEBUG, "WPS: Use PSK format for Network Key");
1439                 wpa_snprintf_hex(hex, sizeof(hex), wps->wps->psk, 32);
1440                 os_memcpy(wps->cred.key, hex, 32 * 2);
1441                 wps->cred.key_len = 32 * 2;
1442         } else if (wps->wps->network_key) {
1443                 os_memcpy(wps->cred.key, wps->wps->network_key,
1444                           wps->wps->network_key_len);
1445                 wps->cred.key_len = wps->wps->network_key_len;
1446         } else if (wps->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
1447                 char hex[65];
1448                 /* Generate a random per-device PSK */
1449                 os_free(wps->new_psk);
1450                 wps->new_psk_len = 32;
1451                 wps->new_psk = os_malloc(wps->new_psk_len);
1452                 if (wps->new_psk == NULL)
1453                         return -1;
1454                 if (os_get_random(wps->new_psk, wps->new_psk_len) < 0) {
1455                         os_free(wps->new_psk);
1456                         wps->new_psk = NULL;
1457                         return -1;
1458                 }
1459                 wpa_hexdump_key(MSG_DEBUG, "WPS: Generated per-device PSK",
1460                                 wps->new_psk, wps->new_psk_len);
1461                 wpa_snprintf_hex(hex, sizeof(hex), wps->new_psk,
1462                                  wps->new_psk_len);
1463                 os_memcpy(wps->cred.key, hex, wps->new_psk_len * 2);
1464                 wps->cred.key_len = wps->new_psk_len * 2;
1465         }
1466
1467 use_provided:
1468 #ifdef CONFIG_WPS_TESTING
1469         if (wps_testing_dummy_cred)
1470                 cred = wpabuf_alloc(200);
1471         else
1472                 cred = NULL;
1473         if (cred) {
1474                 struct wps_credential dummy;
1475                 wpa_printf(MSG_DEBUG, "WPS: Add dummy credential");
1476                 os_memset(&dummy, 0, sizeof(dummy));
1477                 os_memcpy(dummy.ssid, "dummy", 5);
1478                 dummy.ssid_len = 5;
1479                 dummy.auth_type = WPS_AUTH_WPA2PSK;
1480                 dummy.encr_type = WPS_ENCR_AES;
1481                 os_memcpy(dummy.key, "dummy psk", 9);
1482                 dummy.key_len = 9;
1483                 os_memcpy(dummy.mac_addr, wps->mac_addr_e, ETH_ALEN);
1484                 wps_build_credential(cred, &dummy);
1485                 wpa_hexdump_buf(MSG_DEBUG, "WPS: Dummy Credential", cred);
1486
1487                 wpabuf_put_be16(msg, ATTR_CRED);
1488                 wpabuf_put_be16(msg, wpabuf_len(cred));
1489                 wpabuf_put_buf(msg, cred);
1490
1491                 wpabuf_free(cred);
1492         }
1493 #endif /* CONFIG_WPS_TESTING */
1494
1495         cred = wpabuf_alloc(200);
1496         if (cred == NULL)
1497                 return -1;
1498
1499         if (wps_build_credential(cred, &wps->cred)) {
1500                 wpabuf_free(cred);
1501                 return -1;
1502         }
1503
1504         wpabuf_put_be16(msg, ATTR_CRED);
1505         wpabuf_put_be16(msg, wpabuf_len(cred));
1506         wpabuf_put_buf(msg, cred);
1507         wpabuf_free(cred);
1508
1509 skip_cred_build:
1510         if (wps->wps->registrar->extra_cred) {
1511                 wpa_printf(MSG_DEBUG, "WPS:  * Credential (pre-configured)");
1512                 wpabuf_put_buf(msg, wps->wps->registrar->extra_cred);
1513         }
1514
1515         return 0;
1516 }
1517
1518
1519 static int wps_build_ap_settings(struct wps_data *wps, struct wpabuf *msg)
1520 {
1521         wpa_printf(MSG_DEBUG, "WPS:  * AP Settings");
1522
1523         if (wps_build_credential(msg, &wps->cred))
1524                 return -1;
1525
1526         return 0;
1527 }
1528
1529
1530 static struct wpabuf * wps_build_m2(struct wps_data *wps)
1531 {
1532         struct wpabuf *msg;
1533
1534         if (os_get_random(wps->nonce_r, WPS_NONCE_LEN) < 0)
1535                 return NULL;
1536         wpa_hexdump(MSG_DEBUG, "WPS: Registrar Nonce",
1537                     wps->nonce_r, WPS_NONCE_LEN);
1538         wpa_hexdump(MSG_DEBUG, "WPS: UUID-R", wps->uuid_r, WPS_UUID_LEN);
1539
1540         wpa_printf(MSG_DEBUG, "WPS: Building Message M2");
1541         msg = wpabuf_alloc(1000);
1542         if (msg == NULL)
1543                 return NULL;
1544
1545         if (wps_build_version(msg) ||
1546             wps_build_msg_type(msg, WPS_M2) ||
1547             wps_build_enrollee_nonce(wps, msg) ||
1548             wps_build_registrar_nonce(wps, msg) ||
1549             wps_build_uuid_r(wps, msg) ||
1550             wps_build_public_key(wps, msg) ||
1551             wps_derive_keys(wps) ||
1552             wps_build_auth_type_flags(wps, msg) ||
1553             wps_build_encr_type_flags(wps, msg) ||
1554             wps_build_conn_type_flags(wps, msg) ||
1555             wps_build_config_methods_r(wps->wps->registrar, msg) ||
1556             wps_build_device_attrs(&wps->wps->dev, msg) ||
1557             wps_build_rf_bands(&wps->wps->dev, msg) ||
1558             wps_build_assoc_state(wps, msg) ||
1559             wps_build_config_error(msg, WPS_CFG_NO_ERROR) ||
1560             wps_build_dev_password_id(msg, wps->dev_pw_id) ||
1561             wps_build_os_version(&wps->wps->dev, msg) ||
1562             wps_build_wfa_ext(msg, 0, NULL, 0) ||
1563             wps_build_authenticator(wps, msg)) {
1564                 wpabuf_free(msg);
1565                 return NULL;
1566         }
1567
1568         wps->int_reg = 1;
1569         wps->state = RECV_M3;
1570         return msg;
1571 }
1572
1573
1574 static struct wpabuf * wps_build_m2d(struct wps_data *wps)
1575 {
1576         struct wpabuf *msg;
1577         u16 err = wps->config_error;
1578
1579         wpa_printf(MSG_DEBUG, "WPS: Building Message M2D");
1580         msg = wpabuf_alloc(1000);
1581         if (msg == NULL)
1582                 return NULL;
1583
1584         if (wps->wps->ap && wps->wps->ap_setup_locked &&
1585             err == WPS_CFG_NO_ERROR)
1586                 err = WPS_CFG_SETUP_LOCKED;
1587
1588         if (wps_build_version(msg) ||
1589             wps_build_msg_type(msg, WPS_M2D) ||
1590             wps_build_enrollee_nonce(wps, msg) ||
1591             wps_build_registrar_nonce(wps, msg) ||
1592             wps_build_uuid_r(wps, msg) ||
1593             wps_build_auth_type_flags(wps, msg) ||
1594             wps_build_encr_type_flags(wps, msg) ||
1595             wps_build_conn_type_flags(wps, msg) ||
1596             wps_build_config_methods_r(wps->wps->registrar, msg) ||
1597             wps_build_device_attrs(&wps->wps->dev, msg) ||
1598             wps_build_rf_bands(&wps->wps->dev, msg) ||
1599             wps_build_assoc_state(wps, msg) ||
1600             wps_build_config_error(msg, err) ||
1601             wps_build_os_version(&wps->wps->dev, msg) ||
1602             wps_build_wfa_ext(msg, 0, NULL, 0)) {
1603                 wpabuf_free(msg);
1604                 return NULL;
1605         }
1606
1607         wps->state = RECV_M2D_ACK;
1608         return msg;
1609 }
1610
1611
1612 static struct wpabuf * wps_build_m4(struct wps_data *wps)
1613 {
1614         struct wpabuf *msg, *plain;
1615
1616         wpa_printf(MSG_DEBUG, "WPS: Building Message M4");
1617
1618         wps_derive_psk(wps, wps->dev_password, wps->dev_password_len);
1619
1620         plain = wpabuf_alloc(200);
1621         if (plain == NULL)
1622                 return NULL;
1623
1624         msg = wpabuf_alloc(1000);
1625         if (msg == NULL) {
1626                 wpabuf_free(plain);
1627                 return NULL;
1628         }
1629
1630         if (wps_build_version(msg) ||
1631             wps_build_msg_type(msg, WPS_M4) ||
1632             wps_build_enrollee_nonce(wps, msg) ||
1633             wps_build_r_hash(wps, msg) ||
1634             wps_build_r_snonce1(wps, plain) ||
1635             wps_build_key_wrap_auth(wps, plain) ||
1636             wps_build_encr_settings(wps, msg, plain) ||
1637             wps_build_wfa_ext(msg, 0, NULL, 0) ||
1638             wps_build_authenticator(wps, msg)) {
1639                 wpabuf_free(plain);
1640                 wpabuf_free(msg);
1641                 return NULL;
1642         }
1643         wpabuf_free(plain);
1644
1645         wps->state = RECV_M5;
1646         return msg;
1647 }
1648
1649
1650 static struct wpabuf * wps_build_m6(struct wps_data *wps)
1651 {
1652         struct wpabuf *msg, *plain;
1653
1654         wpa_printf(MSG_DEBUG, "WPS: Building Message M6");
1655
1656         plain = wpabuf_alloc(200);
1657         if (plain == NULL)
1658                 return NULL;
1659
1660         msg = wpabuf_alloc(1000);
1661         if (msg == NULL) {
1662                 wpabuf_free(plain);
1663                 return NULL;
1664         }
1665
1666         if (wps_build_version(msg) ||
1667             wps_build_msg_type(msg, WPS_M6) ||
1668             wps_build_enrollee_nonce(wps, msg) ||
1669             wps_build_r_snonce2(wps, plain) ||
1670             wps_build_key_wrap_auth(wps, plain) ||
1671             wps_build_encr_settings(wps, msg, plain) ||
1672             wps_build_wfa_ext(msg, 0, NULL, 0) ||
1673             wps_build_authenticator(wps, msg)) {
1674                 wpabuf_free(plain);
1675                 wpabuf_free(msg);
1676                 return NULL;
1677         }
1678         wpabuf_free(plain);
1679
1680         wps->wps_pin_revealed = 1;
1681         wps->state = RECV_M7;
1682         return msg;
1683 }
1684
1685
1686 static struct wpabuf * wps_build_m8(struct wps_data *wps)
1687 {
1688         struct wpabuf *msg, *plain;
1689
1690         wpa_printf(MSG_DEBUG, "WPS: Building Message M8");
1691
1692         plain = wpabuf_alloc(500);
1693         if (plain == NULL)
1694                 return NULL;
1695
1696         msg = wpabuf_alloc(1000);
1697         if (msg == NULL) {
1698                 wpabuf_free(plain);
1699                 return NULL;
1700         }
1701
1702         if (wps_build_version(msg) ||
1703             wps_build_msg_type(msg, WPS_M8) ||
1704             wps_build_enrollee_nonce(wps, msg) ||
1705             ((wps->wps->ap || wps->er) && wps_build_cred(wps, plain)) ||
1706             (!wps->wps->ap && !wps->er && wps_build_ap_settings(wps, plain)) ||
1707             wps_build_key_wrap_auth(wps, plain) ||
1708             wps_build_encr_settings(wps, msg, plain) ||
1709             wps_build_wfa_ext(msg, 0, NULL, 0) ||
1710             wps_build_authenticator(wps, msg)) {
1711                 wpabuf_free(plain);
1712                 wpabuf_free(msg);
1713                 return NULL;
1714         }
1715         wpabuf_free(plain);
1716
1717         wps->state = RECV_DONE;
1718         return msg;
1719 }
1720
1721
1722 static struct wpabuf * wps_build_wsc_ack(struct wps_data *wps)
1723 {
1724         struct wpabuf *msg;
1725
1726         wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_ACK");
1727
1728         msg = wpabuf_alloc(1000);
1729         if (msg == NULL)
1730                 return NULL;
1731
1732         if (wps_build_version(msg) ||
1733             wps_build_msg_type(msg, WPS_WSC_ACK) ||
1734             wps_build_enrollee_nonce(wps, msg) ||
1735             wps_build_registrar_nonce(wps, msg) ||
1736             wps_build_wfa_ext(msg, 0, NULL, 0)) {
1737                 wpabuf_free(msg);
1738                 return NULL;
1739         }
1740
1741         return msg;
1742 }
1743
1744
1745 static struct wpabuf * wps_build_wsc_nack(struct wps_data *wps)
1746 {
1747         struct wpabuf *msg;
1748
1749         wpa_printf(MSG_DEBUG, "WPS: Building Message WSC_NACK");
1750
1751         msg = wpabuf_alloc(1000);
1752         if (msg == NULL)
1753                 return NULL;
1754
1755         if (wps_build_version(msg) ||
1756             wps_build_msg_type(msg, WPS_WSC_NACK) ||
1757             wps_build_enrollee_nonce(wps, msg) ||
1758             wps_build_registrar_nonce(wps, msg) ||
1759             wps_build_config_error(msg, wps->config_error) ||
1760             wps_build_wfa_ext(msg, 0, NULL, 0)) {
1761                 wpabuf_free(msg);
1762                 return NULL;
1763         }
1764
1765         return msg;
1766 }
1767
1768
1769 struct wpabuf * wps_registrar_get_msg(struct wps_data *wps,
1770                                       enum wsc_op_code *op_code)
1771 {
1772         struct wpabuf *msg;
1773
1774 #ifdef CONFIG_WPS_UPNP
1775         if (!wps->int_reg && wps->wps->wps_upnp) {
1776                 struct upnp_pending_message *p, *prev = NULL;
1777                 if (wps->ext_reg > 1)
1778                         wps_registrar_free_pending_m2(wps->wps);
1779                 p = wps->wps->upnp_msgs;
1780                 /* TODO: check pending message MAC address */
1781                 while (p && p->next) {
1782                         prev = p;
1783                         p = p->next;
1784                 }
1785                 if (p) {
1786                         wpa_printf(MSG_DEBUG, "WPS: Use pending message from "
1787                                    "UPnP");
1788                         if (prev)
1789                                 prev->next = NULL;
1790                         else
1791                                 wps->wps->upnp_msgs = NULL;
1792                         msg = p->msg;
1793                         switch (p->type) {
1794                         case WPS_WSC_ACK:
1795                                 *op_code = WSC_ACK;
1796                                 break;
1797                         case WPS_WSC_NACK:
1798                                 *op_code = WSC_NACK;
1799                                 break;
1800                         default:
1801                                 *op_code = WSC_MSG;
1802                                 break;
1803                         }
1804                         os_free(p);
1805                         if (wps->ext_reg == 0)
1806                                 wps->ext_reg = 1;
1807                         return msg;
1808                 }
1809         }
1810         if (wps->ext_reg) {
1811                 wpa_printf(MSG_DEBUG, "WPS: Using external Registrar, but no "
1812                            "pending message available");
1813                 return NULL;
1814         }
1815 #endif /* CONFIG_WPS_UPNP */
1816
1817         switch (wps->state) {
1818         case SEND_M2:
1819                 if (wps_get_dev_password(wps) < 0)
1820                         msg = wps_build_m2d(wps);
1821                 else
1822                         msg = wps_build_m2(wps);
1823                 *op_code = WSC_MSG;
1824                 break;
1825         case SEND_M2D:
1826                 msg = wps_build_m2d(wps);
1827                 *op_code = WSC_MSG;
1828                 break;
1829         case SEND_M4:
1830                 msg = wps_build_m4(wps);
1831                 *op_code = WSC_MSG;
1832                 break;
1833         case SEND_M6:
1834                 msg = wps_build_m6(wps);
1835                 *op_code = WSC_MSG;
1836                 break;
1837         case SEND_M8:
1838                 msg = wps_build_m8(wps);
1839                 *op_code = WSC_MSG;
1840                 break;
1841         case RECV_DONE:
1842                 msg = wps_build_wsc_ack(wps);
1843                 *op_code = WSC_ACK;
1844                 break;
1845         case SEND_WSC_NACK:
1846                 msg = wps_build_wsc_nack(wps);
1847                 *op_code = WSC_NACK;
1848                 break;
1849         default:
1850                 wpa_printf(MSG_DEBUG, "WPS: Unsupported state %d for building "
1851                            "a message", wps->state);
1852                 msg = NULL;
1853                 break;
1854         }
1855
1856         if (*op_code == WSC_MSG && msg) {
1857                 /* Save a copy of the last message for Authenticator derivation
1858                  */
1859                 wpabuf_free(wps->last_msg);
1860                 wps->last_msg = wpabuf_dup(msg);
1861         }
1862
1863         return msg;
1864 }
1865
1866
1867 static int wps_process_enrollee_nonce(struct wps_data *wps, const u8 *e_nonce)
1868 {
1869         if (e_nonce == NULL) {
1870                 wpa_printf(MSG_DEBUG, "WPS: No Enrollee Nonce received");
1871                 return -1;
1872         }
1873
1874         os_memcpy(wps->nonce_e, e_nonce, WPS_NONCE_LEN);
1875         wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Nonce",
1876                     wps->nonce_e, WPS_NONCE_LEN);
1877
1878         return 0;
1879 }
1880
1881
1882 static int wps_process_registrar_nonce(struct wps_data *wps, const u8 *r_nonce)
1883 {
1884         if (r_nonce == NULL) {
1885                 wpa_printf(MSG_DEBUG, "WPS: No Registrar Nonce received");
1886                 return -1;
1887         }
1888
1889         if (os_memcmp(wps->nonce_r, r_nonce, WPS_NONCE_LEN) != 0) {
1890                 wpa_printf(MSG_DEBUG, "WPS: Invalid Registrar Nonce received");
1891                 return -1;
1892         }
1893
1894         return 0;
1895 }
1896
1897
1898 static int wps_process_uuid_e(struct wps_data *wps, const u8 *uuid_e)
1899 {
1900         if (uuid_e == NULL) {
1901                 wpa_printf(MSG_DEBUG, "WPS: No UUID-E received");
1902                 return -1;
1903         }
1904
1905         os_memcpy(wps->uuid_e, uuid_e, WPS_UUID_LEN);
1906         wpa_hexdump(MSG_DEBUG, "WPS: UUID-E", wps->uuid_e, WPS_UUID_LEN);
1907
1908         return 0;
1909 }
1910
1911
1912 static int wps_process_dev_password_id(struct wps_data *wps, const u8 *pw_id)
1913 {
1914         if (pw_id == NULL) {
1915                 wpa_printf(MSG_DEBUG, "WPS: No Device Password ID received");
1916                 return -1;
1917         }
1918
1919         wps->dev_pw_id = WPA_GET_BE16(pw_id);
1920         wpa_printf(MSG_DEBUG, "WPS: Device Password ID %d", wps->dev_pw_id);
1921
1922         return 0;
1923 }
1924
1925
1926 static int wps_process_e_hash1(struct wps_data *wps, const u8 *e_hash1)
1927 {
1928         if (e_hash1 == NULL) {
1929                 wpa_printf(MSG_DEBUG, "WPS: No E-Hash1 received");
1930                 return -1;
1931         }
1932
1933         os_memcpy(wps->peer_hash1, e_hash1, WPS_HASH_LEN);
1934         wpa_hexdump(MSG_DEBUG, "WPS: E-Hash1", wps->peer_hash1, WPS_HASH_LEN);
1935
1936         return 0;
1937 }
1938
1939
1940 static int wps_process_e_hash2(struct wps_data *wps, const u8 *e_hash2)
1941 {
1942         if (e_hash2 == NULL) {
1943                 wpa_printf(MSG_DEBUG, "WPS: No E-Hash2 received");
1944                 return -1;
1945         }
1946
1947         os_memcpy(wps->peer_hash2, e_hash2, WPS_HASH_LEN);
1948         wpa_hexdump(MSG_DEBUG, "WPS: E-Hash2", wps->peer_hash2, WPS_HASH_LEN);
1949
1950         return 0;
1951 }
1952
1953
1954 static int wps_process_e_snonce1(struct wps_data *wps, const u8 *e_snonce1)
1955 {
1956         u8 hash[SHA256_MAC_LEN];
1957         const u8 *addr[4];
1958         size_t len[4];
1959
1960         if (e_snonce1 == NULL) {
1961                 wpa_printf(MSG_DEBUG, "WPS: No E-SNonce1 received");
1962                 return -1;
1963         }
1964
1965         wpa_hexdump_key(MSG_DEBUG, "WPS: E-SNonce1", e_snonce1,
1966                         WPS_SECRET_NONCE_LEN);
1967
1968         /* E-Hash1 = HMAC_AuthKey(E-S1 || PSK1 || PK_E || PK_R) */
1969         addr[0] = e_snonce1;
1970         len[0] = WPS_SECRET_NONCE_LEN;
1971         addr[1] = wps->psk1;
1972         len[1] = WPS_PSK_LEN;
1973         addr[2] = wpabuf_head(wps->dh_pubkey_e);
1974         len[2] = wpabuf_len(wps->dh_pubkey_e);
1975         addr[3] = wpabuf_head(wps->dh_pubkey_r);
1976         len[3] = wpabuf_len(wps->dh_pubkey_r);
1977         hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
1978
1979         if (os_memcmp(wps->peer_hash1, hash, WPS_HASH_LEN) != 0) {
1980                 wpa_printf(MSG_DEBUG, "WPS: E-Hash1 derived from E-S1 does "
1981                            "not match with the pre-committed value");
1982                 wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
1983                 wps_pwd_auth_fail_event(wps->wps, 0, 1);
1984                 return -1;
1985         }
1986
1987         wpa_printf(MSG_DEBUG, "WPS: Enrollee proved knowledge of the first "
1988                    "half of the device password");
1989
1990         return 0;
1991 }
1992
1993
1994 static int wps_process_e_snonce2(struct wps_data *wps, const u8 *e_snonce2)
1995 {
1996         u8 hash[SHA256_MAC_LEN];
1997         const u8 *addr[4];
1998         size_t len[4];
1999
2000         if (e_snonce2 == NULL) {
2001                 wpa_printf(MSG_DEBUG, "WPS: No E-SNonce2 received");
2002                 return -1;
2003         }
2004
2005         wpa_hexdump_key(MSG_DEBUG, "WPS: E-SNonce2", e_snonce2,
2006                         WPS_SECRET_NONCE_LEN);
2007
2008         /* E-Hash2 = HMAC_AuthKey(E-S2 || PSK2 || PK_E || PK_R) */
2009         addr[0] = e_snonce2;
2010         len[0] = WPS_SECRET_NONCE_LEN;
2011         addr[1] = wps->psk2;
2012         len[1] = WPS_PSK_LEN;
2013         addr[2] = wpabuf_head(wps->dh_pubkey_e);
2014         len[2] = wpabuf_len(wps->dh_pubkey_e);
2015         addr[3] = wpabuf_head(wps->dh_pubkey_r);
2016         len[3] = wpabuf_len(wps->dh_pubkey_r);
2017         hmac_sha256_vector(wps->authkey, WPS_AUTHKEY_LEN, 4, addr, len, hash);
2018
2019         if (os_memcmp(wps->peer_hash2, hash, WPS_HASH_LEN) != 0) {
2020                 wpa_printf(MSG_DEBUG, "WPS: E-Hash2 derived from E-S2 does "
2021                            "not match with the pre-committed value");
2022                 wps_registrar_invalidate_pin(wps->wps->registrar, wps->uuid_e);
2023                 wps->config_error = WPS_CFG_DEV_PASSWORD_AUTH_FAILURE;
2024                 wps_pwd_auth_fail_event(wps->wps, 0, 2);
2025                 return -1;
2026         }
2027
2028         wpa_printf(MSG_DEBUG, "WPS: Enrollee proved knowledge of the second "
2029                    "half of the device password");
2030         wps->wps_pin_revealed = 0;
2031         wps_registrar_unlock_pin(wps->wps->registrar, wps->uuid_e);
2032
2033         return 0;
2034 }
2035
2036
2037 static int wps_process_mac_addr(struct wps_data *wps, const u8 *mac_addr)
2038 {
2039         if (mac_addr == NULL) {
2040                 wpa_printf(MSG_DEBUG, "WPS: No MAC Address received");
2041                 return -1;
2042         }
2043
2044         wpa_printf(MSG_DEBUG, "WPS: Enrollee MAC Address " MACSTR,
2045                    MAC2STR(mac_addr));
2046         os_memcpy(wps->mac_addr_e, mac_addr, ETH_ALEN);
2047         os_memcpy(wps->peer_dev.mac_addr, mac_addr, ETH_ALEN);
2048
2049         return 0;
2050 }
2051
2052
2053 static int wps_process_pubkey(struct wps_data *wps, const u8 *pk,
2054                               size_t pk_len)
2055 {
2056         if (pk == NULL || pk_len == 0) {
2057                 wpa_printf(MSG_DEBUG, "WPS: No Public Key received");
2058                 return -1;
2059         }
2060
2061 #ifdef CONFIG_WPS_OOB
2062         if (wps->wps->oob_conf.pubkey_hash != NULL) {
2063                 const u8 *addr[1];
2064                 u8 hash[WPS_HASH_LEN];
2065
2066                 addr[0] = pk;
2067                 sha256_vector(1, addr, &pk_len, hash);
2068                 if (os_memcmp(hash,
2069                               wpabuf_head(wps->wps->oob_conf.pubkey_hash),
2070                               WPS_OOB_PUBKEY_HASH_LEN) != 0) {
2071                         wpa_printf(MSG_ERROR, "WPS: Public Key hash error");
2072                         return -1;
2073                 }
2074         }
2075 #endif /* CONFIG_WPS_OOB */
2076
2077         wpabuf_free(wps->dh_pubkey_e);
2078         wps->dh_pubkey_e = wpabuf_alloc_copy(pk, pk_len);
2079         if (wps->dh_pubkey_e == NULL)
2080                 return -1;
2081
2082         return 0;
2083 }
2084
2085
2086 static int wps_process_auth_type_flags(struct wps_data *wps, const u8 *auth)
2087 {
2088         u16 auth_types;
2089
2090         if (auth == NULL) {
2091                 wpa_printf(MSG_DEBUG, "WPS: No Authentication Type flags "
2092                            "received");
2093                 return -1;
2094         }
2095
2096         auth_types = WPA_GET_BE16(auth);
2097
2098         wpa_printf(MSG_DEBUG, "WPS: Enrollee Authentication Type flags 0x%x",
2099                    auth_types);
2100         wps->auth_type = wps->wps->auth_types & auth_types;
2101         if (wps->auth_type == 0) {
2102                 wpa_printf(MSG_DEBUG, "WPS: No match in supported "
2103                            "authentication types (own 0x%x Enrollee 0x%x)",
2104                            wps->wps->auth_types, auth_types);
2105 #ifdef WPS_WORKAROUNDS
2106                 /*
2107                  * Some deployed implementations seem to advertise incorrect
2108                  * information in this attribute. For example, Linksys WRT350N
2109                  * seems to have a byteorder bug that breaks this negotiation.
2110                  * In order to interoperate with existing implementations,
2111                  * assume that the Enrollee supports everything we do.
2112                  */
2113                 wpa_printf(MSG_DEBUG, "WPS: Workaround - assume Enrollee "
2114                            "does not advertise supported authentication types "
2115                            "correctly");
2116                 wps->auth_type = wps->wps->auth_types;
2117 #else /* WPS_WORKAROUNDS */
2118                 return -1;
2119 #endif /* WPS_WORKAROUNDS */
2120         }
2121
2122         return 0;
2123 }
2124
2125
2126 static int wps_process_encr_type_flags(struct wps_data *wps, const u8 *encr)
2127 {
2128         u16 encr_types;
2129
2130         if (encr == NULL) {
2131                 wpa_printf(MSG_DEBUG, "WPS: No Encryption Type flags "
2132                            "received");
2133                 return -1;
2134         }
2135
2136         encr_types = WPA_GET_BE16(encr);
2137
2138         wpa_printf(MSG_DEBUG, "WPS: Enrollee Encryption Type flags 0x%x",
2139                    encr_types);
2140         wps->encr_type = wps->wps->encr_types & encr_types;
2141         if (wps->encr_type == 0) {
2142                 wpa_printf(MSG_DEBUG, "WPS: No match in supported "
2143                            "encryption types (own 0x%x Enrollee 0x%x)",
2144                            wps->wps->encr_types, encr_types);
2145 #ifdef WPS_WORKAROUNDS
2146                 /*
2147                  * Some deployed implementations seem to advertise incorrect
2148                  * information in this attribute. For example, Linksys WRT350N
2149                  * seems to have a byteorder bug that breaks this negotiation.
2150                  * In order to interoperate with existing implementations,
2151                  * assume that the Enrollee supports everything we do.
2152                  */
2153                 wpa_printf(MSG_DEBUG, "WPS: Workaround - assume Enrollee "
2154                            "does not advertise supported encryption types "
2155                            "correctly");
2156                 wps->encr_type = wps->wps->encr_types;
2157 #else /* WPS_WORKAROUNDS */
2158                 return -1;
2159 #endif /* WPS_WORKAROUNDS */
2160         }
2161
2162         return 0;
2163 }
2164
2165
2166 static int wps_process_conn_type_flags(struct wps_data *wps, const u8 *conn)
2167 {
2168         if (conn == NULL) {
2169                 wpa_printf(MSG_DEBUG, "WPS: No Connection Type flags "
2170                            "received");
2171                 return -1;
2172         }
2173
2174         wpa_printf(MSG_DEBUG, "WPS: Enrollee Connection Type flags 0x%x",
2175                    *conn);
2176
2177         return 0;
2178 }
2179
2180
2181 static int wps_process_config_methods(struct wps_data *wps, const u8 *methods)
2182 {
2183         u16 m;
2184
2185         if (methods == NULL) {
2186                 wpa_printf(MSG_DEBUG, "WPS: No Config Methods received");
2187                 return -1;
2188         }
2189
2190         m = WPA_GET_BE16(methods);
2191
2192         wpa_printf(MSG_DEBUG, "WPS: Enrollee Config Methods 0x%x"
2193                    "%s%s%s%s%s%s%s%s%s", m,
2194                    m & WPS_CONFIG_USBA ? " [USBA]" : "",
2195                    m & WPS_CONFIG_ETHERNET ? " [Ethernet]" : "",
2196                    m & WPS_CONFIG_LABEL ? " [Label]" : "",
2197                    m & WPS_CONFIG_DISPLAY ? " [Display]" : "",
2198                    m & WPS_CONFIG_EXT_NFC_TOKEN ? " [Ext NFC Token]" : "",
2199                    m & WPS_CONFIG_INT_NFC_TOKEN ? " [Int NFC Token]" : "",
2200                    m & WPS_CONFIG_NFC_INTERFACE ? " [NFC]" : "",
2201                    m & WPS_CONFIG_PUSHBUTTON ? " [PBC]" : "",
2202                    m & WPS_CONFIG_KEYPAD ? " [Keypad]" : "");
2203
2204         if (!(m & WPS_CONFIG_DISPLAY) && !wps->use_psk_key) {
2205                 /*
2206                  * The Enrollee does not have a display so it is unlikely to be
2207                  * able to show the passphrase to a user and as such, could
2208                  * benefit from receiving PSK to reduce key derivation time.
2209                  */
2210                 wpa_printf(MSG_DEBUG, "WPS: Prefer PSK format key due to "
2211                            "Enrollee not supporting display");
2212                 wps->use_psk_key = 1;
2213         }
2214
2215         return 0;
2216 }
2217
2218
2219 static int wps_process_wps_state(struct wps_data *wps, const u8 *state)
2220 {
2221         if (state == NULL) {
2222                 wpa_printf(MSG_DEBUG, "WPS: No Wi-Fi Protected Setup State "
2223                            "received");
2224                 return -1;
2225         }
2226
2227         wpa_printf(MSG_DEBUG, "WPS: Enrollee Wi-Fi Protected Setup State %d",
2228                    *state);
2229
2230         return 0;
2231 }
2232
2233
2234 static int wps_process_assoc_state(struct wps_data *wps, const u8 *assoc)
2235 {
2236         u16 a;
2237
2238         if (assoc == NULL) {
2239                 wpa_printf(MSG_DEBUG, "WPS: No Association State received");
2240                 return -1;
2241         }
2242
2243         a = WPA_GET_BE16(assoc);
2244         wpa_printf(MSG_DEBUG, "WPS: Enrollee Association State %d", a);
2245
2246         return 0;
2247 }
2248
2249
2250 static int wps_process_config_error(struct wps_data *wps, const u8 *err)
2251 {
2252         u16 e;
2253
2254         if (err == NULL) {
2255                 wpa_printf(MSG_DEBUG, "WPS: No Configuration Error received");
2256                 return -1;
2257         }
2258
2259         e = WPA_GET_BE16(err);
2260         wpa_printf(MSG_DEBUG, "WPS: Enrollee Configuration Error %d", e);
2261
2262         return 0;
2263 }
2264
2265
2266 static enum wps_process_res wps_process_m1(struct wps_data *wps,
2267                                            struct wps_parse_attr *attr)
2268 {
2269         wpa_printf(MSG_DEBUG, "WPS: Received M1");
2270
2271         if (wps->state != RECV_M1) {
2272                 wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
2273                            "receiving M1", wps->state);
2274                 return WPS_FAILURE;
2275         }
2276
2277         if (wps_process_uuid_e(wps, attr->uuid_e) ||
2278             wps_process_mac_addr(wps, attr->mac_addr) ||
2279             wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
2280             wps_process_pubkey(wps, attr->public_key, attr->public_key_len) ||
2281             wps_process_auth_type_flags(wps, attr->auth_type_flags) ||
2282             wps_process_encr_type_flags(wps, attr->encr_type_flags) ||
2283             wps_process_conn_type_flags(wps, attr->conn_type_flags) ||
2284             wps_process_config_methods(wps, attr->config_methods) ||
2285             wps_process_wps_state(wps, attr->wps_state) ||
2286             wps_process_device_attrs(&wps->peer_dev, attr) ||
2287             wps_process_rf_bands(&wps->peer_dev, attr->rf_bands) ||
2288             wps_process_assoc_state(wps, attr->assoc_state) ||
2289             wps_process_dev_password_id(wps, attr->dev_password_id) ||
2290             wps_process_config_error(wps, attr->config_error) ||
2291             wps_process_os_version(&wps->peer_dev, attr->os_version))
2292                 return WPS_FAILURE;
2293
2294         if (wps->dev_pw_id < 0x10 &&
2295             wps->dev_pw_id != DEV_PW_DEFAULT &&
2296             wps->dev_pw_id != DEV_PW_USER_SPECIFIED &&
2297             wps->dev_pw_id != DEV_PW_MACHINE_SPECIFIED &&
2298             wps->dev_pw_id != DEV_PW_REGISTRAR_SPECIFIED &&
2299             (wps->dev_pw_id != DEV_PW_PUSHBUTTON ||
2300              !wps->wps->registrar->pbc)) {
2301                 wpa_printf(MSG_DEBUG, "WPS: Unsupported Device Password ID %d",
2302                            wps->dev_pw_id);
2303                 wps->state = SEND_M2D;
2304                 return WPS_CONTINUE;
2305         }
2306
2307 #ifdef CONFIG_WPS_OOB
2308         if (wps->dev_pw_id >= 0x10 &&
2309             wps->dev_pw_id != wps->wps->oob_dev_pw_id) {
2310                 wpa_printf(MSG_DEBUG, "WPS: OOB Device Password ID "
2311                            "%d mismatch", wps->dev_pw_id);
2312                 wps->state = SEND_M2D;
2313                 return WPS_CONTINUE;
2314         }
2315 #endif /* CONFIG_WPS_OOB */
2316
2317         if (wps->dev_pw_id == DEV_PW_PUSHBUTTON) {
2318                 if (wps->wps->registrar->force_pbc_overlap ||
2319                     wps_registrar_pbc_overlap(wps->wps->registrar,
2320                                               wps->mac_addr_e, wps->uuid_e)) {
2321                         wpa_printf(MSG_DEBUG, "WPS: PBC overlap - deny PBC "
2322                                    "negotiation");
2323                         wps->state = SEND_M2D;
2324                         wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
2325                         wps_pbc_overlap_event(wps->wps);
2326                         wps->wps->registrar->force_pbc_overlap = 1;
2327                         return WPS_CONTINUE;
2328                 }
2329                 wps_registrar_add_pbc_session(wps->wps->registrar,
2330                                               wps->mac_addr_e, wps->uuid_e);
2331                 wps->pbc = 1;
2332         }
2333
2334 #ifdef WPS_WORKAROUNDS
2335         /*
2336          * It looks like Mac OS X 10.6.3 and 10.6.4 do not like Network Key in
2337          * passphrase format. To avoid interop issues, force PSK format to be
2338          * used.
2339          */
2340         if (!wps->use_psk_key &&
2341             wps->peer_dev.manufacturer &&
2342             os_strncmp(wps->peer_dev.manufacturer, "Apple ", 6) == 0 &&
2343             wps->peer_dev.model_name &&
2344             os_strcmp(wps->peer_dev.model_name, "AirPort") == 0) {
2345                 wpa_printf(MSG_DEBUG, "WPS: Workaround - Force Network Key in "
2346                            "PSK format");
2347                 wps->use_psk_key = 1;
2348         }
2349 #endif /* WPS_WORKAROUNDS */
2350
2351         wps->state = SEND_M2;
2352         return WPS_CONTINUE;
2353 }
2354
2355
2356 static enum wps_process_res wps_process_m3(struct wps_data *wps,
2357                                            const struct wpabuf *msg,
2358                                            struct wps_parse_attr *attr)
2359 {
2360         wpa_printf(MSG_DEBUG, "WPS: Received M3");
2361
2362         if (wps->state != RECV_M3) {
2363                 wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
2364                            "receiving M3", wps->state);
2365                 wps->state = SEND_WSC_NACK;
2366                 return WPS_CONTINUE;
2367         }
2368
2369         if (wps->pbc && wps->wps->registrar->force_pbc_overlap) {
2370                 wpa_printf(MSG_DEBUG, "WPS: Reject negotiation due to PBC "
2371                            "session overlap");
2372                 wps->state = SEND_WSC_NACK;
2373                 wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
2374                 return WPS_CONTINUE;
2375         }
2376
2377         if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
2378             wps_process_authenticator(wps, attr->authenticator, msg) ||
2379             wps_process_e_hash1(wps, attr->e_hash1) ||
2380             wps_process_e_hash2(wps, attr->e_hash2)) {
2381                 wps->state = SEND_WSC_NACK;
2382                 return WPS_CONTINUE;
2383         }
2384
2385         wps->state = SEND_M4;
2386         return WPS_CONTINUE;
2387 }
2388
2389
2390 static enum wps_process_res wps_process_m5(struct wps_data *wps,
2391                                            const struct wpabuf *msg,
2392                                            struct wps_parse_attr *attr)
2393 {
2394         struct wpabuf *decrypted;
2395         struct wps_parse_attr eattr;
2396
2397         wpa_printf(MSG_DEBUG, "WPS: Received M5");
2398
2399         if (wps->state != RECV_M5) {
2400                 wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
2401                            "receiving M5", wps->state);
2402                 wps->state = SEND_WSC_NACK;
2403                 return WPS_CONTINUE;
2404         }
2405
2406         if (wps->pbc && wps->wps->registrar->force_pbc_overlap) {
2407                 wpa_printf(MSG_DEBUG, "WPS: Reject negotiation due to PBC "
2408                            "session overlap");
2409                 wps->state = SEND_WSC_NACK;
2410                 wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
2411                 return WPS_CONTINUE;
2412         }
2413
2414         if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
2415             wps_process_authenticator(wps, attr->authenticator, msg)) {
2416                 wps->state = SEND_WSC_NACK;
2417                 return WPS_CONTINUE;
2418         }
2419
2420         decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
2421                                               attr->encr_settings_len);
2422         if (decrypted == NULL) {
2423                 wpa_printf(MSG_DEBUG, "WPS: Failed to decrypted Encrypted "
2424                            "Settings attribute");
2425                 wps->state = SEND_WSC_NACK;
2426                 return WPS_CONTINUE;
2427         }
2428
2429         if (wps_validate_m5_encr(decrypted, attr->version2 != NULL) < 0) {
2430                 wpabuf_free(decrypted);
2431                 wps->state = SEND_WSC_NACK;
2432                 return WPS_CONTINUE;
2433         }
2434
2435         wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
2436                    "attribute");
2437         if (wps_parse_msg(decrypted, &eattr) < 0 ||
2438             wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
2439             wps_process_e_snonce1(wps, eattr.e_snonce1)) {
2440                 wpabuf_free(decrypted);
2441                 wps->state = SEND_WSC_NACK;
2442                 return WPS_CONTINUE;
2443         }
2444         wpabuf_free(decrypted);
2445
2446         wps->state = SEND_M6;
2447         return WPS_CONTINUE;
2448 }
2449
2450
2451 static void wps_sta_cred_cb(struct wps_data *wps)
2452 {
2453         /*
2454          * Update credential to only include a single authentication and
2455          * encryption type in case the AP configuration includes more than one
2456          * option.
2457          */
2458         if (wps->cred.auth_type & WPS_AUTH_WPA2PSK)
2459                 wps->cred.auth_type = WPS_AUTH_WPA2PSK;
2460         else if (wps->cred.auth_type & WPS_AUTH_WPAPSK)
2461                 wps->cred.auth_type = WPS_AUTH_WPAPSK;
2462         if (wps->cred.encr_type & WPS_ENCR_AES)
2463                 wps->cred.encr_type = WPS_ENCR_AES;
2464         else if (wps->cred.encr_type & WPS_ENCR_TKIP)
2465                 wps->cred.encr_type = WPS_ENCR_TKIP;
2466         wpa_printf(MSG_DEBUG, "WPS: Update local configuration based on the "
2467                    "AP configuration");
2468         if (wps->wps->cred_cb)
2469                 wps->wps->cred_cb(wps->wps->cb_ctx, &wps->cred);
2470 }
2471
2472
2473 static void wps_cred_update(struct wps_credential *dst,
2474                             struct wps_credential *src)
2475 {
2476         os_memcpy(dst->ssid, src->ssid, sizeof(dst->ssid));
2477         dst->ssid_len = src->ssid_len;
2478         dst->auth_type = src->auth_type;
2479         dst->encr_type = src->encr_type;
2480         dst->key_idx = src->key_idx;
2481         os_memcpy(dst->key, src->key, sizeof(dst->key));
2482         dst->key_len = src->key_len;
2483 }
2484
2485
2486 static int wps_process_ap_settings_r(struct wps_data *wps,
2487                                      struct wps_parse_attr *attr)
2488 {
2489         if (wps->wps->ap || wps->er)
2490                 return 0;
2491
2492         /* AP Settings Attributes in M7 when Enrollee is an AP */
2493         if (wps_process_ap_settings(attr, &wps->cred) < 0)
2494                 return -1;
2495
2496         wpa_printf(MSG_INFO, "WPS: Received old AP configuration from AP");
2497
2498         if (wps->new_ap_settings) {
2499                 wpa_printf(MSG_INFO, "WPS: Update AP configuration based on "
2500                            "new settings");
2501                 wps_cred_update(&wps->cred, wps->new_ap_settings);
2502                 return 0;
2503         } else {
2504                 /*
2505                  * Use the AP PIN only to receive the current AP settings, not
2506                  * to reconfigure the AP.
2507                  */
2508                 if (wps->ap_settings_cb) {
2509                         wps->ap_settings_cb(wps->ap_settings_cb_ctx,
2510                                             &wps->cred);
2511                         return 1;
2512                 }
2513                 wps_sta_cred_cb(wps);
2514                 return 1;
2515         }
2516 }
2517
2518
2519 static enum wps_process_res wps_process_m7(struct wps_data *wps,
2520                                            const struct wpabuf *msg,
2521                                            struct wps_parse_attr *attr)
2522 {
2523         struct wpabuf *decrypted;
2524         struct wps_parse_attr eattr;
2525
2526         wpa_printf(MSG_DEBUG, "WPS: Received M7");
2527
2528         if (wps->state != RECV_M7) {
2529                 wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
2530                            "receiving M7", wps->state);
2531                 wps->state = SEND_WSC_NACK;
2532                 return WPS_CONTINUE;
2533         }
2534
2535         if (wps->pbc && wps->wps->registrar->force_pbc_overlap) {
2536                 wpa_printf(MSG_DEBUG, "WPS: Reject negotiation due to PBC "
2537                            "session overlap");
2538                 wps->state = SEND_WSC_NACK;
2539                 wps->config_error = WPS_CFG_MULTIPLE_PBC_DETECTED;
2540                 return WPS_CONTINUE;
2541         }
2542
2543         if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
2544             wps_process_authenticator(wps, attr->authenticator, msg)) {
2545                 wps->state = SEND_WSC_NACK;
2546                 return WPS_CONTINUE;
2547         }
2548
2549         decrypted = wps_decrypt_encr_settings(wps, attr->encr_settings,
2550                                               attr->encr_settings_len);
2551         if (decrypted == NULL) {
2552                 wpa_printf(MSG_DEBUG, "WPS: Failed to decrypt Encrypted "
2553                            "Settings attribute");
2554                 wps->state = SEND_WSC_NACK;
2555                 return WPS_CONTINUE;
2556         }
2557
2558         if (wps_validate_m7_encr(decrypted, wps->wps->ap || wps->er,
2559                                  attr->version2 != NULL) < 0) {
2560                 wpabuf_free(decrypted);
2561                 wps->state = SEND_WSC_NACK;
2562                 return WPS_CONTINUE;
2563         }
2564
2565         wpa_printf(MSG_DEBUG, "WPS: Processing decrypted Encrypted Settings "
2566                    "attribute");
2567         if (wps_parse_msg(decrypted, &eattr) < 0 ||
2568             wps_process_key_wrap_auth(wps, decrypted, eattr.key_wrap_auth) ||
2569             wps_process_e_snonce2(wps, eattr.e_snonce2) ||
2570             wps_process_ap_settings_r(wps, &eattr)) {
2571                 wpabuf_free(decrypted);
2572                 wps->state = SEND_WSC_NACK;
2573                 return WPS_CONTINUE;
2574         }
2575
2576         wpabuf_free(decrypted);
2577
2578         wps->state = SEND_M8;
2579         return WPS_CONTINUE;
2580 }
2581
2582
2583 static enum wps_process_res wps_process_wsc_msg(struct wps_data *wps,
2584                                                 const struct wpabuf *msg)
2585 {
2586         struct wps_parse_attr attr;
2587         enum wps_process_res ret = WPS_CONTINUE;
2588
2589         wpa_printf(MSG_DEBUG, "WPS: Received WSC_MSG");
2590
2591         if (wps_parse_msg(msg, &attr) < 0)
2592                 return WPS_FAILURE;
2593
2594         if (attr.msg_type == NULL) {
2595                 wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
2596                 return WPS_FAILURE;
2597         }
2598
2599         if (*attr.msg_type != WPS_M1 &&
2600             (attr.registrar_nonce == NULL ||
2601              os_memcmp(wps->nonce_r, attr.registrar_nonce,
2602                        WPS_NONCE_LEN != 0))) {
2603                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
2604                 return WPS_FAILURE;
2605         }
2606
2607         switch (*attr.msg_type) {
2608         case WPS_M1:
2609                 if (wps_validate_m1(msg) < 0)
2610                         return WPS_FAILURE;
2611 #ifdef CONFIG_WPS_UPNP
2612                 if (wps->wps->wps_upnp && attr.mac_addr) {
2613                         /* Remove old pending messages when starting new run */
2614                         wps_free_pending_msgs(wps->wps->upnp_msgs);
2615                         wps->wps->upnp_msgs = NULL;
2616
2617                         upnp_wps_device_send_wlan_event(
2618                                 wps->wps->wps_upnp, attr.mac_addr,
2619                                 UPNP_WPS_WLANEVENT_TYPE_EAP, msg);
2620                 }
2621 #endif /* CONFIG_WPS_UPNP */
2622                 ret = wps_process_m1(wps, &attr);
2623                 break;
2624         case WPS_M3:
2625                 if (wps_validate_m3(msg) < 0)
2626                         return WPS_FAILURE;
2627                 ret = wps_process_m3(wps, msg, &attr);
2628                 if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
2629                         wps_fail_event(wps->wps, WPS_M3);
2630                 break;
2631         case WPS_M5:
2632                 if (wps_validate_m5(msg) < 0)
2633                         return WPS_FAILURE;
2634                 ret = wps_process_m5(wps, msg, &attr);
2635                 if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
2636                         wps_fail_event(wps->wps, WPS_M5);
2637                 break;
2638         case WPS_M7:
2639                 if (wps_validate_m7(msg) < 0)
2640                         return WPS_FAILURE;
2641                 ret = wps_process_m7(wps, msg, &attr);
2642                 if (ret == WPS_FAILURE || wps->state == SEND_WSC_NACK)
2643                         wps_fail_event(wps->wps, WPS_M7);
2644                 break;
2645         default:
2646                 wpa_printf(MSG_DEBUG, "WPS: Unsupported Message Type %d",
2647                            *attr.msg_type);
2648                 return WPS_FAILURE;
2649         }
2650
2651         if (ret == WPS_CONTINUE) {
2652                 /* Save a copy of the last message for Authenticator derivation
2653                  */
2654                 wpabuf_free(wps->last_msg);
2655                 wps->last_msg = wpabuf_dup(msg);
2656         }
2657
2658         return ret;
2659 }
2660
2661
2662 static enum wps_process_res wps_process_wsc_ack(struct wps_data *wps,
2663                                                 const struct wpabuf *msg)
2664 {
2665         struct wps_parse_attr attr;
2666
2667         wpa_printf(MSG_DEBUG, "WPS: Received WSC_ACK");
2668
2669         if (wps_parse_msg(msg, &attr) < 0)
2670                 return WPS_FAILURE;
2671
2672         if (attr.msg_type == NULL) {
2673                 wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
2674                 return WPS_FAILURE;
2675         }
2676
2677         if (*attr.msg_type != WPS_WSC_ACK) {
2678                 wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
2679                            *attr.msg_type);
2680                 return WPS_FAILURE;
2681         }
2682
2683 #ifdef CONFIG_WPS_UPNP
2684         if (wps->wps->wps_upnp && wps->ext_reg && wps->state == RECV_M2D_ACK &&
2685             upnp_wps_subscribers(wps->wps->wps_upnp)) {
2686                 if (wps->wps->upnp_msgs)
2687                         return WPS_CONTINUE;
2688                 wpa_printf(MSG_DEBUG, "WPS: Wait for response from an "
2689                            "external Registrar");
2690                 return WPS_PENDING;
2691         }
2692 #endif /* CONFIG_WPS_UPNP */
2693
2694         if (attr.registrar_nonce == NULL ||
2695             os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
2696         {
2697                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
2698                 return WPS_FAILURE;
2699         }
2700
2701         if (attr.enrollee_nonce == NULL ||
2702             os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
2703                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
2704                 return WPS_FAILURE;
2705         }
2706
2707         if (wps->state == RECV_M2D_ACK) {
2708 #ifdef CONFIG_WPS_UPNP
2709                 if (wps->wps->wps_upnp &&
2710                     upnp_wps_subscribers(wps->wps->wps_upnp)) {
2711                         if (wps->wps->upnp_msgs)
2712                                 return WPS_CONTINUE;
2713                         if (wps->ext_reg == 0)
2714                                 wps->ext_reg = 1;
2715                         wpa_printf(MSG_DEBUG, "WPS: Wait for response from an "
2716                                    "external Registrar");
2717                         return WPS_PENDING;
2718                 }
2719 #endif /* CONFIG_WPS_UPNP */
2720
2721                 wpa_printf(MSG_DEBUG, "WPS: No more registrars available - "
2722                            "terminate negotiation");
2723         }
2724
2725         return WPS_FAILURE;
2726 }
2727
2728
2729 static enum wps_process_res wps_process_wsc_nack(struct wps_data *wps,
2730                                                  const struct wpabuf *msg)
2731 {
2732         struct wps_parse_attr attr;
2733         int old_state;
2734
2735         wpa_printf(MSG_DEBUG, "WPS: Received WSC_NACK");
2736
2737         old_state = wps->state;
2738         wps->state = SEND_WSC_NACK;
2739
2740         if (wps_parse_msg(msg, &attr) < 0)
2741                 return WPS_FAILURE;
2742
2743         if (attr.msg_type == NULL) {
2744                 wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
2745                 return WPS_FAILURE;
2746         }
2747
2748         if (*attr.msg_type != WPS_WSC_NACK) {
2749                 wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
2750                            *attr.msg_type);
2751                 return WPS_FAILURE;
2752         }
2753
2754 #ifdef CONFIG_WPS_UPNP
2755         if (wps->wps->wps_upnp && wps->ext_reg) {
2756                 wpa_printf(MSG_DEBUG, "WPS: Negotiation using external "
2757                            "Registrar terminated by the Enrollee");
2758                 return WPS_FAILURE;
2759         }
2760 #endif /* CONFIG_WPS_UPNP */
2761
2762         if (attr.registrar_nonce == NULL ||
2763             os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
2764         {
2765                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
2766                 return WPS_FAILURE;
2767         }
2768
2769         if (attr.enrollee_nonce == NULL ||
2770             os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
2771                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
2772                 return WPS_FAILURE;
2773         }
2774
2775         if (attr.config_error == NULL) {
2776                 wpa_printf(MSG_DEBUG, "WPS: No Configuration Error attribute "
2777                            "in WSC_NACK");
2778                 return WPS_FAILURE;
2779         }
2780
2781         wpa_printf(MSG_DEBUG, "WPS: Enrollee terminated negotiation with "
2782                    "Configuration Error %d", WPA_GET_BE16(attr.config_error));
2783
2784         switch (old_state) {
2785         case RECV_M3:
2786                 wps_fail_event(wps->wps, WPS_M2);
2787                 break;
2788         case RECV_M5:
2789                 wps_fail_event(wps->wps, WPS_M4);
2790                 break;
2791         case RECV_M7:
2792                 wps_fail_event(wps->wps, WPS_M6);
2793                 break;
2794         case RECV_DONE:
2795                 wps_fail_event(wps->wps, WPS_M8);
2796                 break;
2797         default:
2798                 break;
2799         }
2800
2801         return WPS_FAILURE;
2802 }
2803
2804
2805 static enum wps_process_res wps_process_wsc_done(struct wps_data *wps,
2806                                                  const struct wpabuf *msg)
2807 {
2808         struct wps_parse_attr attr;
2809
2810         wpa_printf(MSG_DEBUG, "WPS: Received WSC_Done");
2811
2812         if (wps->state != RECV_DONE &&
2813             (!wps->wps->wps_upnp || !wps->ext_reg)) {
2814                 wpa_printf(MSG_DEBUG, "WPS: Unexpected state (%d) for "
2815                            "receiving WSC_Done", wps->state);
2816                 return WPS_FAILURE;
2817         }
2818
2819         if (wps_parse_msg(msg, &attr) < 0)
2820                 return WPS_FAILURE;
2821
2822         if (attr.msg_type == NULL) {
2823                 wpa_printf(MSG_DEBUG, "WPS: No Message Type attribute");
2824                 return WPS_FAILURE;
2825         }
2826
2827         if (*attr.msg_type != WPS_WSC_DONE) {
2828                 wpa_printf(MSG_DEBUG, "WPS: Invalid Message Type %d",
2829                            *attr.msg_type);
2830                 return WPS_FAILURE;
2831         }
2832
2833 #ifdef CONFIG_WPS_UPNP
2834         if (wps->wps->wps_upnp && wps->ext_reg) {
2835                 wpa_printf(MSG_DEBUG, "WPS: Negotiation using external "
2836                            "Registrar completed successfully");
2837                 wps_device_store(wps->wps->registrar, &wps->peer_dev,
2838                                  wps->uuid_e);
2839                 return WPS_DONE;
2840         }
2841 #endif /* CONFIG_WPS_UPNP */
2842
2843         if (attr.registrar_nonce == NULL ||
2844             os_memcmp(wps->nonce_r, attr.registrar_nonce, WPS_NONCE_LEN != 0))
2845         {
2846                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in registrar nonce");
2847                 return WPS_FAILURE;
2848         }
2849
2850         if (attr.enrollee_nonce == NULL ||
2851             os_memcmp(wps->nonce_e, attr.enrollee_nonce, WPS_NONCE_LEN != 0)) {
2852                 wpa_printf(MSG_DEBUG, "WPS: Mismatch in enrollee nonce");
2853                 return WPS_FAILURE;
2854         }
2855
2856         wpa_printf(MSG_DEBUG, "WPS: Negotiation completed successfully");
2857         wps_device_store(wps->wps->registrar, &wps->peer_dev,
2858                          wps->uuid_e);
2859
2860         if (wps->wps->wps_state == WPS_STATE_NOT_CONFIGURED && wps->new_psk &&
2861             wps->wps->ap && !wps->wps->registrar->disable_auto_conf) {
2862                 struct wps_credential cred;
2863
2864                 wpa_printf(MSG_DEBUG, "WPS: Moving to Configured state based "
2865                            "on first Enrollee connection");
2866
2867                 os_memset(&cred, 0, sizeof(cred));
2868                 os_memcpy(cred.ssid, wps->wps->ssid, wps->wps->ssid_len);
2869                 cred.ssid_len = wps->wps->ssid_len;
2870                 cred.auth_type = WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK;
2871                 cred.encr_type = WPS_ENCR_TKIP | WPS_ENCR_AES;
2872                 os_memcpy(cred.key, wps->new_psk, wps->new_psk_len);
2873                 cred.key_len = wps->new_psk_len;
2874
2875                 wps->wps->wps_state = WPS_STATE_CONFIGURED;
2876                 wpa_hexdump_ascii_key(MSG_DEBUG,
2877                                       "WPS: Generated random passphrase",
2878                                       wps->new_psk, wps->new_psk_len);
2879                 if (wps->wps->cred_cb)
2880                         wps->wps->cred_cb(wps->wps->cb_ctx, &cred);
2881
2882                 os_free(wps->new_psk);
2883                 wps->new_psk = NULL;
2884         }
2885
2886         if (!wps->wps->ap && !wps->er)
2887                 wps_sta_cred_cb(wps);
2888
2889         if (wps->new_psk) {
2890                 if (wps_cb_new_psk(wps->wps->registrar, wps->mac_addr_e,
2891                                    wps->new_psk, wps->new_psk_len)) {
2892                         wpa_printf(MSG_DEBUG, "WPS: Failed to configure the "
2893                                    "new PSK");
2894                 }
2895                 os_free(wps->new_psk);
2896                 wps->new_psk = NULL;
2897         }
2898
2899         wps_cb_reg_success(wps->wps->registrar, wps->mac_addr_e, wps->uuid_e);
2900
2901         if (wps->pbc) {
2902                 wps_registrar_remove_pbc_session(wps->wps->registrar,
2903                                                  wps->mac_addr_e, wps->uuid_e);
2904                 wps_registrar_pbc_completed(wps->wps->registrar);
2905         } else {
2906                 wps_registrar_pin_completed(wps->wps->registrar);
2907         }
2908         /* TODO: maintain AuthorizedMACs somewhere separately for each ER and
2909          * merge them into APs own list.. */
2910
2911         wps_success_event(wps->wps);
2912
2913         return WPS_DONE;
2914 }
2915
2916
2917 enum wps_process_res wps_registrar_process_msg(struct wps_data *wps,
2918                                                enum wsc_op_code op_code,
2919                                                const struct wpabuf *msg)
2920 {
2921         enum wps_process_res ret;
2922
2923         wpa_printf(MSG_DEBUG, "WPS: Processing received message (len=%lu "
2924                    "op_code=%d)",
2925                    (unsigned long) wpabuf_len(msg), op_code);
2926
2927 #ifdef CONFIG_WPS_UPNP
2928         if (wps->wps->wps_upnp && op_code == WSC_MSG && wps->ext_reg == 1) {
2929                 struct wps_parse_attr attr;
2930                 if (wps_parse_msg(msg, &attr) == 0 && attr.msg_type &&
2931                     *attr.msg_type == WPS_M3)
2932                         wps->ext_reg = 2; /* past M2/M2D phase */
2933         }
2934         if (wps->ext_reg > 1)
2935                 wps_registrar_free_pending_m2(wps->wps);
2936         if (wps->wps->wps_upnp && wps->ext_reg &&
2937             wps->wps->upnp_msgs == NULL &&
2938             (op_code == WSC_MSG || op_code == WSC_Done || op_code == WSC_NACK))
2939         {
2940                 struct wps_parse_attr attr;
2941                 int type;
2942                 if (wps_parse_msg(msg, &attr) < 0 || attr.msg_type == NULL)
2943                         type = -1;
2944                 else
2945                         type = *attr.msg_type;
2946                 wpa_printf(MSG_DEBUG, "WPS: Sending received message (type %d)"
2947                            " to external Registrar for processing", type);
2948                 upnp_wps_device_send_wlan_event(wps->wps->wps_upnp,
2949                                                 wps->mac_addr_e,
2950                                                 UPNP_WPS_WLANEVENT_TYPE_EAP,
2951                                                 msg);
2952                 if (op_code == WSC_MSG)
2953                         return WPS_PENDING;
2954         } else if (wps->wps->wps_upnp && wps->ext_reg && op_code == WSC_MSG) {
2955                 wpa_printf(MSG_DEBUG, "WPS: Skip internal processing - using "
2956                            "external Registrar");
2957                 return WPS_CONTINUE;
2958         }
2959 #endif /* CONFIG_WPS_UPNP */
2960
2961         switch (op_code) {
2962         case WSC_MSG:
2963                 return wps_process_wsc_msg(wps, msg);
2964         case WSC_ACK:
2965                 if (wps_validate_wsc_ack(msg) < 0)
2966                         return WPS_FAILURE;
2967                 return wps_process_wsc_ack(wps, msg);
2968         case WSC_NACK:
2969                 if (wps_validate_wsc_nack(msg) < 0)
2970                         return WPS_FAILURE;
2971                 return wps_process_wsc_nack(wps, msg);
2972         case WSC_Done:
2973                 if (wps_validate_wsc_done(msg) < 0)
2974                         return WPS_FAILURE;
2975                 ret = wps_process_wsc_done(wps, msg);
2976                 if (ret == WPS_FAILURE) {
2977                         wps->state = SEND_WSC_NACK;
2978                         wps_fail_event(wps->wps, WPS_WSC_DONE);
2979                 }
2980                 return ret;
2981         default:
2982                 wpa_printf(MSG_DEBUG, "WPS: Unsupported op_code %d", op_code);
2983                 return WPS_FAILURE;
2984         }
2985 }
2986
2987
2988 int wps_registrar_update_ie(struct wps_registrar *reg)
2989 {
2990         return wps_set_ie(reg);
2991 }
2992
2993
2994 static void wps_registrar_set_selected_timeout(void *eloop_ctx,
2995                                                void *timeout_ctx)
2996 {
2997         struct wps_registrar *reg = eloop_ctx;
2998
2999         wpa_printf(MSG_DEBUG, "WPS: Selected Registrar timeout - "
3000                    "unselect internal Registrar");
3001         reg->selected_registrar = 0;
3002         reg->pbc = 0;
3003         wps_registrar_selected_registrar_changed(reg);
3004 }
3005
3006
3007 #ifdef CONFIG_WPS_UPNP
3008 static void wps_registrar_sel_reg_add(struct wps_registrar *reg,
3009                                       struct subscription *s)
3010 {
3011         int i, j;
3012         wpa_printf(MSG_DEBUG, "WPS: External Registrar selected (dev_pw_id=%d "
3013                    "config_methods=0x%x)",
3014                    s->dev_password_id, s->config_methods);
3015         reg->sel_reg_union = 1;
3016         if (reg->sel_reg_dev_password_id_override != DEV_PW_PUSHBUTTON)
3017                 reg->sel_reg_dev_password_id_override = s->dev_password_id;
3018         if (reg->sel_reg_config_methods_override == -1)
3019                 reg->sel_reg_config_methods_override = 0;
3020         reg->sel_reg_config_methods_override |= s->config_methods;
3021         for (i = 0; i < WPS_MAX_AUTHORIZED_MACS; i++)
3022                 if (is_zero_ether_addr(reg->authorized_macs_union[i]))
3023                         break;
3024         for (j = 0; i < WPS_MAX_AUTHORIZED_MACS && j < WPS_MAX_AUTHORIZED_MACS;
3025              j++) {
3026                 if (is_zero_ether_addr(s->authorized_macs[j]))
3027                         break;
3028                 wpa_printf(MSG_DEBUG, "WPS: Add authorized MAC into union: "
3029                            MACSTR, MAC2STR(s->authorized_macs[j]));
3030                 os_memcpy(reg->authorized_macs_union[i],
3031                           s->authorized_macs[j], ETH_ALEN);
3032                 i++;
3033         }
3034         wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs union",
3035                     (u8 *) reg->authorized_macs_union,
3036                     sizeof(reg->authorized_macs_union));
3037 }
3038 #endif /* CONFIG_WPS_UPNP */
3039
3040
3041 static void wps_registrar_sel_reg_union(struct wps_registrar *reg)
3042 {
3043 #ifdef CONFIG_WPS_UPNP
3044         struct subscription *s;
3045
3046         if (reg->wps->wps_upnp == NULL)
3047                 return;
3048
3049         dl_list_for_each(s, &reg->wps->wps_upnp->subscriptions,
3050                          struct subscription, list) {
3051                 struct subscr_addr *sa;
3052                 sa = dl_list_first(&s->addr_list, struct subscr_addr, list);
3053                 if (sa) {
3054                         wpa_printf(MSG_DEBUG, "WPS: External Registrar %s:%d",
3055                                    inet_ntoa(sa->saddr.sin_addr),
3056                                    ntohs(sa->saddr.sin_port));
3057                 }
3058                 if (s->selected_registrar)
3059                         wps_registrar_sel_reg_add(reg, s);
3060                 else
3061                         wpa_printf(MSG_DEBUG, "WPS: External Registrar not "
3062                                    "selected");
3063         }
3064 #endif /* CONFIG_WPS_UPNP */
3065 }
3066
3067
3068 /**
3069  * wps_registrar_selected_registrar_changed - SetSelectedRegistrar change
3070  * @reg: Registrar data from wps_registrar_init()
3071  *
3072  * This function is called when selected registrar state changes, e.g., when an
3073  * AP receives a SetSelectedRegistrar UPnP message.
3074  */
3075 void wps_registrar_selected_registrar_changed(struct wps_registrar *reg)
3076 {
3077         wpa_printf(MSG_DEBUG, "WPS: Selected registrar information changed");
3078
3079         reg->sel_reg_union = reg->selected_registrar;
3080         reg->sel_reg_dev_password_id_override = -1;
3081         reg->sel_reg_config_methods_override = -1;
3082         os_memcpy(reg->authorized_macs_union, reg->authorized_macs,
3083                   WPS_MAX_AUTHORIZED_MACS * ETH_ALEN);
3084         wpa_hexdump(MSG_DEBUG, "WPS: Authorized MACs union (start with own)",
3085                     (u8 *) reg->authorized_macs_union,
3086                     sizeof(reg->authorized_macs_union));
3087         if (reg->selected_registrar) {
3088                 u16 methods;
3089
3090                 methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
3091 #ifdef CONFIG_WPS2
3092                 methods &= ~(WPS_CONFIG_VIRT_PUSHBUTTON |
3093                              WPS_CONFIG_PHY_PUSHBUTTON);
3094 #endif /* CONFIG_WPS2 */
3095                 if (reg->pbc) {
3096                         reg->sel_reg_dev_password_id_override =
3097                                 DEV_PW_PUSHBUTTON;
3098                         wps_set_pushbutton(&methods, reg->wps->config_methods);
3099                 }
3100                 wpa_printf(MSG_DEBUG, "WPS: Internal Registrar selected "
3101                            "(pbc=%d)", reg->pbc);
3102                 reg->sel_reg_config_methods_override = methods;
3103         } else
3104                 wpa_printf(MSG_DEBUG, "WPS: Internal Registrar not selected");
3105
3106         wps_registrar_sel_reg_union(reg);
3107
3108         wps_set_ie(reg);
3109         wps_cb_set_sel_reg(reg);
3110 }
3111
3112
3113 int wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr,
3114                            char *buf, size_t buflen)
3115 {
3116         struct wps_registrar_device *d;
3117         int len = 0, ret;
3118         char uuid[40];
3119         char devtype[WPS_DEV_TYPE_BUFSIZE];
3120
3121         d = wps_device_get(reg, addr);
3122         if (d == NULL)
3123                 return 0;
3124         if (uuid_bin2str(d->uuid, uuid, sizeof(uuid)))
3125                 return 0;
3126
3127         ret = os_snprintf(buf + len, buflen - len,
3128                           "wpsUuid=%s\n"
3129                           "wpsPrimaryDeviceType=%s\n"
3130                           "wpsDeviceName=%s\n"
3131                           "wpsManufacturer=%s\n"
3132                           "wpsModelName=%s\n"
3133                           "wpsModelNumber=%s\n"
3134                           "wpsSerialNumber=%s\n",
3135                           uuid,
3136                           wps_dev_type_bin2str(d->dev.pri_dev_type, devtype,
3137                                                sizeof(devtype)),
3138                           d->dev.device_name ? d->dev.device_name : "",
3139                           d->dev.manufacturer ? d->dev.manufacturer : "",
3140                           d->dev.model_name ? d->dev.model_name : "",
3141                           d->dev.model_number ? d->dev.model_number : "",
3142                           d->dev.serial_number ? d->dev.serial_number : "");
3143         if (ret < 0 || (size_t) ret >= buflen - len)
3144                 return len;
3145         len += ret;
3146
3147         return len;
3148 }