13 #include "wps_attr_parse.h" 15 struct wps_nfc_pw_token;
41 SEND_M1, RECV_M2, SEND_M3, RECV_M4, SEND_M5, RECV_M6, SEND_M7,
42 RECV_M8, RECEIVED_M2D, WPS_MSG_DONE, RECV_ACK, WPS_FINISHED,
46 RECV_M1, SEND_M2, RECV_M3, SEND_M4, RECV_M5, SEND_M6,
47 RECV_M7, SEND_M8, RECV_DONE, SEND_M2D, RECV_M2D_ACK
50 u8 uuid_e[WPS_UUID_LEN];
51 u8 uuid_r[WPS_UUID_LEN];
52 u8 mac_addr_e[ETH_ALEN];
53 u8 nonce_e[WPS_NONCE_LEN];
54 u8 nonce_r[WPS_NONCE_LEN];
57 u8 snonce[2 * WPS_SECRET_NONCE_LEN];
58 u8 peer_hash1[WPS_HASH_LEN];
59 u8 peer_hash2[WPS_HASH_LEN];
62 struct wpabuf *dh_pubkey_e;
63 struct wpabuf *dh_pubkey_r;
64 u8 authkey[WPS_AUTHKEY_LEN];
65 u8 keywrapkey[WPS_KEYWRAPKEY_LEN];
66 u8 emsk[WPS_EMSK_LEN];
71 size_t dev_password_len;
75 size_t alt_dev_password_len;
78 u8 peer_pubkey_hash[WPS_OOB_PUBKEY_HASH_LEN];
79 int peer_pubkey_hash_set;
108 u16 error_indication;
117 void (*ap_settings_cb)(
void *ctx,
const struct wps_credential *cred);
118 void *ap_settings_cb_ctx;
123 u8 p2p_dev_addr[ETH_ALEN];
127 struct wps_nfc_pw_token *nfc_pw_token;
132 void wps_kdf(
const u8 *key,
const u8 *label_prefix,
size_t label_prefix_len,
133 const char *label, u8 *res,
size_t res_len);
135 int wps_derive_psk(
struct wps_data *
wps,
const u8 *dev_passwd,
136 size_t dev_passwd_len);
139 void wps_fail_event(
struct wps_context *
wps,
enum wps_msg_type msg,
140 u16
config_error, u16 error_indication,
const u8 *mac_addr);
141 void wps_success_event(
struct wps_context *
wps,
const u8 *mac_addr);
142 void wps_pwd_auth_fail_event(
struct wps_context *
wps,
int enrollee,
int part,
154 int wps_build_req_type(
struct wpabuf *msg,
enum wps_request_type type);
155 int wps_build_resp_type(
struct wpabuf *msg,
enum wps_response_type type);
156 int wps_build_config_methods(
struct wpabuf *msg, u16 methods);
157 int wps_build_uuid_e(
struct wpabuf *msg,
const u8 *uuid);
158 int wps_build_dev_password_id(
struct wpabuf *msg, u16
id);
159 int wps_build_config_error(
struct wpabuf *msg, u16 err);
164 int wps_build_version(
struct wpabuf *msg);
165 int wps_build_wfa_ext(
struct wpabuf *msg,
int req_to_enroll,
166 const u8 *auth_macs,
size_t auth_macs_count);
167 int wps_build_msg_type(
struct wpabuf *msg,
enum wps_msg_type msg_type);
174 int wps_build_oob_dev_pw(
struct wpabuf *msg, u16 dev_pw_id,
175 const struct wpabuf *pubkey,
const u8 *dev_pw,
177 struct wpabuf * wps_ie_encapsulate(
struct wpabuf *data);
178 int wps_build_mac_addr(
struct wpabuf *msg,
const u8 *addr);
179 int wps_build_rf_bands_attr(
struct wpabuf *msg, u8 rf_bands);
180 int wps_build_ap_channel(
struct wpabuf *msg, u16 ap_channel);
183 int wps_process_authenticator(
struct wps_data *
wps,
const u8 *authenticator,
184 const struct wpabuf *msg);
186 const u8 *key_wrap_auth);
194 enum wsc_op_code *op_code);
195 enum wps_process_res wps_enrollee_process_msg(
struct wps_data *
wps,
196 enum wsc_op_code op_code,
197 const struct wpabuf *msg);
201 enum wsc_op_code *op_code);
202 enum wps_process_res wps_registrar_process_msg(
struct wps_data *
wps,
203 enum wsc_op_code op_code,
204 const struct wpabuf *msg);
208 void wps_registrar_selected_registrar_changed(
struct wps_registrar *reg,
210 const u8 * wps_authorized_macs(
struct wps_registrar *reg,
size_t *count);
212 const u8 *addr,
const u8 *uuid_e);
213 void wps_registrar_remove_nfc_pw_token(
struct wps_registrar *reg,
214 struct wps_nfc_pw_token *token);
215 int wps_cb_new_psk(
struct wps_registrar *reg,
const u8 *mac_addr,
216 const u8 *p2p_dev_addr,
const u8 *psk,
size_t psk_len);
struct wps_data - WPS registration protocol data
Definition: wps_i.h:23
struct wps_context * wps
wps - Pointer to long term WPS context
Definition: wps_i.h:27
u16 config_error
config_error - Configuration Error value to be used in NACK
Definition: wps_i.h:107
Definition: wps_registrar.c:141
int er
er - Whether the local end is an external registrar
Definition: wps_i.h:37
u8 request_type
request_type - Request Type attribute from (Re)AssocReq
Definition: wps_i.h:84
int registrar
registrar - Whether this end is a Registrar
Definition: wps_i.h:32
struct wps_device_data - WPS Device Data : Device MAC address : Device Name (0..32 octets encoded in ...
Definition: wps.h:85
u16 encr_type
encr_type - Available encryption types
Definition: wps_i.h:89
Definition: wps_attr_parse.h:14
struct wps_credential - WPS Credential : SSID : Length of SSID : Authentication Type (WPS_AUTH_OPEN...
Definition: wps.h:47
u16 auth_type
auth_type - Available authentication types
Definition: wps_i.h:94
struct wps_context - Long term WPS context data
Definition: wps.h:594