beacon.c 23 KB

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