WPS: Add MAC address to validation error message for Probe Request
[libeap.git] / src / wps / wps.h
1 /*
2  * Wi-Fi Protected Setup
3  * Copyright (c) 2007-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 #ifndef WPS_H
16 #define WPS_H
17
18 #include "wps_defs.h"
19
20 /**
21  * enum wsc_op_code - EAP-WSC OP-Code values
22  */
23 enum wsc_op_code {
24         WSC_UPnP = 0 /* No OP Code in UPnP transport */,
25         WSC_Start = 0x01,
26         WSC_ACK = 0x02,
27         WSC_NACK = 0x03,
28         WSC_MSG = 0x04,
29         WSC_Done = 0x05,
30         WSC_FRAG_ACK = 0x06
31 };
32
33 struct wps_registrar;
34 struct upnp_wps_device_sm;
35 struct wps_er;
36
37 /**
38  * struct wps_credential - WPS Credential
39  * @ssid: SSID
40  * @ssid_len: Length of SSID
41  * @auth_type: Authentication Type (WPS_AUTH_OPEN, .. flags)
42  * @encr_type: Encryption Type (WPS_ENCR_NONE, .. flags)
43  * @key_idx: Key index
44  * @key: Key
45  * @key_len: Key length in octets
46  * @mac_addr: MAC address of the Credential receiver
47  * @cred_attr: Unparsed Credential attribute data (used only in cred_cb());
48  *      this may be %NULL, if not used
49  * @cred_attr_len: Length of cred_attr in octets
50  */
51 struct wps_credential {
52         u8 ssid[32];
53         size_t ssid_len;
54         u16 auth_type;
55         u16 encr_type;
56         u8 key_idx;
57         u8 key[64];
58         size_t key_len;
59         u8 mac_addr[ETH_ALEN];
60         const u8 *cred_attr;
61         size_t cred_attr_len;
62 };
63
64 #define WPS_DEV_TYPE_LEN 8
65 #define WPS_DEV_TYPE_BUFSIZE 21
66
67 /**
68  * struct wps_device_data - WPS Device Data
69  * @mac_addr: Device MAC address
70  * @device_name: Device Name (0..32 octets encoded in UTF-8)
71  * @manufacturer: Manufacturer (0..64 octets encoded in UTF-8)
72  * @model_name: Model Name (0..32 octets encoded in UTF-8)
73  * @model_number: Model Number (0..32 octets encoded in UTF-8)
74  * @serial_number: Serial Number (0..32 octets encoded in UTF-8)
75  * @pri_dev_type: Primary Device Type
76  * @os_version: OS Version
77  * @rf_bands: RF bands (WPS_RF_24GHZ, WPS_RF_50GHZ flags)
78  * @p2p: Whether the device is a P2P device
79  */
80 struct wps_device_data {
81         u8 mac_addr[ETH_ALEN];
82         char *device_name;
83         char *manufacturer;
84         char *model_name;
85         char *model_number;
86         char *serial_number;
87         u8 pri_dev_type[WPS_DEV_TYPE_LEN];
88         u32 os_version;
89         u8 rf_bands;
90
91         int p2p;
92 };
93
94 struct oob_conf_data {
95         enum {
96                 OOB_METHOD_UNKNOWN = 0,
97                 OOB_METHOD_DEV_PWD_E,
98                 OOB_METHOD_DEV_PWD_R,
99                 OOB_METHOD_CRED,
100         } oob_method;
101         struct wpabuf *dev_password;
102         struct wpabuf *pubkey_hash;
103 };
104
105 /**
106  * struct wps_config - WPS configuration for a single registration protocol run
107  */
108 struct wps_config {
109         /**
110          * wps - Pointer to long term WPS context
111          */
112         struct wps_context *wps;
113
114         /**
115          * registrar - Whether this end is a Registrar
116          */
117         int registrar;
118
119         /**
120          * pin - Enrollee Device Password (%NULL for Registrar or PBC)
121          */
122         const u8 *pin;
123
124         /**
125          * pin_len - Length on pin in octets
126          */
127         size_t pin_len;
128
129         /**
130          * pbc - Whether this is protocol run uses PBC
131          */
132         int pbc;
133
134         /**
135          * assoc_wps_ie: (Re)AssocReq WPS IE (in AP; %NULL if not AP)
136          */
137         const struct wpabuf *assoc_wps_ie;
138
139         /**
140          * new_ap_settings - New AP settings (%NULL if not used)
141          *
142          * This parameter provides new AP settings when using a wireless
143          * stations as a Registrar to configure the AP. %NULL means that AP
144          * will not be reconfigured, i.e., the station will only learn the
145          * current AP settings by using AP PIN.
146          */
147         const struct wps_credential *new_ap_settings;
148
149         /**
150          * peer_addr: MAC address of the peer in AP; %NULL if not AP
151          */
152         const u8 *peer_addr;
153
154         /**
155          * use_psk_key - Use PSK format key in Credential
156          *
157          * Force PSK format to be used instead of ASCII passphrase when
158          * building Credential for an Enrollee. The PSK value is set in
159          * struct wpa_context::psk.
160          */
161         int use_psk_key;
162
163         /**
164          * dev_pw_id - Device Password ID for Enrollee when PIN is used
165          */
166         u16 dev_pw_id;
167 };
168
169 struct wps_data * wps_init(const struct wps_config *cfg);
170
171 void wps_deinit(struct wps_data *data);
172
173 /**
174  * enum wps_process_res - WPS message processing result
175  */
176 enum wps_process_res {
177         /**
178          * WPS_DONE - Processing done
179          */
180         WPS_DONE,
181
182         /**
183          * WPS_CONTINUE - Processing continues
184          */
185         WPS_CONTINUE,
186
187         /**
188          * WPS_FAILURE - Processing failed
189          */
190         WPS_FAILURE,
191
192         /**
193          * WPS_PENDING - Processing continues, but waiting for an external
194          *      event (e.g., UPnP message from an external Registrar)
195          */
196         WPS_PENDING
197 };
198 enum wps_process_res wps_process_msg(struct wps_data *wps,
199                                      enum wsc_op_code op_code,
200                                      const struct wpabuf *msg);
201
202 struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code);
203
204 int wps_is_selected_pbc_registrar(const struct wpabuf *msg);
205 int wps_is_selected_pin_registrar(const struct wpabuf *msg);
206 int wps_ap_priority_compar(const struct wpabuf *wps_a,
207                            const struct wpabuf *wps_b);
208 int wps_is_addr_authorized(const struct wpabuf *msg, const u8 *addr,
209                            int ver1_compat);
210 const u8 * wps_get_uuid_e(const struct wpabuf *msg);
211
212 struct wpabuf * wps_build_assoc_req_ie(enum wps_request_type req_type);
213 struct wpabuf * wps_build_assoc_resp_ie(void);
214 struct wpabuf * wps_build_probe_req_ie(int pbc, struct wps_device_data *dev,
215                                        const u8 *uuid,
216                                        enum wps_request_type req_type);
217
218
219 /**
220  * struct wps_registrar_config - WPS Registrar configuration
221  */
222 struct wps_registrar_config {
223         /**
224          * new_psk_cb - Callback for new PSK
225          * @ctx: Higher layer context data (cb_ctx)
226          * @mac_addr: MAC address of the Enrollee
227          * @psk: The new PSK
228          * @psk_len: The length of psk in octets
229          * Returns: 0 on success, -1 on failure
230          *
231          * This callback is called when a new per-device PSK is provisioned.
232          */
233         int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
234                           size_t psk_len);
235
236         /**
237          * set_ie_cb - Callback for WPS IE changes
238          * @ctx: Higher layer context data (cb_ctx)
239          * @beacon_ie: WPS IE for Beacon
240          * @probe_resp_ie: WPS IE for Probe Response
241          * Returns: 0 on success, -1 on failure
242          *
243          * This callback is called whenever the WPS IE in Beacon or Probe
244          * Response frames needs to be changed (AP only). Callee is responsible
245          * for freeing the buffers.
246          */
247         int (*set_ie_cb)(void *ctx, struct wpabuf *beacon_ie,
248                          struct wpabuf *probe_resp_ie);
249
250         /**
251          * pin_needed_cb - Callback for requesting a PIN
252          * @ctx: Higher layer context data (cb_ctx)
253          * @uuid_e: UUID-E of the unknown Enrollee
254          * @dev: Device Data from the unknown Enrollee
255          *
256          * This callback is called whenever an unknown Enrollee requests to use
257          * PIN method and a matching PIN (Device Password) is not found in
258          * Registrar data.
259          */
260         void (*pin_needed_cb)(void *ctx, const u8 *uuid_e,
261                               const struct wps_device_data *dev);
262
263         /**
264          * reg_success_cb - Callback for reporting successful registration
265          * @ctx: Higher layer context data (cb_ctx)
266          * @mac_addr: MAC address of the Enrollee
267          * @uuid_e: UUID-E of the Enrollee
268          *
269          * This callback is called whenever an Enrollee completes registration
270          * successfully.
271          */
272         void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
273                                const u8 *uuid_e);
274
275         /**
276          * set_sel_reg_cb - Callback for reporting selected registrar changes
277          * @ctx: Higher layer context data (cb_ctx)
278          * @sel_reg: Whether the Registrar is selected
279          * @dev_passwd_id: Device Password ID to indicate with method or
280          *      specific password the Registrar intends to use
281          * @sel_reg_config_methods: Bit field of active config methods
282          *
283          * This callback is called whenever the Selected Registrar state
284          * changes (e.g., a new PIN becomes available or PBC is invoked). This
285          * callback is only used by External Registrar implementation;
286          * set_ie_cb() is used by AP implementation in similar caes, but it
287          * provides the full WPS IE data instead of just the minimal Registrar
288          * state information.
289          */
290         void (*set_sel_reg_cb)(void *ctx, int sel_reg, u16 dev_passwd_id,
291                                u16 sel_reg_config_methods);
292
293         /**
294          * enrollee_seen_cb - Callback for reporting Enrollee based on ProbeReq
295          * @ctx: Higher layer context data (cb_ctx)
296          * @addr: MAC address of the Enrollee
297          * @uuid_e: UUID of the Enrollee
298          * @pri_dev_type: Primary device type
299          * @config_methods: Config Methods
300          * @dev_password_id: Device Password ID
301          * @request_type: Request Type
302          * @dev_name: Device Name (if available)
303          */
304         void (*enrollee_seen_cb)(void *ctx, const u8 *addr, const u8 *uuid_e,
305                                  const u8 *pri_dev_type, u16 config_methods,
306                                  u16 dev_password_id, u8 request_type,
307                                  const char *dev_name);
308
309         /**
310          * cb_ctx: Higher layer context data for Registrar callbacks
311          */
312         void *cb_ctx;
313
314         /**
315          * skip_cred_build: Do not build credential
316          *
317          * This option can be used to disable internal code that builds
318          * Credential attribute into M8 based on the current network
319          * configuration and Enrollee capabilities. The extra_cred data will
320          * then be used as the Credential(s).
321          */
322         int skip_cred_build;
323
324         /**
325          * extra_cred: Additional Credential attribute(s)
326          *
327          * This optional data (set to %NULL to disable) can be used to add
328          * Credential attribute(s) for other networks into M8. If
329          * skip_cred_build is set, this will also override the automatically
330          * generated Credential attribute.
331          */
332         const u8 *extra_cred;
333
334         /**
335          * extra_cred_len: Length of extra_cred in octets
336          */
337         size_t extra_cred_len;
338
339         /**
340          * disable_auto_conf - Disable auto-configuration on first registration
341          *
342          * By default, the AP that is started in not configured state will
343          * generate a random PSK and move to configured state when the first
344          * registration protocol run is completed successfully. This option can
345          * be used to disable this functionality and leave it up to an external
346          * program to take care of configuration. This requires the extra_cred
347          * to be set with a suitable Credential and skip_cred_build being used.
348          */
349         int disable_auto_conf;
350
351         /**
352          * static_wep_only - Whether the BSS supports only static WEP
353          */
354         int static_wep_only;
355
356         /**
357          * dualband - Whether this is a concurrent dualband AP
358          */
359         int dualband;
360 };
361
362
363 /**
364  * enum wps_event - WPS event types
365  */
366 enum wps_event {
367         /**
368          * WPS_EV_M2D - M2D received (Registrar did not know us)
369          */
370         WPS_EV_M2D,
371
372         /**
373          * WPS_EV_FAIL - Registration failed
374          */
375         WPS_EV_FAIL,
376
377         /**
378          * WPS_EV_SUCCESS - Registration succeeded
379          */
380         WPS_EV_SUCCESS,
381
382         /**
383          * WPS_EV_PWD_AUTH_FAIL - Password authentication failed
384          */
385         WPS_EV_PWD_AUTH_FAIL,
386
387         /**
388          * WPS_EV_PBC_OVERLAP - PBC session overlap detected
389          */
390         WPS_EV_PBC_OVERLAP,
391
392         /**
393          * WPS_EV_PBC_TIMEOUT - PBC walktime expired before protocol run start
394          */
395         WPS_EV_PBC_TIMEOUT,
396
397         /**
398          * WPS_EV_ER_AP_ADD - ER: AP added
399          */
400         WPS_EV_ER_AP_ADD,
401
402         /**
403          * WPS_EV_ER_AP_REMOVE - ER: AP removed
404          */
405         WPS_EV_ER_AP_REMOVE,
406
407         /**
408          * WPS_EV_ER_ENROLLEE_ADD - ER: Enrollee added
409          */
410         WPS_EV_ER_ENROLLEE_ADD,
411
412         /**
413          * WPS_EV_ER_ENROLLEE_REMOVE - ER: Enrollee removed
414          */
415         WPS_EV_ER_ENROLLEE_REMOVE,
416
417         /**
418          * WPS_EV_ER_AP_SETTINGS - ER: AP Settings learned
419          */
420         WPS_EV_ER_AP_SETTINGS
421 };
422
423 /**
424  * union wps_event_data - WPS event data
425  */
426 union wps_event_data {
427         /**
428          * struct wps_event_m2d - M2D event data
429          */
430         struct wps_event_m2d {
431                 u16 config_methods;
432                 const u8 *manufacturer;
433                 size_t manufacturer_len;
434                 const u8 *model_name;
435                 size_t model_name_len;
436                 const u8 *model_number;
437                 size_t model_number_len;
438                 const u8 *serial_number;
439                 size_t serial_number_len;
440                 const u8 *dev_name;
441                 size_t dev_name_len;
442                 const u8 *primary_dev_type; /* 8 octets */
443                 u16 config_error;
444                 u16 dev_password_id;
445         } m2d;
446
447         /**
448          * struct wps_event_fail - Registration failure information
449          * @msg: enum wps_msg_type
450          */
451         struct wps_event_fail {
452                 int msg;
453         } fail;
454
455         struct wps_event_pwd_auth_fail {
456                 int enrollee;
457                 int part;
458         } pwd_auth_fail;
459
460         struct wps_event_er_ap {
461                 const u8 *uuid;
462                 const u8 *mac_addr;
463                 const char *friendly_name;
464                 const char *manufacturer;
465                 const char *manufacturer_url;
466                 const char *model_description;
467                 const char *model_name;
468                 const char *model_number;
469                 const char *model_url;
470                 const char *serial_number;
471                 const char *upc;
472                 const u8 *pri_dev_type;
473                 u8 wps_state;
474         } ap;
475
476         struct wps_event_er_enrollee {
477                 const u8 *uuid;
478                 const u8 *mac_addr;
479                 int m1_received;
480                 u16 config_methods;
481                 u16 dev_passwd_id;
482                 const u8 *pri_dev_type;
483                 const char *dev_name;
484                 const char *manufacturer;
485                 const char *model_name;
486                 const char *model_number;
487                 const char *serial_number;
488         } enrollee;
489
490         struct wps_event_er_ap_settings {
491                 const u8 *uuid;
492                 const struct wps_credential *cred;
493         } ap_settings;
494 };
495
496 /**
497  * struct upnp_pending_message - Pending PutWLANResponse messages
498  * @next: Pointer to next pending message or %NULL
499  * @addr: NewWLANEventMAC
500  * @msg: NewMessage
501  * @type: Message Type
502  */
503 struct upnp_pending_message {
504         struct upnp_pending_message *next;
505         u8 addr[ETH_ALEN];
506         struct wpabuf *msg;
507         enum wps_msg_type type;
508 };
509
510 /**
511  * struct wps_context - Long term WPS context data
512  *
513  * This data is stored at the higher layer Authenticator or Supplicant data
514  * structures and it is maintained over multiple registration protocol runs.
515  */
516 struct wps_context {
517         /**
518          * ap - Whether the local end is an access point
519          */
520         int ap;
521
522         /**
523          * registrar - Pointer to WPS registrar data from wps_registrar_init()
524          */
525         struct wps_registrar *registrar;
526
527         /**
528          * wps_state - Current WPS state
529          */
530         enum wps_state wps_state;
531
532         /**
533          * ap_setup_locked - Whether AP setup is locked (only used at AP)
534          */
535         int ap_setup_locked;
536
537         /**
538          * uuid - Own UUID
539          */
540         u8 uuid[16];
541
542         /**
543          * ssid - SSID
544          *
545          * This SSID is used by the Registrar to fill in information for
546          * Credentials. In addition, AP uses it when acting as an Enrollee to
547          * notify Registrar of the current configuration.
548          */
549         u8 ssid[32];
550
551         /**
552          * ssid_len - Length of ssid in octets
553          */
554         size_t ssid_len;
555
556         /**
557          * dev - Own WPS device data
558          */
559         struct wps_device_data dev;
560
561         /**
562          * oob_conf - OOB Config data
563          */
564         struct oob_conf_data oob_conf;
565
566         /**
567          * oob_dev_pw_id - OOB Device password id
568          */
569         u16 oob_dev_pw_id;
570
571         /**
572          * dh_ctx - Context data for Diffie-Hellman operation
573          */
574         void *dh_ctx;
575
576         /**
577          * dh_privkey - Diffie-Hellman private key
578          */
579         struct wpabuf *dh_privkey;
580
581         /**
582          * dh_pubkey_oob - Diffie-Hellman public key
583          */
584         struct wpabuf *dh_pubkey;
585
586         /**
587          * config_methods - Enabled configuration methods
588          *
589          * Bit field of WPS_CONFIG_*
590          */
591         u16 config_methods;
592
593         /**
594          * encr_types - Enabled encryption types (bit field of WPS_ENCR_*)
595          */
596         u16 encr_types;
597
598         /**
599          * auth_types - Authentication types (bit field of WPS_AUTH_*)
600          */
601         u16 auth_types;
602
603         /**
604          * network_key - The current Network Key (PSK) or %NULL to generate new
605          *
606          * If %NULL, Registrar will generate per-device PSK. In addition, AP
607          * uses this when acting as an Enrollee to notify Registrar of the
608          * current configuration.
609          *
610          * When using WPA/WPA2-Person, this key can be either the ASCII
611          * passphrase (8..63 characters) or the 32-octet PSK (64 hex
612          * characters). When this is set to the ASCII passphrase, the PSK can
613          * be provided in the psk buffer and used per-Enrollee to control which
614          * key type is included in the Credential (e.g., to reduce calculation
615          * need on low-powered devices by provisioning PSK while still allowing
616          * other devices to get the passphrase).
617          */
618         u8 *network_key;
619
620         /**
621          * network_key_len - Length of network_key in octets
622          */
623         size_t network_key_len;
624
625         /**
626          * psk - The current network PSK
627          *
628          * This optional value can be used to provide the current PSK if
629          * network_key is set to the ASCII passphrase.
630          */
631         u8 psk[32];
632
633         /**
634          * psk_set - Whether psk value is set
635          */
636         int psk_set;
637
638         /**
639          * ap_settings - AP Settings override for M7 (only used at AP)
640          *
641          * If %NULL, AP Settings attributes will be generated based on the
642          * current network configuration.
643          */
644         u8 *ap_settings;
645
646         /**
647          * ap_settings_len - Length of ap_settings in octets
648          */
649         size_t ap_settings_len;
650
651         /**
652          * friendly_name - Friendly Name (required for UPnP)
653          */
654         char *friendly_name;
655
656         /**
657          * manufacturer_url - Manufacturer URL (optional for UPnP)
658          */
659         char *manufacturer_url;
660
661         /**
662          * model_description - Model Description (recommended for UPnP)
663          */
664         char *model_description;
665
666         /**
667          * model_url - Model URL (optional for UPnP)
668          */
669         char *model_url;
670
671         /**
672          * upc - Universal Product Code (optional for UPnP)
673          */
674         char *upc;
675
676         /**
677          * cred_cb - Callback to notify that new Credentials were received
678          * @ctx: Higher layer context data (cb_ctx)
679          * @cred: The received Credential
680          * Return: 0 on success, -1 on failure
681          */
682         int (*cred_cb)(void *ctx, const struct wps_credential *cred);
683
684         /**
685          * event_cb - Event callback (state information about progress)
686          * @ctx: Higher layer context data (cb_ctx)
687          * @event: Event type
688          * @data: Event data
689          */
690         void (*event_cb)(void *ctx, enum wps_event event,
691                          union wps_event_data *data);
692
693         /**
694          * cb_ctx: Higher layer context data for callbacks
695          */
696         void *cb_ctx;
697
698         struct upnp_wps_device_sm *wps_upnp;
699
700         /* Pending messages from UPnP PutWLANResponse */
701         struct upnp_pending_message *upnp_msgs;
702 };
703
704 struct oob_device_data {
705         char *device_name;
706         char *device_path;
707         void * (*init_func)(struct wps_context *, struct oob_device_data *,
708                             int);
709         struct wpabuf * (*read_func)(void *);
710         int (*write_func)(void *, struct wpabuf *);
711         void (*deinit_func)(void *);
712 };
713
714 struct oob_nfc_device_data {
715         int (*init_func)(char *);
716         void * (*read_func)(size_t *);
717         int (*write_func)(void *, size_t);
718         void (*deinit_func)(void);
719 };
720
721 struct wps_registrar *
722 wps_registrar_init(struct wps_context *wps,
723                    const struct wps_registrar_config *cfg);
724 void wps_registrar_deinit(struct wps_registrar *reg);
725 int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr,
726                           const u8 *uuid, const u8 *pin, size_t pin_len,
727                           int timeout);
728 int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid);
729 int wps_registrar_wps_cancel(struct wps_registrar *reg);
730 int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid);
731 int wps_registrar_button_pushed(struct wps_registrar *reg);
732 void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr,
733                                 const struct wpabuf *wps_data,
734                                 int p2p_wildcard);
735 int wps_registrar_update_ie(struct wps_registrar *reg);
736 int wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr,
737                            char *buf, size_t buflen);
738
739 unsigned int wps_pin_checksum(unsigned int pin);
740 unsigned int wps_pin_valid(unsigned int pin);
741 unsigned int wps_generate_pin(void);
742 void wps_free_pending_msgs(struct upnp_pending_message *msgs);
743
744 struct oob_device_data * wps_get_oob_device(char *device_type);
745 struct oob_nfc_device_data * wps_get_oob_nfc_device(char *device_name);
746 int wps_get_oob_method(char *method);
747 int wps_process_oob(struct wps_context *wps, struct oob_device_data *oob_dev,
748                     int registrar);
749 int wps_attr_text(struct wpabuf *data, char *buf, char *end);
750
751 struct wps_er * wps_er_init(struct wps_context *wps, const char *ifname,
752                             const char *filter);
753 void wps_er_refresh(struct wps_er *er);
754 void wps_er_deinit(struct wps_er *er, void (*cb)(void *ctx), void *ctx);
755 void wps_er_set_sel_reg(struct wps_er *er, int sel_reg, u16 dev_passwd_id,
756                         u16 sel_reg_config_methods);
757 int wps_er_pbc(struct wps_er *er, const u8 *uuid);
758 int wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *pin,
759                  size_t pin_len);
760 int wps_er_config(struct wps_er *er, const u8 *uuid, const u8 *pin,
761                   size_t pin_len, const struct wps_credential *cred);
762
763 int wps_dev_type_str2bin(const char *str, u8 dev_type[WPS_DEV_TYPE_LEN]);
764 char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
765                             size_t buf_len);
766 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);
767 u16 wps_config_methods_str2bin(const char *str);
768
769 #ifdef CONFIG_WPS_STRICT
770 int wps_validate_beacon(const struct wpabuf *wps_ie);
771 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
772                                    const u8 *addr);
773 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr);
774 int wps_validate_assoc_req(const struct wpabuf *wps_ie);
775 int wps_validate_assoc_resp(const struct wpabuf *wps_ie);
776 int wps_validate_m1(const struct wpabuf *tlvs);
777 int wps_validate_m2(const struct wpabuf *tlvs);
778 int wps_validate_m2d(const struct wpabuf *tlvs);
779 int wps_validate_m3(const struct wpabuf *tlvs);
780 int wps_validate_m4(const struct wpabuf *tlvs);
781 int wps_validate_m4_encr(const struct wpabuf *tlvs);
782 int wps_validate_m5(const struct wpabuf *tlvs);
783 int wps_validate_m5_encr(const struct wpabuf *tlvs);
784 int wps_validate_m6(const struct wpabuf *tlvs);
785 int wps_validate_m6_encr(const struct wpabuf *tlvs);
786 int wps_validate_m7(const struct wpabuf *tlvs);
787 int wps_validate_m7_encr(const struct wpabuf *tlvs, int ap);
788 int wps_validate_m8(const struct wpabuf *tlvs);
789 int wps_validate_m8_encr(const struct wpabuf *tlvs, int ap);
790 int wps_validate_wsc_ack(const struct wpabuf *tlvs);
791 int wps_validate_wsc_nack(const struct wpabuf *tlvs);
792 int wps_validate_wsc_done(const struct wpabuf *tlvs);
793 int wps_validate_upnp_set_selected_registrar(const struct wpabuf *tlvs);
794 #else /* CONFIG_WPS_STRICT */
795 static inline int wps_validate_beacon(const struct wpabuf *wps_ie){
796         return 0;
797 }
798
799 static inline int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie,
800                                                  int probe, const u8 *addr)
801 {
802         return 0;
803 }
804
805 static inline int wps_validate_probe_req(const struct wpabuf *wps_ie,
806                                          const u8 *addr)
807 {
808         return 0;
809 }
810
811 static inline int wps_validate_assoc_req(const struct wpabuf *wps_ie)
812 {
813         return 0;
814 }
815
816 static inline int wps_validate_assoc_resp(const struct wpabuf *wps_ie)
817 {
818         return 0;
819 }
820
821 static inline int wps_validate_m1(const struct wpabuf *tlvs)
822 {
823         return 0;
824 }
825
826 static inline int wps_validate_m2(const struct wpabuf *tlvs)
827 {
828         return 0;
829 }
830
831 static inline int wps_validate_m2d(const struct wpabuf *tlvs)
832 {
833         return 0;
834 }
835
836 static inline int wps_validate_m3(const struct wpabuf *tlvs)
837 {
838         return 0;
839 }
840
841 static inline int wps_validate_m4(const struct wpabuf *tlvs)
842 {
843         return 0;
844 }
845
846 static inline int wps_validate_m4_encr(const struct wpabuf *tlvs)
847 {
848         return 0;
849 }
850
851 static inline int wps_validate_m5(const struct wpabuf *tlvs)
852 {
853         return 0;
854 }
855
856 static inline int wps_validate_m5_encr(const struct wpabuf *tlvs)
857 {
858         return 0;
859 }
860
861 static inline int wps_validate_m6(const struct wpabuf *tlvs)
862 {
863         return 0;
864 }
865
866 static inline int wps_validate_m6_encr(const struct wpabuf *tlvs)
867 {
868         return 0;
869 }
870
871 static inline int wps_validate_m7(const struct wpabuf *tlvs)
872 {
873         return 0;
874 }
875
876 static inline int wps_validate_m7_encr(const struct wpabuf *tlvs, int ap)
877 {
878         return 0;
879 }
880
881 static inline int wps_validate_m8(const struct wpabuf *tlvs)
882 {
883         return 0;
884 }
885
886 static inline int wps_validate_m8_encr(const struct wpabuf *tlvs, int ap)
887 {
888         return 0;
889 }
890
891 static inline int wps_validate_wsc_ack(const struct wpabuf *tlvs)
892 {
893         return 0;
894 }
895
896 static inline int wps_validate_wsc_nack(const struct wpabuf *tlvs)
897 {
898         return 0;
899 }
900
901 static inline int wps_validate_wsc_done(const struct wpabuf *tlvs)
902 {
903         return 0;
904 }
905
906 static inline int wps_validate_upnp_set_selected_registrar(
907         const struct wpabuf *tlvs)
908 {
909         return 0;
910 }
911 #endif /* CONFIG_WPS_STRICT */
912
913 #endif /* WPS_H */