ieee802_11.c 54 KB

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