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