drv_callbacks.c 12 KB

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