ieee802_11.c 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646
  1. /*
  2. * hostapd / IEEE 802.11 Management
  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. #ifndef CONFIG_NATIVE_WINDOWS
  16. #include <net/if.h>
  17. #include "common.h"
  18. #include "eloop.h"
  19. #include "crypto/crypto.h"
  20. #include "common/wpa_ctrl.h"
  21. #include "radius/radius.h"
  22. #include "radius/radius_client.h"
  23. #include "hostapd.h"
  24. #include "ieee802_11.h"
  25. #include "beacon.h"
  26. #include "hw_features.h"
  27. #include "ieee802_11_auth.h"
  28. #include "sta_flags.h"
  29. #include "sta_info.h"
  30. #include "ieee802_1x.h"
  31. #include "wpa.h"
  32. #include "wme.h"
  33. #include "ap_list.h"
  34. #include "accounting.h"
  35. #include "driver_i.h"
  36. #include "mlme.h"
  37. u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid)
  38. {
  39. u8 *pos = eid;
  40. int i, num, count;
  41. if (hapd->iface->current_rates == NULL)
  42. return eid;
  43. *pos++ = WLAN_EID_SUPP_RATES;
  44. num = hapd->iface->num_rates;
  45. if (num > 8) {
  46. /* rest of the rates are encoded in Extended supported
  47. * rates element */
  48. num = 8;
  49. }
  50. *pos++ = num;
  51. count = 0;
  52. for (i = 0, count = 0; i < hapd->iface->num_rates && count < num;
  53. i++) {
  54. count++;
  55. *pos = hapd->iface->current_rates[i].rate / 5;
  56. if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
  57. *pos |= 0x80;
  58. pos++;
  59. }
  60. return pos;
  61. }
  62. u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid)
  63. {
  64. u8 *pos = eid;
  65. int i, num, count;
  66. if (hapd->iface->current_rates == NULL)
  67. return eid;
  68. num = hapd->iface->num_rates;
  69. if (num <= 8)
  70. return eid;
  71. num -= 8;
  72. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  73. *pos++ = num;
  74. count = 0;
  75. for (i = 0, count = 0; i < hapd->iface->num_rates && count < num + 8;
  76. i++) {
  77. count++;
  78. if (count <= 8)
  79. continue; /* already in SuppRates IE */
  80. *pos = hapd->iface->current_rates[i].rate / 5;
  81. if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
  82. *pos |= 0x80;
  83. pos++;
  84. }
  85. return pos;
  86. }
  87. u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
  88. int probe)
  89. {
  90. int capab = WLAN_CAPABILITY_ESS;
  91. int privacy;
  92. if (hapd->iface->num_sta_no_short_preamble == 0 &&
  93. hapd->iconf->preamble == SHORT_PREAMBLE)
  94. capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
  95. privacy = hapd->conf->ssid.wep.keys_set;
  96. if (hapd->conf->ieee802_1x &&
  97. (hapd->conf->default_wep_key_len ||
  98. hapd->conf->individual_wep_key_len))
  99. privacy = 1;
  100. if (hapd->conf->wpa)
  101. privacy = 1;
  102. if (sta) {
  103. int policy, def_klen;
  104. if (probe && sta->ssid_probe) {
  105. policy = sta->ssid_probe->security_policy;
  106. def_klen = sta->ssid_probe->wep.default_len;
  107. } else {
  108. policy = sta->ssid->security_policy;
  109. def_klen = sta->ssid->wep.default_len;
  110. }
  111. privacy = policy != SECURITY_PLAINTEXT;
  112. if (policy == SECURITY_IEEE_802_1X && def_klen == 0)
  113. privacy = 0;
  114. }
  115. if (privacy)
  116. capab |= WLAN_CAPABILITY_PRIVACY;
  117. if (hapd->iface->current_mode &&
  118. hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G &&
  119. hapd->iface->num_sta_no_short_slot_time == 0)
  120. capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
  121. return capab;
  122. }
  123. #ifdef CONFIG_IEEE80211W
  124. static u8 * hostapd_eid_assoc_comeback_time(struct hostapd_data *hapd,
  125. struct sta_info *sta, u8 *eid)
  126. {
  127. u8 *pos = eid;
  128. u32 timeout, tu;
  129. struct os_time now, passed;
  130. *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
  131. *pos++ = 5;
  132. *pos++ = WLAN_TIMEOUT_ASSOC_COMEBACK;
  133. os_get_time(&now);
  134. os_time_sub(&now, &sta->sa_query_start, &passed);
  135. tu = (passed.sec * 1000000 + passed.usec) / 1024;
  136. if (hapd->conf->assoc_sa_query_max_timeout > tu)
  137. timeout = hapd->conf->assoc_sa_query_max_timeout - tu;
  138. else
  139. timeout = 0;
  140. if (timeout < hapd->conf->assoc_sa_query_max_timeout)
  141. timeout++; /* add some extra time for local timers */
  142. WPA_PUT_LE32(pos, timeout);
  143. pos += 4;
  144. return pos;
  145. }
  146. #endif /* CONFIG_IEEE80211W */
  147. void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len)
  148. {
  149. int i;
  150. if (len > HOSTAPD_MAX_SSID_LEN)
  151. len = HOSTAPD_MAX_SSID_LEN;
  152. for (i = 0; i < len; i++) {
  153. if (ssid[i] >= 32 && ssid[i] < 127)
  154. buf[i] = ssid[i];
  155. else
  156. buf[i] = '.';
  157. }
  158. buf[len] = '\0';
  159. }
  160. /**
  161. * ieee802_11_send_deauth - Send Deauthentication frame
  162. * @hapd: hostapd BSS data
  163. * @addr: Address of the destination STA
  164. * @reason: Reason code for Deauthentication
  165. */
  166. void ieee802_11_send_deauth(struct hostapd_data *hapd, u8 *addr, u16 reason)
  167. {
  168. struct ieee80211_mgmt mgmt;
  169. hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
  170. HOSTAPD_LEVEL_DEBUG,
  171. "deauthenticate - reason %d", reason);
  172. os_memset(&mgmt, 0, sizeof(mgmt));
  173. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  174. WLAN_FC_STYPE_DEAUTH);
  175. os_memcpy(mgmt.da, addr, ETH_ALEN);
  176. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  177. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  178. mgmt.u.deauth.reason_code = host_to_le16(reason);
  179. if (hostapd_send_mgmt_frame(hapd, &mgmt, IEEE80211_HDRLEN +
  180. sizeof(mgmt.u.deauth)) < 0)
  181. perror("ieee802_11_send_deauth: send");
  182. }
  183. static u16 auth_shared_key(struct hostapd_data *hapd, struct sta_info *sta,
  184. u16 auth_transaction, u8 *challenge, int iswep)
  185. {
  186. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  187. HOSTAPD_LEVEL_DEBUG,
  188. "authentication (shared key, transaction %d)",
  189. auth_transaction);
  190. if (auth_transaction == 1) {
  191. if (!sta->challenge) {
  192. /* Generate a pseudo-random challenge */
  193. u8 key[8];
  194. time_t now;
  195. int r;
  196. sta->challenge = os_zalloc(WLAN_AUTH_CHALLENGE_LEN);
  197. if (sta->challenge == NULL)
  198. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  199. now = time(NULL);
  200. r = random();
  201. os_memcpy(key, &now, 4);
  202. os_memcpy(key + 4, &r, 4);
  203. rc4_skip(key, sizeof(key), 0,
  204. sta->challenge, WLAN_AUTH_CHALLENGE_LEN);
  205. }
  206. return 0;
  207. }
  208. if (auth_transaction != 3)
  209. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  210. /* Transaction 3 */
  211. if (!iswep || !sta->challenge || !challenge ||
  212. os_memcmp(sta->challenge, challenge, WLAN_AUTH_CHALLENGE_LEN)) {
  213. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  214. HOSTAPD_LEVEL_INFO,
  215. "shared key authentication - invalid "
  216. "challenge-response");
  217. return WLAN_STATUS_CHALLENGE_FAIL;
  218. }
  219. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  220. HOSTAPD_LEVEL_DEBUG,
  221. "authentication OK (shared key)");
  222. #ifdef IEEE80211_REQUIRE_AUTH_ACK
  223. /* Station will be marked authenticated if it ACKs the
  224. * authentication reply. */
  225. #else
  226. sta->flags |= WLAN_STA_AUTH;
  227. wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
  228. #endif
  229. os_free(sta->challenge);
  230. sta->challenge = NULL;
  231. return 0;
  232. }
  233. static void send_auth_reply(struct hostapd_data *hapd,
  234. const u8 *dst, const u8 *bssid,
  235. u16 auth_alg, u16 auth_transaction, u16 resp,
  236. const u8 *ies, size_t ies_len)
  237. {
  238. struct ieee80211_mgmt *reply;
  239. u8 *buf;
  240. size_t rlen;
  241. rlen = IEEE80211_HDRLEN + sizeof(reply->u.auth) + ies_len;
  242. buf = os_zalloc(rlen);
  243. if (buf == NULL)
  244. return;
  245. reply = (struct ieee80211_mgmt *) buf;
  246. reply->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  247. WLAN_FC_STYPE_AUTH);
  248. os_memcpy(reply->da, dst, ETH_ALEN);
  249. os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
  250. os_memcpy(reply->bssid, bssid, ETH_ALEN);
  251. reply->u.auth.auth_alg = host_to_le16(auth_alg);
  252. reply->u.auth.auth_transaction = host_to_le16(auth_transaction);
  253. reply->u.auth.status_code = host_to_le16(resp);
  254. if (ies && ies_len)
  255. os_memcpy(reply->u.auth.variable, ies, ies_len);
  256. wpa_printf(MSG_DEBUG, "authentication reply: STA=" MACSTR
  257. " auth_alg=%d auth_transaction=%d resp=%d (IE len=%lu)",
  258. MAC2STR(dst), auth_alg, auth_transaction,
  259. resp, (unsigned long) ies_len);
  260. if (hostapd_send_mgmt_frame(hapd, reply, rlen) < 0)
  261. perror("send_auth_reply: send");
  262. os_free(buf);
  263. }
  264. #ifdef CONFIG_IEEE80211R
  265. static void handle_auth_ft_finish(void *ctx, const u8 *dst, const u8 *bssid,
  266. u16 auth_transaction, u16 status,
  267. const u8 *ies, size_t ies_len)
  268. {
  269. struct hostapd_data *hapd = ctx;
  270. struct sta_info *sta;
  271. send_auth_reply(hapd, dst, bssid, WLAN_AUTH_FT, auth_transaction,
  272. status, ies, ies_len);
  273. if (status != WLAN_STATUS_SUCCESS)
  274. return;
  275. sta = ap_get_sta(hapd, dst);
  276. if (sta == NULL)
  277. return;
  278. hostapd_logger(hapd, dst, HOSTAPD_MODULE_IEEE80211,
  279. HOSTAPD_LEVEL_DEBUG, "authentication OK (FT)");
  280. sta->flags |= WLAN_STA_AUTH;
  281. mlme_authenticate_indication(hapd, sta);
  282. }
  283. #endif /* CONFIG_IEEE80211R */
  284. static void handle_auth(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
  285. size_t len)
  286. {
  287. u16 auth_alg, auth_transaction, status_code;
  288. u16 resp = WLAN_STATUS_SUCCESS;
  289. struct sta_info *sta = NULL;
  290. int res;
  291. u16 fc;
  292. u8 *challenge = NULL;
  293. u32 session_timeout, acct_interim_interval;
  294. int vlan_id = 0;
  295. u8 resp_ies[2 + WLAN_AUTH_CHALLENGE_LEN];
  296. size_t resp_ies_len = 0;
  297. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
  298. printf("handle_auth - too short payload (len=%lu)\n",
  299. (unsigned long) len);
  300. return;
  301. }
  302. auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
  303. auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
  304. status_code = le_to_host16(mgmt->u.auth.status_code);
  305. fc = le_to_host16(mgmt->frame_control);
  306. if (len >= IEEE80211_HDRLEN + sizeof(mgmt->u.auth) +
  307. 2 + WLAN_AUTH_CHALLENGE_LEN &&
  308. mgmt->u.auth.variable[0] == WLAN_EID_CHALLENGE &&
  309. mgmt->u.auth.variable[1] == WLAN_AUTH_CHALLENGE_LEN)
  310. challenge = &mgmt->u.auth.variable[2];
  311. wpa_printf(MSG_DEBUG, "authentication: STA=" MACSTR " auth_alg=%d "
  312. "auth_transaction=%d status_code=%d wep=%d%s",
  313. MAC2STR(mgmt->sa), auth_alg, auth_transaction,
  314. status_code, !!(fc & WLAN_FC_ISWEP),
  315. challenge ? " challenge" : "");
  316. if (hapd->tkip_countermeasures) {
  317. resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
  318. goto fail;
  319. }
  320. if (!(((hapd->conf->auth_algs & WPA_AUTH_ALG_OPEN) &&
  321. auth_alg == WLAN_AUTH_OPEN) ||
  322. #ifdef CONFIG_IEEE80211R
  323. (hapd->conf->wpa &&
  324. (hapd->conf->wpa_key_mgmt &
  325. (WPA_KEY_MGMT_FT_IEEE8021X | WPA_KEY_MGMT_FT_PSK)) &&
  326. auth_alg == WLAN_AUTH_FT) ||
  327. #endif /* CONFIG_IEEE80211R */
  328. ((hapd->conf->auth_algs & WPA_AUTH_ALG_SHARED) &&
  329. auth_alg == WLAN_AUTH_SHARED_KEY))) {
  330. printf("Unsupported authentication algorithm (%d)\n",
  331. auth_alg);
  332. resp = WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
  333. goto fail;
  334. }
  335. if (!(auth_transaction == 1 ||
  336. (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 3))) {
  337. printf("Unknown authentication transaction number (%d)\n",
  338. auth_transaction);
  339. resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
  340. goto fail;
  341. }
  342. if (os_memcmp(mgmt->sa, hapd->own_addr, ETH_ALEN) == 0) {
  343. printf("Station " MACSTR " not allowed to authenticate.\n",
  344. MAC2STR(mgmt->sa));
  345. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  346. goto fail;
  347. }
  348. res = hostapd_allowed_address(hapd, mgmt->sa, (u8 *) mgmt, len,
  349. &session_timeout,
  350. &acct_interim_interval, &vlan_id);
  351. if (res == HOSTAPD_ACL_REJECT) {
  352. printf("Station " MACSTR " not allowed to authenticate.\n",
  353. MAC2STR(mgmt->sa));
  354. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  355. goto fail;
  356. }
  357. if (res == HOSTAPD_ACL_PENDING) {
  358. wpa_printf(MSG_DEBUG, "Authentication frame from " MACSTR
  359. " waiting for an external authentication",
  360. MAC2STR(mgmt->sa));
  361. /* Authentication code will re-send the authentication frame
  362. * after it has received (and cached) information from the
  363. * external source. */
  364. return;
  365. }
  366. sta = ap_sta_add(hapd, mgmt->sa);
  367. if (!sta) {
  368. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  369. goto fail;
  370. }
  371. if (vlan_id > 0) {
  372. if (hostapd_get_vlan_id_ifname(hapd->conf->vlan,
  373. vlan_id) == NULL) {
  374. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  375. HOSTAPD_LEVEL_INFO, "Invalid VLAN ID "
  376. "%d received from RADIUS server",
  377. vlan_id);
  378. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  379. goto fail;
  380. }
  381. sta->vlan_id = vlan_id;
  382. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  383. HOSTAPD_LEVEL_INFO, "VLAN ID %d", sta->vlan_id);
  384. }
  385. sta->flags &= ~WLAN_STA_PREAUTH;
  386. ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
  387. if (hapd->conf->acct_interim_interval == 0 && acct_interim_interval)
  388. sta->acct_interim_interval = acct_interim_interval;
  389. if (res == HOSTAPD_ACL_ACCEPT_TIMEOUT)
  390. ap_sta_session_timeout(hapd, sta, session_timeout);
  391. else
  392. ap_sta_no_session_timeout(hapd, sta);
  393. switch (auth_alg) {
  394. case WLAN_AUTH_OPEN:
  395. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  396. HOSTAPD_LEVEL_DEBUG,
  397. "authentication OK (open system)");
  398. #ifdef IEEE80211_REQUIRE_AUTH_ACK
  399. /* Station will be marked authenticated if it ACKs the
  400. * authentication reply. */
  401. #else
  402. sta->flags |= WLAN_STA_AUTH;
  403. wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
  404. sta->auth_alg = WLAN_AUTH_OPEN;
  405. mlme_authenticate_indication(hapd, sta);
  406. #endif
  407. break;
  408. case WLAN_AUTH_SHARED_KEY:
  409. resp = auth_shared_key(hapd, sta, auth_transaction, challenge,
  410. fc & WLAN_FC_ISWEP);
  411. sta->auth_alg = WLAN_AUTH_SHARED_KEY;
  412. mlme_authenticate_indication(hapd, sta);
  413. if (sta->challenge && auth_transaction == 1) {
  414. resp_ies[0] = WLAN_EID_CHALLENGE;
  415. resp_ies[1] = WLAN_AUTH_CHALLENGE_LEN;
  416. os_memcpy(resp_ies + 2, sta->challenge,
  417. WLAN_AUTH_CHALLENGE_LEN);
  418. resp_ies_len = 2 + WLAN_AUTH_CHALLENGE_LEN;
  419. }
  420. break;
  421. #ifdef CONFIG_IEEE80211R
  422. case WLAN_AUTH_FT:
  423. sta->auth_alg = WLAN_AUTH_FT;
  424. if (sta->wpa_sm == NULL)
  425. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  426. sta->addr);
  427. if (sta->wpa_sm == NULL) {
  428. wpa_printf(MSG_DEBUG, "FT: Failed to initialize WPA "
  429. "state machine");
  430. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  431. goto fail;
  432. }
  433. wpa_ft_process_auth(sta->wpa_sm, mgmt->bssid,
  434. auth_transaction, mgmt->u.auth.variable,
  435. len - IEEE80211_HDRLEN -
  436. sizeof(mgmt->u.auth),
  437. handle_auth_ft_finish, hapd);
  438. /* handle_auth_ft_finish() callback will complete auth. */
  439. return;
  440. #endif /* CONFIG_IEEE80211R */
  441. }
  442. fail:
  443. send_auth_reply(hapd, mgmt->sa, mgmt->bssid, auth_alg,
  444. auth_transaction + 1, resp, resp_ies, resp_ies_len);
  445. }
  446. static int hostapd_get_aid(struct hostapd_data *hapd, struct sta_info *sta)
  447. {
  448. int i, j = 32, aid;
  449. /* get a unique AID */
  450. if (sta->aid > 0) {
  451. wpa_printf(MSG_DEBUG, " old AID %d", sta->aid);
  452. return 0;
  453. }
  454. for (i = 0; i < AID_WORDS; i++) {
  455. if (hapd->sta_aid[i] == (u32) -1)
  456. continue;
  457. for (j = 0; j < 32; j++) {
  458. if (!(hapd->sta_aid[i] & BIT(j)))
  459. break;
  460. }
  461. if (j < 32)
  462. break;
  463. }
  464. if (j == 32)
  465. return -1;
  466. aid = i * 32 + j + 1;
  467. if (aid > 2007)
  468. return -1;
  469. sta->aid = aid;
  470. hapd->sta_aid[i] |= BIT(j);
  471. wpa_printf(MSG_DEBUG, " new AID %d", sta->aid);
  472. return 0;
  473. }
  474. static u16 check_ssid(struct hostapd_data *hapd, struct sta_info *sta,
  475. const u8 *ssid_ie, size_t ssid_ie_len)
  476. {
  477. if (ssid_ie == NULL)
  478. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  479. if (ssid_ie_len != hapd->conf->ssid.ssid_len ||
  480. os_memcmp(ssid_ie, hapd->conf->ssid.ssid, ssid_ie_len) != 0) {
  481. char ssid_txt[33];
  482. ieee802_11_print_ssid(ssid_txt, ssid_ie, ssid_ie_len);
  483. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  484. HOSTAPD_LEVEL_INFO,
  485. "Station tried to associate with unknown SSID "
  486. "'%s'", ssid_txt);
  487. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  488. }
  489. return WLAN_STATUS_SUCCESS;
  490. }
  491. static u16 check_wmm(struct hostapd_data *hapd, struct sta_info *sta,
  492. const u8 *wmm_ie, size_t wmm_ie_len)
  493. {
  494. sta->flags &= ~WLAN_STA_WMM;
  495. if (wmm_ie && hapd->conf->wmm_enabled) {
  496. if (hostapd_eid_wmm_valid(hapd, wmm_ie, wmm_ie_len))
  497. hostapd_logger(hapd, sta->addr,
  498. HOSTAPD_MODULE_WPA,
  499. HOSTAPD_LEVEL_DEBUG,
  500. "invalid WMM element in association "
  501. "request");
  502. else
  503. sta->flags |= WLAN_STA_WMM;
  504. }
  505. return WLAN_STATUS_SUCCESS;
  506. }
  507. static u16 copy_supp_rates(struct hostapd_data *hapd, struct sta_info *sta,
  508. struct ieee802_11_elems *elems)
  509. {
  510. if (!elems->supp_rates) {
  511. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  512. HOSTAPD_LEVEL_DEBUG,
  513. "No supported rates element in AssocReq");
  514. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  515. }
  516. if (elems->supp_rates_len > sizeof(sta->supported_rates)) {
  517. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  518. HOSTAPD_LEVEL_DEBUG,
  519. "Invalid supported rates element length %d",
  520. elems->supp_rates_len);
  521. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  522. }
  523. os_memset(sta->supported_rates, 0, sizeof(sta->supported_rates));
  524. os_memcpy(sta->supported_rates, elems->supp_rates,
  525. elems->supp_rates_len);
  526. sta->supported_rates_len = elems->supp_rates_len;
  527. if (elems->ext_supp_rates) {
  528. if (elems->supp_rates_len + elems->ext_supp_rates_len >
  529. sizeof(sta->supported_rates)) {
  530. hostapd_logger(hapd, sta->addr,
  531. HOSTAPD_MODULE_IEEE80211,
  532. HOSTAPD_LEVEL_DEBUG,
  533. "Invalid supported rates element length"
  534. " %d+%d", elems->supp_rates_len,
  535. elems->ext_supp_rates_len);
  536. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  537. }
  538. os_memcpy(sta->supported_rates + elems->supp_rates_len,
  539. elems->ext_supp_rates, elems->ext_supp_rates_len);
  540. sta->supported_rates_len += elems->ext_supp_rates_len;
  541. }
  542. return WLAN_STATUS_SUCCESS;
  543. }
  544. static u16 check_assoc_ies(struct hostapd_data *hapd, struct sta_info *sta,
  545. u8 *ies, size_t ies_len, int reassoc)
  546. {
  547. struct ieee802_11_elems elems;
  548. u16 resp;
  549. u8 *wpa_ie;
  550. size_t wpa_ie_len;
  551. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed) {
  552. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  553. HOSTAPD_LEVEL_INFO, "Station sent an invalid "
  554. "association request");
  555. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  556. }
  557. resp = check_ssid(hapd, sta, elems.ssid, elems.ssid_len);
  558. if (resp != WLAN_STATUS_SUCCESS)
  559. return resp;
  560. resp = check_wmm(hapd, sta, elems.wmm, elems.wmm_len);
  561. if (resp != WLAN_STATUS_SUCCESS)
  562. return resp;
  563. resp = copy_supp_rates(hapd, sta, &elems);
  564. if (resp != WLAN_STATUS_SUCCESS)
  565. return resp;
  566. #ifdef CONFIG_IEEE80211N
  567. resp = copy_sta_ht_capab(sta, elems.ht_capabilities,
  568. elems.ht_capabilities_len);
  569. if (resp != WLAN_STATUS_SUCCESS)
  570. return resp;
  571. #endif /* CONFIG_IEEE80211N */
  572. if ((hapd->conf->wpa & WPA_PROTO_RSN) && elems.rsn_ie) {
  573. wpa_ie = elems.rsn_ie;
  574. wpa_ie_len = elems.rsn_ie_len;
  575. } else if ((hapd->conf->wpa & WPA_PROTO_WPA) &&
  576. elems.wpa_ie) {
  577. wpa_ie = elems.wpa_ie;
  578. wpa_ie_len = elems.wpa_ie_len;
  579. } else {
  580. wpa_ie = NULL;
  581. wpa_ie_len = 0;
  582. }
  583. #ifdef CONFIG_WPS
  584. sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
  585. if (hapd->conf->wps_state && wpa_ie == NULL) {
  586. if (elems.wps_ie) {
  587. wpa_printf(MSG_DEBUG, "STA included WPS IE in "
  588. "(Re)Association Request - assume WPS is "
  589. "used");
  590. sta->flags |= WLAN_STA_WPS;
  591. wpabuf_free(sta->wps_ie);
  592. sta->wps_ie = wpabuf_alloc_copy(elems.wps_ie + 4,
  593. elems.wps_ie_len - 4);
  594. } else {
  595. wpa_printf(MSG_DEBUG, "STA did not include WPA/RSN IE "
  596. "in (Re)Association Request - possible WPS "
  597. "use");
  598. sta->flags |= WLAN_STA_MAYBE_WPS;
  599. }
  600. } else
  601. #endif /* CONFIG_WPS */
  602. if (hapd->conf->wpa && wpa_ie == NULL) {
  603. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  604. HOSTAPD_LEVEL_INFO,
  605. "No WPA/RSN IE in association request");
  606. return WLAN_STATUS_INVALID_IE;
  607. }
  608. if (hapd->conf->wpa && wpa_ie) {
  609. int res;
  610. wpa_ie -= 2;
  611. wpa_ie_len += 2;
  612. if (sta->wpa_sm == NULL)
  613. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  614. sta->addr);
  615. if (sta->wpa_sm == NULL) {
  616. wpa_printf(MSG_WARNING, "Failed to initialize WPA "
  617. "state machine");
  618. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  619. }
  620. res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
  621. wpa_ie, wpa_ie_len,
  622. elems.mdie, elems.mdie_len);
  623. if (res == WPA_INVALID_GROUP)
  624. resp = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
  625. else if (res == WPA_INVALID_PAIRWISE)
  626. resp = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID;
  627. else if (res == WPA_INVALID_AKMP)
  628. resp = WLAN_STATUS_AKMP_NOT_VALID;
  629. else if (res == WPA_ALLOC_FAIL)
  630. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  631. #ifdef CONFIG_IEEE80211W
  632. else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
  633. resp = WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION;
  634. else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
  635. resp = WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION;
  636. #endif /* CONFIG_IEEE80211W */
  637. else if (res == WPA_INVALID_MDIE)
  638. resp = WLAN_STATUS_INVALID_MDIE;
  639. else if (res != WPA_IE_OK)
  640. resp = WLAN_STATUS_INVALID_IE;
  641. if (resp != WLAN_STATUS_SUCCESS)
  642. return resp;
  643. #ifdef CONFIG_IEEE80211W
  644. if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
  645. sta->sa_query_count > 0)
  646. ap_check_sa_query_timeout(hapd, sta);
  647. if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
  648. (!reassoc || sta->auth_alg != WLAN_AUTH_FT)) {
  649. /*
  650. * STA has already been associated with MFP and SA
  651. * Query timeout has not been reached. Reject the
  652. * association attempt temporarily and start SA Query,
  653. * if one is not pending.
  654. */
  655. if (sta->sa_query_count == 0)
  656. ap_sta_start_sa_query(hapd, sta);
  657. return WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY;
  658. }
  659. if (wpa_auth_uses_mfp(sta->wpa_sm))
  660. sta->flags |= WLAN_STA_MFP;
  661. else
  662. sta->flags &= ~WLAN_STA_MFP;
  663. #endif /* CONFIG_IEEE80211W */
  664. #ifdef CONFIG_IEEE80211R
  665. if (sta->auth_alg == WLAN_AUTH_FT) {
  666. if (!reassoc) {
  667. wpa_printf(MSG_DEBUG, "FT: " MACSTR " tried "
  668. "to use association (not "
  669. "re-association) with FT auth_alg",
  670. MAC2STR(sta->addr));
  671. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  672. }
  673. resp = wpa_ft_validate_reassoc(sta->wpa_sm, ies,
  674. ies_len);
  675. if (resp != WLAN_STATUS_SUCCESS)
  676. return resp;
  677. }
  678. #endif /* CONFIG_IEEE80211R */
  679. #ifdef CONFIG_IEEE80211N
  680. if ((sta->flags & WLAN_STA_HT) &&
  681. wpa_auth_get_pairwise(sta->wpa_sm) == WPA_CIPHER_TKIP) {
  682. hostapd_logger(hapd, sta->addr,
  683. HOSTAPD_MODULE_IEEE80211,
  684. HOSTAPD_LEVEL_INFO,
  685. "Station tried to use TKIP with HT "
  686. "association");
  687. return WLAN_STATUS_CIPHER_REJECTED_PER_POLICY;
  688. }
  689. #endif /* CONFIG_IEEE80211N */
  690. } else
  691. wpa_auth_sta_no_wpa(sta->wpa_sm);
  692. return WLAN_STATUS_SUCCESS;
  693. }
  694. static void send_deauth(struct hostapd_data *hapd, const u8 *addr,
  695. u16 reason_code)
  696. {
  697. int send_len;
  698. struct ieee80211_mgmt reply;
  699. os_memset(&reply, 0, sizeof(reply));
  700. reply.frame_control =
  701. IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_DEAUTH);
  702. os_memcpy(reply.da, addr, ETH_ALEN);
  703. os_memcpy(reply.sa, hapd->own_addr, ETH_ALEN);
  704. os_memcpy(reply.bssid, hapd->own_addr, ETH_ALEN);
  705. send_len = IEEE80211_HDRLEN + sizeof(reply.u.deauth);
  706. reply.u.deauth.reason_code = host_to_le16(reason_code);
  707. if (hostapd_send_mgmt_frame(hapd, &reply, send_len) < 0)
  708. wpa_printf(MSG_INFO, "Failed to send deauth: %s",
  709. strerror(errno));
  710. }
  711. static void send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta,
  712. u16 status_code, int reassoc, u8 *ies,
  713. size_t ies_len)
  714. {
  715. int send_len;
  716. u8 buf[sizeof(struct ieee80211_mgmt) + 1024];
  717. struct ieee80211_mgmt *reply;
  718. u8 *p;
  719. os_memset(buf, 0, sizeof(buf));
  720. reply = (struct ieee80211_mgmt *) buf;
  721. reply->frame_control =
  722. IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  723. (reassoc ? WLAN_FC_STYPE_REASSOC_RESP :
  724. WLAN_FC_STYPE_ASSOC_RESP));
  725. os_memcpy(reply->da, sta->addr, ETH_ALEN);
  726. os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
  727. os_memcpy(reply->bssid, hapd->own_addr, ETH_ALEN);
  728. send_len = IEEE80211_HDRLEN;
  729. send_len += sizeof(reply->u.assoc_resp);
  730. reply->u.assoc_resp.capab_info =
  731. host_to_le16(hostapd_own_capab_info(hapd, sta, 0));
  732. reply->u.assoc_resp.status_code = host_to_le16(status_code);
  733. reply->u.assoc_resp.aid = host_to_le16((sta ? sta->aid : 0)
  734. | BIT(14) | BIT(15));
  735. /* Supported rates */
  736. p = hostapd_eid_supp_rates(hapd, reply->u.assoc_resp.variable);
  737. /* Extended supported rates */
  738. p = hostapd_eid_ext_supp_rates(hapd, p);
  739. if (sta->flags & WLAN_STA_WMM)
  740. p = hostapd_eid_wmm(hapd, p);
  741. #ifdef CONFIG_IEEE80211N
  742. p = hostapd_eid_ht_capabilities(hapd, p);
  743. p = hostapd_eid_ht_operation(hapd, p);
  744. #endif /* CONFIG_IEEE80211N */
  745. #ifdef CONFIG_IEEE80211R
  746. if (status_code == WLAN_STATUS_SUCCESS) {
  747. /* IEEE 802.11r: Mobility Domain Information, Fast BSS
  748. * Transition Information, RSN, [RIC Response] */
  749. p = wpa_sm_write_assoc_resp_ies(sta->wpa_sm, p,
  750. buf + sizeof(buf) - p,
  751. sta->auth_alg, ies, ies_len);
  752. }
  753. #endif /* CONFIG_IEEE80211R */
  754. #ifdef CONFIG_IEEE80211W
  755. if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY)
  756. p = hostapd_eid_assoc_comeback_time(hapd, sta, p);
  757. #endif /* CONFIG_IEEE80211W */
  758. send_len += p - reply->u.assoc_resp.variable;
  759. if (hostapd_send_mgmt_frame(hapd, reply, send_len) < 0)
  760. wpa_printf(MSG_INFO, "Failed to send assoc resp: %s",
  761. strerror(errno));
  762. }
  763. static void handle_assoc(struct hostapd_data *hapd,
  764. struct ieee80211_mgmt *mgmt, size_t len, int reassoc)
  765. {
  766. u16 capab_info, listen_interval;
  767. u16 resp = WLAN_STATUS_SUCCESS;
  768. u8 *pos;
  769. int left, i;
  770. struct sta_info *sta;
  771. if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_req) :
  772. sizeof(mgmt->u.assoc_req))) {
  773. printf("handle_assoc(reassoc=%d) - too short payload (len=%lu)"
  774. "\n", reassoc, (unsigned long) len);
  775. return;
  776. }
  777. if (reassoc) {
  778. capab_info = le_to_host16(mgmt->u.reassoc_req.capab_info);
  779. listen_interval = le_to_host16(
  780. mgmt->u.reassoc_req.listen_interval);
  781. wpa_printf(MSG_DEBUG, "reassociation request: STA=" MACSTR
  782. " capab_info=0x%02x listen_interval=%d current_ap="
  783. MACSTR,
  784. MAC2STR(mgmt->sa), capab_info, listen_interval,
  785. MAC2STR(mgmt->u.reassoc_req.current_ap));
  786. left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.reassoc_req));
  787. pos = mgmt->u.reassoc_req.variable;
  788. } else {
  789. capab_info = le_to_host16(mgmt->u.assoc_req.capab_info);
  790. listen_interval = le_to_host16(
  791. mgmt->u.assoc_req.listen_interval);
  792. wpa_printf(MSG_DEBUG, "association request: STA=" MACSTR
  793. " capab_info=0x%02x listen_interval=%d",
  794. MAC2STR(mgmt->sa), capab_info, listen_interval);
  795. left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.assoc_req));
  796. pos = mgmt->u.assoc_req.variable;
  797. }
  798. sta = ap_get_sta(hapd, mgmt->sa);
  799. #ifdef CONFIG_IEEE80211R
  800. if (sta && sta->auth_alg == WLAN_AUTH_FT &&
  801. (sta->flags & WLAN_STA_AUTH) == 0) {
  802. wpa_printf(MSG_DEBUG, "FT: Allow STA " MACSTR " to associate "
  803. "prior to authentication since it is using "
  804. "over-the-DS FT", MAC2STR(mgmt->sa));
  805. } else
  806. #endif /* CONFIG_IEEE80211R */
  807. if (sta == NULL || (sta->flags & WLAN_STA_AUTH) == 0) {
  808. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  809. HOSTAPD_LEVEL_INFO, "Station tried to "
  810. "associate before authentication "
  811. "(aid=%d flags=0x%x)",
  812. sta ? sta->aid : -1,
  813. sta ? sta->flags : 0);
  814. send_deauth(hapd, mgmt->sa,
  815. WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA);
  816. return;
  817. }
  818. if (hapd->tkip_countermeasures) {
  819. resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
  820. goto fail;
  821. }
  822. if (listen_interval > hapd->conf->max_listen_interval) {
  823. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  824. HOSTAPD_LEVEL_DEBUG,
  825. "Too large Listen Interval (%d)",
  826. listen_interval);
  827. resp = WLAN_STATUS_ASSOC_DENIED_LISTEN_INT_TOO_LARGE;
  828. goto fail;
  829. }
  830. /* followed by SSID and Supported rates; and HT capabilities if 802.11n
  831. * is used */
  832. resp = check_assoc_ies(hapd, sta, pos, left, reassoc);
  833. if (resp != WLAN_STATUS_SUCCESS)
  834. goto fail;
  835. if (hostapd_get_aid(hapd, sta) < 0) {
  836. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  837. HOSTAPD_LEVEL_INFO, "No room for more AIDs");
  838. resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  839. goto fail;
  840. }
  841. sta->capability = capab_info;
  842. sta->listen_interval = listen_interval;
  843. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G)
  844. sta->flags |= WLAN_STA_NONERP;
  845. for (i = 0; i < sta->supported_rates_len; i++) {
  846. if ((sta->supported_rates[i] & 0x7f) > 22) {
  847. sta->flags &= ~WLAN_STA_NONERP;
  848. break;
  849. }
  850. }
  851. if (sta->flags & WLAN_STA_NONERP && !sta->nonerp_set) {
  852. sta->nonerp_set = 1;
  853. hapd->iface->num_sta_non_erp++;
  854. if (hapd->iface->num_sta_non_erp == 1)
  855. ieee802_11_set_beacons(hapd->iface);
  856. }
  857. if (!(sta->capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) &&
  858. !sta->no_short_slot_time_set) {
  859. sta->no_short_slot_time_set = 1;
  860. hapd->iface->num_sta_no_short_slot_time++;
  861. if (hapd->iface->current_mode->mode ==
  862. HOSTAPD_MODE_IEEE80211G &&
  863. hapd->iface->num_sta_no_short_slot_time == 1)
  864. ieee802_11_set_beacons(hapd->iface);
  865. }
  866. if (sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
  867. sta->flags |= WLAN_STA_SHORT_PREAMBLE;
  868. else
  869. sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
  870. if (!(sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
  871. !sta->no_short_preamble_set) {
  872. sta->no_short_preamble_set = 1;
  873. hapd->iface->num_sta_no_short_preamble++;
  874. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  875. && hapd->iface->num_sta_no_short_preamble == 1)
  876. ieee802_11_set_beacons(hapd->iface);
  877. }
  878. #ifdef CONFIG_IEEE80211N
  879. update_ht_state(hapd, sta);
  880. #endif /* CONFIG_IEEE80211N */
  881. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  882. HOSTAPD_LEVEL_DEBUG,
  883. "association OK (aid %d)", sta->aid);
  884. /* Station will be marked associated, after it acknowledges AssocResp
  885. */
  886. #ifdef CONFIG_IEEE80211W
  887. if ((sta->flags & WLAN_STA_MFP) && sta->sa_query_timed_out) {
  888. wpa_printf(MSG_DEBUG, "Allowing %sassociation after timed out "
  889. "SA Query procedure", reassoc ? "re" : "");
  890. /* TODO: Send a protected Disassociate frame to the STA using
  891. * the old key and Reason Code "Previous Authentication no
  892. * longer valid". Make sure this is only sent protected since
  893. * unprotected frame would be received by the STA that is now
  894. * trying to associate.
  895. */
  896. }
  897. #endif /* CONFIG_IEEE80211W */
  898. if (reassoc) {
  899. os_memcpy(sta->previous_ap, mgmt->u.reassoc_req.current_ap,
  900. ETH_ALEN);
  901. }
  902. if (sta->last_assoc_req)
  903. os_free(sta->last_assoc_req);
  904. sta->last_assoc_req = os_malloc(len);
  905. if (sta->last_assoc_req)
  906. os_memcpy(sta->last_assoc_req, mgmt, len);
  907. /* Make sure that the previously registered inactivity timer will not
  908. * remove the STA immediately. */
  909. sta->timeout_next = STA_NULLFUNC;
  910. fail:
  911. send_assoc_resp(hapd, sta, resp, reassoc, pos, left);
  912. }
  913. static void handle_disassoc(struct hostapd_data *hapd,
  914. struct ieee80211_mgmt *mgmt, size_t len)
  915. {
  916. struct sta_info *sta;
  917. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.disassoc)) {
  918. printf("handle_disassoc - too short payload (len=%lu)\n",
  919. (unsigned long) len);
  920. return;
  921. }
  922. wpa_printf(MSG_DEBUG, "disassocation: STA=" MACSTR " reason_code=%d",
  923. MAC2STR(mgmt->sa),
  924. le_to_host16(mgmt->u.disassoc.reason_code));
  925. sta = ap_get_sta(hapd, mgmt->sa);
  926. if (sta == NULL) {
  927. printf("Station " MACSTR " trying to disassociate, but it "
  928. "is not associated.\n", MAC2STR(mgmt->sa));
  929. return;
  930. }
  931. sta->flags &= ~WLAN_STA_ASSOC;
  932. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED MACSTR,
  933. MAC2STR(sta->addr));
  934. wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
  935. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  936. HOSTAPD_LEVEL_INFO, "disassociated");
  937. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  938. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  939. /* Stop Accounting and IEEE 802.1X sessions, but leave the STA
  940. * authenticated. */
  941. accounting_sta_stop(hapd, sta);
  942. ieee802_1x_free_station(sta);
  943. hostapd_sta_remove(hapd, sta->addr);
  944. if (sta->timeout_next == STA_NULLFUNC ||
  945. sta->timeout_next == STA_DISASSOC) {
  946. sta->timeout_next = STA_DEAUTH;
  947. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  948. eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
  949. hapd, sta);
  950. }
  951. mlme_disassociate_indication(
  952. hapd, sta, le_to_host16(mgmt->u.disassoc.reason_code));
  953. }
  954. static void handle_deauth(struct hostapd_data *hapd,
  955. struct ieee80211_mgmt *mgmt, size_t len)
  956. {
  957. struct sta_info *sta;
  958. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.deauth)) {
  959. printf("handle_deauth - too short payload (len=%lu)\n",
  960. (unsigned long) len);
  961. return;
  962. }
  963. wpa_printf(MSG_DEBUG, "deauthentication: STA=" MACSTR
  964. " reason_code=%d",
  965. MAC2STR(mgmt->sa),
  966. le_to_host16(mgmt->u.deauth.reason_code));
  967. sta = ap_get_sta(hapd, mgmt->sa);
  968. if (sta == NULL) {
  969. printf("Station " MACSTR " trying to deauthenticate, but it "
  970. "is not authenticated.\n", MAC2STR(mgmt->sa));
  971. return;
  972. }
  973. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
  974. wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED MACSTR,
  975. MAC2STR(sta->addr));
  976. wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
  977. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  978. HOSTAPD_LEVEL_DEBUG, "deauthenticated");
  979. mlme_deauthenticate_indication(
  980. hapd, sta, le_to_host16(mgmt->u.deauth.reason_code));
  981. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  982. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  983. ap_free_sta(hapd, sta);
  984. }
  985. static void handle_beacon(struct hostapd_data *hapd,
  986. struct ieee80211_mgmt *mgmt, size_t len,
  987. struct hostapd_frame_info *fi)
  988. {
  989. struct ieee802_11_elems elems;
  990. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.beacon)) {
  991. printf("handle_beacon - too short payload (len=%lu)\n",
  992. (unsigned long) len);
  993. return;
  994. }
  995. (void) ieee802_11_parse_elems(mgmt->u.beacon.variable,
  996. len - (IEEE80211_HDRLEN +
  997. sizeof(mgmt->u.beacon)), &elems,
  998. 0);
  999. ap_list_process_beacon(hapd->iface, mgmt, &elems, fi);
  1000. }
  1001. #ifdef CONFIG_IEEE80211W
  1002. /* MLME-SAQuery.request */
  1003. void ieee802_11_send_sa_query_req(struct hostapd_data *hapd,
  1004. const u8 *addr, const u8 *trans_id)
  1005. {
  1006. struct ieee80211_mgmt mgmt;
  1007. u8 *end;
  1008. wpa_printf(MSG_DEBUG, "IEEE 802.11: Sending SA Query Request to "
  1009. MACSTR, MAC2STR(addr));
  1010. wpa_hexdump(MSG_DEBUG, "IEEE 802.11: SA Query Transaction ID",
  1011. trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  1012. os_memset(&mgmt, 0, sizeof(mgmt));
  1013. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  1014. WLAN_FC_STYPE_ACTION);
  1015. os_memcpy(mgmt.da, addr, ETH_ALEN);
  1016. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  1017. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  1018. mgmt.u.action.category = WLAN_ACTION_SA_QUERY;
  1019. mgmt.u.action.u.sa_query_req.action = WLAN_SA_QUERY_REQUEST;
  1020. os_memcpy(mgmt.u.action.u.sa_query_req.trans_id, trans_id,
  1021. WLAN_SA_QUERY_TR_ID_LEN);
  1022. end = mgmt.u.action.u.sa_query_req.trans_id + WLAN_SA_QUERY_TR_ID_LEN;
  1023. if (hostapd_send_mgmt_frame(hapd, &mgmt, end - (u8 *) &mgmt) < 0)
  1024. perror("ieee802_11_send_sa_query_req: send");
  1025. }
  1026. static void hostapd_sa_query_action(struct hostapd_data *hapd,
  1027. struct ieee80211_mgmt *mgmt, size_t len)
  1028. {
  1029. struct sta_info *sta;
  1030. u8 *end;
  1031. int i;
  1032. end = mgmt->u.action.u.sa_query_resp.trans_id +
  1033. WLAN_SA_QUERY_TR_ID_LEN;
  1034. if (((u8 *) mgmt) + len < end) {
  1035. wpa_printf(MSG_DEBUG, "IEEE 802.11: Too short SA Query Action "
  1036. "frame (len=%lu)", (unsigned long) len);
  1037. return;
  1038. }
  1039. if (mgmt->u.action.u.sa_query_resp.action != WLAN_SA_QUERY_RESPONSE) {
  1040. wpa_printf(MSG_DEBUG, "IEEE 802.11: Unexpected SA Query "
  1041. "Action %d", mgmt->u.action.u.sa_query_resp.action);
  1042. return;
  1043. }
  1044. wpa_printf(MSG_DEBUG, "IEEE 802.11: Received SA Query Response from "
  1045. MACSTR, MAC2STR(mgmt->sa));
  1046. wpa_hexdump(MSG_DEBUG, "IEEE 802.11: SA Query Transaction ID",
  1047. mgmt->u.action.u.sa_query_resp.trans_id,
  1048. WLAN_SA_QUERY_TR_ID_LEN);
  1049. /* MLME-SAQuery.confirm */
  1050. sta = ap_get_sta(hapd, mgmt->sa);
  1051. if (sta == NULL || sta->sa_query_trans_id == NULL) {
  1052. wpa_printf(MSG_DEBUG, "IEEE 802.11: No matching STA with "
  1053. "pending SA Query request found");
  1054. return;
  1055. }
  1056. for (i = 0; i < sta->sa_query_count; i++) {
  1057. if (os_memcmp(sta->sa_query_trans_id +
  1058. i * WLAN_SA_QUERY_TR_ID_LEN,
  1059. mgmt->u.action.u.sa_query_resp.trans_id,
  1060. WLAN_SA_QUERY_TR_ID_LEN) == 0)
  1061. break;
  1062. }
  1063. if (i >= sta->sa_query_count) {
  1064. wpa_printf(MSG_DEBUG, "IEEE 802.11: No matching SA Query "
  1065. "transaction identifier found");
  1066. return;
  1067. }
  1068. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1069. HOSTAPD_LEVEL_DEBUG,
  1070. "Reply to pending SA Query received");
  1071. ap_sta_stop_sa_query(hapd, sta);
  1072. }
  1073. static int robust_action_frame(u8 category)
  1074. {
  1075. return category != WLAN_ACTION_PUBLIC &&
  1076. category != WLAN_ACTION_HT;
  1077. }
  1078. #endif /* CONFIG_IEEE80211W */
  1079. static void handle_action(struct hostapd_data *hapd,
  1080. struct ieee80211_mgmt *mgmt, size_t len)
  1081. {
  1082. struct sta_info *sta;
  1083. if (len < IEEE80211_HDRLEN + 1) {
  1084. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1085. HOSTAPD_LEVEL_DEBUG,
  1086. "handle_action - too short payload (len=%lu)",
  1087. (unsigned long) len);
  1088. return;
  1089. }
  1090. sta = ap_get_sta(hapd, mgmt->sa);
  1091. #ifdef CONFIG_IEEE80211W
  1092. if (sta && (sta->flags & WLAN_STA_MFP) &&
  1093. !(mgmt->frame_control & host_to_le16(WLAN_FC_ISWEP) &&
  1094. robust_action_frame(mgmt->u.action.category))) {
  1095. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1096. HOSTAPD_LEVEL_DEBUG,
  1097. "Dropped unprotected Robust Action frame from "
  1098. "an MFP STA");
  1099. return;
  1100. }
  1101. #endif /* CONFIG_IEEE80211W */
  1102. switch (mgmt->u.action.category) {
  1103. #ifdef CONFIG_IEEE80211R
  1104. case WLAN_ACTION_FT:
  1105. {
  1106. if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC)) {
  1107. wpa_printf(MSG_DEBUG, "IEEE 802.11: Ignored FT Action "
  1108. "frame from unassociated STA " MACSTR,
  1109. MAC2STR(mgmt->sa));
  1110. return;
  1111. }
  1112. if (wpa_ft_action_rx(sta->wpa_sm, (u8 *) &mgmt->u.action,
  1113. len - IEEE80211_HDRLEN))
  1114. break;
  1115. return;
  1116. }
  1117. #endif /* CONFIG_IEEE80211R */
  1118. case WLAN_ACTION_WMM:
  1119. hostapd_wmm_action(hapd, mgmt, len);
  1120. return;
  1121. #ifdef CONFIG_IEEE80211W
  1122. case WLAN_ACTION_SA_QUERY:
  1123. hostapd_sa_query_action(hapd, mgmt, len);
  1124. return;
  1125. #endif /* CONFIG_IEEE80211W */
  1126. }
  1127. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1128. HOSTAPD_LEVEL_DEBUG,
  1129. "handle_action - unknown action category %d or invalid "
  1130. "frame",
  1131. mgmt->u.action.category);
  1132. if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category & 0x80) &&
  1133. !(mgmt->sa[0] & 0x01)) {
  1134. /*
  1135. * IEEE 802.11-REVma/D9.0 - 7.3.1.11
  1136. * Return the Action frame to the source without change
  1137. * except that MSB of the Category set to 1.
  1138. */
  1139. wpa_printf(MSG_DEBUG, "IEEE 802.11: Return unknown Action "
  1140. "frame back to sender");
  1141. os_memcpy(mgmt->da, mgmt->sa, ETH_ALEN);
  1142. os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
  1143. os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
  1144. mgmt->u.action.category |= 0x80;
  1145. hostapd_send_mgmt_frame(hapd, mgmt, len);
  1146. }
  1147. }
  1148. /**
  1149. * ieee802_11_mgmt - process incoming IEEE 802.11 management frames
  1150. * @hapd: hostapd BSS data structure (the BSS to which the management frame was
  1151. * sent to)
  1152. * @buf: management frame data (starting from IEEE 802.11 header)
  1153. * @len: length of frame data in octets
  1154. * @stype: management frame subtype from frame control field
  1155. * @fi: meta data about received frame (signal level, etc.)
  1156. *
  1157. * Process all incoming IEEE 802.11 management frames. This will be called for
  1158. * each frame received from the kernel driver through wlan#ap interface. In
  1159. * addition, it can be called to re-inserted pending frames (e.g., when using
  1160. * external RADIUS server as an MAC ACL).
  1161. */
  1162. void ieee802_11_mgmt(struct hostapd_data *hapd, u8 *buf, size_t len, u16 stype,
  1163. struct hostapd_frame_info *fi)
  1164. {
  1165. struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) buf;
  1166. int broadcast;
  1167. if (stype == WLAN_FC_STYPE_BEACON) {
  1168. handle_beacon(hapd, mgmt, len, fi);
  1169. return;
  1170. }
  1171. broadcast = mgmt->bssid[0] == 0xff && mgmt->bssid[1] == 0xff &&
  1172. mgmt->bssid[2] == 0xff && mgmt->bssid[3] == 0xff &&
  1173. mgmt->bssid[4] == 0xff && mgmt->bssid[5] == 0xff;
  1174. if (!broadcast &&
  1175. os_memcmp(mgmt->bssid, hapd->own_addr, ETH_ALEN) != 0) {
  1176. printf("MGMT: BSSID=" MACSTR " not our address\n",
  1177. MAC2STR(mgmt->bssid));
  1178. return;
  1179. }
  1180. if (stype == WLAN_FC_STYPE_PROBE_REQ) {
  1181. handle_probe_req(hapd, mgmt, len);
  1182. return;
  1183. }
  1184. if (os_memcmp(mgmt->da, hapd->own_addr, ETH_ALEN) != 0) {
  1185. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1186. HOSTAPD_LEVEL_DEBUG,
  1187. "MGMT: DA=" MACSTR " not our address",
  1188. MAC2STR(mgmt->da));
  1189. return;
  1190. }
  1191. switch (stype) {
  1192. case WLAN_FC_STYPE_AUTH:
  1193. wpa_printf(MSG_DEBUG, "mgmt::auth");
  1194. handle_auth(hapd, mgmt, len);
  1195. break;
  1196. case WLAN_FC_STYPE_ASSOC_REQ:
  1197. wpa_printf(MSG_DEBUG, "mgmt::assoc_req");
  1198. handle_assoc(hapd, mgmt, len, 0);
  1199. break;
  1200. case WLAN_FC_STYPE_REASSOC_REQ:
  1201. wpa_printf(MSG_DEBUG, "mgmt::reassoc_req");
  1202. handle_assoc(hapd, mgmt, len, 1);
  1203. break;
  1204. case WLAN_FC_STYPE_DISASSOC:
  1205. wpa_printf(MSG_DEBUG, "mgmt::disassoc");
  1206. handle_disassoc(hapd, mgmt, len);
  1207. break;
  1208. case WLAN_FC_STYPE_DEAUTH:
  1209. wpa_printf(MSG_DEBUG, "mgmt::deauth");
  1210. handle_deauth(hapd, mgmt, len);
  1211. break;
  1212. case WLAN_FC_STYPE_ACTION:
  1213. wpa_printf(MSG_DEBUG, "mgmt::action");
  1214. handle_action(hapd, mgmt, len);
  1215. break;
  1216. default:
  1217. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1218. HOSTAPD_LEVEL_DEBUG,
  1219. "unknown mgmt frame subtype %d", stype);
  1220. break;
  1221. }
  1222. }
  1223. static void handle_auth_cb(struct hostapd_data *hapd,
  1224. struct ieee80211_mgmt *mgmt,
  1225. size_t len, int ok)
  1226. {
  1227. u16 auth_alg, auth_transaction, status_code;
  1228. struct sta_info *sta;
  1229. if (!ok) {
  1230. hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
  1231. HOSTAPD_LEVEL_NOTICE,
  1232. "did not acknowledge authentication response");
  1233. return;
  1234. }
  1235. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
  1236. printf("handle_auth_cb - too short payload (len=%lu)\n",
  1237. (unsigned long) len);
  1238. return;
  1239. }
  1240. auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
  1241. auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
  1242. status_code = le_to_host16(mgmt->u.auth.status_code);
  1243. sta = ap_get_sta(hapd, mgmt->da);
  1244. if (!sta) {
  1245. printf("handle_auth_cb: STA " MACSTR " not found\n",
  1246. MAC2STR(mgmt->da));
  1247. return;
  1248. }
  1249. if (status_code == WLAN_STATUS_SUCCESS &&
  1250. ((auth_alg == WLAN_AUTH_OPEN && auth_transaction == 2) ||
  1251. (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 4))) {
  1252. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1253. HOSTAPD_LEVEL_INFO, "authenticated");
  1254. sta->flags |= WLAN_STA_AUTH;
  1255. }
  1256. }
  1257. static void handle_assoc_cb(struct hostapd_data *hapd,
  1258. struct ieee80211_mgmt *mgmt,
  1259. size_t len, int reassoc, int ok)
  1260. {
  1261. u16 status;
  1262. struct sta_info *sta;
  1263. int new_assoc = 1;
  1264. struct ieee80211_ht_capabilities ht_cap;
  1265. int set_flags, total_flags, flags_and, flags_or;
  1266. if (!ok) {
  1267. hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
  1268. HOSTAPD_LEVEL_DEBUG,
  1269. "did not acknowledge association response");
  1270. return;
  1271. }
  1272. if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_resp) :
  1273. sizeof(mgmt->u.assoc_resp))) {
  1274. printf("handle_assoc_cb(reassoc=%d) - too short payload "
  1275. "(len=%lu)\n", reassoc, (unsigned long) len);
  1276. return;
  1277. }
  1278. if (reassoc)
  1279. status = le_to_host16(mgmt->u.reassoc_resp.status_code);
  1280. else
  1281. status = le_to_host16(mgmt->u.assoc_resp.status_code);
  1282. sta = ap_get_sta(hapd, mgmt->da);
  1283. if (!sta) {
  1284. printf("handle_assoc_cb: STA " MACSTR " not found\n",
  1285. MAC2STR(mgmt->da));
  1286. return;
  1287. }
  1288. if (status != WLAN_STATUS_SUCCESS)
  1289. goto fail;
  1290. /* Stop previous accounting session, if one is started, and allocate
  1291. * new session id for the new session. */
  1292. accounting_sta_stop(hapd, sta);
  1293. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1294. HOSTAPD_LEVEL_INFO,
  1295. "associated (aid %d)",
  1296. sta->aid);
  1297. if (sta->flags & WLAN_STA_ASSOC)
  1298. new_assoc = 0;
  1299. sta->flags |= WLAN_STA_ASSOC;
  1300. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa) {
  1301. /* Open or static WEP; no separate authorization */
  1302. sta->flags |= WLAN_STA_AUTHORIZED;
  1303. wpa_msg(hapd->msg_ctx, MSG_INFO,
  1304. AP_STA_CONNECTED MACSTR, MAC2STR(sta->addr));
  1305. }
  1306. if (reassoc)
  1307. mlme_reassociate_indication(hapd, sta);
  1308. else
  1309. mlme_associate_indication(hapd, sta);
  1310. #ifdef CONFIG_IEEE80211W
  1311. sta->sa_query_timed_out = 0;
  1312. #endif /* CONFIG_IEEE80211W */
  1313. /*
  1314. * Remove the STA entry in order to make sure the STA PS state gets
  1315. * cleared and configuration gets updated in case of reassociation back
  1316. * to the same AP.
  1317. */
  1318. hostapd_sta_remove(hapd, sta->addr);
  1319. #ifdef CONFIG_IEEE80211N
  1320. if (sta->flags & WLAN_STA_HT)
  1321. hostapd_get_ht_capab(hapd, sta->ht_capabilities, &ht_cap);
  1322. #endif /* CONFIG_IEEE80211N */
  1323. if (hostapd_sta_add(hapd->conf->iface, hapd, sta->addr, sta->aid,
  1324. sta->capability, sta->supported_rates,
  1325. sta->supported_rates_len, sta->listen_interval,
  1326. sta->flags & WLAN_STA_HT ? &ht_cap : NULL))
  1327. {
  1328. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1329. HOSTAPD_LEVEL_NOTICE,
  1330. "Could not add STA to kernel driver");
  1331. }
  1332. if (sta->eapol_sm == NULL) {
  1333. /*
  1334. * This STA does not use RADIUS server for EAP authentication,
  1335. * so bind it to the selected VLAN interface now, since the
  1336. * interface selection is not going to change anymore.
  1337. */
  1338. ap_sta_bind_vlan(hapd, sta, 0);
  1339. } else if (sta->vlan_id) {
  1340. /* VLAN ID already set (e.g., by PMKSA caching), so bind STA */
  1341. ap_sta_bind_vlan(hapd, sta, 0);
  1342. }
  1343. total_flags = hostapd_sta_flags_to_drv(sta->flags);
  1344. set_flags = WPA_STA_SHORT_PREAMBLE | WPA_STA_WMM | WPA_STA_MFP;
  1345. if (!hapd->conf->ieee802_1x && !hapd->conf->wpa &&
  1346. sta->flags & WLAN_STA_AUTHORIZED)
  1347. set_flags |= WPA_STA_AUTHORIZED;
  1348. flags_or = total_flags & set_flags;
  1349. flags_and = total_flags | ~set_flags;
  1350. hostapd_sta_set_flags(hapd, sta->addr, total_flags,
  1351. flags_or, flags_and);
  1352. if (sta->auth_alg == WLAN_AUTH_FT)
  1353. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC_FT);
  1354. else
  1355. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
  1356. hostapd_new_assoc_sta(hapd, sta, !new_assoc);
  1357. ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
  1358. fail:
  1359. /* Copy of the association request is not needed anymore */
  1360. if (sta->last_assoc_req) {
  1361. os_free(sta->last_assoc_req);
  1362. sta->last_assoc_req = NULL;
  1363. }
  1364. }
  1365. /**
  1366. * ieee802_11_mgmt_cb - Process management frame TX status callback
  1367. * @hapd: hostapd BSS data structure (the BSS from which the management frame
  1368. * was sent from)
  1369. * @buf: management frame data (starting from IEEE 802.11 header)
  1370. * @len: length of frame data in octets
  1371. * @stype: management frame subtype from frame control field
  1372. * @ok: Whether the frame was ACK'ed
  1373. */
  1374. void ieee802_11_mgmt_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
  1375. u16 stype, int ok)
  1376. {
  1377. struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) buf;
  1378. switch (stype) {
  1379. case WLAN_FC_STYPE_AUTH:
  1380. wpa_printf(MSG_DEBUG, "mgmt::auth cb");
  1381. handle_auth_cb(hapd, mgmt, len, ok);
  1382. break;
  1383. case WLAN_FC_STYPE_ASSOC_RESP:
  1384. wpa_printf(MSG_DEBUG, "mgmt::assoc_resp cb");
  1385. handle_assoc_cb(hapd, mgmt, len, 0, ok);
  1386. break;
  1387. case WLAN_FC_STYPE_REASSOC_RESP:
  1388. wpa_printf(MSG_DEBUG, "mgmt::reassoc_resp cb");
  1389. handle_assoc_cb(hapd, mgmt, len, 1, ok);
  1390. break;
  1391. case WLAN_FC_STYPE_PROBE_RESP:
  1392. wpa_printf(MSG_DEBUG, "mgmt::proberesp cb");
  1393. break;
  1394. case WLAN_FC_STYPE_DEAUTH:
  1395. /* ignore */
  1396. break;
  1397. case WLAN_FC_STYPE_ACTION:
  1398. wpa_printf(MSG_DEBUG, "mgmt::action cb");
  1399. break;
  1400. default:
  1401. printf("unknown mgmt cb frame subtype %d\n", stype);
  1402. break;
  1403. }
  1404. }
  1405. int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
  1406. {
  1407. /* TODO */
  1408. return 0;
  1409. }
  1410. int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
  1411. char *buf, size_t buflen)
  1412. {
  1413. /* TODO */
  1414. return 0;
  1415. }
  1416. #endif /* CONFIG_NATIVE_WINDOWS */