ieee802_11.c 51 KB

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