2 * hostapd / IEEE 802.11 Management: Beacon and Probe Request/Response
3 * Copyright (c) 2002-2004, Instant802 Networks, Inc.
4 * Copyright (c) 2005-2006, Devicescape Software, Inc.
5 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Alternatively, this software may be distributed under the terms of BSD
14 * See README and COPYING for more details.
19 #ifndef CONFIG_NATIVE_WINDOWS
22 #include "ieee802_11.h"
26 #include "hw_features.h"
29 #include "ieee802_11h.h"
32 static u8
ieee802_11_erp_info(struct hostapd_data
*hapd
)
36 if (hapd
->iface
->current_mode
== NULL
||
37 hapd
->iface
->current_mode
->mode
!= HOSTAPD_MODE_IEEE80211G
)
40 switch (hapd
->iconf
->cts_protection_type
) {
41 case CTS_PROTECTION_FORCE_ENABLED
:
42 erp
|= ERP_INFO_NON_ERP_PRESENT
| ERP_INFO_USE_PROTECTION
;
44 case CTS_PROTECTION_FORCE_DISABLED
:
47 case CTS_PROTECTION_AUTOMATIC
:
48 if (hapd
->iface
->olbc
)
49 erp
|= ERP_INFO_USE_PROTECTION
;
51 case CTS_PROTECTION_AUTOMATIC_NO_OLBC
:
52 if (hapd
->iface
->num_sta_non_erp
> 0) {
53 erp
|= ERP_INFO_NON_ERP_PRESENT
|
54 ERP_INFO_USE_PROTECTION
;
58 if (hapd
->iface
->num_sta_no_short_preamble
> 0)
59 erp
|= ERP_INFO_BARKER_PREAMBLE_MODE
;
65 static u8
* hostapd_eid_ds_params(struct hostapd_data
*hapd
, u8
*eid
)
67 *eid
++ = WLAN_EID_DS_PARAMS
;
69 *eid
++ = hapd
->iconf
->channel
;
74 static u8
* hostapd_eid_erp_info(struct hostapd_data
*hapd
, u8
*eid
)
76 if (hapd
->iface
->current_mode
== NULL
||
77 hapd
->iface
->current_mode
->mode
!= HOSTAPD_MODE_IEEE80211G
)
80 /* Set NonERP_present and use_protection bits if there
81 * are any associated NonERP stations. */
82 /* TODO: use_protection bit can be set to zero even if
83 * there are NonERP stations present. This optimization
84 * might be useful if NonERP stations are "quiet".
85 * See 802.11g/D6 E-1 for recommended practice.
86 * In addition, Non ERP present might be set, if AP detects Non ERP
87 * operation on other APs. */
89 /* Add ERP Information element */
90 *eid
++ = WLAN_EID_ERP_INFO
;
92 *eid
++ = ieee802_11_erp_info(hapd
);
98 static u8
* hostapd_eid_country(struct hostapd_data
*hapd
, u8
*eid
,
103 if ((!hapd
->iconf
->ieee80211d
&& !hapd
->iface
->dfs_enable
) ||
107 *pos
++ = WLAN_EID_COUNTRY
;
108 pos
++; /* length will be set later */
109 os_memcpy(pos
, hapd
->iconf
->country
, 3); /* e.g., 'US ' */
113 *pos
++ = 0; /* pad for 16-bit alignment */
115 eid
[1] = (pos
- eid
) - 2;
121 static u8
* hostapd_eid_power_constraint(struct hostapd_data
*hapd
, u8
*eid
)
124 if (!hapd
->iface
->dfs_enable
)
126 *eid
++ = WLAN_EID_PWR_CONSTRAINT
;
128 *eid
++ = hapd
->iface
->pwr_const
;
133 static u8
* hostapd_eid_tpc_report(struct hostapd_data
*hapd
, u8
*eid
)
136 if (!hapd
->iface
->dfs_enable
)
138 *eid
++ = WLAN_EID_TPC_REPORT
;
140 *eid
++ = hapd
->iface
->tx_power
; /* TX POWER */
141 *eid
++ = 0; /* Link Margin */
145 static u8
* hostapd_eid_channel_switch(struct hostapd_data
*hapd
, u8
*eid
)
148 if (!hapd
->iface
->dfs_enable
|| !hapd
->iface
->channel_switch
)
150 *eid
++ = WLAN_EID_CHANNEL_SWITCH
;
152 *eid
++ = CHAN_SWITCH_MODE_QUIET
;
153 *eid
++ = hapd
->iface
->channel_switch
; /* New channel */
154 /* 0 - very soon; 1 - before next TBTT; num - after num beacons */
160 static u8
* hostapd_eid_wpa(struct hostapd_data
*hapd
, u8
*eid
, size_t len
,
161 struct sta_info
*sta
)
166 ie
= wpa_auth_get_wpa_ie(hapd
->wpa_auth
, &ielen
);
167 if (ie
== NULL
|| ielen
> len
)
170 os_memcpy(eid
, ie
, ielen
);
175 void handle_probe_req(struct hostapd_data
*hapd
, struct ieee80211_mgmt
*mgmt
,
178 struct ieee80211_mgmt
*resp
;
179 struct ieee802_11_elems elems
;
182 size_t ssid_len
, ie_len
;
183 struct sta_info
*sta
= NULL
;
185 ie
= mgmt
->u
.probe_req
.variable
;
186 ie_len
= len
- (IEEE80211_HDRLEN
+ sizeof(mgmt
->u
.probe_req
));
188 if (!hapd
->iconf
->send_probe_response
)
191 if (ieee802_11_parse_elems(hapd
, ie
, ie_len
, &elems
, 0) == ParseFailed
)
193 wpa_printf(MSG_DEBUG
, "Could not parse ProbeReq from " MACSTR
,
201 if ((!elems
.ssid
|| !elems
.supp_rates
)) {
202 wpa_printf(MSG_DEBUG
, "STA " MACSTR
" sent probe request "
203 "without SSID or supported rates element",
208 if (hapd
->conf
->ignore_broadcast_ssid
&& elems
.ssid_len
== 0) {
209 wpa_printf(MSG_MSGDUMP
, "Probe Request from " MACSTR
" for "
210 "broadcast SSID ignored", MAC2STR(mgmt
->sa
));
214 sta
= ap_get_sta(hapd
, mgmt
->sa
);
216 if (elems
.ssid_len
== 0 ||
217 (elems
.ssid_len
== hapd
->conf
->ssid
.ssid_len
&&
218 os_memcmp(elems
.ssid
, hapd
->conf
->ssid
.ssid
, elems
.ssid_len
) ==
220 ssid
= hapd
->conf
->ssid
.ssid
;
221 ssid_len
= hapd
->conf
->ssid
.ssid_len
;
223 sta
->ssid_probe
= &hapd
->conf
->ssid
;
227 if (!(mgmt
->da
[0] & 0x01)) {
229 ieee802_11_print_ssid(ssid_txt
, elems
.ssid
,
231 wpa_printf(MSG_MSGDUMP
, "Probe Request from " MACSTR
232 " for foreign SSID '%s'",
233 MAC2STR(mgmt
->sa
), ssid_txt
);
238 /* TODO: verify that supp_rates contains at least one matching rate
239 * with AP configuration */
240 #define MAX_PROBERESP_LEN 768
241 resp
= os_zalloc(MAX_PROBERESP_LEN
);
244 epos
= ((u8
*) resp
) + MAX_PROBERESP_LEN
;
246 resp
->frame_control
= IEEE80211_FC(WLAN_FC_TYPE_MGMT
,
247 WLAN_FC_STYPE_PROBE_RESP
);
248 os_memcpy(resp
->da
, mgmt
->sa
, ETH_ALEN
);
249 os_memcpy(resp
->sa
, hapd
->own_addr
, ETH_ALEN
);
251 os_memcpy(resp
->bssid
, hapd
->own_addr
, ETH_ALEN
);
252 resp
->u
.probe_resp
.beacon_int
=
253 host_to_le16(hapd
->iconf
->beacon_int
);
255 /* hardware or low-level driver will setup seq_ctrl and timestamp */
256 resp
->u
.probe_resp
.capab_info
=
257 host_to_le16(hostapd_own_capab_info(hapd
, sta
, 1));
259 pos
= resp
->u
.probe_resp
.variable
;
260 *pos
++ = WLAN_EID_SSID
;
262 os_memcpy(pos
, ssid
, ssid_len
);
265 /* Supported rates */
266 pos
= hostapd_eid_supp_rates(hapd
, pos
);
269 pos
= hostapd_eid_ds_params(hapd
, pos
);
271 pos
= hostapd_eid_country(hapd
, pos
, epos
- pos
);
273 pos
= hostapd_eid_power_constraint(hapd
, pos
);
274 pos
= hostapd_eid_tpc_report(hapd
, pos
);
276 /* ERP Information element */
277 pos
= hostapd_eid_erp_info(hapd
, pos
);
279 /* Extended supported rates */
280 pos
= hostapd_eid_ext_supp_rates(hapd
, pos
);
282 pos
= hostapd_eid_wpa(hapd
, pos
, epos
- pos
, sta
);
284 /* Wi-Fi Wireless Multimedia Extensions */
285 if (hapd
->conf
->wme_enabled
)
286 pos
= hostapd_eid_wme(hapd
, pos
);
288 if (hostapd_send_mgmt_frame(hapd
, resp
, pos
- (u8
*) resp
, 0) < 0)
289 perror("handle_probe_req: send");
293 wpa_printf(MSG_MSGDUMP
, "STA " MACSTR
" sent probe request for %s "
294 "SSID", MAC2STR(mgmt
->sa
),
295 elems
.ssid_len
== 0 ? "broadcast" : "our");
299 void ieee802_11_set_beacon(struct hostapd_data
*hapd
)
301 struct ieee80211_mgmt
*head
;
302 u8
*pos
, *tail
, *tailpos
;
305 size_t head_len
, tail_len
;
306 int cts_protection
= ((ieee802_11_erp_info(hapd
) &
307 ERP_INFO_USE_PROTECTION
) ? 1 : 0);
309 #define BEACON_HEAD_BUF_SIZE 256
310 #define BEACON_TAIL_BUF_SIZE 512
311 head
= os_zalloc(BEACON_HEAD_BUF_SIZE
);
312 tailpos
= tail
= os_malloc(BEACON_TAIL_BUF_SIZE
);
313 if (head
== NULL
|| tail
== NULL
) {
314 wpa_printf(MSG_ERROR
, "Failed to set beacon data");
320 head
->frame_control
= IEEE80211_FC(WLAN_FC_TYPE_MGMT
,
321 WLAN_FC_STYPE_BEACON
);
322 head
->duration
= host_to_le16(0);
323 os_memset(head
->da
, 0xff, ETH_ALEN
);
325 os_memcpy(head
->sa
, hapd
->own_addr
, ETH_ALEN
);
326 os_memcpy(head
->bssid
, hapd
->own_addr
, ETH_ALEN
);
327 head
->u
.beacon
.beacon_int
=
328 host_to_le16(hapd
->iconf
->beacon_int
);
330 /* hardware or low-level driver will setup seq_ctrl and timestamp */
331 capab_info
= hostapd_own_capab_info(hapd
, NULL
, 0);
332 head
->u
.beacon
.capab_info
= host_to_le16(capab_info
);
333 pos
= &head
->u
.beacon
.variable
[0];
336 *pos
++ = WLAN_EID_SSID
;
337 if (hapd
->conf
->ignore_broadcast_ssid
== 2) {
338 /* clear the data, but keep the correct length of the SSID */
339 *pos
++ = hapd
->conf
->ssid
.ssid_len
;
340 os_memset(pos
, 0, hapd
->conf
->ssid
.ssid_len
);
341 pos
+= hapd
->conf
->ssid
.ssid_len
;
342 } else if (hapd
->conf
->ignore_broadcast_ssid
) {
343 *pos
++ = 0; /* empty SSID */
345 *pos
++ = hapd
->conf
->ssid
.ssid_len
;
346 os_memcpy(pos
, hapd
->conf
->ssid
.ssid
,
347 hapd
->conf
->ssid
.ssid_len
);
348 pos
+= hapd
->conf
->ssid
.ssid_len
;
351 /* Supported rates */
352 pos
= hostapd_eid_supp_rates(hapd
, pos
);
355 pos
= hostapd_eid_ds_params(hapd
, pos
);
357 head_len
= pos
- (u8
*) head
;
359 tailpos
= hostapd_eid_country(hapd
, tailpos
,
360 tail
+ BEACON_TAIL_BUF_SIZE
- tailpos
);
362 tailpos
= hostapd_eid_power_constraint(hapd
, tailpos
);
363 tailpos
= hostapd_eid_channel_switch(hapd
, tailpos
);
364 tailpos
= hostapd_eid_tpc_report(hapd
, tailpos
);
366 /* ERP Information element */
367 tailpos
= hostapd_eid_erp_info(hapd
, tailpos
);
369 /* Extended supported rates */
370 tailpos
= hostapd_eid_ext_supp_rates(hapd
, tailpos
);
372 tailpos
= hostapd_eid_wpa(hapd
, tailpos
, tail
+ BEACON_TAIL_BUF_SIZE
-
375 /* Wi-Fi Wireless Multimedia Extensions */
376 if (hapd
->conf
->wme_enabled
)
377 tailpos
= hostapd_eid_wme(hapd
, tailpos
);
379 tail_len
= tailpos
> tail
? tailpos
- tail
: 0;
381 if (hostapd_set_beacon(hapd
->conf
->iface
, hapd
, (u8
*) head
, head_len
,
383 wpa_printf(MSG_ERROR
, "Failed to set beacon head/tail");
388 if (hostapd_set_cts_protect(hapd
, cts_protection
))
389 wpa_printf(MSG_ERROR
, "Failed to set CTS protect in kernel "
392 if (hapd
->iface
->current_mode
&&
393 hapd
->iface
->current_mode
->mode
== HOSTAPD_MODE_IEEE80211G
&&
394 hostapd_set_short_slot_time(hapd
,
395 hapd
->iface
->num_sta_no_short_slot_time
397 wpa_printf(MSG_ERROR
, "Failed to set Short Slot Time option "
400 if (hapd
->iface
->num_sta_no_short_preamble
== 0 &&
401 hapd
->iconf
->preamble
== SHORT_PREAMBLE
)
402 preamble
= SHORT_PREAMBLE
;
404 preamble
= LONG_PREAMBLE
;
405 if (hostapd_set_preamble(hapd
, preamble
))
406 wpa_printf(MSG_ERROR
, "Could not set preamble for kernel "
411 void ieee802_11_set_beacons(struct hostapd_iface
*iface
)
414 for (i
= 0; i
< iface
->num_bss
; i
++)
415 ieee802_11_set_beacon(iface
->bss
[i
]);
418 #endif /* CONFIG_NATIVE_WINDOWS */