automake build system
[mech_eap.orig] / 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                 u16 config_error;
454         } fail;
455
456         struct wps_event_pwd_auth_fail {
457                 int enrollee;
458                 int part;
459         } pwd_auth_fail;
460
461         struct wps_event_er_ap {
462                 const u8 *uuid;
463                 const u8 *mac_addr;
464                 const char *friendly_name;
465                 const char *manufacturer;
466                 const char *manufacturer_url;
467                 const char *model_description;
468                 const char *model_name;
469                 const char *model_number;
470                 const char *model_url;
471                 const char *serial_number;
472                 const char *upc;
473                 const u8 *pri_dev_type;
474                 u8 wps_state;
475         } ap;
476
477         struct wps_event_er_enrollee {
478                 const u8 *uuid;
479                 const u8 *mac_addr;
480                 int m1_received;
481                 u16 config_methods;
482                 u16 dev_passwd_id;
483                 const u8 *pri_dev_type;
484                 const char *dev_name;
485                 const char *manufacturer;
486                 const char *model_name;
487                 const char *model_number;
488                 const char *serial_number;
489         } enrollee;
490
491         struct wps_event_er_ap_settings {
492                 const u8 *uuid;
493                 const struct wps_credential *cred;
494         } ap_settings;
495 };
496
497 /**
498  * struct upnp_pending_message - Pending PutWLANResponse messages
499  * @next: Pointer to next pending message or %NULL
500  * @addr: NewWLANEventMAC
501  * @msg: NewMessage
502  * @type: Message Type
503  */
504 struct upnp_pending_message {
505         struct upnp_pending_message *next;
506         u8 addr[ETH_ALEN];
507         struct wpabuf *msg;
508         enum wps_msg_type type;
509 };
510
511 /**
512  * struct wps_context - Long term WPS context data
513  *
514  * This data is stored at the higher layer Authenticator or Supplicant data
515  * structures and it is maintained over multiple registration protocol runs.
516  */
517 struct wps_context {
518         /**
519          * ap - Whether the local end is an access point
520          */
521         int ap;
522
523         /**
524          * registrar - Pointer to WPS registrar data from wps_registrar_init()
525          */
526         struct wps_registrar *registrar;
527
528         /**
529          * wps_state - Current WPS state
530          */
531         enum wps_state wps_state;
532
533         /**
534          * ap_setup_locked - Whether AP setup is locked (only used at AP)
535          */
536         int ap_setup_locked;
537
538         /**
539          * uuid - Own UUID
540          */
541         u8 uuid[16];
542
543         /**
544          * ssid - SSID
545          *
546          * This SSID is used by the Registrar to fill in information for
547          * Credentials. In addition, AP uses it when acting as an Enrollee to
548          * notify Registrar of the current configuration.
549          */
550         u8 ssid[32];
551
552         /**
553          * ssid_len - Length of ssid in octets
554          */
555         size_t ssid_len;
556
557         /**
558          * dev - Own WPS device data
559          */
560         struct wps_device_data dev;
561
562         /**
563          * oob_conf - OOB Config data
564          */
565         struct oob_conf_data oob_conf;
566
567         /**
568          * oob_dev_pw_id - OOB Device password id
569          */
570         u16 oob_dev_pw_id;
571
572         /**
573          * dh_ctx - Context data for Diffie-Hellman operation
574          */
575         void *dh_ctx;
576
577         /**
578          * dh_privkey - Diffie-Hellman private key
579          */
580         struct wpabuf *dh_privkey;
581
582         /**
583          * dh_pubkey_oob - Diffie-Hellman public key
584          */
585         struct wpabuf *dh_pubkey;
586
587         /**
588          * config_methods - Enabled configuration methods
589          *
590          * Bit field of WPS_CONFIG_*
591          */
592         u16 config_methods;
593
594         /**
595          * encr_types - Enabled encryption types (bit field of WPS_ENCR_*)
596          */
597         u16 encr_types;
598
599         /**
600          * auth_types - Authentication types (bit field of WPS_AUTH_*)
601          */
602         u16 auth_types;
603
604         /**
605          * network_key - The current Network Key (PSK) or %NULL to generate new
606          *
607          * If %NULL, Registrar will generate per-device PSK. In addition, AP
608          * uses this when acting as an Enrollee to notify Registrar of the
609          * current configuration.
610          *
611          * When using WPA/WPA2-Person, this key can be either the ASCII
612          * passphrase (8..63 characters) or the 32-octet PSK (64 hex
613          * characters). When this is set to the ASCII passphrase, the PSK can
614          * be provided in the psk buffer and used per-Enrollee to control which
615          * key type is included in the Credential (e.g., to reduce calculation
616          * need on low-powered devices by provisioning PSK while still allowing
617          * other devices to get the passphrase).
618          */
619         u8 *network_key;
620
621         /**
622          * network_key_len - Length of network_key in octets
623          */
624         size_t network_key_len;
625
626         /**
627          * psk - The current network PSK
628          *
629          * This optional value can be used to provide the current PSK if
630          * network_key is set to the ASCII passphrase.
631          */
632         u8 psk[32];
633
634         /**
635          * psk_set - Whether psk value is set
636          */
637         int psk_set;
638
639         /**
640          * ap_settings - AP Settings override for M7 (only used at AP)
641          *
642          * If %NULL, AP Settings attributes will be generated based on the
643          * current network configuration.
644          */
645         u8 *ap_settings;
646
647         /**
648          * ap_settings_len - Length of ap_settings in octets
649          */
650         size_t ap_settings_len;
651
652         /**
653          * friendly_name - Friendly Name (required for UPnP)
654          */
655         char *friendly_name;
656
657         /**
658          * manufacturer_url - Manufacturer URL (optional for UPnP)
659          */
660         char *manufacturer_url;
661
662         /**
663          * model_description - Model Description (recommended for UPnP)
664          */
665         char *model_description;
666
667         /**
668          * model_url - Model URL (optional for UPnP)
669          */
670         char *model_url;
671
672         /**
673          * upc - Universal Product Code (optional for UPnP)
674          */
675         char *upc;
676
677         /**
678          * cred_cb - Callback to notify that new Credentials were received
679          * @ctx: Higher layer context data (cb_ctx)
680          * @cred: The received Credential
681          * Return: 0 on success, -1 on failure
682          */
683         int (*cred_cb)(void *ctx, const struct wps_credential *cred);
684
685         /**
686          * event_cb - Event callback (state information about progress)
687          * @ctx: Higher layer context data (cb_ctx)
688          * @event: Event type
689          * @data: Event data
690          */
691         void (*event_cb)(void *ctx, enum wps_event event,
692                          union wps_event_data *data);
693
694         /**
695          * cb_ctx: Higher layer context data for callbacks
696          */
697         void *cb_ctx;
698
699         struct upnp_wps_device_sm *wps_upnp;
700
701         /* Pending messages from UPnP PutWLANResponse */
702         struct upnp_pending_message *upnp_msgs;
703 };
704
705 struct oob_device_data {
706         char *device_name;
707         char *device_path;
708         void * (*init_func)(struct wps_context *, struct oob_device_data *,
709                             int);
710         struct wpabuf * (*read_func)(void *);
711         int (*write_func)(void *, struct wpabuf *);
712         void (*deinit_func)(void *);
713 };
714
715 struct oob_nfc_device_data {
716         int (*init_func)(char *);
717         void * (*read_func)(size_t *);
718         int (*write_func)(void *, size_t);
719         void (*deinit_func)(void);
720 };
721
722 struct wps_registrar *
723 wps_registrar_init(struct wps_context *wps,
724                    const struct wps_registrar_config *cfg);
725 void wps_registrar_deinit(struct wps_registrar *reg);
726 int wps_registrar_add_pin(struct wps_registrar *reg, const u8 *addr,
727                           const u8 *uuid, const u8 *pin, size_t pin_len,
728                           int timeout);
729 int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid);
730 int wps_registrar_wps_cancel(struct wps_registrar *reg);
731 int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid);
732 int wps_registrar_button_pushed(struct wps_registrar *reg);
733 void wps_registrar_probe_req_rx(struct wps_registrar *reg, const u8 *addr,
734                                 const struct wpabuf *wps_data,
735                                 int p2p_wildcard);
736 int wps_registrar_update_ie(struct wps_registrar *reg);
737 int wps_registrar_get_info(struct wps_registrar *reg, const u8 *addr,
738                            char *buf, size_t buflen);
739
740 unsigned int wps_pin_checksum(unsigned int pin);
741 unsigned int wps_pin_valid(unsigned int pin);
742 unsigned int wps_generate_pin(void);
743 void wps_free_pending_msgs(struct upnp_pending_message *msgs);
744
745 struct oob_device_data * wps_get_oob_device(char *device_type);
746 struct oob_nfc_device_data * wps_get_oob_nfc_device(char *device_name);
747 int wps_get_oob_method(char *method);
748 int wps_process_oob(struct wps_context *wps, struct oob_device_data *oob_dev,
749                     int registrar);
750 int wps_attr_text(struct wpabuf *data, char *buf, char *end);
751
752 struct wps_er * wps_er_init(struct wps_context *wps, const char *ifname,
753                             const char *filter);
754 void wps_er_refresh(struct wps_er *er);
755 void wps_er_deinit(struct wps_er *er, void (*cb)(void *ctx), void *ctx);
756 void wps_er_set_sel_reg(struct wps_er *er, int sel_reg, u16 dev_passwd_id,
757                         u16 sel_reg_config_methods);
758 int wps_er_pbc(struct wps_er *er, const u8 *uuid);
759 int wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *pin,
760                  size_t pin_len);
761 int wps_er_config(struct wps_er *er, const u8 *uuid, const u8 *pin,
762                   size_t pin_len, const struct wps_credential *cred);
763
764 int wps_dev_type_str2bin(const char *str, u8 dev_type[WPS_DEV_TYPE_LEN]);
765 char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
766                             size_t buf_len);
767 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);
768 u16 wps_config_methods_str2bin(const char *str);
769
770 #ifdef CONFIG_WPS_STRICT
771 int wps_validate_beacon(const struct wpabuf *wps_ie);
772 int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe,
773                                    const u8 *addr);
774 int wps_validate_probe_req(const struct wpabuf *wps_ie, const u8 *addr);
775 int wps_validate_assoc_req(const struct wpabuf *wps_ie);
776 int wps_validate_assoc_resp(const struct wpabuf *wps_ie);
777 int wps_validate_m1(const struct wpabuf *tlvs);
778 int wps_validate_m2(const struct wpabuf *tlvs);
779 int wps_validate_m2d(const struct wpabuf *tlvs);
780 int wps_validate_m3(const struct wpabuf *tlvs);
781 int wps_validate_m4(const struct wpabuf *tlvs);
782 int wps_validate_m4_encr(const struct wpabuf *tlvs, int wps2);
783 int wps_validate_m5(const struct wpabuf *tlvs);
784 int wps_validate_m5_encr(const struct wpabuf *tlvs, int wps2);
785 int wps_validate_m6(const struct wpabuf *tlvs);
786 int wps_validate_m6_encr(const struct wpabuf *tlvs, int wps2);
787 int wps_validate_m7(const struct wpabuf *tlvs);
788 int wps_validate_m7_encr(const struct wpabuf *tlvs, int ap, int wps2);
789 int wps_validate_m8(const struct wpabuf *tlvs);
790 int wps_validate_m8_encr(const struct wpabuf *tlvs, int ap, int wps2);
791 int wps_validate_wsc_ack(const struct wpabuf *tlvs);
792 int wps_validate_wsc_nack(const struct wpabuf *tlvs);
793 int wps_validate_wsc_done(const struct wpabuf *tlvs);
794 int wps_validate_upnp_set_selected_registrar(const struct wpabuf *tlvs);
795 #else /* CONFIG_WPS_STRICT */
796 static inline int wps_validate_beacon(const struct wpabuf *wps_ie){
797         return 0;
798 }
799
800 static inline int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie,
801                                                  int probe, const u8 *addr)
802 {
803         return 0;
804 }
805
806 static inline int wps_validate_probe_req(const struct wpabuf *wps_ie,
807                                          const u8 *addr)
808 {
809         return 0;
810 }
811
812 static inline int wps_validate_assoc_req(const struct wpabuf *wps_ie)
813 {
814         return 0;
815 }
816
817 static inline int wps_validate_assoc_resp(const struct wpabuf *wps_ie)
818 {
819         return 0;
820 }
821
822 static inline int wps_validate_m1(const struct wpabuf *tlvs)
823 {
824         return 0;
825 }
826
827 static inline int wps_validate_m2(const struct wpabuf *tlvs)
828 {
829         return 0;
830 }
831
832 static inline int wps_validate_m2d(const struct wpabuf *tlvs)
833 {
834         return 0;
835 }
836
837 static inline int wps_validate_m3(const struct wpabuf *tlvs)
838 {
839         return 0;
840 }
841
842 static inline int wps_validate_m4(const struct wpabuf *tlvs)
843 {
844         return 0;
845 }
846
847 static inline int wps_validate_m4_encr(const struct wpabuf *tlvs, int wps2)
848 {
849         return 0;
850 }
851
852 static inline int wps_validate_m5(const struct wpabuf *tlvs)
853 {
854         return 0;
855 }
856
857 static inline int wps_validate_m5_encr(const struct wpabuf *tlvs, int wps2)
858 {
859         return 0;
860 }
861
862 static inline int wps_validate_m6(const struct wpabuf *tlvs)
863 {
864         return 0;
865 }
866
867 static inline int wps_validate_m6_encr(const struct wpabuf *tlvs, int wps2)
868 {
869         return 0;
870 }
871
872 static inline int wps_validate_m7(const struct wpabuf *tlvs)
873 {
874         return 0;
875 }
876
877 static inline int wps_validate_m7_encr(const struct wpabuf *tlvs, int ap,
878                                        int wps2)
879 {
880         return 0;
881 }
882
883 static inline int wps_validate_m8(const struct wpabuf *tlvs)
884 {
885         return 0;
886 }
887
888 static inline int wps_validate_m8_encr(const struct wpabuf *tlvs, int ap,
889                                        int wps2)
890 {
891         return 0;
892 }
893
894 static inline int wps_validate_wsc_ack(const struct wpabuf *tlvs)
895 {
896         return 0;
897 }
898
899 static inline int wps_validate_wsc_nack(const struct wpabuf *tlvs)
900 {
901         return 0;
902 }
903
904 static inline int wps_validate_wsc_done(const struct wpabuf *tlvs)
905 {
906         return 0;
907 }
908
909 static inline int wps_validate_upnp_set_selected_registrar(
910         const struct wpabuf *tlvs)
911 {
912         return 0;
913 }
914 #endif /* CONFIG_WPS_STRICT */
915
916 #endif /* WPS_H */