]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/rsn_supp/wpa.h
nl80211: Implement TDLS callback functions and propagate capabilities
[thirdparty/hostap.git] / src / rsn_supp / wpa.h
CommitLineData
6fc6879b
JM
1/*
2 * wpa_supplicant - WPA definitions
3 * Copyright (c) 2003-2007, 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 WPA_H
16#define WPA_H
17
90973fb2
JM
18#include "common/defs.h"
19#include "common/eapol_common.h"
20#include "common/wpa_common.h"
6fc6879b 21
6fc6879b
JM
22struct wpa_sm;
23struct eapol_sm;
24struct wpa_config_blob;
25
26struct wpa_sm_ctx {
27 void *ctx; /* pointer to arbitrary upper level context */
0f057fb2 28 void *msg_ctx; /* upper level context for wpa_msg() calls */
6fc6879b 29
71934751
JM
30 void (*set_state)(void *ctx, enum wpa_states state);
31 enum wpa_states (*get_state)(void *ctx);
6fc6879b
JM
32 void (*deauthenticate)(void * ctx, int reason_code);
33 void (*disassociate)(void *ctx, int reason_code);
71934751 34 int (*set_key)(void *ctx, enum wpa_alg alg,
6fc6879b
JM
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,
41 size_t len);
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,
50 const char *name);
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,
54 size_t ies_len);
55 int (*send_ft_action)(void *ctx, u8 action, const u8 *target_ap,
56 const u8 *ies, size_t ies_len);
2a7e7f4e 57 int (*mark_authenticated)(void *ctx, const u8 *target_ap);
281ff0aa
GP
58#ifdef CONFIG_TDLS
59 int (*send_tdls_mgmt)(void *ctx, const u8 *dst,
60 u8 action_code, u8 dialog_token,
61 u16 status_code, const u8 *buf, size_t len);
62 int (*tdls_oper)(void *ctx, int oper, const u8 *peer);
63#endif /* CONFIG_TDLS */
b14a210c
JB
64 void (*set_rekey_offload)(void *ctx, const u8 *kek, const u8 *kck,
65 const u8 *replay_ctr);
6fc6879b
JM
66};
67
68
69enum wpa_sm_conf_params {
70 RSNA_PMK_LIFETIME /* dot11RSNAConfigPMKLifetime */,
71 RSNA_PMK_REAUTH_THRESHOLD /* dot11RSNAConfigPMKReauthThreshold */,
72 RSNA_SA_TIMEOUT /* dot11RSNAConfigSATimeout */,
73 WPA_PARAM_PROTO,
74 WPA_PARAM_PAIRWISE,
75 WPA_PARAM_GROUP,
76 WPA_PARAM_KEY_MGMT,
77 WPA_PARAM_MGMT_GROUP,
e820cf95
JM
78 WPA_PARAM_RSN_ENABLED,
79 WPA_PARAM_MFP
6fc6879b
JM
80};
81
82struct rsn_supp_config {
83 void *network_ctx;
84 int peerkey_enabled;
85 int allowed_pairwise_cipher; /* bitfield of WPA_CIPHER_* */
86 int proactive_key_caching;
87 int eap_workaround;
88 void *eap_conf_ctx;
89 const u8 *ssid;
90 size_t ssid_len;
581a8cde 91 int wpa_ptk_rekey;
6fc6879b
JM
92};
93
94#ifndef CONFIG_NO_WPA
95
96struct wpa_sm * wpa_sm_init(struct wpa_sm_ctx *ctx);
97void wpa_sm_deinit(struct wpa_sm *sm);
98void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid);
99void wpa_sm_notify_disassoc(struct wpa_sm *sm);
100void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk, size_t pmk_len);
101void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm);
102void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth);
103void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx);
104void wpa_sm_set_config(struct wpa_sm *sm, struct rsn_supp_config *config);
105void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr);
106void wpa_sm_set_ifname(struct wpa_sm *sm, const char *ifname,
107 const char *bridge_ifname);
108void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol);
109int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
110int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm *sm, u8 *wpa_ie,
111 size_t *wpa_ie_len);
112int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
113int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len);
114int wpa_sm_get_mib(struct wpa_sm *sm, char *buf, size_t buflen);
115
116int wpa_sm_set_param(struct wpa_sm *sm, enum wpa_sm_conf_params param,
117 unsigned int value);
118unsigned int wpa_sm_get_param(struct wpa_sm *sm,
119 enum wpa_sm_conf_params param);
120
121int wpa_sm_get_status(struct wpa_sm *sm, char *buf, size_t buflen,
122 int verbose);
123
124void wpa_sm_key_request(struct wpa_sm *sm, int error, int pairwise);
125
126int wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len,
127 struct wpa_ie_data *data);
128
129void wpa_sm_aborted_cached(struct wpa_sm *sm);
130int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
131 const u8 *buf, size_t len);
132int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm, struct wpa_ie_data *data);
540264a7 133int wpa_sm_pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len);
32d5295f 134void wpa_sm_drop_sa(struct wpa_sm *sm);
0d7b4409 135int wpa_sm_has_ptk(struct wpa_sm *sm);
6fc6879b 136
b14a210c
JB
137void wpa_sm_update_replay_ctr(struct wpa_sm *sm, const u8 *replay_ctr);
138
d8a790b9
JM
139void wpa_sm_pmksa_cache_flush(struct wpa_sm *sm, void *network_ctx);
140
6fc6879b
JM
141#else /* CONFIG_NO_WPA */
142
143static inline struct wpa_sm * wpa_sm_init(struct wpa_sm_ctx *ctx)
144{
145 return (struct wpa_sm *) 1;
146}
147
148static inline void wpa_sm_deinit(struct wpa_sm *sm)
149{
150}
151
152static inline void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid)
153{
154}
155
156static inline void wpa_sm_notify_disassoc(struct wpa_sm *sm)
157{
158}
159
160static inline void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk,
161 size_t pmk_len)
162{
163}
164
165static inline void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm)
166{
167}
168
169static inline void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth)
170{
171}
172
173static inline void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx)
174{
175}
176
177static inline void wpa_sm_set_config(struct wpa_sm *sm,
178 struct rsn_supp_config *config)
179{
180}
181
182static inline void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr)
183{
184}
185
186static inline void wpa_sm_set_ifname(struct wpa_sm *sm, const char *ifname,
187 const char *bridge_ifname)
188{
189}
190
191static inline void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol)
192{
193}
194
195static inline int wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie,
196 size_t len)
197{
198 return -1;
199}
200
201static inline int wpa_sm_set_assoc_wpa_ie_default(struct wpa_sm *sm,
202 u8 *wpa_ie,
203 size_t *wpa_ie_len)
204{
205 return -1;
206}
207
208static inline int wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie,
209 size_t len)
210{
211 return -1;
212}
213
214static inline int wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie,
215 size_t len)
216{
217 return -1;
218}
219
220static inline int wpa_sm_get_mib(struct wpa_sm *sm, char *buf, size_t buflen)
221{
222 return 0;
223}
224
225static inline int wpa_sm_set_param(struct wpa_sm *sm,
226 enum wpa_sm_conf_params param,
227 unsigned int value)
228{
229 return -1;
230}
231
232static inline unsigned int wpa_sm_get_param(struct wpa_sm *sm,
233 enum wpa_sm_conf_params param)
234{
235 return 0;
236}
237
238static inline int wpa_sm_get_status(struct wpa_sm *sm, char *buf,
239 size_t buflen, int verbose)
240{
241 return 0;
242}
243
244static inline void wpa_sm_key_request(struct wpa_sm *sm, int error,
245 int pairwise)
246{
247}
248
249static inline int wpa_parse_wpa_ie(const u8 *wpa_ie, size_t wpa_ie_len,
250 struct wpa_ie_data *data)
251{
252 return -1;
253}
254
255static inline void wpa_sm_aborted_cached(struct wpa_sm *sm)
256{
257}
258
259static inline int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
260 const u8 *buf, size_t len)
261{
262 return -1;
263}
264
265static inline int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm,
266 struct wpa_ie_data *data)
267{
268 return -1;
269}
270
540264a7
JM
271static inline int wpa_sm_pmksa_cache_list(struct wpa_sm *sm, char *buf,
272 size_t len)
273{
274 return -1;
275}
276
32d5295f
JM
277static inline void wpa_sm_drop_sa(struct wpa_sm *sm)
278{
279}
280
e6ecca77
JM
281static inline int wpa_sm_has_ptk(struct wpa_sm *sm)
282{
283 return 0;
284}
285
b14a210c
JB
286static inline void wpa_sm_update_replay_ctr(struct wpa_sm *sm,
287 const u8 *replay_ctr)
288{
289}
290
d8a790b9
JM
291static inline void wpa_sm_pmksa_cache_flush(struct wpa_sm *sm,
292 void *network_ctx)
293{
294}
295
6fc6879b
JM
296#endif /* CONFIG_NO_WPA */
297
298#ifdef CONFIG_PEERKEY
299int wpa_sm_stkstart(struct wpa_sm *sm, const u8 *peer);
300#else /* CONFIG_PEERKEY */
301static inline int wpa_sm_stkstart(struct wpa_sm *sm, const u8 *peer)
302{
303 return -1;
304}
305#endif /* CONFIG_PEERKEY */
306
307#ifdef CONFIG_IEEE80211R
308
e7846b68 309int wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len);
76b7981d 310int wpa_ft_prepare_auth_request(struct wpa_sm *sm, const u8 *mdie);
6fc6879b 311int wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
babfbf15
JM
312 int ft_action, const u8 *target_ap,
313 const u8 *ric_ies, size_t ric_ies_len);
6fc6879b
JM
314int wpa_ft_is_completed(struct wpa_sm *sm);
315int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies,
658d1662 316 size_t ies_len, const u8 *src_addr);
76b7981d
JM
317int wpa_ft_start_over_ds(struct wpa_sm *sm, const u8 *target_ap,
318 const u8 *mdie);
6fc6879b
JM
319
320#else /* CONFIG_IEEE80211R */
321
322static inline int
087f0254 323wpa_sm_set_ft_params(struct wpa_sm *sm, const u8 *ies, size_t ies_len)
6fc6879b
JM
324{
325 return 0;
326}
327
76b7981d
JM
328static inline int wpa_ft_prepare_auth_request(struct wpa_sm *sm,
329 const u8 *mdie)
6fc6879b
JM
330{
331 return 0;
332}
333
334static inline int
335wpa_ft_process_response(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
336 int ft_action, const u8 *target_ap)
337{
338 return 0;
339}
340
341static inline int wpa_ft_is_completed(struct wpa_sm *sm)
342{
343 return 0;
344}
345
346static inline int
658d1662
JM
347wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
348 const u8 *src_addr)
6fc6879b
JM
349{
350 return -1;
351}
352
353#endif /* CONFIG_IEEE80211R */
354
281ff0aa
GP
355
356/* tdls.c */
52c9e6f3
JM
357void wpa_tdls_ap_ies(struct wpa_sm *sm, const u8 *ies, size_t len);
358void wpa_tdls_assoc_resp_ies(struct wpa_sm *sm, const u8 *ies, size_t len);
281ff0aa 359int wpa_tdls_start(struct wpa_sm *sm, const u8 *addr);
94377fbc 360int wpa_tdls_reneg(struct wpa_sm *sm, const u8 *addr);
281ff0aa
GP
361int wpa_tdls_recv_teardown_notify(struct wpa_sm *sm, const u8 *addr,
362 u16 reason_code);
363int wpa_tdls_init(struct wpa_sm *sm);
364void wpa_tdls_deinit(struct wpa_sm *sm);
b8f64582 365void wpa_tdls_enable(struct wpa_sm *sm, int enabled);
281ff0aa 366
6fc6879b 367#endif /* WPA_H */