ieee802_11.c 48 KB

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