drv_callbacks.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065
  1. /*
  2. * hostapd / Callback functions for driver wrappers
  3. * Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "radius/radius.h"
  11. #include "drivers/driver.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "common/ieee802_11_common.h"
  14. #include "common/wpa_ctrl.h"
  15. #include "crypto/random.h"
  16. #include "p2p/p2p.h"
  17. #include "wps/wps.h"
  18. #include "wnm_ap.h"
  19. #include "hostapd.h"
  20. #include "ieee802_11.h"
  21. #include "sta_info.h"
  22. #include "accounting.h"
  23. #include "tkip_countermeasures.h"
  24. #include "ieee802_1x.h"
  25. #include "wpa_auth.h"
  26. #include "wps_hostapd.h"
  27. #include "ap_drv_ops.h"
  28. #include "ap_config.h"
  29. #include "hw_features.h"
  30. #include "dfs.h"
  31. int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
  32. const u8 *req_ies, size_t req_ies_len, int reassoc)
  33. {
  34. struct sta_info *sta;
  35. int new_assoc, res;
  36. struct ieee802_11_elems elems;
  37. const u8 *ie;
  38. size_t ielen;
  39. #ifdef CONFIG_IEEE80211R
  40. u8 buf[sizeof(struct ieee80211_mgmt) + 1024];
  41. u8 *p = buf;
  42. #endif /* CONFIG_IEEE80211R */
  43. u16 reason = WLAN_REASON_UNSPECIFIED;
  44. u16 status = WLAN_STATUS_SUCCESS;
  45. const u8 *p2p_dev_addr = NULL;
  46. if (addr == NULL) {
  47. /*
  48. * This could potentially happen with unexpected event from the
  49. * driver wrapper. This was seen at least in one case where the
  50. * driver ended up being set to station mode while hostapd was
  51. * running, so better make sure we stop processing such an
  52. * event here.
  53. */
  54. wpa_printf(MSG_DEBUG, "hostapd_notif_assoc: Skip event with "
  55. "no address");
  56. return -1;
  57. }
  58. random_add_randomness(addr, ETH_ALEN);
  59. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  60. HOSTAPD_LEVEL_INFO, "associated");
  61. ieee802_11_parse_elems(req_ies, req_ies_len, &elems, 0);
  62. if (elems.wps_ie) {
  63. ie = elems.wps_ie - 2;
  64. ielen = elems.wps_ie_len + 2;
  65. wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)AssocReq");
  66. } else if (elems.rsn_ie) {
  67. ie = elems.rsn_ie - 2;
  68. ielen = elems.rsn_ie_len + 2;
  69. wpa_printf(MSG_DEBUG, "STA included RSN IE in (Re)AssocReq");
  70. } else if (elems.wpa_ie) {
  71. ie = elems.wpa_ie - 2;
  72. ielen = elems.wpa_ie_len + 2;
  73. wpa_printf(MSG_DEBUG, "STA included WPA IE in (Re)AssocReq");
  74. } else {
  75. ie = NULL;
  76. ielen = 0;
  77. wpa_printf(MSG_DEBUG, "STA did not include WPS/RSN/WPA IE in "
  78. "(Re)AssocReq");
  79. }
  80. sta = ap_get_sta(hapd, addr);
  81. if (sta) {
  82. ap_sta_no_session_timeout(hapd, sta);
  83. accounting_sta_stop(hapd, sta);
  84. /*
  85. * Make sure that the previously registered inactivity timer
  86. * will not remove the STA immediately.
  87. */
  88. sta->timeout_next = STA_NULLFUNC;
  89. } else {
  90. sta = ap_sta_add(hapd, addr);
  91. if (sta == NULL) {
  92. hostapd_drv_sta_disassoc(hapd, addr,
  93. WLAN_REASON_DISASSOC_AP_BUSY);
  94. return -1;
  95. }
  96. }
  97. sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS | WLAN_STA_WPS2);
  98. #ifdef CONFIG_P2P
  99. if (elems.p2p) {
  100. wpabuf_free(sta->p2p_ie);
  101. sta->p2p_ie = ieee802_11_vendor_ie_concat(req_ies, req_ies_len,
  102. P2P_IE_VENDOR_TYPE);
  103. if (sta->p2p_ie)
  104. p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
  105. }
  106. #endif /* CONFIG_P2P */
  107. #ifdef CONFIG_INTERWORKING
  108. if (elems.ext_capab && elems.ext_capab_len > 4) {
  109. if (elems.ext_capab[4] & 0x01)
  110. sta->qos_map_enabled = 1;
  111. }
  112. #endif /* CONFIG_INTERWORKING */
  113. #ifdef CONFIG_HS20
  114. wpabuf_free(sta->hs20_ie);
  115. if (elems.hs20 && elems.hs20_len > 4) {
  116. sta->hs20_ie = wpabuf_alloc_copy(elems.hs20 + 4,
  117. elems.hs20_len - 4);
  118. } else
  119. sta->hs20_ie = NULL;
  120. #endif /* CONFIG_HS20 */
  121. if (hapd->conf->wpa) {
  122. if (ie == NULL || ielen == 0) {
  123. #ifdef CONFIG_WPS
  124. if (hapd->conf->wps_state) {
  125. wpa_printf(MSG_DEBUG, "STA did not include "
  126. "WPA/RSN IE in (Re)Association "
  127. "Request - possible WPS use");
  128. sta->flags |= WLAN_STA_MAYBE_WPS;
  129. goto skip_wpa_check;
  130. }
  131. #endif /* CONFIG_WPS */
  132. wpa_printf(MSG_DEBUG, "No WPA/RSN IE from STA");
  133. return -1;
  134. }
  135. #ifdef CONFIG_WPS
  136. if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
  137. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  138. struct wpabuf *wps;
  139. sta->flags |= WLAN_STA_WPS;
  140. wps = ieee802_11_vendor_ie_concat(ie, ielen,
  141. WPS_IE_VENDOR_TYPE);
  142. if (wps) {
  143. if (wps_is_20(wps)) {
  144. wpa_printf(MSG_DEBUG, "WPS: STA "
  145. "supports WPS 2.0");
  146. sta->flags |= WLAN_STA_WPS2;
  147. }
  148. wpabuf_free(wps);
  149. }
  150. goto skip_wpa_check;
  151. }
  152. #endif /* CONFIG_WPS */
  153. if (sta->wpa_sm == NULL)
  154. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  155. sta->addr,
  156. p2p_dev_addr);
  157. if (sta->wpa_sm == NULL) {
  158. wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
  159. "machine");
  160. return -1;
  161. }
  162. res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
  163. ie, ielen,
  164. elems.mdie, elems.mdie_len);
  165. if (res != WPA_IE_OK) {
  166. wpa_printf(MSG_DEBUG, "WPA/RSN information element "
  167. "rejected? (res %u)", res);
  168. wpa_hexdump(MSG_DEBUG, "IE", ie, ielen);
  169. if (res == WPA_INVALID_GROUP) {
  170. reason = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  171. status = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
  172. } else if (res == WPA_INVALID_PAIRWISE) {
  173. reason = WLAN_REASON_PAIRWISE_CIPHER_NOT_VALID;
  174. status = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID;
  175. } else if (res == WPA_INVALID_AKMP) {
  176. reason = WLAN_REASON_AKMP_NOT_VALID;
  177. status = WLAN_STATUS_AKMP_NOT_VALID;
  178. }
  179. #ifdef CONFIG_IEEE80211W
  180. else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION) {
  181. reason = WLAN_REASON_INVALID_IE;
  182. status = WLAN_STATUS_INVALID_IE;
  183. } else if (res == WPA_INVALID_MGMT_GROUP_CIPHER) {
  184. reason = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  185. status = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
  186. }
  187. #endif /* CONFIG_IEEE80211W */
  188. else {
  189. reason = WLAN_REASON_INVALID_IE;
  190. status = WLAN_STATUS_INVALID_IE;
  191. }
  192. goto fail;
  193. }
  194. #ifdef CONFIG_IEEE80211W
  195. if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
  196. sta->sa_query_count > 0)
  197. ap_check_sa_query_timeout(hapd, sta);
  198. if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
  199. (sta->auth_alg != WLAN_AUTH_FT)) {
  200. /*
  201. * STA has already been associated with MFP and SA
  202. * Query timeout has not been reached. Reject the
  203. * association attempt temporarily and start SA Query,
  204. * if one is not pending.
  205. */
  206. if (sta->sa_query_count == 0)
  207. ap_sta_start_sa_query(hapd, sta);
  208. #ifdef CONFIG_IEEE80211R
  209. status = WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY;
  210. p = hostapd_eid_assoc_comeback_time(hapd, sta, p);
  211. hostapd_sta_assoc(hapd, addr, reassoc, status, buf,
  212. p - buf);
  213. #endif /* CONFIG_IEEE80211R */
  214. return 0;
  215. }
  216. if (wpa_auth_uses_mfp(sta->wpa_sm))
  217. sta->flags |= WLAN_STA_MFP;
  218. else
  219. sta->flags &= ~WLAN_STA_MFP;
  220. #endif /* CONFIG_IEEE80211W */
  221. #ifdef CONFIG_IEEE80211R
  222. if (sta->auth_alg == WLAN_AUTH_FT) {
  223. status = wpa_ft_validate_reassoc(sta->wpa_sm, req_ies,
  224. req_ies_len);
  225. if (status != WLAN_STATUS_SUCCESS) {
  226. if (status == WLAN_STATUS_INVALID_PMKID)
  227. reason = WLAN_REASON_INVALID_IE;
  228. if (status == WLAN_STATUS_INVALID_MDIE)
  229. reason = WLAN_REASON_INVALID_IE;
  230. if (status == WLAN_STATUS_INVALID_FTIE)
  231. reason = WLAN_REASON_INVALID_IE;
  232. goto fail;
  233. }
  234. }
  235. #endif /* CONFIG_IEEE80211R */
  236. } else if (hapd->conf->wps_state) {
  237. #ifdef CONFIG_WPS
  238. struct wpabuf *wps;
  239. if (req_ies)
  240. wps = ieee802_11_vendor_ie_concat(req_ies, req_ies_len,
  241. WPS_IE_VENDOR_TYPE);
  242. else
  243. wps = NULL;
  244. #ifdef CONFIG_WPS_STRICT
  245. if (wps && wps_validate_assoc_req(wps) < 0) {
  246. reason = WLAN_REASON_INVALID_IE;
  247. status = WLAN_STATUS_INVALID_IE;
  248. wpabuf_free(wps);
  249. goto fail;
  250. }
  251. #endif /* CONFIG_WPS_STRICT */
  252. if (wps) {
  253. sta->flags |= WLAN_STA_WPS;
  254. if (wps_is_20(wps)) {
  255. wpa_printf(MSG_DEBUG, "WPS: STA supports "
  256. "WPS 2.0");
  257. sta->flags |= WLAN_STA_WPS2;
  258. }
  259. } else
  260. sta->flags |= WLAN_STA_MAYBE_WPS;
  261. wpabuf_free(wps);
  262. #endif /* CONFIG_WPS */
  263. }
  264. #ifdef CONFIG_WPS
  265. skip_wpa_check:
  266. #endif /* CONFIG_WPS */
  267. #ifdef CONFIG_IEEE80211R
  268. p = wpa_sm_write_assoc_resp_ies(sta->wpa_sm, buf, sizeof(buf),
  269. sta->auth_alg, req_ies, req_ies_len);
  270. hostapd_sta_assoc(hapd, addr, reassoc, status, buf, p - buf);
  271. #else /* CONFIG_IEEE80211R */
  272. /* Keep compiler silent about unused variables */
  273. if (status) {
  274. }
  275. #endif /* CONFIG_IEEE80211R */
  276. new_assoc = (sta->flags & WLAN_STA_ASSOC) == 0;
  277. sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC;
  278. if (reassoc && (sta->auth_alg == WLAN_AUTH_FT))
  279. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC_FT);
  280. else
  281. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
  282. hostapd_new_assoc_sta(hapd, sta, !new_assoc);
  283. ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
  284. #ifdef CONFIG_P2P
  285. if (req_ies) {
  286. p2p_group_notif_assoc(hapd->p2p_group, sta->addr,
  287. req_ies, req_ies_len);
  288. }
  289. #endif /* CONFIG_P2P */
  290. return 0;
  291. fail:
  292. #ifdef CONFIG_IEEE80211R
  293. hostapd_sta_assoc(hapd, addr, reassoc, status, buf, p - buf);
  294. #endif /* CONFIG_IEEE80211R */
  295. hostapd_drv_sta_disassoc(hapd, sta->addr, reason);
  296. ap_free_sta(hapd, sta);
  297. return -1;
  298. }
  299. void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr)
  300. {
  301. struct sta_info *sta;
  302. if (addr == NULL) {
  303. /*
  304. * This could potentially happen with unexpected event from the
  305. * driver wrapper. This was seen at least in one case where the
  306. * driver ended up reporting a station mode event while hostapd
  307. * was running, so better make sure we stop processing such an
  308. * event here.
  309. */
  310. wpa_printf(MSG_DEBUG, "hostapd_notif_disassoc: Skip event "
  311. "with no address");
  312. return;
  313. }
  314. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  315. HOSTAPD_LEVEL_INFO, "disassociated");
  316. sta = ap_get_sta(hapd, addr);
  317. if (sta == NULL) {
  318. wpa_printf(MSG_DEBUG, "Disassociation notification for "
  319. "unknown STA " MACSTR, MAC2STR(addr));
  320. return;
  321. }
  322. ap_sta_set_authorized(hapd, sta, 0);
  323. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  324. wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
  325. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  326. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  327. ap_free_sta(hapd, sta);
  328. }
  329. void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr)
  330. {
  331. struct sta_info *sta = ap_get_sta(hapd, addr);
  332. if (!sta || !hapd->conf->disassoc_low_ack)
  333. return;
  334. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  335. HOSTAPD_LEVEL_INFO, "disconnected due to excessive "
  336. "missing ACKs");
  337. hostapd_drv_sta_disassoc(hapd, addr, WLAN_REASON_DISASSOC_LOW_ACK);
  338. if (sta)
  339. ap_sta_disassociate(hapd, sta, WLAN_REASON_DISASSOC_LOW_ACK);
  340. }
  341. void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
  342. int offset, int width, int cf1, int cf2)
  343. {
  344. #ifdef NEED_AP_MLME
  345. int channel, chwidth, seg0_idx = 0, seg1_idx = 0;
  346. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  347. HOSTAPD_LEVEL_INFO, "driver had channel switch: "
  348. "freq=%d, ht=%d, offset=%d, width=%d, cf1=%d, cf2=%d",
  349. freq, ht, offset, width, cf1, cf2);
  350. hapd->iface->freq = freq;
  351. channel = hostapd_hw_get_channel(hapd, freq);
  352. if (!channel) {
  353. hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
  354. HOSTAPD_LEVEL_WARNING, "driver switched to "
  355. "bad channel!");
  356. return;
  357. }
  358. switch (width) {
  359. case CHAN_WIDTH_80:
  360. chwidth = VHT_CHANWIDTH_80MHZ;
  361. break;
  362. case CHAN_WIDTH_80P80:
  363. chwidth = VHT_CHANWIDTH_80P80MHZ;
  364. break;
  365. case CHAN_WIDTH_160:
  366. chwidth = VHT_CHANWIDTH_160MHZ;
  367. break;
  368. case CHAN_WIDTH_20_NOHT:
  369. case CHAN_WIDTH_20:
  370. case CHAN_WIDTH_40:
  371. default:
  372. chwidth = VHT_CHANWIDTH_USE_HT;
  373. break;
  374. }
  375. switch (hapd->iface->current_mode->mode) {
  376. case HOSTAPD_MODE_IEEE80211A:
  377. if (cf1 > 5000)
  378. seg0_idx = (cf1 - 5000) / 5;
  379. if (cf2 > 5000)
  380. seg1_idx = (cf2 - 5000) / 5;
  381. break;
  382. default:
  383. seg0_idx = hostapd_hw_get_channel(hapd, cf1);
  384. seg1_idx = hostapd_hw_get_channel(hapd, cf2);
  385. break;
  386. }
  387. hapd->iconf->channel = channel;
  388. hapd->iconf->ieee80211n = ht;
  389. hapd->iconf->secondary_channel = offset;
  390. hapd->iconf->vht_oper_chwidth = chwidth;
  391. hapd->iconf->vht_oper_centr_freq_seg0_idx = seg0_idx;
  392. hapd->iconf->vht_oper_centr_freq_seg1_idx = seg1_idx;
  393. if (hapd->iface->csa_in_progress && freq == hapd->iface->cs_freq) {
  394. hostapd_cleanup_cs_params(hapd);
  395. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_CSA_FINISHED "freq=%d",
  396. freq);
  397. }
  398. #endif /* NEED_AP_MLME */
  399. }
  400. void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
  401. const u8 *addr, int reason_code)
  402. {
  403. switch (reason_code) {
  404. case MAX_CLIENT_REACHED:
  405. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_REJECTED_MAX_STA MACSTR,
  406. MAC2STR(addr));
  407. break;
  408. case BLOCKED_CLIENT:
  409. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_REJECTED_BLOCKED_STA MACSTR,
  410. MAC2STR(addr));
  411. break;
  412. }
  413. }
  414. int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
  415. const u8 *bssid, const u8 *ie, size_t ie_len,
  416. int ssi_signal)
  417. {
  418. size_t i;
  419. int ret = 0;
  420. if (sa == NULL || ie == NULL)
  421. return -1;
  422. random_add_randomness(sa, ETH_ALEN);
  423. for (i = 0; hapd->probereq_cb && i < hapd->num_probereq_cb; i++) {
  424. if (hapd->probereq_cb[i].cb(hapd->probereq_cb[i].ctx,
  425. sa, da, bssid, ie, ie_len,
  426. ssi_signal) > 0) {
  427. ret = 1;
  428. break;
  429. }
  430. }
  431. return ret;
  432. }
  433. #ifdef HOSTAPD
  434. #ifdef CONFIG_IEEE80211R
  435. static void hostapd_notify_auth_ft_finish(void *ctx, const u8 *dst,
  436. const u8 *bssid,
  437. u16 auth_transaction, u16 status,
  438. const u8 *ies, size_t ies_len)
  439. {
  440. struct hostapd_data *hapd = ctx;
  441. struct sta_info *sta;
  442. sta = ap_get_sta(hapd, dst);
  443. if (sta == NULL)
  444. return;
  445. hostapd_logger(hapd, dst, HOSTAPD_MODULE_IEEE80211,
  446. HOSTAPD_LEVEL_DEBUG, "authentication OK (FT)");
  447. sta->flags |= WLAN_STA_AUTH;
  448. hostapd_sta_auth(hapd, dst, auth_transaction, status, ies, ies_len);
  449. }
  450. #endif /* CONFIG_IEEE80211R */
  451. static void hostapd_notif_auth(struct hostapd_data *hapd,
  452. struct auth_info *rx_auth)
  453. {
  454. struct sta_info *sta;
  455. u16 status = WLAN_STATUS_SUCCESS;
  456. u8 resp_ies[2 + WLAN_AUTH_CHALLENGE_LEN];
  457. size_t resp_ies_len = 0;
  458. sta = ap_get_sta(hapd, rx_auth->peer);
  459. if (!sta) {
  460. sta = ap_sta_add(hapd, rx_auth->peer);
  461. if (sta == NULL) {
  462. status = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  463. goto fail;
  464. }
  465. }
  466. sta->flags &= ~WLAN_STA_PREAUTH;
  467. ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
  468. #ifdef CONFIG_IEEE80211R
  469. if (rx_auth->auth_type == WLAN_AUTH_FT && hapd->wpa_auth) {
  470. sta->auth_alg = WLAN_AUTH_FT;
  471. if (sta->wpa_sm == NULL)
  472. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  473. sta->addr, NULL);
  474. if (sta->wpa_sm == NULL) {
  475. wpa_printf(MSG_DEBUG, "FT: Failed to initialize WPA "
  476. "state machine");
  477. status = WLAN_STATUS_UNSPECIFIED_FAILURE;
  478. goto fail;
  479. }
  480. wpa_ft_process_auth(sta->wpa_sm, rx_auth->bssid,
  481. rx_auth->auth_transaction, rx_auth->ies,
  482. rx_auth->ies_len,
  483. hostapd_notify_auth_ft_finish, hapd);
  484. return;
  485. }
  486. #endif /* CONFIG_IEEE80211R */
  487. fail:
  488. hostapd_sta_auth(hapd, rx_auth->peer, rx_auth->auth_transaction + 1,
  489. status, resp_ies, resp_ies_len);
  490. }
  491. static void hostapd_action_rx(struct hostapd_data *hapd,
  492. struct rx_action *action)
  493. {
  494. struct sta_info *sta;
  495. wpa_printf(MSG_DEBUG, "RX_ACTION cat %d action plen %d",
  496. action->category, (int) action->len);
  497. sta = ap_get_sta(hapd, action->sa);
  498. if (sta == NULL) {
  499. wpa_printf(MSG_DEBUG, "%s: station not found", __func__);
  500. return;
  501. }
  502. #ifdef CONFIG_IEEE80211R
  503. if (action->category == WLAN_ACTION_FT) {
  504. wpa_printf(MSG_DEBUG, "%s: FT_ACTION length %d",
  505. __func__, (int) action->len);
  506. wpa_ft_action_rx(sta->wpa_sm, action->data, action->len);
  507. }
  508. #endif /* CONFIG_IEEE80211R */
  509. #ifdef CONFIG_IEEE80211W
  510. if (action->category == WLAN_ACTION_SA_QUERY && action->len >= 4) {
  511. wpa_printf(MSG_DEBUG, "%s: SA_QUERY_ACTION length %d",
  512. __func__, (int) action->len);
  513. ieee802_11_sa_query_action(hapd, action->sa,
  514. *(action->data + 1),
  515. action->data + 2);
  516. }
  517. #endif /* CONFIG_IEEE80211W */
  518. #ifdef CONFIG_WNM
  519. if (action->category == WLAN_ACTION_WNM) {
  520. wpa_printf(MSG_DEBUG, "%s: WNM_ACTION length %d",
  521. __func__, (int) action->len);
  522. ieee802_11_rx_wnm_action_ap(hapd, action);
  523. }
  524. #endif /* CONFIG_WNM */
  525. }
  526. #ifdef NEED_AP_MLME
  527. #define HAPD_BROADCAST ((struct hostapd_data *) -1)
  528. static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
  529. const u8 *bssid)
  530. {
  531. size_t i;
  532. if (bssid == NULL)
  533. return NULL;
  534. if (bssid[0] == 0xff && bssid[1] == 0xff && bssid[2] == 0xff &&
  535. bssid[3] == 0xff && bssid[4] == 0xff && bssid[5] == 0xff)
  536. return HAPD_BROADCAST;
  537. for (i = 0; i < iface->num_bss; i++) {
  538. if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
  539. return iface->bss[i];
  540. }
  541. return NULL;
  542. }
  543. static void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd,
  544. const u8 *bssid, const u8 *addr,
  545. int wds)
  546. {
  547. hapd = get_hapd_bssid(hapd->iface, bssid);
  548. if (hapd == NULL || hapd == HAPD_BROADCAST)
  549. return;
  550. ieee802_11_rx_from_unknown(hapd, addr, wds);
  551. }
  552. static void hostapd_mgmt_rx(struct hostapd_data *hapd, struct rx_mgmt *rx_mgmt)
  553. {
  554. struct hostapd_iface *iface = hapd->iface;
  555. const struct ieee80211_hdr *hdr;
  556. const u8 *bssid;
  557. struct hostapd_frame_info fi;
  558. hdr = (const struct ieee80211_hdr *) rx_mgmt->frame;
  559. bssid = get_hdr_bssid(hdr, rx_mgmt->frame_len);
  560. if (bssid == NULL)
  561. return;
  562. hapd = get_hapd_bssid(iface, bssid);
  563. if (hapd == NULL) {
  564. u16 fc;
  565. fc = le_to_host16(hdr->frame_control);
  566. /*
  567. * Drop frames to unknown BSSIDs except for Beacon frames which
  568. * could be used to update neighbor information.
  569. */
  570. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  571. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  572. hapd = iface->bss[0];
  573. else
  574. return;
  575. }
  576. os_memset(&fi, 0, sizeof(fi));
  577. fi.datarate = rx_mgmt->datarate;
  578. fi.ssi_signal = rx_mgmt->ssi_signal;
  579. if (hapd == HAPD_BROADCAST) {
  580. size_t i;
  581. for (i = 0; i < iface->num_bss; i++)
  582. ieee802_11_mgmt(iface->bss[i], rx_mgmt->frame,
  583. rx_mgmt->frame_len, &fi);
  584. } else
  585. ieee802_11_mgmt(hapd, rx_mgmt->frame, rx_mgmt->frame_len, &fi);
  586. random_add_randomness(&fi, sizeof(fi));
  587. }
  588. static void hostapd_rx_action(struct hostapd_data *hapd,
  589. struct rx_action *rx_action)
  590. {
  591. struct rx_mgmt rx_mgmt;
  592. u8 *buf;
  593. struct ieee80211_hdr *hdr;
  594. wpa_printf(MSG_DEBUG, "EVENT_RX_ACTION DA=" MACSTR " SA=" MACSTR
  595. " BSSID=" MACSTR " category=%u",
  596. MAC2STR(rx_action->da), MAC2STR(rx_action->sa),
  597. MAC2STR(rx_action->bssid), rx_action->category);
  598. wpa_hexdump(MSG_MSGDUMP, "Received action frame contents",
  599. rx_action->data, rx_action->len);
  600. buf = os_zalloc(24 + 1 + rx_action->len);
  601. if (buf == NULL)
  602. return;
  603. hdr = (struct ieee80211_hdr *) buf;
  604. hdr->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  605. WLAN_FC_STYPE_ACTION);
  606. if (rx_action->category == WLAN_ACTION_SA_QUERY) {
  607. /*
  608. * Assume frame was protected; it would have been dropped if
  609. * not.
  610. */
  611. hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
  612. }
  613. os_memcpy(hdr->addr1, rx_action->da, ETH_ALEN);
  614. os_memcpy(hdr->addr2, rx_action->sa, ETH_ALEN);
  615. os_memcpy(hdr->addr3, rx_action->bssid, ETH_ALEN);
  616. buf[24] = rx_action->category;
  617. os_memcpy(buf + 24 + 1, rx_action->data, rx_action->len);
  618. os_memset(&rx_mgmt, 0, sizeof(rx_mgmt));
  619. rx_mgmt.frame = buf;
  620. rx_mgmt.frame_len = 24 + 1 + rx_action->len;
  621. hostapd_mgmt_rx(hapd, &rx_mgmt);
  622. os_free(buf);
  623. }
  624. static void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, const u8 *buf,
  625. size_t len, u16 stype, int ok)
  626. {
  627. struct ieee80211_hdr *hdr;
  628. hdr = (struct ieee80211_hdr *) buf;
  629. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  630. if (hapd == NULL || hapd == HAPD_BROADCAST)
  631. return;
  632. ieee802_11_mgmt_cb(hapd, buf, len, stype, ok);
  633. }
  634. #endif /* NEED_AP_MLME */
  635. static int hostapd_event_new_sta(struct hostapd_data *hapd, const u8 *addr)
  636. {
  637. struct sta_info *sta = ap_get_sta(hapd, addr);
  638. if (sta)
  639. return 0;
  640. wpa_printf(MSG_DEBUG, "Data frame from unknown STA " MACSTR
  641. " - adding a new STA", MAC2STR(addr));
  642. sta = ap_sta_add(hapd, addr);
  643. if (sta) {
  644. hostapd_new_assoc_sta(hapd, sta, 0);
  645. } else {
  646. wpa_printf(MSG_DEBUG, "Failed to add STA entry for " MACSTR,
  647. MAC2STR(addr));
  648. return -1;
  649. }
  650. return 0;
  651. }
  652. static void hostapd_event_eapol_rx(struct hostapd_data *hapd, const u8 *src,
  653. const u8 *data, size_t data_len)
  654. {
  655. struct hostapd_iface *iface = hapd->iface;
  656. struct sta_info *sta;
  657. size_t j;
  658. for (j = 0; j < iface->num_bss; j++) {
  659. if ((sta = ap_get_sta(iface->bss[j], src))) {
  660. if (sta->flags & WLAN_STA_ASSOC) {
  661. hapd = iface->bss[j];
  662. break;
  663. }
  664. }
  665. }
  666. ieee802_1x_receive(hapd, src, data, data_len);
  667. }
  668. static struct hostapd_channel_data * hostapd_get_mode_channel(
  669. struct hostapd_iface *iface, unsigned int freq)
  670. {
  671. int i;
  672. struct hostapd_channel_data *chan;
  673. for (i = 0; i < iface->current_mode->num_channels; i++) {
  674. chan = &iface->current_mode->channels[i];
  675. if (!chan)
  676. return NULL;
  677. if ((unsigned int) chan->freq == freq)
  678. return chan;
  679. }
  680. return NULL;
  681. }
  682. static void hostapd_update_nf(struct hostapd_iface *iface,
  683. struct hostapd_channel_data *chan,
  684. struct freq_survey *survey)
  685. {
  686. if (!iface->chans_surveyed) {
  687. chan->min_nf = survey->nf;
  688. iface->lowest_nf = survey->nf;
  689. } else {
  690. if (dl_list_empty(&chan->survey_list))
  691. chan->min_nf = survey->nf;
  692. else if (survey->nf < chan->min_nf)
  693. chan->min_nf = survey->nf;
  694. if (survey->nf < iface->lowest_nf)
  695. iface->lowest_nf = survey->nf;
  696. }
  697. }
  698. static void hostapd_event_get_survey(struct hostapd_data *hapd,
  699. struct survey_results *survey_results)
  700. {
  701. struct hostapd_iface *iface = hapd->iface;
  702. struct freq_survey *survey, *tmp;
  703. struct hostapd_channel_data *chan;
  704. if (dl_list_empty(&survey_results->survey_list)) {
  705. wpa_printf(MSG_DEBUG, "No survey data received");
  706. return;
  707. }
  708. dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
  709. struct freq_survey, list) {
  710. chan = hostapd_get_mode_channel(iface, survey->freq);
  711. if (!chan)
  712. continue;
  713. if (chan->flag & HOSTAPD_CHAN_DISABLED)
  714. continue;
  715. dl_list_del(&survey->list);
  716. dl_list_add_tail(&chan->survey_list, &survey->list);
  717. hostapd_update_nf(iface, chan, survey);
  718. iface->chans_surveyed++;
  719. }
  720. }
  721. #ifdef NEED_AP_MLME
  722. static void hostapd_event_dfs_radar_detected(struct hostapd_data *hapd,
  723. struct dfs_event *radar)
  724. {
  725. wpa_printf(MSG_DEBUG, "DFS radar detected on %d MHz", radar->freq);
  726. hostapd_dfs_radar_detected(hapd->iface, radar->freq, radar->ht_enabled,
  727. radar->chan_offset, radar->chan_width,
  728. radar->cf1, radar->cf2);
  729. }
  730. static void hostapd_event_dfs_cac_finished(struct hostapd_data *hapd,
  731. struct dfs_event *radar)
  732. {
  733. wpa_printf(MSG_DEBUG, "DFS CAC finished on %d MHz", radar->freq);
  734. hostapd_dfs_complete_cac(hapd->iface, 1, radar->freq, radar->ht_enabled,
  735. radar->chan_offset, radar->chan_width,
  736. radar->cf1, radar->cf2);
  737. }
  738. static void hostapd_event_dfs_cac_aborted(struct hostapd_data *hapd,
  739. struct dfs_event *radar)
  740. {
  741. wpa_printf(MSG_DEBUG, "DFS CAC aborted on %d MHz", radar->freq);
  742. hostapd_dfs_complete_cac(hapd->iface, 0, radar->freq, radar->ht_enabled,
  743. radar->chan_offset, radar->chan_width,
  744. radar->cf1, radar->cf2);
  745. }
  746. static void hostapd_event_dfs_nop_finished(struct hostapd_data *hapd,
  747. struct dfs_event *radar)
  748. {
  749. wpa_printf(MSG_DEBUG, "DFS NOP finished on %d MHz", radar->freq);
  750. hostapd_dfs_nop_finished(hapd->iface, radar->freq, radar->ht_enabled,
  751. radar->chan_offset, radar->chan_width,
  752. radar->cf1, radar->cf2);
  753. }
  754. #endif /* NEED_AP_MLME */
  755. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  756. union wpa_event_data *data)
  757. {
  758. struct hostapd_data *hapd = ctx;
  759. #ifndef CONFIG_NO_STDOUT_DEBUG
  760. int level = MSG_DEBUG;
  761. if (event == EVENT_RX_MGMT && data->rx_mgmt.frame &&
  762. data->rx_mgmt.frame_len >= 24) {
  763. const struct ieee80211_hdr *hdr;
  764. u16 fc;
  765. hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
  766. fc = le_to_host16(hdr->frame_control);
  767. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  768. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  769. level = MSG_EXCESSIVE;
  770. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  771. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_REQ)
  772. level = MSG_EXCESSIVE;
  773. }
  774. wpa_dbg(hapd->msg_ctx, level, "Event %s (%d) received",
  775. event_to_string(event), event);
  776. #endif /* CONFIG_NO_STDOUT_DEBUG */
  777. switch (event) {
  778. case EVENT_MICHAEL_MIC_FAILURE:
  779. michael_mic_failure(hapd, data->michael_mic_failure.src, 1);
  780. break;
  781. case EVENT_SCAN_RESULTS:
  782. if (hapd->iface->scan_cb)
  783. hapd->iface->scan_cb(hapd->iface);
  784. break;
  785. #ifdef CONFIG_IEEE80211R
  786. case EVENT_FT_RRB_RX:
  787. wpa_ft_rrb_rx(hapd->wpa_auth, data->ft_rrb_rx.src,
  788. data->ft_rrb_rx.data, data->ft_rrb_rx.data_len);
  789. break;
  790. #endif /* CONFIG_IEEE80211R */
  791. case EVENT_WPS_BUTTON_PUSHED:
  792. hostapd_wps_button_pushed(hapd, NULL);
  793. break;
  794. #ifdef NEED_AP_MLME
  795. case EVENT_TX_STATUS:
  796. switch (data->tx_status.type) {
  797. case WLAN_FC_TYPE_MGMT:
  798. hostapd_mgmt_tx_cb(hapd, data->tx_status.data,
  799. data->tx_status.data_len,
  800. data->tx_status.stype,
  801. data->tx_status.ack);
  802. break;
  803. case WLAN_FC_TYPE_DATA:
  804. hostapd_tx_status(hapd, data->tx_status.dst,
  805. data->tx_status.data,
  806. data->tx_status.data_len,
  807. data->tx_status.ack);
  808. break;
  809. }
  810. break;
  811. case EVENT_EAPOL_TX_STATUS:
  812. hostapd_eapol_tx_status(hapd, data->eapol_tx_status.dst,
  813. data->eapol_tx_status.data,
  814. data->eapol_tx_status.data_len,
  815. data->eapol_tx_status.ack);
  816. break;
  817. case EVENT_DRIVER_CLIENT_POLL_OK:
  818. hostapd_client_poll_ok(hapd, data->client_poll.addr);
  819. break;
  820. case EVENT_RX_FROM_UNKNOWN:
  821. hostapd_rx_from_unknown_sta(hapd, data->rx_from_unknown.bssid,
  822. data->rx_from_unknown.addr,
  823. data->rx_from_unknown.wds);
  824. break;
  825. case EVENT_RX_MGMT:
  826. hostapd_mgmt_rx(hapd, &data->rx_mgmt);
  827. break;
  828. #endif /* NEED_AP_MLME */
  829. case EVENT_RX_PROBE_REQ:
  830. if (data->rx_probe_req.sa == NULL ||
  831. data->rx_probe_req.ie == NULL)
  832. break;
  833. hostapd_probe_req_rx(hapd, data->rx_probe_req.sa,
  834. data->rx_probe_req.da,
  835. data->rx_probe_req.bssid,
  836. data->rx_probe_req.ie,
  837. data->rx_probe_req.ie_len,
  838. data->rx_probe_req.ssi_signal);
  839. break;
  840. case EVENT_NEW_STA:
  841. hostapd_event_new_sta(hapd, data->new_sta.addr);
  842. break;
  843. case EVENT_EAPOL_RX:
  844. hostapd_event_eapol_rx(hapd, data->eapol_rx.src,
  845. data->eapol_rx.data,
  846. data->eapol_rx.data_len);
  847. break;
  848. case EVENT_ASSOC:
  849. hostapd_notif_assoc(hapd, data->assoc_info.addr,
  850. data->assoc_info.req_ies,
  851. data->assoc_info.req_ies_len,
  852. data->assoc_info.reassoc);
  853. break;
  854. case EVENT_DISASSOC:
  855. if (data)
  856. hostapd_notif_disassoc(hapd, data->disassoc_info.addr);
  857. break;
  858. case EVENT_DEAUTH:
  859. if (data)
  860. hostapd_notif_disassoc(hapd, data->deauth_info.addr);
  861. break;
  862. case EVENT_STATION_LOW_ACK:
  863. if (!data)
  864. break;
  865. hostapd_event_sta_low_ack(hapd, data->low_ack.addr);
  866. break;
  867. case EVENT_RX_ACTION:
  868. if (data->rx_action.da == NULL || data->rx_action.sa == NULL ||
  869. data->rx_action.bssid == NULL)
  870. break;
  871. #ifdef NEED_AP_MLME
  872. hostapd_rx_action(hapd, &data->rx_action);
  873. #endif /* NEED_AP_MLME */
  874. hostapd_action_rx(hapd, &data->rx_action);
  875. break;
  876. case EVENT_AUTH:
  877. hostapd_notif_auth(hapd, &data->auth);
  878. break;
  879. case EVENT_CH_SWITCH:
  880. if (!data)
  881. break;
  882. hostapd_event_ch_switch(hapd, data->ch_switch.freq,
  883. data->ch_switch.ht_enabled,
  884. data->ch_switch.ch_offset,
  885. data->ch_switch.ch_width,
  886. data->ch_switch.cf1,
  887. data->ch_switch.cf2);
  888. break;
  889. case EVENT_CONNECT_FAILED_REASON:
  890. if (!data)
  891. break;
  892. hostapd_event_connect_failed_reason(
  893. hapd, data->connect_failed_reason.addr,
  894. data->connect_failed_reason.code);
  895. break;
  896. case EVENT_SURVEY:
  897. hostapd_event_get_survey(hapd, &data->survey_results);
  898. break;
  899. #ifdef NEED_AP_MLME
  900. case EVENT_DFS_RADAR_DETECTED:
  901. if (!data)
  902. break;
  903. hostapd_event_dfs_radar_detected(hapd, &data->dfs_event);
  904. break;
  905. case EVENT_DFS_CAC_FINISHED:
  906. if (!data)
  907. break;
  908. hostapd_event_dfs_cac_finished(hapd, &data->dfs_event);
  909. break;
  910. case EVENT_DFS_CAC_ABORTED:
  911. if (!data)
  912. break;
  913. hostapd_event_dfs_cac_aborted(hapd, &data->dfs_event);
  914. break;
  915. case EVENT_DFS_NOP_FINISHED:
  916. if (!data)
  917. break;
  918. hostapd_event_dfs_nop_finished(hapd, &data->dfs_event);
  919. break;
  920. case EVENT_CHANNEL_LIST_CHANGED:
  921. /* channel list changed (regulatory?), update channel list */
  922. /* TODO: check this. hostapd_get_hw_features() initializes
  923. * too much stuff. */
  924. /* hostapd_get_hw_features(hapd->iface); */
  925. hostapd_channel_list_updated(
  926. hapd->iface, data->channel_list_changed.initiator);
  927. break;
  928. #endif /* NEED_AP_MLME */
  929. default:
  930. wpa_printf(MSG_DEBUG, "Unknown event %d", event);
  931. break;
  932. }
  933. }
  934. #endif /* HOSTAPD */