Branch data Line data Source code
1 : : /*
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-2012, Jouni Malinen <j@w1.fi>
6 : : *
7 : : * This software may be distributed under the terms of the BSD license.
8 : : * See README for more details.
9 : : */
10 : :
11 : : #include "utils/includes.h"
12 : :
13 : : #ifndef CONFIG_NATIVE_WINDOWS
14 : :
15 : : #include "utils/common.h"
16 : : #include "common/ieee802_11_defs.h"
17 : : #include "common/ieee802_11_common.h"
18 : : #include "wps/wps_defs.h"
19 : : #include "p2p/p2p.h"
20 : : #include "hostapd.h"
21 : : #include "ieee802_11.h"
22 : : #include "wpa_auth.h"
23 : : #include "wmm.h"
24 : : #include "ap_config.h"
25 : : #include "sta_info.h"
26 : : #include "p2p_hostapd.h"
27 : : #include "ap_drv_ops.h"
28 : : #include "beacon.h"
29 : : #include "hs20.h"
30 : :
31 : :
32 : : #ifdef NEED_AP_MLME
33 : :
34 : 526 : static u8 * hostapd_eid_bss_load(struct hostapd_data *hapd, u8 *eid, size_t len)
35 : : {
36 : : #ifdef CONFIG_TESTING_OPTIONS
37 [ - + ]: 526 : if (hapd->conf->bss_load_test_set) {
38 [ # # ]: 0 : if (2 + 5 > len)
39 : 0 : return eid;
40 : 0 : *eid++ = WLAN_EID_BSS_LOAD;
41 : 0 : *eid++ = 5;
42 : 0 : os_memcpy(eid, hapd->conf->bss_load_test, 5);
43 : 0 : eid += 5;
44 : : }
45 : : #endif /* CONFIG_TESTING_OPTIONS */
46 : 526 : return eid;
47 : : }
48 : :
49 : :
50 : 952 : static u8 ieee802_11_erp_info(struct hostapd_data *hapd)
51 : : {
52 : 952 : u8 erp = 0;
53 : :
54 [ + - ][ - + ]: 952 : if (hapd->iface->current_mode == NULL ||
55 : 952 : hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
56 : 0 : return 0;
57 : :
58 [ - + ]: 952 : if (hapd->iface->olbc)
59 : 0 : erp |= ERP_INFO_USE_PROTECTION;
60 [ - + ]: 952 : if (hapd->iface->num_sta_non_erp > 0) {
61 : 0 : erp |= ERP_INFO_NON_ERP_PRESENT |
62 : : ERP_INFO_USE_PROTECTION;
63 : : }
64 [ + - ][ + - ]: 952 : if (hapd->iface->num_sta_no_short_preamble > 0 ||
65 : 952 : hapd->iconf->preamble == LONG_PREAMBLE)
66 : 952 : erp |= ERP_INFO_BARKER_PREAMBLE_MODE;
67 : :
68 : 952 : return erp;
69 : : }
70 : :
71 : :
72 : 526 : static u8 * hostapd_eid_ds_params(struct hostapd_data *hapd, u8 *eid)
73 : : {
74 : 526 : *eid++ = WLAN_EID_DS_PARAMS;
75 : 526 : *eid++ = 1;
76 : 526 : *eid++ = hapd->iconf->channel;
77 : 526 : return eid;
78 : : }
79 : :
80 : :
81 : 526 : static u8 * hostapd_eid_erp_info(struct hostapd_data *hapd, u8 *eid)
82 : : {
83 [ + - ][ - + ]: 526 : if (hapd->iface->current_mode == NULL ||
84 : 526 : hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
85 : 0 : return eid;
86 : :
87 : : /* Set NonERP_present and use_protection bits if there
88 : : * are any associated NonERP stations. */
89 : : /* TODO: use_protection bit can be set to zero even if
90 : : * there are NonERP stations present. This optimization
91 : : * might be useful if NonERP stations are "quiet".
92 : : * See 802.11g/D6 E-1 for recommended practice.
93 : : * In addition, Non ERP present might be set, if AP detects Non ERP
94 : : * operation on other APs. */
95 : :
96 : : /* Add ERP Information element */
97 : 526 : *eid++ = WLAN_EID_ERP_INFO;
98 : 526 : *eid++ = 1;
99 : 526 : *eid++ = ieee802_11_erp_info(hapd);
100 : :
101 : 526 : return eid;
102 : : }
103 : :
104 : :
105 : 0 : static u8 * hostapd_eid_country_add(u8 *pos, u8 *end, int chan_spacing,
106 : : struct hostapd_channel_data *start,
107 : : struct hostapd_channel_data *prev)
108 : : {
109 [ # # ]: 0 : if (end - pos < 3)
110 : 0 : return pos;
111 : :
112 : : /* first channel number */
113 : 0 : *pos++ = start->chan;
114 : : /* number of channels */
115 : 0 : *pos++ = (prev->chan - start->chan) / chan_spacing + 1;
116 : : /* maximum transmit power level */
117 : 0 : *pos++ = start->max_tx_power;
118 : :
119 : 0 : return pos;
120 : : }
121 : :
122 : :
123 : 526 : static u8 * hostapd_eid_country(struct hostapd_data *hapd, u8 *eid,
124 : : int max_len)
125 : : {
126 : 526 : u8 *pos = eid;
127 : 526 : u8 *end = eid + max_len;
128 : : int i;
129 : : struct hostapd_hw_modes *mode;
130 : : struct hostapd_channel_data *start, *prev;
131 : 526 : int chan_spacing = 1;
132 : :
133 [ - + ][ # # ]: 526 : if (!hapd->iconf->ieee80211d || max_len < 6 ||
[ # # ]
134 : 0 : hapd->iface->current_mode == NULL)
135 : 526 : return eid;
136 : :
137 : 0 : *pos++ = WLAN_EID_COUNTRY;
138 : 0 : pos++; /* length will be set later */
139 : 0 : os_memcpy(pos, hapd->iconf->country, 3); /* e.g., 'US ' */
140 : 0 : pos += 3;
141 : :
142 : 0 : mode = hapd->iface->current_mode;
143 [ # # ]: 0 : if (mode->mode == HOSTAPD_MODE_IEEE80211A)
144 : 0 : chan_spacing = 4;
145 : :
146 : 0 : start = prev = NULL;
147 [ # # ]: 0 : for (i = 0; i < mode->num_channels; i++) {
148 : 0 : struct hostapd_channel_data *chan = &mode->channels[i];
149 [ # # ]: 0 : if (chan->flag & HOSTAPD_CHAN_DISABLED)
150 : 0 : continue;
151 [ # # ][ # # ]: 0 : if (start && prev &&
[ # # ]
152 [ # # ]: 0 : prev->chan + chan_spacing == chan->chan &&
153 : 0 : start->max_tx_power == chan->max_tx_power) {
154 : 0 : prev = chan;
155 : 0 : continue; /* can use same entry */
156 : : }
157 : :
158 [ # # ]: 0 : if (start) {
159 : 0 : pos = hostapd_eid_country_add(pos, end, chan_spacing,
160 : : start, prev);
161 : 0 : start = NULL;
162 : : }
163 : :
164 : : /* Start new group */
165 : 0 : start = prev = chan;
166 : : }
167 : :
168 [ # # ]: 0 : if (start) {
169 : 0 : pos = hostapd_eid_country_add(pos, end, chan_spacing,
170 : : start, prev);
171 : : }
172 : :
173 [ # # ]: 0 : if ((pos - eid) & 1) {
174 [ # # ]: 0 : if (end - pos < 1)
175 : 0 : return eid;
176 : 0 : *pos++ = 0; /* pad for 16-bit alignment */
177 : : }
178 : :
179 : 0 : eid[1] = (pos - eid) - 2;
180 : :
181 : 526 : return pos;
182 : : }
183 : :
184 : :
185 : 526 : static u8 * hostapd_eid_wpa(struct hostapd_data *hapd, u8 *eid, size_t len)
186 : : {
187 : : const u8 *ie;
188 : : size_t ielen;
189 : :
190 : 526 : ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &ielen);
191 [ + - ][ - + ]: 526 : if (ie == NULL || ielen > len)
192 : 0 : return eid;
193 : :
194 : 526 : os_memcpy(eid, ie, ielen);
195 : 526 : return eid + ielen;
196 : : }
197 : :
198 : :
199 : 526 : static u8 * hostapd_eid_csa(struct hostapd_data *hapd, u8 *eid)
200 : : {
201 : : u8 chan;
202 : :
203 [ + + ]: 526 : if (!hapd->iface->cs_freq_params.freq)
204 : 525 : return eid;
205 : :
206 [ - + ]: 1 : if (ieee80211_freq_to_chan(hapd->iface->cs_freq_params.freq, &chan) ==
207 : : NUM_HOSTAPD_MODES)
208 : 0 : return eid;
209 : :
210 : 1 : *eid++ = WLAN_EID_CHANNEL_SWITCH;
211 : 1 : *eid++ = 3;
212 : 1 : *eid++ = hapd->iface->cs_block_tx;
213 : 1 : *eid++ = chan;
214 : 1 : *eid++ = hapd->iface->cs_count;
215 : :
216 : 526 : return eid;
217 : : }
218 : :
219 : :
220 : 1 : static u8 * hostapd_eid_secondary_channel(struct hostapd_data *hapd, u8 *eid)
221 : : {
222 : : u8 sec_ch;
223 : :
224 [ + - ]: 1 : if (!hapd->iface->cs_freq_params.sec_channel_offset)
225 : 1 : return eid;
226 : :
227 [ # # ]: 0 : if (hapd->iface->cs_freq_params.sec_channel_offset == -1)
228 : 0 : sec_ch = HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW;
229 [ # # ]: 0 : else if (hapd->iface->cs_freq_params.sec_channel_offset == 1)
230 : 0 : sec_ch = HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE;
231 : : else
232 : 0 : return eid;
233 : :
234 : 0 : *eid++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET;
235 : 0 : *eid++ = 1;
236 : 0 : *eid++ = sec_ch;
237 : :
238 : 1 : return eid;
239 : : }
240 : :
241 : :
242 : 526 : static u8 * hostapd_add_csa_elems(struct hostapd_data *hapd, u8 *pos,
243 : : u8 *start, unsigned int *csa_counter_off)
244 : : {
245 : 526 : u8 *old_pos = pos;
246 : :
247 [ - + ]: 526 : if (!csa_counter_off)
248 : 0 : return pos;
249 : :
250 : 526 : *csa_counter_off = 0;
251 : 526 : pos = hostapd_eid_csa(hapd, pos);
252 : :
253 [ + + ]: 526 : if (pos != old_pos) {
254 : : /* save an offset to the counter - should be last byte */
255 : 1 : *csa_counter_off = pos - start - 1;
256 : 1 : pos = hostapd_eid_secondary_channel(hapd, pos);
257 : : }
258 : :
259 : 526 : return pos;
260 : : }
261 : :
262 : :
263 : 100 : static u8 * hostapd_gen_probe_resp(struct hostapd_data *hapd,
264 : : struct sta_info *sta,
265 : : const struct ieee80211_mgmt *req,
266 : : int is_p2p, size_t *resp_len)
267 : : {
268 : : struct ieee80211_mgmt *resp;
269 : : u8 *pos, *epos;
270 : : size_t buflen;
271 : :
272 : : #define MAX_PROBERESP_LEN 768
273 : 100 : buflen = MAX_PROBERESP_LEN;
274 : : #ifdef CONFIG_WPS
275 [ + - ]: 100 : if (hapd->wps_probe_resp_ie)
276 : 100 : buflen += wpabuf_len(hapd->wps_probe_resp_ie);
277 : : #endif /* CONFIG_WPS */
278 : : #ifdef CONFIG_P2P
279 [ + - ]: 100 : if (hapd->p2p_probe_resp_ie)
280 : 100 : buflen += wpabuf_len(hapd->p2p_probe_resp_ie);
281 : : #endif /* CONFIG_P2P */
282 [ - + ]: 100 : if (hapd->conf->vendor_elements)
283 : 0 : buflen += wpabuf_len(hapd->conf->vendor_elements);
284 : 100 : resp = os_zalloc(buflen);
285 [ - + ]: 100 : if (resp == NULL)
286 : 0 : return NULL;
287 : :
288 : 100 : epos = ((u8 *) resp) + MAX_PROBERESP_LEN;
289 : :
290 : 100 : resp->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
291 : : WLAN_FC_STYPE_PROBE_RESP);
292 [ + - ]: 100 : if (req)
293 : 100 : os_memcpy(resp->da, req->sa, ETH_ALEN);
294 : 100 : os_memcpy(resp->sa, hapd->own_addr, ETH_ALEN);
295 : :
296 : 100 : os_memcpy(resp->bssid, hapd->own_addr, ETH_ALEN);
297 : 100 : resp->u.probe_resp.beacon_int =
298 : 100 : host_to_le16(hapd->iconf->beacon_int);
299 : :
300 : : /* hardware or low-level driver will setup seq_ctrl and timestamp */
301 : 100 : resp->u.probe_resp.capab_info =
302 : 100 : host_to_le16(hostapd_own_capab_info(hapd, sta, 1));
303 : :
304 : 100 : pos = resp->u.probe_resp.variable;
305 : 100 : *pos++ = WLAN_EID_SSID;
306 : 100 : *pos++ = hapd->conf->ssid.ssid_len;
307 : 100 : os_memcpy(pos, hapd->conf->ssid.ssid, hapd->conf->ssid.ssid_len);
308 : 100 : pos += hapd->conf->ssid.ssid_len;
309 : :
310 : : /* Supported rates */
311 : 100 : pos = hostapd_eid_supp_rates(hapd, pos);
312 : :
313 : : /* DS Params */
314 : 100 : pos = hostapd_eid_ds_params(hapd, pos);
315 : :
316 : 100 : pos = hostapd_eid_country(hapd, pos, epos - pos);
317 : :
318 : : /* ERP Information element */
319 : 100 : pos = hostapd_eid_erp_info(hapd, pos);
320 : :
321 : : /* Extended supported rates */
322 : 100 : pos = hostapd_eid_ext_supp_rates(hapd, pos);
323 : :
324 : : /* RSN, MDIE, WPA */
325 : 100 : pos = hostapd_eid_wpa(hapd, pos, epos - pos);
326 : :
327 : 100 : pos = hostapd_eid_bss_load(hapd, pos, epos - pos);
328 : :
329 : : #ifdef CONFIG_IEEE80211N
330 : 100 : pos = hostapd_eid_ht_capabilities(hapd, pos);
331 : 100 : pos = hostapd_eid_ht_operation(hapd, pos);
332 : : #endif /* CONFIG_IEEE80211N */
333 : :
334 : 100 : pos = hostapd_eid_ext_capab(hapd, pos);
335 : :
336 : 100 : pos = hostapd_eid_time_adv(hapd, pos);
337 : 100 : pos = hostapd_eid_time_zone(hapd, pos);
338 : :
339 : 100 : pos = hostapd_eid_interworking(hapd, pos);
340 : 100 : pos = hostapd_eid_adv_proto(hapd, pos);
341 : 100 : pos = hostapd_eid_roaming_consortium(hapd, pos);
342 : :
343 : 100 : pos = hostapd_add_csa_elems(hapd, pos, (u8 *)resp,
344 : 100 : &hapd->iface->cs_c_off_proberesp);
345 : : #ifdef CONFIG_IEEE80211AC
346 : 100 : pos = hostapd_eid_vht_capabilities(hapd, pos);
347 : 100 : pos = hostapd_eid_vht_operation(hapd, pos);
348 : : #endif /* CONFIG_IEEE80211AC */
349 : :
350 : : /* Wi-Fi Alliance WMM */
351 : 100 : pos = hostapd_eid_wmm(hapd, pos);
352 : :
353 : : #ifdef CONFIG_WPS
354 [ + - ][ + - ]: 100 : if (hapd->conf->wps_state && hapd->wps_probe_resp_ie) {
355 : 100 : os_memcpy(pos, wpabuf_head(hapd->wps_probe_resp_ie),
356 : : wpabuf_len(hapd->wps_probe_resp_ie));
357 : 100 : pos += wpabuf_len(hapd->wps_probe_resp_ie);
358 : : }
359 : : #endif /* CONFIG_WPS */
360 : :
361 : : #ifdef CONFIG_P2P
362 [ + - ][ + + ]: 100 : if ((hapd->conf->p2p & P2P_ENABLED) && is_p2p &&
[ + - ]
363 : 96 : hapd->p2p_probe_resp_ie) {
364 : 96 : os_memcpy(pos, wpabuf_head(hapd->p2p_probe_resp_ie),
365 : : wpabuf_len(hapd->p2p_probe_resp_ie));
366 : 96 : pos += wpabuf_len(hapd->p2p_probe_resp_ie);
367 : : }
368 : : #endif /* CONFIG_P2P */
369 : : #ifdef CONFIG_P2P_MANAGER
370 : : if ((hapd->conf->p2p & (P2P_MANAGE | P2P_ENABLED | P2P_GROUP_OWNER)) ==
371 : : P2P_MANAGE)
372 : : pos = hostapd_eid_p2p_manage(hapd, pos);
373 : : #endif /* CONFIG_P2P_MANAGER */
374 : :
375 : : #ifdef CONFIG_HS20
376 : 100 : pos = hostapd_eid_hs20_indication(hapd, pos);
377 : : #endif /* CONFIG_HS20 */
378 : :
379 [ - + ]: 100 : if (hapd->conf->vendor_elements) {
380 : 0 : os_memcpy(pos, wpabuf_head(hapd->conf->vendor_elements),
381 : : wpabuf_len(hapd->conf->vendor_elements));
382 : 0 : pos += wpabuf_len(hapd->conf->vendor_elements);
383 : : }
384 : :
385 : 100 : *resp_len = pos - (u8 *) resp;
386 : 100 : return (u8 *) resp;
387 : : }
388 : :
389 : :
390 : : enum ssid_match_result {
391 : : NO_SSID_MATCH,
392 : : EXACT_SSID_MATCH,
393 : : WILDCARD_SSID_MATCH
394 : : };
395 : :
396 : 100 : static enum ssid_match_result ssid_match(struct hostapd_data *hapd,
397 : : const u8 *ssid, size_t ssid_len,
398 : : const u8 *ssid_list,
399 : : size_t ssid_list_len)
400 : : {
401 : : const u8 *pos, *end;
402 : 100 : int wildcard = 0;
403 : :
404 [ + + ]: 100 : if (ssid_len == 0)
405 : 48 : wildcard = 1;
406 [ + + ][ + - ]: 100 : if (ssid_len == hapd->conf->ssid.ssid_len &&
407 : 52 : os_memcmp(ssid, hapd->conf->ssid.ssid, ssid_len) == 0)
408 : 52 : return EXACT_SSID_MATCH;
409 : :
410 [ + - ]: 48 : if (ssid_list == NULL)
411 [ + - ]: 48 : return wildcard ? WILDCARD_SSID_MATCH : NO_SSID_MATCH;
412 : :
413 : 0 : pos = ssid_list;
414 : 0 : end = ssid_list + ssid_list_len;
415 [ # # ]: 0 : while (pos + 1 <= end) {
416 [ # # ]: 0 : if (pos + 2 + pos[1] > end)
417 : 0 : break;
418 [ # # ]: 0 : if (pos[1] == 0)
419 : 0 : wildcard = 1;
420 [ # # ][ # # ]: 0 : if (pos[1] == hapd->conf->ssid.ssid_len &&
421 : 0 : os_memcmp(pos + 2, hapd->conf->ssid.ssid, pos[1]) == 0)
422 : 0 : return EXACT_SSID_MATCH;
423 : 0 : pos += 2 + pos[1];
424 : : }
425 : :
426 [ # # ]: 100 : return wildcard ? WILDCARD_SSID_MATCH : NO_SSID_MATCH;
427 : : }
428 : :
429 : :
430 : 100 : void handle_probe_req(struct hostapd_data *hapd,
431 : : const struct ieee80211_mgmt *mgmt, size_t len,
432 : : int ssi_signal)
433 : : {
434 : : u8 *resp;
435 : : struct ieee802_11_elems elems;
436 : : const u8 *ie;
437 : : size_t ie_len;
438 : 100 : struct sta_info *sta = NULL;
439 : : size_t i, resp_len;
440 : : int noack;
441 : : enum ssid_match_result res;
442 : :
443 : 100 : ie = mgmt->u.probe_req.variable;
444 [ - + ]: 100 : if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req))
445 : 0 : return;
446 : 100 : ie_len = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req));
447 : :
448 [ + - ][ + + ]: 300 : for (i = 0; hapd->probereq_cb && i < hapd->num_probereq_cb; i++)
449 [ - + ]: 200 : if (hapd->probereq_cb[i].cb(hapd->probereq_cb[i].ctx,
450 : 200 : mgmt->sa, mgmt->da, mgmt->bssid,
451 : : ie, ie_len, ssi_signal) > 0)
452 : 0 : return;
453 : :
454 [ - + ]: 100 : if (!hapd->iconf->send_probe_response)
455 : 0 : return;
456 : :
457 [ - + ]: 100 : if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
458 : 0 : wpa_printf(MSG_DEBUG, "Could not parse ProbeReq from " MACSTR,
459 : 0 : MAC2STR(mgmt->sa));
460 : 0 : return;
461 : : }
462 : :
463 [ + - ][ - + ]: 100 : if ((!elems.ssid || !elems.supp_rates)) {
464 : 0 : wpa_printf(MSG_DEBUG, "STA " MACSTR " sent probe request "
465 : : "without SSID or supported rates element",
466 : 0 : MAC2STR(mgmt->sa));
467 : 0 : return;
468 : : }
469 : :
470 : : #ifdef CONFIG_P2P
471 [ + - ][ + + ]: 100 : if (hapd->p2p && elems.wps_ie) {
472 : : struct wpabuf *wps;
473 : 97 : wps = ieee802_11_vendor_ie_concat(ie, ie_len, WPS_DEV_OUI_WFA);
474 [ + - ][ - + ]: 97 : if (wps && !p2p_group_match_dev_type(hapd->p2p_group, wps)) {
475 : 0 : wpa_printf(MSG_MSGDUMP, "P2P: Ignore Probe Request "
476 : : "due to mismatch with Requested Device "
477 : : "Type");
478 : 0 : wpabuf_free(wps);
479 : 0 : return;
480 : : }
481 : 97 : wpabuf_free(wps);
482 : : }
483 : :
484 [ + - ][ + + ]: 100 : if (hapd->p2p && elems.p2p) {
485 : : struct wpabuf *p2p;
486 : 96 : p2p = ieee802_11_vendor_ie_concat(ie, ie_len, P2P_IE_VENDOR_TYPE);
487 [ + - ][ - + ]: 96 : if (p2p && !p2p_group_match_dev_id(hapd->p2p_group, p2p)) {
488 : 0 : wpa_printf(MSG_MSGDUMP, "P2P: Ignore Probe Request "
489 : : "due to mismatch with Device ID");
490 : 0 : wpabuf_free(p2p);
491 : 0 : return;
492 : : }
493 : 96 : wpabuf_free(p2p);
494 : : }
495 : : #endif /* CONFIG_P2P */
496 : :
497 [ - + ][ # # ]: 100 : if (hapd->conf->ignore_broadcast_ssid && elems.ssid_len == 0 &&
[ # # ]
498 : 0 : elems.ssid_list_len == 0) {
499 : 0 : wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR " for "
500 : 0 : "broadcast SSID ignored", MAC2STR(mgmt->sa));
501 : 0 : return;
502 : : }
503 : :
504 : 100 : sta = ap_get_sta(hapd, mgmt->sa);
505 : :
506 : : #ifdef CONFIG_P2P
507 [ + - ][ + + ]: 100 : if ((hapd->conf->p2p & P2P_GROUP_OWNER) &&
508 [ + - ]: 37 : elems.ssid_len == P2P_WILDCARD_SSID_LEN &&
509 : 37 : os_memcmp(elems.ssid, P2P_WILDCARD_SSID,
510 : : P2P_WILDCARD_SSID_LEN) == 0) {
511 : : /* Process P2P Wildcard SSID like Wildcard SSID */
512 : 37 : elems.ssid_len = 0;
513 : : }
514 : : #endif /* CONFIG_P2P */
515 : :
516 : 100 : res = ssid_match(hapd, elems.ssid, elems.ssid_len,
517 : 100 : elems.ssid_list, elems.ssid_list_len);
518 [ + - ]: 100 : if (res != NO_SSID_MATCH) {
519 [ + + ]: 100 : if (sta)
520 : 3 : sta->ssid_probe = &hapd->conf->ssid;
521 : : } else {
522 [ # # ]: 0 : if (!(mgmt->da[0] & 0x01)) {
523 : : char ssid_txt[33];
524 : 0 : ieee802_11_print_ssid(ssid_txt, elems.ssid,
525 : 0 : elems.ssid_len);
526 [ # # ]: 0 : wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR
527 : : " for foreign SSID '%s' (DA " MACSTR ")%s",
528 : 0 : MAC2STR(mgmt->sa), ssid_txt,
529 : 0 : MAC2STR(mgmt->da),
530 : 0 : elems.ssid_list ? " (SSID list)" : "");
531 : : }
532 : 0 : return;
533 : : }
534 : :
535 : : #ifdef CONFIG_INTERWORKING
536 [ - + ][ # # ]: 100 : if (elems.interworking && elems.interworking_len >= 1) {
537 : 0 : u8 ant = elems.interworking[0] & 0x0f;
538 [ # # ][ # # ]: 0 : if (ant != INTERWORKING_ANT_WILDCARD &&
539 : 0 : ant != hapd->conf->access_network_type) {
540 : 0 : wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR
541 : : " for mismatching ANT %u ignored",
542 : 0 : MAC2STR(mgmt->sa), ant);
543 : 0 : return;
544 : : }
545 : : }
546 : :
547 [ - + ][ # # ]: 100 : if (elems.interworking &&
548 [ # # ]: 0 : (elems.interworking_len == 7 || elems.interworking_len == 9)) {
549 : : const u8 *hessid;
550 [ # # ]: 0 : if (elems.interworking_len == 7)
551 : 0 : hessid = elems.interworking + 1;
552 : : else
553 : 0 : hessid = elems.interworking + 1 + 2;
554 [ # # ][ # # ]: 0 : if (!is_broadcast_ether_addr(hessid) &&
555 : 0 : os_memcmp(hessid, hapd->conf->hessid, ETH_ALEN) != 0) {
556 : 0 : wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR
557 : : " for mismatching HESSID " MACSTR
558 : : " ignored",
559 : 0 : MAC2STR(mgmt->sa), MAC2STR(hessid));
560 : 0 : return;
561 : : }
562 : : }
563 : : #endif /* CONFIG_INTERWORKING */
564 : :
565 : : #ifdef CONFIG_P2P
566 [ + - - + ]: 200 : if ((hapd->conf->p2p & P2P_GROUP_OWNER) &&
567 : 100 : supp_rates_11b_only(&elems)) {
568 : : /* Indicates support for 11b rates only */
569 : 0 : wpa_printf(MSG_EXCESSIVE, "P2P: Ignore Probe Request from "
570 : : MACSTR " with only 802.11b rates",
571 : 0 : MAC2STR(mgmt->sa));
572 : 0 : return;
573 : : }
574 : : #endif /* CONFIG_P2P */
575 : :
576 : : /* TODO: verify that supp_rates contains at least one matching rate
577 : : * with AP configuration */
578 : :
579 : : #ifdef CONFIG_TESTING_OPTIONS
580 [ - + # # ]: 100 : if (hapd->iconf->ignore_probe_probability > 0.0d &&
581 : 0 : drand48() < hapd->iconf->ignore_probe_probability) {
582 : 0 : wpa_printf(MSG_INFO,
583 : : "TESTING: ignoring probe request from " MACSTR,
584 : 0 : MAC2STR(mgmt->sa));
585 : 0 : return;
586 : : }
587 : : #endif /* CONFIG_TESTING_OPTIONS */
588 : :
589 : 100 : resp = hostapd_gen_probe_resp(hapd, sta, mgmt, elems.p2p != NULL,
590 : : &resp_len);
591 [ - + ]: 100 : if (resp == NULL)
592 : 0 : return;
593 : :
594 : : /*
595 : : * If this is a broadcast probe request, apply no ack policy to avoid
596 : : * excessive retries.
597 : : */
598 [ + + + - ]: 148 : noack = !!(res == WILDCARD_SSID_MATCH &&
599 : 48 : is_broadcast_ether_addr(mgmt->da));
600 : :
601 [ - + ]: 100 : if (hostapd_drv_send_mlme(hapd, resp, resp_len, noack) < 0)
602 : 0 : wpa_printf(MSG_INFO, "handle_probe_req: send failed");
603 : :
604 : 100 : os_free(resp);
605 : :
606 [ + + ]: 100 : wpa_printf(MSG_EXCESSIVE, "STA " MACSTR " sent probe request for %s "
607 : 600 : "SSID", MAC2STR(mgmt->sa),
608 : 100 : elems.ssid_len == 0 ? "broadcast" : "our");
609 : : }
610 : :
611 : :
612 : 426 : static u8 * hostapd_probe_resp_offloads(struct hostapd_data *hapd,
613 : : size_t *resp_len)
614 : : {
615 : : /* check probe response offloading caps and print warnings */
616 [ + - ]: 426 : if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD))
617 : 426 : return NULL;
618 : :
619 : : #ifdef CONFIG_WPS
620 [ # # ][ # # ]: 0 : if (hapd->conf->wps_state && hapd->wps_probe_resp_ie &&
[ # # ]
621 : 0 : (!(hapd->iface->probe_resp_offloads &
622 : : (WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS |
623 : : WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2))))
624 : 0 : wpa_printf(MSG_WARNING, "Device is trying to offload WPS "
625 : : "Probe Response while not supporting this");
626 : : #endif /* CONFIG_WPS */
627 : :
628 : : #ifdef CONFIG_P2P
629 [ # # ][ # # ]: 0 : if ((hapd->conf->p2p & P2P_ENABLED) && hapd->p2p_probe_resp_ie &&
[ # # ]
630 : 0 : !(hapd->iface->probe_resp_offloads &
631 : : WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P))
632 : 0 : wpa_printf(MSG_WARNING, "Device is trying to offload P2P "
633 : : "Probe Response while not supporting this");
634 : : #endif /* CONFIG_P2P */
635 : :
636 [ # # ][ # # ]: 0 : if (hapd->conf->interworking &&
637 : 0 : !(hapd->iface->probe_resp_offloads &
638 : : WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING))
639 : 0 : wpa_printf(MSG_WARNING, "Device is trying to offload "
640 : : "Interworking Probe Response while not supporting "
641 : : "this");
642 : :
643 : : /* Generate a Probe Response template for the non-P2P case */
644 : 426 : return hostapd_gen_probe_resp(hapd, NULL, NULL, 0, resp_len);
645 : : }
646 : :
647 : : #endif /* NEED_AP_MLME */
648 : :
649 : :
650 : 426 : int ieee802_11_build_ap_params(struct hostapd_data *hapd,
651 : : struct wpa_driver_ap_params *params)
652 : : {
653 : 426 : struct ieee80211_mgmt *head = NULL;
654 : 426 : u8 *tail = NULL;
655 : 426 : size_t head_len = 0, tail_len = 0;
656 : 426 : u8 *resp = NULL;
657 : 426 : size_t resp_len = 0;
658 : : #ifdef NEED_AP_MLME
659 : : u16 capab_info;
660 : : u8 *pos, *tailpos;
661 : :
662 : : #define BEACON_HEAD_BUF_SIZE 256
663 : : #define BEACON_TAIL_BUF_SIZE 512
664 : 426 : head = os_zalloc(BEACON_HEAD_BUF_SIZE);
665 : 426 : tail_len = BEACON_TAIL_BUF_SIZE;
666 : : #ifdef CONFIG_WPS
667 [ + - ][ + - ]: 426 : if (hapd->conf->wps_state && hapd->wps_beacon_ie)
668 : 426 : tail_len += wpabuf_len(hapd->wps_beacon_ie);
669 : : #endif /* CONFIG_WPS */
670 : : #ifdef CONFIG_P2P
671 [ + - ]: 426 : if (hapd->p2p_beacon_ie)
672 : 426 : tail_len += wpabuf_len(hapd->p2p_beacon_ie);
673 : : #endif /* CONFIG_P2P */
674 [ - + ]: 426 : if (hapd->conf->vendor_elements)
675 : 0 : tail_len += wpabuf_len(hapd->conf->vendor_elements);
676 : 426 : tailpos = tail = os_malloc(tail_len);
677 [ + - ][ - + ]: 426 : if (head == NULL || tail == NULL) {
678 : 0 : wpa_printf(MSG_ERROR, "Failed to set beacon data");
679 : 0 : os_free(head);
680 : 0 : os_free(tail);
681 : 0 : return -1;
682 : : }
683 : :
684 : 426 : head->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
685 : : WLAN_FC_STYPE_BEACON);
686 : 426 : head->duration = host_to_le16(0);
687 : 426 : os_memset(head->da, 0xff, ETH_ALEN);
688 : :
689 : 426 : os_memcpy(head->sa, hapd->own_addr, ETH_ALEN);
690 : 426 : os_memcpy(head->bssid, hapd->own_addr, ETH_ALEN);
691 : 426 : head->u.beacon.beacon_int =
692 : 426 : host_to_le16(hapd->iconf->beacon_int);
693 : :
694 : : /* hardware or low-level driver will setup seq_ctrl and timestamp */
695 : 426 : capab_info = hostapd_own_capab_info(hapd, NULL, 0);
696 : 426 : head->u.beacon.capab_info = host_to_le16(capab_info);
697 : 426 : pos = &head->u.beacon.variable[0];
698 : :
699 : : /* SSID */
700 : 426 : *pos++ = WLAN_EID_SSID;
701 [ - + ]: 426 : if (hapd->conf->ignore_broadcast_ssid == 2) {
702 : : /* clear the data, but keep the correct length of the SSID */
703 : 0 : *pos++ = hapd->conf->ssid.ssid_len;
704 : 0 : os_memset(pos, 0, hapd->conf->ssid.ssid_len);
705 : 0 : pos += hapd->conf->ssid.ssid_len;
706 [ - + ]: 426 : } else if (hapd->conf->ignore_broadcast_ssid) {
707 : 0 : *pos++ = 0; /* empty SSID */
708 : : } else {
709 : 426 : *pos++ = hapd->conf->ssid.ssid_len;
710 : 426 : os_memcpy(pos, hapd->conf->ssid.ssid,
711 : : hapd->conf->ssid.ssid_len);
712 : 426 : pos += hapd->conf->ssid.ssid_len;
713 : : }
714 : :
715 : : /* Supported rates */
716 : 426 : pos = hostapd_eid_supp_rates(hapd, pos);
717 : :
718 : : /* DS Params */
719 : 426 : pos = hostapd_eid_ds_params(hapd, pos);
720 : :
721 : 426 : head_len = pos - (u8 *) head;
722 : :
723 : 426 : tailpos = hostapd_eid_country(hapd, tailpos,
724 : 426 : tail + BEACON_TAIL_BUF_SIZE - tailpos);
725 : :
726 : : /* ERP Information element */
727 : 426 : tailpos = hostapd_eid_erp_info(hapd, tailpos);
728 : :
729 : : /* Extended supported rates */
730 : 426 : tailpos = hostapd_eid_ext_supp_rates(hapd, tailpos);
731 : :
732 : : /* RSN, MDIE, WPA */
733 : 426 : tailpos = hostapd_eid_wpa(hapd, tailpos, tail + BEACON_TAIL_BUF_SIZE -
734 : : tailpos);
735 : :
736 : 426 : tailpos = hostapd_eid_bss_load(hapd, tailpos,
737 : 426 : tail + BEACON_TAIL_BUF_SIZE - tailpos);
738 : :
739 : : #ifdef CONFIG_IEEE80211N
740 : 426 : tailpos = hostapd_eid_ht_capabilities(hapd, tailpos);
741 : 426 : tailpos = hostapd_eid_ht_operation(hapd, tailpos);
742 : : #endif /* CONFIG_IEEE80211N */
743 : :
744 : 426 : tailpos = hostapd_eid_ext_capab(hapd, tailpos);
745 : :
746 : : /*
747 : : * TODO: Time Advertisement element should only be included in some
748 : : * DTIM Beacon frames.
749 : : */
750 : 426 : tailpos = hostapd_eid_time_adv(hapd, tailpos);
751 : :
752 : 426 : tailpos = hostapd_eid_interworking(hapd, tailpos);
753 : 426 : tailpos = hostapd_eid_adv_proto(hapd, tailpos);
754 : 426 : tailpos = hostapd_eid_roaming_consortium(hapd, tailpos);
755 : 426 : tailpos = hostapd_add_csa_elems(hapd, tailpos, tail,
756 : 426 : &hapd->iface->cs_c_off_beacon);
757 : : #ifdef CONFIG_IEEE80211AC
758 : 426 : tailpos = hostapd_eid_vht_capabilities(hapd, tailpos);
759 : 426 : tailpos = hostapd_eid_vht_operation(hapd, tailpos);
760 : : #endif /* CONFIG_IEEE80211AC */
761 : :
762 : : /* Wi-Fi Alliance WMM */
763 : 426 : tailpos = hostapd_eid_wmm(hapd, tailpos);
764 : :
765 : : #ifdef CONFIG_WPS
766 [ + - ][ + - ]: 426 : if (hapd->conf->wps_state && hapd->wps_beacon_ie) {
767 : 426 : os_memcpy(tailpos, wpabuf_head(hapd->wps_beacon_ie),
768 : : wpabuf_len(hapd->wps_beacon_ie));
769 : 426 : tailpos += wpabuf_len(hapd->wps_beacon_ie);
770 : : }
771 : : #endif /* CONFIG_WPS */
772 : :
773 : : #ifdef CONFIG_P2P
774 [ + - ][ + - ]: 426 : if ((hapd->conf->p2p & P2P_ENABLED) && hapd->p2p_beacon_ie) {
775 : 426 : os_memcpy(tailpos, wpabuf_head(hapd->p2p_beacon_ie),
776 : : wpabuf_len(hapd->p2p_beacon_ie));
777 : 426 : tailpos += wpabuf_len(hapd->p2p_beacon_ie);
778 : : }
779 : : #endif /* CONFIG_P2P */
780 : : #ifdef CONFIG_P2P_MANAGER
781 : : if ((hapd->conf->p2p & (P2P_MANAGE | P2P_ENABLED | P2P_GROUP_OWNER)) ==
782 : : P2P_MANAGE)
783 : : tailpos = hostapd_eid_p2p_manage(hapd, tailpos);
784 : : #endif /* CONFIG_P2P_MANAGER */
785 : :
786 : : #ifdef CONFIG_HS20
787 : 426 : tailpos = hostapd_eid_hs20_indication(hapd, tailpos);
788 : : #endif /* CONFIG_HS20 */
789 : :
790 [ - + ]: 426 : if (hapd->conf->vendor_elements) {
791 : 0 : os_memcpy(tailpos, wpabuf_head(hapd->conf->vendor_elements),
792 : : wpabuf_len(hapd->conf->vendor_elements));
793 : 0 : tailpos += wpabuf_len(hapd->conf->vendor_elements);
794 : : }
795 : :
796 [ + - ]: 426 : tail_len = tailpos > tail ? tailpos - tail : 0;
797 : :
798 : 426 : resp = hostapd_probe_resp_offloads(hapd, &resp_len);
799 : : #endif /* NEED_AP_MLME */
800 : :
801 : 426 : os_memset(params, 0, sizeof(*params));
802 : 426 : params->head = (u8 *) head;
803 : 426 : params->head_len = head_len;
804 : 426 : params->tail = tail;
805 : 426 : params->tail_len = tail_len;
806 : 426 : params->proberesp = resp;
807 : 426 : params->proberesp_len = resp_len;
808 : 426 : params->dtim_period = hapd->conf->dtim_period;
809 : 426 : params->beacon_int = hapd->iconf->beacon_int;
810 : 426 : params->basic_rates = hapd->iface->basic_rates;
811 : 426 : params->ssid = hapd->conf->ssid.ssid;
812 : 426 : params->ssid_len = hapd->conf->ssid.ssid_len;
813 [ + - ]: 426 : params->pairwise_ciphers = hapd->conf->rsn_pairwise ?
814 : 426 : hapd->conf->rsn_pairwise : hapd->conf->wpa_pairwise;
815 : 426 : params->group_cipher = hapd->conf->wpa_group;
816 : 426 : params->key_mgmt_suites = hapd->conf->wpa_key_mgmt;
817 : 426 : params->auth_algs = hapd->conf->auth_algs;
818 : 426 : params->wpa_version = hapd->conf->wpa;
819 [ + - ][ - + ]: 426 : params->privacy = hapd->conf->ssid.wep.keys_set || hapd->conf->wpa ||
[ # # ]
820 [ # # ]: 0 : (hapd->conf->ieee802_1x &&
821 [ # # ]: 0 : (hapd->conf->default_wep_key_len ||
822 : 0 : hapd->conf->individual_wep_key_len));
823 [ + - - - ]: 426 : switch (hapd->conf->ignore_broadcast_ssid) {
824 : : case 0:
825 : 426 : params->hide_ssid = NO_SSID_HIDING;
826 : 426 : break;
827 : : case 1:
828 : 0 : params->hide_ssid = HIDDEN_SSID_ZERO_LEN;
829 : 0 : break;
830 : : case 2:
831 : 0 : params->hide_ssid = HIDDEN_SSID_ZERO_CONTENTS;
832 : 0 : break;
833 : : }
834 : 426 : params->isolate = hapd->conf->isolate;
835 : : #ifdef NEED_AP_MLME
836 : 426 : params->cts_protect = !!(ieee802_11_erp_info(hapd) &
837 : : ERP_INFO_USE_PROTECTION);
838 [ + - ][ - + ]: 426 : params->preamble = hapd->iface->num_sta_no_short_preamble == 0 &&
839 : 426 : hapd->iconf->preamble == SHORT_PREAMBLE;
840 [ + - ][ + - ]: 426 : if (hapd->iface->current_mode &&
841 : 426 : hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G)
842 : 426 : params->short_slot_time =
843 : 426 : hapd->iface->num_sta_no_short_slot_time > 0 ? 0 : 1;
844 : : else
845 : 0 : params->short_slot_time = -1;
846 [ + + ][ - + ]: 426 : if (!hapd->iconf->ieee80211n || hapd->conf->disable_11n)
847 : 1 : params->ht_opmode = -1;
848 : : else
849 : 425 : params->ht_opmode = hapd->iface->ht_op_mode;
850 : : #endif /* NEED_AP_MLME */
851 : 426 : params->interworking = hapd->conf->interworking;
852 [ - + # # ]: 426 : if (hapd->conf->interworking &&
853 : 0 : !is_zero_ether_addr(hapd->conf->hessid))
854 : 0 : params->hessid = hapd->conf->hessid;
855 : 426 : params->access_network_type = hapd->conf->access_network_type;
856 : 426 : params->ap_max_inactivity = hapd->conf->ap_max_inactivity;
857 : : #ifdef CONFIG_HS20
858 : 426 : params->disable_dgaf = hapd->conf->disable_dgaf;
859 : : #endif /* CONFIG_HS20 */
860 : 426 : return 0;
861 : : }
862 : :
863 : :
864 : 426 : void ieee802_11_free_ap_params(struct wpa_driver_ap_params *params)
865 : : {
866 : 426 : os_free(params->tail);
867 : 426 : params->tail = NULL;
868 : 426 : os_free(params->head);
869 : 426 : params->head = NULL;
870 : 426 : os_free(params->proberesp);
871 : 426 : params->proberesp = NULL;
872 : 426 : }
873 : :
874 : :
875 : 424 : int ieee802_11_set_beacon(struct hostapd_data *hapd)
876 : : {
877 : : struct wpa_driver_ap_params params;
878 : : struct wpabuf *beacon, *proberesp, *assocresp;
879 : 424 : int res, ret = -1;
880 : :
881 [ - + ]: 424 : if (hapd->iface->csa_in_progress) {
882 : 0 : wpa_printf(MSG_ERROR, "Cannot set beacons during CSA period");
883 : 0 : return -1;
884 : : }
885 : :
886 : 424 : hapd->beacon_set_done = 1;
887 : :
888 [ - + ]: 424 : if (ieee802_11_build_ap_params(hapd, ¶ms) < 0)
889 : 0 : return -1;
890 : :
891 [ - + ]: 424 : if (hostapd_build_ap_extra_ies(hapd, &beacon, &proberesp, &assocresp) <
892 : : 0)
893 : 0 : goto fail;
894 : :
895 : 424 : params.beacon_ies = beacon;
896 : 424 : params.proberesp_ies = proberesp;
897 : 424 : params.assocresp_ies = assocresp;
898 : :
899 : 424 : res = hostapd_drv_set_ap(hapd, ¶ms);
900 : 424 : hostapd_free_ap_extra_ies(hapd, beacon, proberesp, assocresp);
901 [ - + ]: 424 : if (res)
902 : 0 : wpa_printf(MSG_ERROR, "Failed to set beacon parameters");
903 : : else
904 : 424 : ret = 0;
905 : : fail:
906 : 424 : ieee802_11_free_ap_params(¶ms);
907 : 424 : return ret;
908 : : }
909 : :
910 : :
911 : 217 : int ieee802_11_set_beacons(struct hostapd_iface *iface)
912 : : {
913 : : size_t i;
914 : 217 : int ret = 0;
915 : :
916 [ + + ]: 434 : for (i = 0; i < iface->num_bss; i++) {
917 [ + - - + ]: 434 : if (iface->bss[i]->started &&
918 : 217 : ieee802_11_set_beacon(iface->bss[i]) < 0)
919 : 0 : ret = -1;
920 : : }
921 : :
922 : 217 : return ret;
923 : : }
924 : :
925 : :
926 : : /* only update beacons if started */
927 : 0 : int ieee802_11_update_beacons(struct hostapd_iface *iface)
928 : : {
929 : : size_t i;
930 : 0 : int ret = 0;
931 : :
932 [ # # ]: 0 : for (i = 0; i < iface->num_bss; i++) {
933 [ # # ]: 0 : if (iface->bss[i]->beacon_set_done && iface->bss[i]->started &&
[ # # # # ]
934 : 0 : ieee802_11_set_beacon(iface->bss[i]) < 0)
935 : 0 : ret = -1;
936 : : }
937 : :
938 : 0 : return ret;
939 : : }
940 : :
941 : : #endif /* CONFIG_NATIVE_WINDOWS */
|