drv_callbacks.c 11 KB

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