drv_callbacks.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  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. void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
  103. const u8 *buf, size_t len, int ack)
  104. {
  105. struct sta_info *sta;
  106. struct hostapd_iface *iface = hapd->iface;
  107. sta = ap_get_sta(hapd, addr);
  108. if (sta == NULL && iface->num_bss > 1) {
  109. size_t j;
  110. for (j = 0; j < iface->num_bss; j++) {
  111. hapd = iface->bss[j];
  112. sta = ap_get_sta(hapd, addr);
  113. if (sta)
  114. break;
  115. }
  116. }
  117. if (sta == NULL)
  118. return;
  119. if (sta->flags & WLAN_STA_PENDING_POLL) {
  120. wpa_printf(MSG_DEBUG, "STA " MACSTR " %s pending "
  121. "activity poll", MAC2STR(sta->addr),
  122. ack ? "ACKed" : "did not ACK");
  123. if (ack)
  124. sta->flags &= ~WLAN_STA_PENDING_POLL;
  125. }
  126. ieee802_1x_tx_status(hapd, sta, buf, len, ack);
  127. }
  128. static const u8 * get_hdr_bssid(const struct ieee80211_hdr *hdr, size_t len)
  129. {
  130. u16 fc, type, stype;
  131. /*
  132. * PS-Poll frames are 16 bytes. All other frames are
  133. * 24 bytes or longer.
  134. */
  135. if (len < 16)
  136. return NULL;
  137. fc = le_to_host16(hdr->frame_control);
  138. type = WLAN_FC_GET_TYPE(fc);
  139. stype = WLAN_FC_GET_STYPE(fc);
  140. switch (type) {
  141. case WLAN_FC_TYPE_DATA:
  142. if (len < 24)
  143. return NULL;
  144. switch (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) {
  145. case WLAN_FC_TODS:
  146. return hdr->addr1;
  147. case WLAN_FC_FROMDS:
  148. return hdr->addr2;
  149. default:
  150. return NULL;
  151. }
  152. case WLAN_FC_TYPE_CTRL:
  153. if (stype != WLAN_FC_STYPE_PSPOLL)
  154. return NULL;
  155. return hdr->addr1;
  156. case WLAN_FC_TYPE_MGMT:
  157. return hdr->addr3;
  158. default:
  159. return NULL;
  160. }
  161. }
  162. #define HAPD_BROADCAST ((struct hostapd_data *) -1)
  163. static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
  164. const u8 *bssid)
  165. {
  166. size_t i;
  167. if (bssid == NULL)
  168. return NULL;
  169. if (bssid[0] == 0xff && bssid[1] == 0xff && bssid[2] == 0xff &&
  170. bssid[3] == 0xff && bssid[4] == 0xff && bssid[5] == 0xff)
  171. return HAPD_BROADCAST;
  172. for (i = 0; i < iface->num_bss; i++) {
  173. if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
  174. return iface->bss[i];
  175. }
  176. return NULL;
  177. }
  178. void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd,
  179. const struct ieee80211_hdr *hdr, size_t len)
  180. {
  181. struct sta_info *sta;
  182. const u8 *addr;
  183. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  184. if (hapd == NULL || hapd == HAPD_BROADCAST)
  185. return;
  186. addr = hdr->addr2;
  187. sta = ap_get_sta(hapd, addr);
  188. if (!sta || !(sta->flags & WLAN_STA_ASSOC)) {
  189. wpa_printf(MSG_DEBUG, "Data/PS-poll frame from not associated "
  190. "STA " MACSTR, MAC2STR(addr));
  191. if (sta && (sta->flags & WLAN_STA_AUTH))
  192. hostapd_sta_disassoc(
  193. hapd, addr,
  194. WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
  195. else
  196. hostapd_sta_deauth(
  197. hapd, addr,
  198. WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
  199. }
  200. }
  201. int hostapd_notif_new_sta(struct hostapd_data *hapd, const u8 *addr)
  202. {
  203. struct sta_info *sta = ap_get_sta(hapd, addr);
  204. if (sta)
  205. return 0;
  206. wpa_printf(MSG_DEBUG, "Data frame from unknown STA " MACSTR
  207. " - adding a new STA", MAC2STR(addr));
  208. sta = ap_sta_add(hapd, addr);
  209. if (sta) {
  210. hostapd_new_assoc_sta(hapd, sta, 0);
  211. } else {
  212. wpa_printf(MSG_DEBUG, "Failed to add STA entry for " MACSTR,
  213. MAC2STR(addr));
  214. return -1;
  215. }
  216. return 0;
  217. }
  218. int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
  219. const u8 *ie, size_t ielen)
  220. {
  221. struct sta_info *sta;
  222. int new_assoc, res;
  223. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  224. HOSTAPD_LEVEL_INFO, "associated");
  225. sta = ap_get_sta(hapd, addr);
  226. if (sta) {
  227. accounting_sta_stop(hapd, sta);
  228. } else {
  229. sta = ap_sta_add(hapd, addr);
  230. if (sta == NULL)
  231. return -1;
  232. }
  233. sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
  234. if (hapd->conf->wpa) {
  235. if (ie == NULL || ielen == 0) {
  236. if (hapd->conf->wps_state) {
  237. wpa_printf(MSG_DEBUG, "STA did not include "
  238. "WPA/RSN IE in (Re)Association "
  239. "Request - possible WPS use");
  240. sta->flags |= WLAN_STA_MAYBE_WPS;
  241. goto skip_wpa_check;
  242. }
  243. wpa_printf(MSG_DEBUG, "No WPA/RSN IE from STA");
  244. return -1;
  245. }
  246. if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
  247. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  248. sta->flags |= WLAN_STA_WPS;
  249. goto skip_wpa_check;
  250. }
  251. if (sta->wpa_sm == NULL)
  252. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  253. sta->addr);
  254. if (sta->wpa_sm == NULL) {
  255. wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
  256. "machine");
  257. return -1;
  258. }
  259. res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
  260. ie, ielen, NULL, 0);
  261. if (res != WPA_IE_OK) {
  262. int resp;
  263. wpa_printf(MSG_DEBUG, "WPA/RSN information element "
  264. "rejected? (res %u)", res);
  265. wpa_hexdump(MSG_DEBUG, "IE", ie, ielen);
  266. if (res == WPA_INVALID_GROUP)
  267. resp = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  268. else if (res == WPA_INVALID_PAIRWISE)
  269. resp = WLAN_REASON_PAIRWISE_CIPHER_NOT_VALID;
  270. else if (res == WPA_INVALID_AKMP)
  271. resp = WLAN_REASON_AKMP_NOT_VALID;
  272. #ifdef CONFIG_IEEE80211W
  273. else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
  274. resp = WLAN_REASON_INVALID_IE;
  275. else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
  276. resp = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  277. #endif /* CONFIG_IEEE80211W */
  278. else
  279. resp = WLAN_REASON_INVALID_IE;
  280. hostapd_sta_disassoc(hapd, sta->addr, resp);
  281. ap_free_sta(hapd, sta);
  282. return -1;
  283. }
  284. } else if (hapd->conf->wps_state) {
  285. if (ie && ielen > 4 && ie[0] == 0xdd && ie[1] >= 4 &&
  286. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  287. sta->flags |= WLAN_STA_WPS;
  288. } else
  289. sta->flags |= WLAN_STA_MAYBE_WPS;
  290. }
  291. skip_wpa_check:
  292. new_assoc = (sta->flags & WLAN_STA_ASSOC) == 0;
  293. sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC;
  294. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
  295. hostapd_new_assoc_sta(hapd, sta, !new_assoc);
  296. ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
  297. return 0;
  298. }
  299. void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr)
  300. {
  301. struct sta_info *sta;
  302. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  303. HOSTAPD_LEVEL_INFO, "disassociated");
  304. sta = ap_get_sta(hapd, addr);
  305. if (sta == NULL) {
  306. wpa_printf(MSG_DEBUG, "Disassociation notification for "
  307. "unknown STA " MACSTR, MAC2STR(addr));
  308. return;
  309. }
  310. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  311. wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
  312. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  313. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  314. ap_free_sta(hapd, sta);
  315. }
  316. void hostapd_eapol_receive(struct hostapd_data *hapd, const u8 *sa,
  317. const u8 *buf, size_t len)
  318. {
  319. ieee802_1x_receive(hapd, sa, buf, len);
  320. }
  321. #ifdef NEED_AP_MLME
  322. void hostapd_mgmt_rx(struct hostapd_data *hapd, u8 *buf, size_t len,
  323. u16 stype, struct hostapd_frame_info *fi)
  324. {
  325. struct hostapd_iface *iface = hapd->iface;
  326. struct ieee80211_hdr *hdr;
  327. const u8 *bssid;
  328. hdr = (struct ieee80211_hdr *) buf;
  329. bssid = get_hdr_bssid(hdr, len);
  330. if (bssid == NULL)
  331. return;
  332. hapd = get_hapd_bssid(iface, bssid);
  333. if (hapd == NULL) {
  334. u16 fc;
  335. fc = le_to_host16(hdr->frame_control);
  336. /*
  337. * Drop frames to unknown BSSIDs except for Beacon frames which
  338. * could be used to update neighbor information.
  339. */
  340. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  341. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  342. hapd = iface->bss[0];
  343. else
  344. return;
  345. }
  346. if (hapd == HAPD_BROADCAST) {
  347. size_t i;
  348. for (i = 0; i < iface->num_bss; i++)
  349. ieee802_11_mgmt(iface->bss[i], buf, len, stype, fi);
  350. } else
  351. ieee802_11_mgmt(hapd, buf, len, stype, fi);
  352. }
  353. void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
  354. u16 stype, int ok)
  355. {
  356. struct ieee80211_hdr *hdr;
  357. hdr = (struct ieee80211_hdr *) buf;
  358. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  359. if (hapd == NULL || hapd == HAPD_BROADCAST)
  360. return;
  361. ieee802_11_mgmt_cb(hapd, buf, len, stype, ok);
  362. }
  363. #endif /* NEED_AP_MLME */
  364. struct hostapd_data * hostapd_sta_get_bss(struct hostapd_data *hapd,
  365. const u8 *addr)
  366. {
  367. struct hostapd_iface *iface = hapd->iface;
  368. size_t j;
  369. for (j = 0; j < iface->num_bss; j++) {
  370. hapd = iface->bss[j];
  371. if (ap_get_sta(hapd, addr))
  372. return hapd;
  373. }
  374. return NULL;
  375. }
  376. #ifndef CONFIG_AP
  377. void wpa_supplicant_event(void *ctx, wpa_event_type event,
  378. union wpa_event_data *data)
  379. {
  380. struct hostapd_data *hapd = ctx;
  381. switch (event) {
  382. case EVENT_MICHAEL_MIC_FAILURE:
  383. michael_mic_failure(hapd, data->michael_mic_failure.src, 1);
  384. break;
  385. case EVENT_SCAN_RESULTS:
  386. if (hapd->iface->scan_cb)
  387. hapd->iface->scan_cb(hapd->iface);
  388. break;
  389. #ifdef CONFIG_IEEE80211R
  390. wpa_ft_rrb_rx(hapd->wpa_auth, data->ft_rrb_rx.src,
  391. data->ft_rrb_rx.data, data->ft_rrb_rx.data_len);
  392. break;
  393. #endif /* CONFIG_IEEE80211R */
  394. default:
  395. wpa_printf(MSG_DEBUG, "Unknown event %d", event);
  396. break;
  397. }
  398. }
  399. #endif /* CONFIG_AP */
  400. void hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa,
  401. const u8 *ie, size_t ie_len)
  402. {
  403. size_t i;
  404. for (i = 0; hapd->probereq_cb && i < hapd->num_probereq_cb; i++)
  405. hapd->probereq_cb[i].cb(hapd->probereq_cb[i].ctx,
  406. sa, ie, ie_len);
  407. }
  408. void hostapd_button_pushed(struct hostapd_data *hapd)
  409. {
  410. hostapd_wps_button_pushed(hapd);
  411. }