beacon.c 21 KB

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