drv_callbacks.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. /*
  2. * hostapd / Callback functions for driver wrappers
  3. * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "hostapd.h"
  17. #include "driver_i.h"
  18. #include "ieee802_11.h"
  19. #include "radius/radius.h"
  20. #include "sta_info.h"
  21. #include "accounting.h"
  22. #include "tkip_countermeasures.h"
  23. #include "ieee802_1x.h"
  24. #include "wpa.h"
  25. #include "iapp.h"
  26. #include "wme.h"
  27. #include "wps_hostapd.h"
  28. struct prune_data {
  29. struct hostapd_data *hapd;
  30. const u8 *addr;
  31. };
  32. static int prune_associations(struct hostapd_iface *iface, void *ctx)
  33. {
  34. struct prune_data *data = ctx;
  35. struct sta_info *osta;
  36. struct hostapd_data *ohapd;
  37. size_t j;
  38. for (j = 0; j < iface->num_bss; j++) {
  39. ohapd = iface->bss[j];
  40. if (ohapd == data->hapd)
  41. continue;
  42. osta = ap_get_sta(ohapd, data->addr);
  43. if (!osta)
  44. continue;
  45. ap_sta_disassociate(ohapd, osta, WLAN_REASON_UNSPECIFIED);
  46. }
  47. return 0;
  48. }
  49. /**
  50. * hostapd_prune_associations - Remove extraneous associations
  51. * @hapd: Pointer to BSS data for the most recent association
  52. * @sta: Pointer to the associated STA data
  53. *
  54. * This function looks through all radios and BSS's for previous
  55. * (stale) associations of STA. If any are found they are removed.
  56. */
  57. static void hostapd_prune_associations(struct hostapd_data *hapd,
  58. struct sta_info *sta)
  59. {
  60. struct prune_data data;
  61. data.hapd = hapd;
  62. data.addr = sta->addr;
  63. hostapd_for_each_interface(hapd->iface->interfaces,
  64. prune_associations, &data);
  65. }
  66. /**
  67. * hostapd_new_assoc_sta - Notify that a new station associated with the AP
  68. * @hapd: Pointer to BSS data
  69. * @sta: Pointer to the associated STA data
  70. * @reassoc: 1 to indicate this was a re-association; 0 = first association
  71. *
  72. * This function will be called whenever a station associates with the AP. It
  73. * can be called from ieee802_11.c for drivers that export MLME to hostapd and
  74. * from driver_*.c for drivers that take care of management frames (IEEE 802.11
  75. * authentication and association) internally.
  76. */
  77. void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
  78. int reassoc)
  79. {
  80. if (hapd->tkip_countermeasures) {
  81. hostapd_sta_deauth(hapd, sta->addr,
  82. WLAN_REASON_MICHAEL_MIC_FAILURE);
  83. return;
  84. }
  85. hostapd_prune_associations(hapd, sta);
  86. /* IEEE 802.11F (IAPP) */
  87. if (hapd->conf->ieee802_11f)
  88. iapp_new_station(hapd->iapp, sta);
  89. /* Start accounting here, if IEEE 802.1X and WPA are not used.
  90. * IEEE 802.1X/WPA code will start accounting after the station has
  91. * been authorized. */
  92. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa)
  93. accounting_sta_start(hapd, sta);
  94. /* Start IEEE 802.1X authentication process for new stations */
  95. ieee802_1x_new_station(hapd, sta);
  96. if (reassoc) {
  97. if (sta->auth_alg != WLAN_AUTH_FT &&
  98. !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
  99. wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
  100. } else
  101. wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
  102. }
  103. int hostapd_notif_new_sta(struct hostapd_data *hapd, const u8 *addr)
  104. {
  105. struct sta_info *sta = ap_get_sta(hapd, addr);
  106. if (sta)
  107. return 0;
  108. wpa_printf(MSG_DEBUG, "Data frame from unknown STA " MACSTR
  109. " - adding a new STA", MAC2STR(addr));
  110. sta = ap_sta_add(hapd, addr);
  111. if (sta) {
  112. hostapd_new_assoc_sta(hapd, sta, 0);
  113. } else {
  114. wpa_printf(MSG_DEBUG, "Failed to add STA entry for " MACSTR,
  115. MAC2STR(addr));
  116. return -1;
  117. }
  118. return 0;
  119. }
  120. int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
  121. const u8 *ie, size_t ielen)
  122. {
  123. struct sta_info *sta;
  124. int new_assoc, res;
  125. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  126. HOSTAPD_LEVEL_INFO, "associated");
  127. sta = ap_get_sta(hapd, addr);
  128. if (sta) {
  129. accounting_sta_stop(hapd, sta);
  130. } else {
  131. sta = ap_sta_add(hapd, addr);
  132. if (sta == NULL)
  133. return -1;
  134. }
  135. sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
  136. if (hapd->conf->wpa) {
  137. if (ie == NULL || ielen == 0) {
  138. if (hapd->conf->wps_state) {
  139. wpa_printf(MSG_DEBUG, "STA did not include "
  140. "WPA/RSN IE in (Re)Association "
  141. "Request - possible WPS use");
  142. sta->flags |= WLAN_STA_MAYBE_WPS;
  143. goto skip_wpa_check;
  144. }
  145. wpa_printf(MSG_DEBUG, "No WPA/RSN IE from STA");
  146. return -1;
  147. }
  148. if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
  149. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  150. sta->flags |= WLAN_STA_WPS;
  151. goto skip_wpa_check;
  152. }
  153. if (sta->wpa_sm == NULL)
  154. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  155. sta->addr);
  156. if (sta->wpa_sm == NULL) {
  157. wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
  158. "machine");
  159. return -1;
  160. }
  161. res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
  162. ie, ielen, NULL, 0);
  163. if (res != WPA_IE_OK) {
  164. int resp;
  165. wpa_printf(MSG_DEBUG, "WPA/RSN information element "
  166. "rejected? (res %u)", res);
  167. wpa_hexdump(MSG_DEBUG, "IE", ie, ielen);
  168. if (res == WPA_INVALID_GROUP)
  169. resp = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  170. else if (res == WPA_INVALID_PAIRWISE)
  171. resp = WLAN_REASON_PAIRWISE_CIPHER_NOT_VALID;
  172. else if (res == WPA_INVALID_AKMP)
  173. resp = WLAN_REASON_AKMP_NOT_VALID;
  174. #ifdef CONFIG_IEEE80211W
  175. else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
  176. resp = WLAN_REASON_INVALID_IE;
  177. else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
  178. resp = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  179. #endif /* CONFIG_IEEE80211W */
  180. else
  181. resp = WLAN_REASON_INVALID_IE;
  182. hostapd_sta_disassoc(hapd, sta->addr, resp);
  183. ap_free_sta(hapd, sta);
  184. return -1;
  185. }
  186. } else if (hapd->conf->wps_state) {
  187. if (ie && ielen > 4 && ie[0] == 0xdd && ie[1] >= 4 &&
  188. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  189. sta->flags |= WLAN_STA_WPS;
  190. } else
  191. sta->flags |= WLAN_STA_MAYBE_WPS;
  192. }
  193. skip_wpa_check:
  194. new_assoc = (sta->flags & WLAN_STA_ASSOC) == 0;
  195. sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC;
  196. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
  197. hostapd_new_assoc_sta(hapd, sta, !new_assoc);
  198. ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
  199. return 0;
  200. }
  201. void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr)
  202. {
  203. struct sta_info *sta;
  204. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  205. HOSTAPD_LEVEL_INFO, "disassociated");
  206. sta = ap_get_sta(hapd, addr);
  207. if (sta == NULL) {
  208. wpa_printf(MSG_DEBUG, "Disassociation notification for "
  209. "unknown STA " MACSTR, MAC2STR(addr));
  210. return;
  211. }
  212. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  213. wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
  214. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  215. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  216. ap_free_sta(hapd, sta);
  217. }
  218. void hostapd_eapol_receive(struct hostapd_data *hapd, const u8 *sa,
  219. const u8 *buf, size_t len)
  220. {
  221. ieee802_1x_receive(hapd, sa, buf, len);
  222. }
  223. struct hostapd_data * hostapd_sta_get_bss(struct hostapd_data *hapd,
  224. const u8 *addr)
  225. {
  226. struct hostapd_iface *iface = hapd->iface;
  227. size_t j;
  228. for (j = 0; j < iface->num_bss; j++) {
  229. hapd = iface->bss[j];
  230. if (ap_get_sta(hapd, addr))
  231. return hapd;
  232. }
  233. return NULL;
  234. }
  235. #ifdef HOSTAPD
  236. #ifdef NEED_AP_MLME
  237. static const u8 * get_hdr_bssid(const struct ieee80211_hdr *hdr, size_t len)
  238. {
  239. u16 fc, type, stype;
  240. /*
  241. * PS-Poll frames are 16 bytes. All other frames are
  242. * 24 bytes or longer.
  243. */
  244. if (len < 16)
  245. return NULL;
  246. fc = le_to_host16(hdr->frame_control);
  247. type = WLAN_FC_GET_TYPE(fc);
  248. stype = WLAN_FC_GET_STYPE(fc);
  249. switch (type) {
  250. case WLAN_FC_TYPE_DATA:
  251. if (len < 24)
  252. return NULL;
  253. switch (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) {
  254. case WLAN_FC_TODS:
  255. return hdr->addr1;
  256. case WLAN_FC_FROMDS:
  257. return hdr->addr2;
  258. default:
  259. return NULL;
  260. }
  261. case WLAN_FC_TYPE_CTRL:
  262. if (stype != WLAN_FC_STYPE_PSPOLL)
  263. return NULL;
  264. return hdr->addr1;
  265. case WLAN_FC_TYPE_MGMT:
  266. return hdr->addr3;
  267. default:
  268. return NULL;
  269. }
  270. }
  271. #define HAPD_BROADCAST ((struct hostapd_data *) -1)
  272. static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
  273. const u8 *bssid)
  274. {
  275. size_t i;
  276. if (bssid == NULL)
  277. return NULL;
  278. if (bssid[0] == 0xff && bssid[1] == 0xff && bssid[2] == 0xff &&
  279. bssid[3] == 0xff && bssid[4] == 0xff && bssid[5] == 0xff)
  280. return HAPD_BROADCAST;
  281. for (i = 0; i < iface->num_bss; i++) {
  282. if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
  283. return iface->bss[i];
  284. }
  285. return NULL;
  286. }
  287. static void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd,
  288. const struct ieee80211_hdr *hdr,
  289. size_t len)
  290. {
  291. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  292. if (hapd == NULL || hapd == HAPD_BROADCAST)
  293. return;
  294. ieee802_11_rx_from_unknown(hapd, hdr->addr2);
  295. }
  296. static void hostapd_mgmt_rx(struct hostapd_data *hapd, const u8 *buf,
  297. size_t len, struct hostapd_frame_info *fi)
  298. {
  299. struct hostapd_iface *iface = hapd->iface;
  300. const struct ieee80211_hdr *hdr;
  301. const u8 *bssid;
  302. hdr = (const struct ieee80211_hdr *) buf;
  303. bssid = get_hdr_bssid(hdr, len);
  304. if (bssid == NULL)
  305. return;
  306. hapd = get_hapd_bssid(iface, bssid);
  307. if (hapd == NULL) {
  308. u16 fc;
  309. fc = le_to_host16(hdr->frame_control);
  310. /*
  311. * Drop frames to unknown BSSIDs except for Beacon frames which
  312. * could be used to update neighbor information.
  313. */
  314. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  315. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  316. hapd = iface->bss[0];
  317. else
  318. return;
  319. }
  320. if (hapd == HAPD_BROADCAST) {
  321. size_t i;
  322. for (i = 0; i < iface->num_bss; i++)
  323. ieee802_11_mgmt(iface->bss[i], buf, len, fi);
  324. } else
  325. ieee802_11_mgmt(hapd, buf, len, fi);
  326. }
  327. static void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, const u8 *buf,
  328. size_t len, u16 stype, int ok)
  329. {
  330. struct ieee80211_hdr *hdr;
  331. hdr = (struct ieee80211_hdr *) buf;
  332. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  333. if (hapd == NULL || hapd == HAPD_BROADCAST)
  334. return;
  335. ieee802_11_mgmt_cb(hapd, buf, len, stype, ok);
  336. }
  337. #endif /* NEED_AP_MLME */
  338. void wpa_supplicant_event(void *ctx, wpa_event_type event,
  339. union wpa_event_data *data)
  340. {
  341. struct hostapd_data *hapd = ctx;
  342. switch (event) {
  343. case EVENT_MICHAEL_MIC_FAILURE:
  344. michael_mic_failure(hapd, data->michael_mic_failure.src, 1);
  345. break;
  346. case EVENT_SCAN_RESULTS:
  347. if (hapd->iface->scan_cb)
  348. hapd->iface->scan_cb(hapd->iface);
  349. break;
  350. #ifdef CONFIG_IEEE80211R
  351. case EVENT_FT_RRB_RX:
  352. wpa_ft_rrb_rx(hapd->wpa_auth, data->ft_rrb_rx.src,
  353. data->ft_rrb_rx.data, data->ft_rrb_rx.data_len);
  354. break;
  355. #endif /* CONFIG_IEEE80211R */
  356. case EVENT_WPS_BUTTON_PUSHED:
  357. hostapd_wps_button_pushed(hapd);
  358. break;
  359. #ifdef NEED_AP_MLME
  360. case EVENT_TX_STATUS:
  361. switch (data->tx_status.type) {
  362. case WLAN_FC_TYPE_MGMT:
  363. hostapd_mgmt_tx_cb(hapd, data->tx_status.data,
  364. data->tx_status.data_len,
  365. data->tx_status.stype,
  366. data->tx_status.ack);
  367. break;
  368. case WLAN_FC_TYPE_DATA:
  369. hostapd_tx_status(hapd, data->tx_status.dst,
  370. data->tx_status.data,
  371. data->tx_status.data_len,
  372. data->tx_status.ack);
  373. break;
  374. }
  375. break;
  376. case EVENT_RX_FROM_UNKNOWN:
  377. hostapd_rx_from_unknown_sta(hapd, data->rx_from_unknown.hdr,
  378. data->rx_from_unknown.len);
  379. break;
  380. case EVENT_RX_MGMT:
  381. hostapd_mgmt_rx(hapd, data->rx_mgmt.frame,
  382. data->rx_mgmt.frame_len, data->rx_mgmt.fi);
  383. break;
  384. #endif /* NEED_AP_MLME */
  385. default:
  386. wpa_printf(MSG_DEBUG, "Unknown event %d", event);
  387. break;
  388. }
  389. }
  390. #endif /* HOSTAPD */
  391. void hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa,
  392. const u8 *ie, size_t ie_len)
  393. {
  394. size_t i;
  395. for (i = 0; hapd->probereq_cb && i < hapd->num_probereq_cb; i++)
  396. hapd->probereq_cb[i].cb(hapd->probereq_cb[i].ctx,
  397. sa, ie, ie_len);
  398. }