drv_callbacks.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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 "radius/radius.h"
  17. #include "ap/hostapd.h"
  18. #include "ap/ieee802_11.h"
  19. #include "ap/sta_info.h"
  20. #include "ap/accounting.h"
  21. #include "ap/tkip_countermeasures.h"
  22. #include "ap/ieee802_1x.h"
  23. #include "ap/wpa.h"
  24. #include "ap/wmm.h"
  25. #include "ap/wps_hostapd.h"
  26. #include "driver_i.h"
  27. #include "iapp.h"
  28. int hostapd_notif_new_sta(struct hostapd_data *hapd, const u8 *addr)
  29. {
  30. struct sta_info *sta = ap_get_sta(hapd, addr);
  31. if (sta)
  32. return 0;
  33. wpa_printf(MSG_DEBUG, "Data frame from unknown STA " MACSTR
  34. " - adding a new STA", MAC2STR(addr));
  35. sta = ap_sta_add(hapd, addr);
  36. if (sta) {
  37. hostapd_new_assoc_sta(hapd, sta, 0);
  38. } else {
  39. wpa_printf(MSG_DEBUG, "Failed to add STA entry for " MACSTR,
  40. MAC2STR(addr));
  41. return -1;
  42. }
  43. return 0;
  44. }
  45. int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
  46. const u8 *ie, size_t ielen)
  47. {
  48. struct sta_info *sta;
  49. int new_assoc, res;
  50. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  51. HOSTAPD_LEVEL_INFO, "associated");
  52. sta = ap_get_sta(hapd, addr);
  53. if (sta) {
  54. accounting_sta_stop(hapd, sta);
  55. } else {
  56. sta = ap_sta_add(hapd, addr);
  57. if (sta == NULL)
  58. return -1;
  59. }
  60. sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
  61. if (hapd->conf->wpa) {
  62. if (ie == NULL || ielen == 0) {
  63. if (hapd->conf->wps_state) {
  64. wpa_printf(MSG_DEBUG, "STA did not include "
  65. "WPA/RSN IE in (Re)Association "
  66. "Request - possible WPS use");
  67. sta->flags |= WLAN_STA_MAYBE_WPS;
  68. goto skip_wpa_check;
  69. }
  70. wpa_printf(MSG_DEBUG, "No WPA/RSN IE from STA");
  71. return -1;
  72. }
  73. if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
  74. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  75. sta->flags |= WLAN_STA_WPS;
  76. goto skip_wpa_check;
  77. }
  78. if (sta->wpa_sm == NULL)
  79. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  80. sta->addr);
  81. if (sta->wpa_sm == NULL) {
  82. wpa_printf(MSG_ERROR, "Failed to initialize WPA state "
  83. "machine");
  84. return -1;
  85. }
  86. res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
  87. ie, ielen, NULL, 0);
  88. if (res != WPA_IE_OK) {
  89. int resp;
  90. wpa_printf(MSG_DEBUG, "WPA/RSN information element "
  91. "rejected? (res %u)", res);
  92. wpa_hexdump(MSG_DEBUG, "IE", ie, ielen);
  93. if (res == WPA_INVALID_GROUP)
  94. resp = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  95. else if (res == WPA_INVALID_PAIRWISE)
  96. resp = WLAN_REASON_PAIRWISE_CIPHER_NOT_VALID;
  97. else if (res == WPA_INVALID_AKMP)
  98. resp = WLAN_REASON_AKMP_NOT_VALID;
  99. #ifdef CONFIG_IEEE80211W
  100. else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
  101. resp = WLAN_REASON_INVALID_IE;
  102. else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
  103. resp = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
  104. #endif /* CONFIG_IEEE80211W */
  105. else
  106. resp = WLAN_REASON_INVALID_IE;
  107. hapd->drv.sta_disassoc(hapd, sta->addr, resp);
  108. ap_free_sta(hapd, sta);
  109. return -1;
  110. }
  111. } else if (hapd->conf->wps_state) {
  112. if (ie && ielen > 4 && ie[0] == 0xdd && ie[1] >= 4 &&
  113. os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
  114. sta->flags |= WLAN_STA_WPS;
  115. } else
  116. sta->flags |= WLAN_STA_MAYBE_WPS;
  117. }
  118. skip_wpa_check:
  119. new_assoc = (sta->flags & WLAN_STA_ASSOC) == 0;
  120. sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC;
  121. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
  122. hostapd_new_assoc_sta(hapd, sta, !new_assoc);
  123. ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
  124. return 0;
  125. }
  126. void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr)
  127. {
  128. struct sta_info *sta;
  129. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  130. HOSTAPD_LEVEL_INFO, "disassociated");
  131. sta = ap_get_sta(hapd, addr);
  132. if (sta == NULL) {
  133. wpa_printf(MSG_DEBUG, "Disassociation notification for "
  134. "unknown STA " MACSTR, MAC2STR(addr));
  135. return;
  136. }
  137. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  138. wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
  139. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  140. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  141. ap_free_sta(hapd, sta);
  142. }
  143. void hostapd_eapol_receive(struct hostapd_data *hapd, const u8 *sa,
  144. const u8 *buf, size_t len)
  145. {
  146. ieee802_1x_receive(hapd, sa, buf, len);
  147. }
  148. struct hostapd_data * hostapd_sta_get_bss(struct hostapd_data *hapd,
  149. const u8 *addr)
  150. {
  151. struct hostapd_iface *iface = hapd->iface;
  152. size_t j;
  153. for (j = 0; j < iface->num_bss; j++) {
  154. hapd = iface->bss[j];
  155. if (ap_get_sta(hapd, addr))
  156. return hapd;
  157. }
  158. return NULL;
  159. }
  160. #ifdef HOSTAPD
  161. #ifdef NEED_AP_MLME
  162. static const u8 * get_hdr_bssid(const struct ieee80211_hdr *hdr, size_t len)
  163. {
  164. u16 fc, type, stype;
  165. /*
  166. * PS-Poll frames are 16 bytes. All other frames are
  167. * 24 bytes or longer.
  168. */
  169. if (len < 16)
  170. return NULL;
  171. fc = le_to_host16(hdr->frame_control);
  172. type = WLAN_FC_GET_TYPE(fc);
  173. stype = WLAN_FC_GET_STYPE(fc);
  174. switch (type) {
  175. case WLAN_FC_TYPE_DATA:
  176. if (len < 24)
  177. return NULL;
  178. switch (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) {
  179. case WLAN_FC_FROMDS | WLAN_FC_TODS:
  180. case WLAN_FC_TODS:
  181. return hdr->addr1;
  182. case WLAN_FC_FROMDS:
  183. return hdr->addr2;
  184. default:
  185. return NULL;
  186. }
  187. case WLAN_FC_TYPE_CTRL:
  188. if (stype != WLAN_FC_STYPE_PSPOLL)
  189. return NULL;
  190. return hdr->addr1;
  191. case WLAN_FC_TYPE_MGMT:
  192. return hdr->addr3;
  193. default:
  194. return NULL;
  195. }
  196. }
  197. #define HAPD_BROADCAST ((struct hostapd_data *) -1)
  198. static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
  199. const u8 *bssid)
  200. {
  201. size_t i;
  202. if (bssid == NULL)
  203. return NULL;
  204. if (bssid[0] == 0xff && bssid[1] == 0xff && bssid[2] == 0xff &&
  205. bssid[3] == 0xff && bssid[4] == 0xff && bssid[5] == 0xff)
  206. return HAPD_BROADCAST;
  207. for (i = 0; i < iface->num_bss; i++) {
  208. if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
  209. return iface->bss[i];
  210. }
  211. return NULL;
  212. }
  213. static void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd,
  214. const struct ieee80211_hdr *hdr,
  215. size_t len)
  216. {
  217. u16 fc = le_to_host16(hdr->frame_control);
  218. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  219. if (hapd == NULL || hapd == HAPD_BROADCAST)
  220. return;
  221. ieee802_11_rx_from_unknown(hapd, hdr->addr2,
  222. (fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) ==
  223. (WLAN_FC_TODS | WLAN_FC_FROMDS));
  224. }
  225. static void hostapd_mgmt_rx(struct hostapd_data *hapd, const u8 *buf,
  226. size_t len, struct hostapd_frame_info *fi)
  227. {
  228. struct hostapd_iface *iface = hapd->iface;
  229. const struct ieee80211_hdr *hdr;
  230. const u8 *bssid;
  231. hdr = (const struct ieee80211_hdr *) buf;
  232. bssid = get_hdr_bssid(hdr, len);
  233. if (bssid == NULL)
  234. return;
  235. hapd = get_hapd_bssid(iface, bssid);
  236. if (hapd == NULL) {
  237. u16 fc;
  238. fc = le_to_host16(hdr->frame_control);
  239. /*
  240. * Drop frames to unknown BSSIDs except for Beacon frames which
  241. * could be used to update neighbor information.
  242. */
  243. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  244. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
  245. hapd = iface->bss[0];
  246. else
  247. return;
  248. }
  249. if (hapd == HAPD_BROADCAST) {
  250. size_t i;
  251. for (i = 0; i < iface->num_bss; i++)
  252. ieee802_11_mgmt(iface->bss[i], buf, len, fi);
  253. } else
  254. ieee802_11_mgmt(hapd, buf, len, fi);
  255. }
  256. static void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, const u8 *buf,
  257. size_t len, u16 stype, int ok)
  258. {
  259. struct ieee80211_hdr *hdr;
  260. hdr = (struct ieee80211_hdr *) buf;
  261. hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
  262. if (hapd == NULL || hapd == HAPD_BROADCAST)
  263. return;
  264. ieee802_11_mgmt_cb(hapd, buf, len, stype, ok);
  265. }
  266. #endif /* NEED_AP_MLME */
  267. void wpa_supplicant_event(void *ctx, wpa_event_type event,
  268. union wpa_event_data *data)
  269. {
  270. struct hostapd_data *hapd = ctx;
  271. switch (event) {
  272. case EVENT_MICHAEL_MIC_FAILURE:
  273. michael_mic_failure(hapd, data->michael_mic_failure.src, 1);
  274. break;
  275. case EVENT_SCAN_RESULTS:
  276. if (hapd->iface->scan_cb)
  277. hapd->iface->scan_cb(hapd->iface);
  278. break;
  279. #ifdef CONFIG_IEEE80211R
  280. case EVENT_FT_RRB_RX:
  281. wpa_ft_rrb_rx(hapd->wpa_auth, data->ft_rrb_rx.src,
  282. data->ft_rrb_rx.data, data->ft_rrb_rx.data_len);
  283. break;
  284. #endif /* CONFIG_IEEE80211R */
  285. case EVENT_WPS_BUTTON_PUSHED:
  286. hostapd_wps_button_pushed(hapd);
  287. break;
  288. #ifdef NEED_AP_MLME
  289. case EVENT_TX_STATUS:
  290. switch (data->tx_status.type) {
  291. case WLAN_FC_TYPE_MGMT:
  292. hostapd_mgmt_tx_cb(hapd, data->tx_status.data,
  293. data->tx_status.data_len,
  294. data->tx_status.stype,
  295. data->tx_status.ack);
  296. break;
  297. case WLAN_FC_TYPE_DATA:
  298. hostapd_tx_status(hapd, data->tx_status.dst,
  299. data->tx_status.data,
  300. data->tx_status.data_len,
  301. data->tx_status.ack);
  302. break;
  303. }
  304. break;
  305. case EVENT_RX_FROM_UNKNOWN:
  306. hostapd_rx_from_unknown_sta(hapd, data->rx_from_unknown.hdr,
  307. data->rx_from_unknown.len);
  308. break;
  309. case EVENT_RX_MGMT:
  310. hostapd_mgmt_rx(hapd, data->rx_mgmt.frame,
  311. data->rx_mgmt.frame_len, data->rx_mgmt.fi);
  312. break;
  313. #endif /* NEED_AP_MLME */
  314. default:
  315. wpa_printf(MSG_DEBUG, "Unknown event %d", event);
  316. break;
  317. }
  318. }
  319. #endif /* HOSTAPD */
  320. void hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa,
  321. const u8 *ie, size_t ie_len)
  322. {
  323. size_t i;
  324. for (i = 0; hapd->probereq_cb && i < hapd->num_probereq_cb; i++)
  325. hapd->probereq_cb[i].cb(hapd->probereq_cb[i].ctx,
  326. sa, ie, ie_len);
  327. }