beacon.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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. * Copyright (c) 2007-2008, Intel Corporation
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * Alternatively, this software may be distributed under the terms of BSD
  13. * license.
  14. *
  15. * See README and COPYING for more details.
  16. */
  17. #include "includes.h"
  18. #ifndef CONFIG_NATIVE_WINDOWS
  19. #include "common.h"
  20. #include "hostapd.h"
  21. #include "ieee802_11.h"
  22. #include "wpa.h"
  23. #include "wme.h"
  24. #include "beacon.h"
  25. #include "hw_features.h"
  26. #include "driver_i.h"
  27. #include "sta_info.h"
  28. #include "wps_hostapd.h"
  29. static u8 ieee802_11_erp_info(struct hostapd_data *hapd)
  30. {
  31. u8 erp = 0;
  32. if (hapd->iface->current_mode == NULL ||
  33. hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
  34. return 0;
  35. switch (hapd->iconf->cts_protection_type) {
  36. case CTS_PROTECTION_FORCE_ENABLED:
  37. erp |= ERP_INFO_NON_ERP_PRESENT | ERP_INFO_USE_PROTECTION;
  38. break;
  39. case CTS_PROTECTION_FORCE_DISABLED:
  40. erp = 0;
  41. break;
  42. case CTS_PROTECTION_AUTOMATIC:
  43. if (hapd->iface->olbc)
  44. erp |= ERP_INFO_USE_PROTECTION;
  45. /* continue */
  46. case CTS_PROTECTION_AUTOMATIC_NO_OLBC:
  47. if (hapd->iface->num_sta_non_erp > 0) {
  48. erp |= ERP_INFO_NON_ERP_PRESENT |
  49. ERP_INFO_USE_PROTECTION;
  50. }
  51. break;
  52. }
  53. if (hapd->iface->num_sta_no_short_preamble > 0)
  54. erp |= ERP_INFO_BARKER_PREAMBLE_MODE;
  55. return erp;
  56. }
  57. static u8 * hostapd_eid_ds_params(struct hostapd_data *hapd, u8 *eid)
  58. {
  59. *eid++ = WLAN_EID_DS_PARAMS;
  60. *eid++ = 1;
  61. *eid++ = hapd->iconf->channel;
  62. return eid;
  63. }
  64. static u8 * hostapd_eid_erp_info(struct hostapd_data *hapd, u8 *eid)
  65. {
  66. if (hapd->iface->current_mode == NULL ||
  67. hapd->iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
  68. return eid;
  69. /* Set NonERP_present and use_protection bits if there
  70. * are any associated NonERP stations. */
  71. /* TODO: use_protection bit can be set to zero even if
  72. * there are NonERP stations present. This optimization
  73. * might be useful if NonERP stations are "quiet".
  74. * See 802.11g/D6 E-1 for recommended practice.
  75. * In addition, Non ERP present might be set, if AP detects Non ERP
  76. * operation on other APs. */
  77. /* Add ERP Information element */
  78. *eid++ = WLAN_EID_ERP_INFO;
  79. *eid++ = 1;
  80. *eid++ = ieee802_11_erp_info(hapd);
  81. return eid;
  82. }
  83. static u8 * hostapd_eid_country_add(u8 *pos, u8 *end, int chan_spacing,
  84. struct hostapd_channel_data *start,
  85. struct hostapd_channel_data *prev)
  86. {
  87. if (end - pos < 3)
  88. return pos;
  89. /* first channel number */
  90. *pos++ = start->chan;
  91. /* number of channels */
  92. *pos++ = (prev->chan - start->chan) / chan_spacing + 1;
  93. /* maximum transmit power level */
  94. *pos++ = start->max_tx_power;
  95. return pos;
  96. }
  97. static u8 * hostapd_eid_country(struct hostapd_data *hapd, u8 *eid,
  98. int max_len)
  99. {
  100. u8 *pos = eid;
  101. u8 *end = eid + max_len;
  102. int i;
  103. struct hostapd_hw_modes *mode;
  104. struct hostapd_channel_data *start, *prev;
  105. int chan_spacing = 1;
  106. if (!hapd->iconf->ieee80211d || max_len < 6 ||
  107. hapd->iface->current_mode == NULL)
  108. return eid;
  109. *pos++ = WLAN_EID_COUNTRY;
  110. pos++; /* length will be set later */
  111. os_memcpy(pos, hapd->iconf->country, 3); /* e.g., 'US ' */
  112. pos += 3;
  113. mode = hapd->iface->current_mode;
  114. if (mode->mode == HOSTAPD_MODE_IEEE80211A)
  115. chan_spacing = 4;
  116. start = prev = NULL;
  117. for (i = 0; i < mode->num_channels; i++) {
  118. struct hostapd_channel_data *chan = &mode->channels[i];
  119. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  120. continue;
  121. if (start && prev &&
  122. prev->chan + chan_spacing == chan->chan &&
  123. start->max_tx_power == chan->max_tx_power) {
  124. prev = chan;
  125. continue; /* can use same entry */
  126. }
  127. if (start) {
  128. pos = hostapd_eid_country_add(pos, end, chan_spacing,
  129. start, prev);
  130. start = NULL;
  131. }
  132. /* Start new group */
  133. start = prev = chan;
  134. }
  135. if (start) {
  136. pos = hostapd_eid_country_add(pos, end, chan_spacing,
  137. start, prev);
  138. }
  139. if ((pos - eid) & 1) {
  140. if (end - pos < 1)
  141. return eid;
  142. *pos++ = 0; /* pad for 16-bit alignment */
  143. }
  144. eid[1] = (pos - eid) - 2;
  145. return pos;
  146. }
  147. static u8 * hostapd_eid_wpa(struct hostapd_data *hapd, u8 *eid, size_t len,
  148. struct sta_info *sta)
  149. {
  150. const u8 *ie;
  151. size_t ielen;
  152. ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &ielen);
  153. if (ie == NULL || ielen > len)
  154. return eid;
  155. os_memcpy(eid, ie, ielen);
  156. return eid + ielen;
  157. }
  158. void handle_probe_req(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
  159. size_t len)
  160. {
  161. struct ieee80211_mgmt *resp;
  162. struct ieee802_11_elems elems;
  163. char *ssid;
  164. u8 *pos, *epos, *ie;
  165. size_t ssid_len, ie_len;
  166. struct sta_info *sta = NULL;
  167. ie = mgmt->u.probe_req.variable;
  168. ie_len = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.probe_req));
  169. hostapd_probe_req_rx(hapd, mgmt->sa, ie, ie_len);
  170. if (!hapd->iconf->send_probe_response)
  171. return;
  172. if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
  173. wpa_printf(MSG_DEBUG, "Could not parse ProbeReq from " MACSTR,
  174. MAC2STR(mgmt->sa));
  175. return;
  176. }
  177. ssid = NULL;
  178. ssid_len = 0;
  179. if ((!elems.ssid || !elems.supp_rates)) {
  180. wpa_printf(MSG_DEBUG, "STA " MACSTR " sent probe request "
  181. "without SSID or supported rates element",
  182. MAC2STR(mgmt->sa));
  183. return;
  184. }
  185. if (hapd->conf->ignore_broadcast_ssid && elems.ssid_len == 0) {
  186. wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR " for "
  187. "broadcast SSID ignored", MAC2STR(mgmt->sa));
  188. return;
  189. }
  190. sta = ap_get_sta(hapd, mgmt->sa);
  191. if (elems.ssid_len == 0 ||
  192. (elems.ssid_len == hapd->conf->ssid.ssid_len &&
  193. os_memcmp(elems.ssid, hapd->conf->ssid.ssid, elems.ssid_len) ==
  194. 0)) {
  195. ssid = hapd->conf->ssid.ssid;
  196. ssid_len = hapd->conf->ssid.ssid_len;
  197. if (sta)
  198. sta->ssid_probe = &hapd->conf->ssid;
  199. }
  200. if (!ssid) {
  201. if (!(mgmt->da[0] & 0x01)) {
  202. char ssid_txt[33];
  203. ieee802_11_print_ssid(ssid_txt, elems.ssid,
  204. elems.ssid_len);
  205. wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR
  206. " for foreign SSID '%s'",
  207. MAC2STR(mgmt->sa), ssid_txt);
  208. }
  209. return;
  210. }
  211. /* TODO: verify that supp_rates contains at least one matching rate
  212. * with AP configuration */
  213. #define MAX_PROBERESP_LEN 768
  214. resp = os_zalloc(MAX_PROBERESP_LEN);
  215. if (resp == NULL)
  216. return;
  217. epos = ((u8 *) resp) + MAX_PROBERESP_LEN;
  218. resp->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  219. WLAN_FC_STYPE_PROBE_RESP);
  220. os_memcpy(resp->da, mgmt->sa, ETH_ALEN);
  221. os_memcpy(resp->sa, hapd->own_addr, ETH_ALEN);
  222. os_memcpy(resp->bssid, hapd->own_addr, ETH_ALEN);
  223. resp->u.probe_resp.beacon_int =
  224. host_to_le16(hapd->iconf->beacon_int);
  225. /* hardware or low-level driver will setup seq_ctrl and timestamp */
  226. resp->u.probe_resp.capab_info =
  227. host_to_le16(hostapd_own_capab_info(hapd, sta, 1));
  228. pos = resp->u.probe_resp.variable;
  229. *pos++ = WLAN_EID_SSID;
  230. *pos++ = ssid_len;
  231. os_memcpy(pos, ssid, ssid_len);
  232. pos += ssid_len;
  233. /* Supported rates */
  234. pos = hostapd_eid_supp_rates(hapd, pos);
  235. /* DS Params */
  236. pos = hostapd_eid_ds_params(hapd, pos);
  237. pos = hostapd_eid_country(hapd, pos, epos - pos);
  238. /* ERP Information element */
  239. pos = hostapd_eid_erp_info(hapd, pos);
  240. /* Extended supported rates */
  241. pos = hostapd_eid_ext_supp_rates(hapd, pos);
  242. pos = hostapd_eid_wpa(hapd, pos, epos - pos, sta);
  243. /* Wi-Fi Alliance WMM */
  244. pos = hostapd_eid_wmm(hapd, pos);
  245. pos = hostapd_eid_ht_capabilities(hapd, pos);
  246. pos = hostapd_eid_ht_operation(hapd, pos);
  247. #ifdef CONFIG_WPS
  248. if (hapd->conf->wps_state && hapd->wps_probe_resp_ie) {
  249. os_memcpy(pos, hapd->wps_probe_resp_ie,
  250. hapd->wps_probe_resp_ie_len);
  251. pos += hapd->wps_probe_resp_ie_len;
  252. }
  253. #endif /* CONFIG_WPS */
  254. if (hostapd_send_mgmt_frame(hapd, resp, pos - (u8 *) resp) < 0)
  255. perror("handle_probe_req: send");
  256. os_free(resp);
  257. wpa_printf(MSG_MSGDUMP, "STA " MACSTR " sent probe request for %s "
  258. "SSID", MAC2STR(mgmt->sa),
  259. elems.ssid_len == 0 ? "broadcast" : "our");
  260. }
  261. void ieee802_11_set_beacon(struct hostapd_data *hapd)
  262. {
  263. struct ieee80211_mgmt *head;
  264. u8 *pos, *tail, *tailpos;
  265. int preamble;
  266. u16 capab_info;
  267. size_t head_len, tail_len;
  268. int cts_protection = ((ieee802_11_erp_info(hapd) &
  269. ERP_INFO_USE_PROTECTION) ? 1 : 0);
  270. #define BEACON_HEAD_BUF_SIZE 256
  271. #define BEACON_TAIL_BUF_SIZE 512
  272. head = os_zalloc(BEACON_HEAD_BUF_SIZE);
  273. tailpos = tail = os_malloc(BEACON_TAIL_BUF_SIZE);
  274. if (head == NULL || tail == NULL) {
  275. wpa_printf(MSG_ERROR, "Failed to set beacon data");
  276. os_free(head);
  277. os_free(tail);
  278. return;
  279. }
  280. head->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  281. WLAN_FC_STYPE_BEACON);
  282. head->duration = host_to_le16(0);
  283. os_memset(head->da, 0xff, ETH_ALEN);
  284. os_memcpy(head->sa, hapd->own_addr, ETH_ALEN);
  285. os_memcpy(head->bssid, hapd->own_addr, ETH_ALEN);
  286. head->u.beacon.beacon_int =
  287. host_to_le16(hapd->iconf->beacon_int);
  288. /* hardware or low-level driver will setup seq_ctrl and timestamp */
  289. capab_info = hostapd_own_capab_info(hapd, NULL, 0);
  290. head->u.beacon.capab_info = host_to_le16(capab_info);
  291. pos = &head->u.beacon.variable[0];
  292. /* SSID */
  293. *pos++ = WLAN_EID_SSID;
  294. if (hapd->conf->ignore_broadcast_ssid == 2) {
  295. /* clear the data, but keep the correct length of the SSID */
  296. *pos++ = hapd->conf->ssid.ssid_len;
  297. os_memset(pos, 0, hapd->conf->ssid.ssid_len);
  298. pos += hapd->conf->ssid.ssid_len;
  299. } else if (hapd->conf->ignore_broadcast_ssid) {
  300. *pos++ = 0; /* empty SSID */
  301. } else {
  302. *pos++ = hapd->conf->ssid.ssid_len;
  303. os_memcpy(pos, hapd->conf->ssid.ssid,
  304. hapd->conf->ssid.ssid_len);
  305. pos += hapd->conf->ssid.ssid_len;
  306. }
  307. /* Supported rates */
  308. pos = hostapd_eid_supp_rates(hapd, pos);
  309. /* DS Params */
  310. pos = hostapd_eid_ds_params(hapd, pos);
  311. head_len = pos - (u8 *) head;
  312. tailpos = hostapd_eid_country(hapd, tailpos,
  313. tail + BEACON_TAIL_BUF_SIZE - tailpos);
  314. /* ERP Information element */
  315. tailpos = hostapd_eid_erp_info(hapd, tailpos);
  316. /* Extended supported rates */
  317. tailpos = hostapd_eid_ext_supp_rates(hapd, tailpos);
  318. tailpos = hostapd_eid_wpa(hapd, tailpos, tail + BEACON_TAIL_BUF_SIZE -
  319. tailpos, NULL);
  320. /* Wi-Fi Alliance WMM */
  321. tailpos = hostapd_eid_wmm(hapd, tailpos);
  322. #ifdef CONFIG_IEEE80211N
  323. if (hapd->iconf->ieee80211n) {
  324. u8 *ht_capab, *ht_oper;
  325. ht_capab = tailpos;
  326. tailpos = hostapd_eid_ht_capabilities(hapd, tailpos);
  327. ht_oper = tailpos;
  328. tailpos = hostapd_eid_ht_operation(hapd, tailpos);
  329. if (tailpos > ht_oper && ht_oper > ht_capab &&
  330. hostapd_set_ht_params(hapd->conf->iface, hapd,
  331. ht_capab + 2, ht_capab[1],
  332. ht_oper + 2, ht_oper[1])) {
  333. wpa_printf(MSG_ERROR, "Could not set HT capabilities "
  334. "for kernel driver");
  335. }
  336. }
  337. #endif /* CONFIG_IEEE80211N */
  338. #ifdef CONFIG_WPS
  339. if (hapd->conf->wps_state && hapd->wps_beacon_ie) {
  340. os_memcpy(tailpos, hapd->wps_beacon_ie,
  341. hapd->wps_beacon_ie_len);
  342. tailpos += hapd->wps_beacon_ie_len;
  343. }
  344. #endif /* CONFIG_WPS */
  345. tail_len = tailpos > tail ? tailpos - tail : 0;
  346. if (hostapd_set_beacon(hapd->conf->iface, hapd, (u8 *) head, head_len,
  347. tail, tail_len, hapd->conf->dtim_period,
  348. hapd->iconf->beacon_int))
  349. wpa_printf(MSG_ERROR, "Failed to set beacon head/tail or DTIM "
  350. "period");
  351. os_free(tail);
  352. os_free(head);
  353. if (hostapd_set_cts_protect(hapd, cts_protection))
  354. wpa_printf(MSG_ERROR, "Failed to set CTS protect in kernel "
  355. "driver");
  356. if (hapd->iface->current_mode &&
  357. hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G &&
  358. hostapd_set_short_slot_time(hapd,
  359. hapd->iface->num_sta_no_short_slot_time
  360. > 0 ? 0 : 1))
  361. wpa_printf(MSG_ERROR, "Failed to set Short Slot Time option "
  362. "in kernel driver");
  363. if (hapd->iface->num_sta_no_short_preamble == 0 &&
  364. hapd->iconf->preamble == SHORT_PREAMBLE)
  365. preamble = SHORT_PREAMBLE;
  366. else
  367. preamble = LONG_PREAMBLE;
  368. if (hostapd_set_preamble(hapd, preamble))
  369. wpa_printf(MSG_ERROR, "Could not set preamble for kernel "
  370. "driver");
  371. }
  372. void ieee802_11_set_beacons(struct hostapd_iface *iface)
  373. {
  374. size_t i;
  375. for (i = 0; i < iface->num_bss; i++)
  376. ieee802_11_set_beacon(iface->bss[i]);
  377. }
  378. #endif /* CONFIG_NATIVE_WINDOWS */