2 * wpa_supplicant - WPA definitions
3 * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 #include "common/defs.h"
19 #include "common/eapol_common.h"
20 #include "common/wpa_common.h"
24 struct wpa_config_blob
;
27 void *ctx
; /* pointer to arbitrary upper level context */
28 void *msg_ctx
; /* upper level context for wpa_msg() calls */
30 void (*set_state
)(void *ctx
, enum wpa_states state
);
31 enum wpa_states (*get_state
)(void *ctx
);
32 void (*deauthenticate
)(void * ctx
, int reason_code
);
33 void (*disassociate
)(void *ctx
, int reason_code
);
34 int (*set_key
)(void *ctx
, enum wpa_alg alg
,
35 const u8
*addr
, int key_idx
, int set_tx
,
36 const u8
*seq
, size_t seq_len
,
37 const u8
*key
, size_t key_len
);
38 void * (*get_network_ctx
)(void *ctx
);
39 int (*get_bssid
)(void *ctx
, u8
*bssid
);
40 int (*ether_send
)(void *ctx
, const u8
*dest
, u16 proto
, const u8
*buf
,
42 int (*get_beacon_ie
)(void *ctx
);
43 void (*cancel_auth_timeout
)(void *ctx
);
44 u8
* (*alloc_eapol
)(void *ctx
, u8 type
, const void *data
, u16 data_len
,
45 size_t *msg_len
, void **data_pos
);
46 int (*add_pmkid
)(void *ctx
, const u8
*bssid
, const u8
*pmkid
);
47 int (*remove_pmkid
)(void *ctx
, const u8
*bssid
, const u8
*pmkid
);
48 void (*set_config_blob
)(void *ctx
, struct wpa_config_blob
*blob
);
49 const struct wpa_config_blob
* (*get_config_blob
)(void *ctx
,
51 int (*mlme_setprotection
)(void *ctx
, const u8
*addr
,
52 int protection_type
, int key_type
);
53 int (*update_ft_ies
)(void *ctx
, const u8
*md
, const u8
*ies
,
55 int (*send_ft_action
)(void *ctx
, u8 action
, const u8
*target_ap
,
56 const u8
*ies
, size_t ies_len
);
57 int (*mark_authenticated
)(void *ctx
, const u8
*target_ap
);
61 enum wpa_sm_conf_params
{
62 RSNA_PMK_LIFETIME
/* dot11RSNAConfigPMKLifetime */,
63 RSNA_PMK_REAUTH_THRESHOLD
/* dot11RSNAConfigPMKReauthThreshold */,
64 RSNA_SA_TIMEOUT
/* dot11RSNAConfigSATimeout */,
70 WPA_PARAM_RSN_ENABLED
,
74 struct rsn_supp_config
{
77 int allowed_pairwise_cipher
; /* bitfield of WPA_CIPHER_* */
78 int proactive_key_caching
;
88 struct wpa_sm
* wpa_sm_init(struct wpa_sm_ctx
*ctx
);
89 void wpa_sm_deinit(struct wpa_sm
*sm
);
90 void wpa_sm_notify_assoc(struct wpa_sm
*sm
, const u8
*bssid
);
91 void wpa_sm_notify_disassoc(struct wpa_sm
*sm
);
92 void wpa_sm_set_pmk(struct wpa_sm
*sm
, const u8
*pmk
, size_t pmk_len
);
93 void wpa_sm_set_pmk_from_pmksa(struct wpa_sm
*sm
);
94 void wpa_sm_set_fast_reauth(struct wpa_sm
*sm
, int fast_reauth
);
95 void wpa_sm_set_scard_ctx(struct wpa_sm
*sm
, void *scard_ctx
);
96 void wpa_sm_set_config(struct wpa_sm
*sm
, struct rsn_supp_config
*config
);
97 void wpa_sm_set_own_addr(struct wpa_sm
*sm
, const u8
*addr
);
98 void wpa_sm_set_ifname(struct wpa_sm
*sm
, const char *ifname
,
99 const char *bridge_ifname
);
100 void wpa_sm_set_eapol(struct wpa_sm
*sm
, struct eapol_sm
*eapol
);
101 int wpa_sm_set_assoc_wpa_ie(struct wpa_sm
*sm
, const u8
*ie
, size_t len
);
102 int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm
*sm
, u8
*wpa_ie
,
104 int wpa_sm_set_ap_wpa_ie(struct wpa_sm
*sm
, const u8
*ie
, size_t len
);
105 int wpa_sm_set_ap_rsn_ie(struct wpa_sm
*sm
, const u8
*ie
, size_t len
);
106 int wpa_sm_get_mib(struct wpa_sm
*sm
, char *buf
, size_t buflen
);
108 int wpa_sm_set_param(struct wpa_sm
*sm
, enum wpa_sm_conf_params param
,
110 unsigned int wpa_sm_get_param(struct wpa_sm
*sm
,
111 enum wpa_sm_conf_params param
);
113 int wpa_sm_get_status(struct wpa_sm
*sm
, char *buf
, size_t buflen
,
116 void wpa_sm_key_request(struct wpa_sm
*sm
, int error
, int pairwise
);
118 int wpa_parse_wpa_ie(const u8
*wpa_ie
, size_t wpa_ie_len
,
119 struct wpa_ie_data
*data
);
121 void wpa_sm_aborted_cached(struct wpa_sm
*sm
);
122 int wpa_sm_rx_eapol(struct wpa_sm
*sm
, const u8
*src_addr
,
123 const u8
*buf
, size_t len
);
124 int wpa_sm_parse_own_wpa_ie(struct wpa_sm
*sm
, struct wpa_ie_data
*data
);
125 int wpa_sm_pmksa_cache_list(struct wpa_sm
*sm
, char *buf
, size_t len
);
126 void wpa_sm_drop_sa(struct wpa_sm
*sm
);
127 int wpa_sm_has_ptk(struct wpa_sm
*sm
);
129 #else /* CONFIG_NO_WPA */
131 static inline struct wpa_sm
* wpa_sm_init(struct wpa_sm_ctx
*ctx
)
133 return (struct wpa_sm
*) 1;
136 static inline void wpa_sm_deinit(struct wpa_sm
*sm
)
140 static inline void wpa_sm_notify_assoc(struct wpa_sm
*sm
, const u8
*bssid
)
144 static inline void wpa_sm_notify_disassoc(struct wpa_sm
*sm
)
148 static inline void wpa_sm_set_pmk(struct wpa_sm
*sm
, const u8
*pmk
,
153 static inline void wpa_sm_set_pmk_from_pmksa(struct wpa_sm
*sm
)
157 static inline void wpa_sm_set_fast_reauth(struct wpa_sm
*sm
, int fast_reauth
)
161 static inline void wpa_sm_set_scard_ctx(struct wpa_sm
*sm
, void *scard_ctx
)
165 static inline void wpa_sm_set_config(struct wpa_sm
*sm
,
166 struct rsn_supp_config
*config
)
170 static inline void wpa_sm_set_own_addr(struct wpa_sm
*sm
, const u8
*addr
)
174 static inline void wpa_sm_set_ifname(struct wpa_sm
*sm
, const char *ifname
,
175 const char *bridge_ifname
)
179 static inline void wpa_sm_set_eapol(struct wpa_sm
*sm
, struct eapol_sm
*eapol
)
183 static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm
*sm
, const u8
*ie
,
189 static inline int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm
*sm
,
196 static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm
*sm
, const u8
*ie
,
202 static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm
*sm
, const u8
*ie
,
208 static inline int wpa_sm_get_mib(struct wpa_sm
*sm
, char *buf
, size_t buflen
)
213 static inline int wpa_sm_set_param(struct wpa_sm
*sm
,
214 enum wpa_sm_conf_params param
,
220 static inline unsigned int wpa_sm_get_param(struct wpa_sm
*sm
,
221 enum wpa_sm_conf_params param
)
226 static inline int wpa_sm_get_status(struct wpa_sm
*sm
, char *buf
,
227 size_t buflen
, int verbose
)
232 static inline void wpa_sm_key_request(struct wpa_sm
*sm
, int error
,
237 static inline int wpa_parse_wpa_ie(const u8
*wpa_ie
, size_t wpa_ie_len
,
238 struct wpa_ie_data
*data
)
243 static inline void wpa_sm_aborted_cached(struct wpa_sm
*sm
)
247 static inline int wpa_sm_rx_eapol(struct wpa_sm
*sm
, const u8
*src_addr
,
248 const u8
*buf
, size_t len
)
253 static inline int wpa_sm_parse_own_wpa_ie(struct wpa_sm
*sm
,
254 struct wpa_ie_data
*data
)
259 static inline int wpa_sm_pmksa_cache_list(struct wpa_sm
*sm
, char *buf
,
265 static inline void wpa_sm_drop_sa(struct wpa_sm
*sm
)
269 static inline int wpa_sm_has_ptk(struct wpa_sm
*sm
)
274 #endif /* CONFIG_NO_WPA */
276 #ifdef CONFIG_PEERKEY
277 int wpa_sm_stkstart(struct wpa_sm
*sm
, const u8
*peer
);
278 #else /* CONFIG_PEERKEY */
279 static inline int wpa_sm_stkstart(struct wpa_sm
*sm
, const u8
*peer
)
283 #endif /* CONFIG_PEERKEY */
285 #ifdef CONFIG_IEEE80211R
287 int wpa_sm_set_ft_params(struct wpa_sm
*sm
, const u8
*ies
, size_t ies_len
);
288 int wpa_ft_prepare_auth_request(struct wpa_sm
*sm
, const u8
*mdie
);
289 int wpa_ft_process_response(struct wpa_sm
*sm
, const u8
*ies
, size_t ies_len
,
290 int ft_action
, const u8
*target_ap
,
291 const u8
*ric_ies
, size_t ric_ies_len
);
292 int wpa_ft_is_completed(struct wpa_sm
*sm
);
293 int wpa_ft_validate_reassoc_resp(struct wpa_sm
*sm
, const u8
*ies
,
294 size_t ies_len
, const u8
*src_addr
);
295 int wpa_ft_start_over_ds(struct wpa_sm
*sm
, const u8
*target_ap
,
298 #else /* CONFIG_IEEE80211R */
301 wpa_sm_set_ft_params(struct wpa_sm
*sm
, const u8
*ies
, size_t ies_len
)
306 static inline int wpa_ft_prepare_auth_request(struct wpa_sm
*sm
,
313 wpa_ft_process_response(struct wpa_sm
*sm
, const u8
*ies
, size_t ies_len
,
314 int ft_action
, const u8
*target_ap
)
319 static inline int wpa_ft_is_completed(struct wpa_sm
*sm
)
325 wpa_ft_validate_reassoc_resp(struct wpa_sm
*sm
, const u8
*ies
, size_t ies_len
,
331 #endif /* CONFIG_IEEE80211R */