]> git.ipfire.org Git - thirdparty/hostap.git/blame - hostapd/drv_callbacks.c
Allow SHA256-based key handshake to be used without 802.11r
[thirdparty/hostap.git] / hostapd / drv_callbacks.c
CommitLineData
b5b969e9
JM
1/*
2 * hostapd / Callback functions for driver wrappers
3 * Copyright (c) 2002-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#include "includes.h"
16
17#include "hostapd.h"
18#include "driver_i.h"
19#include "ieee802_11.h"
20#include "radius/radius.h"
21#include "sta_info.h"
22#include "accounting.h"
23#include "tkip_countermeasures.h"
24#include "ieee802_1x.h"
25#include "wpa.h"
26#include "iapp.h"
27#include "wme.h"
28
29
30struct prune_data {
31 struct hostapd_data *hapd;
32 const u8 *addr;
33};
34
35static int prune_associations(struct hostapd_iface *iface, void *ctx)
36{
37 struct prune_data *data = ctx;
38 struct sta_info *osta;
39 struct hostapd_data *ohapd;
40 size_t j;
41
42 for (j = 0; j < iface->num_bss; j++) {
43 ohapd = iface->bss[j];
44 if (ohapd == data->hapd)
45 continue;
46 osta = ap_get_sta(ohapd, data->addr);
47 if (!osta)
48 continue;
49
50 ap_sta_disassociate(ohapd, osta, WLAN_REASON_UNSPECIFIED);
51 }
52
53 return 0;
54}
55
56/**
57 * hostapd_prune_associations - Remove extraneous associations
58 * @hapd: Pointer to BSS data for the most recent association
59 * @sta: Pointer to the associated STA data
60 *
61 * This function looks through all radios and BSS's for previous
62 * (stale) associations of STA. If any are found they are removed.
63 */
64static void hostapd_prune_associations(struct hostapd_data *hapd,
65 struct sta_info *sta)
66{
67 struct prune_data data;
68 data.hapd = hapd;
69 data.addr = sta->addr;
70 hostapd_for_each_interface(prune_associations, &data);
71}
72
73
74/**
75 * hostapd_new_assoc_sta - Notify that a new station associated with the AP
76 * @hapd: Pointer to BSS data
77 * @sta: Pointer to the associated STA data
78 * @reassoc: 1 to indicate this was a re-association; 0 = first association
79 *
80 * This function will be called whenever a station associates with the AP. It
81 * can be called from ieee802_11.c for drivers that export MLME to hostapd and
82 * from driver_*.c for drivers that take care of management frames (IEEE 802.11
83 * authentication and association) internally.
84 */
85void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
86 int reassoc)
87{
88 if (hapd->tkip_countermeasures) {
89 hostapd_sta_deauth(hapd, sta->addr,
90 WLAN_REASON_MICHAEL_MIC_FAILURE);
91 return;
92 }
93
94 hostapd_prune_associations(hapd, sta);
95
96 /* IEEE 802.11F (IAPP) */
97 if (hapd->conf->ieee802_11f)
98 iapp_new_station(hapd->iapp, sta);
99
100 /* Start accounting here, if IEEE 802.1X and WPA are not used.
101 * IEEE 802.1X/WPA code will start accounting after the station has
102 * been authorized. */
103 if (!hapd->conf->ieee802_1x && !hapd->conf->wpa)
104 accounting_sta_start(hapd, sta);
105
106 hostapd_wme_sta_config(hapd, sta);
107
108 /* Start IEEE 802.1X authentication process for new stations */
109 ieee802_1x_new_station(hapd, sta);
110 if (reassoc) {
111 if (sta->auth_alg != WLAN_AUTH_FT &&
112 !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
113 wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
114 } else
115 wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
116}
117
118
119void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
120 const u8 *buf, size_t len, int ack)
121{
122 struct sta_info *sta;
123
124 sta = ap_get_sta(hapd, addr);
125 if (sta && sta->flags & WLAN_STA_PENDING_POLL) {
126 wpa_printf(MSG_DEBUG, "STA " MACSTR " %s pending "
127 "activity poll", MAC2STR(sta->addr),
128 ack ? "ACKed" : "did not ACK");
129 if (ack)
130 sta->flags &= ~WLAN_STA_PENDING_POLL;
131 }
132 if (sta)
133 ieee802_1x_tx_status(hapd, sta, buf, len, ack);
134}
135
136
137void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd, const u8 *addr)
138{
139 struct sta_info *sta;
140
141 sta = ap_get_sta(hapd, addr);
142 if (!sta || !(sta->flags & WLAN_STA_ASSOC)) {
143 wpa_printf(MSG_DEBUG, "Data/PS-poll frame from not associated "
144 "STA " MACSTR, MAC2STR(addr));
145 if (sta && (sta->flags & WLAN_STA_AUTH))
146 hostapd_sta_disassoc(
147 hapd, addr,
148 WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
149 else
150 hostapd_sta_deauth(
151 hapd, addr,
152 WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
153 }
154}
155
156
157int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
158 const u8 *ie, size_t ielen)
159{
160 struct sta_info *sta;
161 int new_assoc, res;
162
163 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
164 HOSTAPD_LEVEL_INFO, "associated");
165
166 sta = ap_get_sta(hapd, addr);
167 if (sta) {
168 accounting_sta_stop(hapd, sta);
169 } else {
170 sta = ap_sta_add(hapd, addr);
171 if (sta == NULL)
172 return -1;
173 }
174 sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
175
176 if (hapd->conf->wpa) {
177 if (ie == NULL || ielen == 0) {
178 if (hapd->conf->wps_state) {
179 wpa_printf(MSG_DEBUG, "STA did not include "
180 "WPA/RSN IE in (Re)Association "
181 "Request - possible WPS use");
182 sta->flags |= WLAN_STA_MAYBE_WPS;
183 goto skip_wpa_check;
184 }
185
186 wpa_printf(MSG_DEBUG, "No WPA/RSN IE from STA");
187 return -1;
188 }
189 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
190 os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
191 sta->flags |= WLAN_STA_WPS;
192 goto skip_wpa_check;
193 }
194
195 if (sta->wpa_sm == NULL)
196 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
197 sta->addr);
198 if (sta->wpa_sm == NULL) {
199 wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
200 "machine");
201 return -1;
202 }
203 res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
204 ie, ielen, NULL, 0);
205 if (res != WPA_IE_OK) {
206 wpa_printf(MSG_DEBUG, "WPA/RSN information element "
207 "rejected? (res %u)", res);
208 wpa_hexdump(MSG_DEBUG, "IE", ie, ielen);
209 return -1;
210 }
211 }
212skip_wpa_check:
213
214 new_assoc = (sta->flags & WLAN_STA_ASSOC) == 0;
215 sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC;
216 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
217
218 hostapd_new_assoc_sta(hapd, sta, !new_assoc);
219
220 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
221
222 return 0;
223}
224
225
226void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr)
227{
228 struct sta_info *sta;
229
230 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
231 HOSTAPD_LEVEL_INFO, "disassociated");
232
233 sta = ap_get_sta(hapd, addr);
234 if (sta == NULL) {
235 wpa_printf(MSG_DEBUG, "Disassociation notification for "
236 "unknown STA " MACSTR, MAC2STR(addr));
237 return;
238 }
239
240 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
241 wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
242 sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
243 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
244 ap_free_sta(hapd, sta);
245}
246
247
248void hostapd_eapol_receive(struct hostapd_data *hapd, const u8 *sa,
249 const u8 *buf, size_t len)
250{
251 ieee802_1x_receive(hapd, sa, buf, len);
252}
253
254
bc521fac 255#ifdef NEED_MLME
b5b969e9
JM
256void hostapd_mgmt_rx(struct hostapd_data *hapd, u8 *buf, size_t len,
257 u16 stype, struct hostapd_frame_info *fi)
258{
259 ieee802_11_mgmt(hapd, buf, len, stype, fi);
260}
261
262
263void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
264 u16 stype, int ok)
265{
266 ieee802_11_mgmt_cb(hapd, buf, len, stype, ok);
267}
bc521fac 268#endif /* NEED_MLME */
b5b969e9
JM
269
270
271void hostapd_michael_mic_failure(struct hostapd_data *hapd, const u8 *addr)
272{
273 michael_mic_failure(hapd, addr, 1);
274}