ieee802_11.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063
  1. /*
  2. * hostapd / IEEE 802.11 Management
  3. * Copyright (c) 2002-2014, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #ifndef CONFIG_NATIVE_WINDOWS
  10. #include "utils/common.h"
  11. #include "utils/eloop.h"
  12. #include "crypto/crypto.h"
  13. #include "crypto/sha256.h"
  14. #include "crypto/random.h"
  15. #include "common/ieee802_11_defs.h"
  16. #include "common/ieee802_11_common.h"
  17. #include "common/wpa_ctrl.h"
  18. #include "common/sae.h"
  19. #include "radius/radius.h"
  20. #include "radius/radius_client.h"
  21. #include "p2p/p2p.h"
  22. #include "wps/wps.h"
  23. #include "fst/fst.h"
  24. #include "hostapd.h"
  25. #include "beacon.h"
  26. #include "ieee802_11_auth.h"
  27. #include "sta_info.h"
  28. #include "ieee802_1x.h"
  29. #include "wpa_auth.h"
  30. #include "pmksa_cache_auth.h"
  31. #include "wmm.h"
  32. #include "ap_list.h"
  33. #include "accounting.h"
  34. #include "ap_config.h"
  35. #include "ap_mlme.h"
  36. #include "p2p_hostapd.h"
  37. #include "ap_drv_ops.h"
  38. #include "wnm_ap.h"
  39. #include "hw_features.h"
  40. #include "ieee802_11.h"
  41. #include "dfs.h"
  42. #include "mbo_ap.h"
  43. u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid)
  44. {
  45. u8 *pos = eid;
  46. int i, num, count;
  47. if (hapd->iface->current_rates == NULL)
  48. return eid;
  49. *pos++ = WLAN_EID_SUPP_RATES;
  50. num = hapd->iface->num_rates;
  51. if (hapd->iconf->ieee80211n && hapd->iconf->require_ht)
  52. num++;
  53. if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht)
  54. num++;
  55. if (num > 8) {
  56. /* rest of the rates are encoded in Extended supported
  57. * rates element */
  58. num = 8;
  59. }
  60. *pos++ = num;
  61. for (i = 0, count = 0; i < hapd->iface->num_rates && count < num;
  62. i++) {
  63. count++;
  64. *pos = hapd->iface->current_rates[i].rate / 5;
  65. if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
  66. *pos |= 0x80;
  67. pos++;
  68. }
  69. if (hapd->iconf->ieee80211n && hapd->iconf->require_ht && count < 8) {
  70. count++;
  71. *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY;
  72. }
  73. if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht && count < 8) {
  74. count++;
  75. *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY;
  76. }
  77. return pos;
  78. }
  79. u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid)
  80. {
  81. u8 *pos = eid;
  82. int i, num, count;
  83. if (hapd->iface->current_rates == NULL)
  84. return eid;
  85. num = hapd->iface->num_rates;
  86. if (hapd->iconf->ieee80211n && hapd->iconf->require_ht)
  87. num++;
  88. if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht)
  89. num++;
  90. if (num <= 8)
  91. return eid;
  92. num -= 8;
  93. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  94. *pos++ = num;
  95. for (i = 0, count = 0; i < hapd->iface->num_rates && count < num + 8;
  96. i++) {
  97. count++;
  98. if (count <= 8)
  99. continue; /* already in SuppRates IE */
  100. *pos = hapd->iface->current_rates[i].rate / 5;
  101. if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
  102. *pos |= 0x80;
  103. pos++;
  104. }
  105. if (hapd->iconf->ieee80211n && hapd->iconf->require_ht) {
  106. count++;
  107. if (count > 8)
  108. *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY;
  109. }
  110. if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht) {
  111. count++;
  112. if (count > 8)
  113. *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY;
  114. }
  115. return pos;
  116. }
  117. u16 hostapd_own_capab_info(struct hostapd_data *hapd)
  118. {
  119. int capab = WLAN_CAPABILITY_ESS;
  120. int privacy;
  121. int dfs;
  122. /* Check if any of configured channels require DFS */
  123. dfs = hostapd_is_dfs_required(hapd->iface);
  124. if (dfs < 0) {
  125. wpa_printf(MSG_WARNING, "Failed to check if DFS is required; ret=%d",
  126. dfs);
  127. dfs = 0;
  128. }
  129. if (hapd->iface->num_sta_no_short_preamble == 0 &&
  130. hapd->iconf->preamble == SHORT_PREAMBLE)
  131. capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
  132. privacy = hapd->conf->ssid.wep.keys_set;
  133. if (hapd->conf->ieee802_1x &&
  134. (hapd->conf->default_wep_key_len ||
  135. hapd->conf->individual_wep_key_len))
  136. privacy = 1;
  137. if (hapd->conf->wpa)
  138. privacy = 1;
  139. #ifdef CONFIG_HS20
  140. if (hapd->conf->osen)
  141. privacy = 1;
  142. #endif /* CONFIG_HS20 */
  143. if (privacy)
  144. capab |= WLAN_CAPABILITY_PRIVACY;
  145. if (hapd->iface->current_mode &&
  146. hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G &&
  147. hapd->iface->num_sta_no_short_slot_time == 0)
  148. capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
  149. /*
  150. * Currently, Spectrum Management capability bit is set when directly
  151. * requested in configuration by spectrum_mgmt_required or when AP is
  152. * running on DFS channel.
  153. * TODO: Also consider driver support for TPC to set Spectrum Mgmt bit
  154. */
  155. if (hapd->iface->current_mode &&
  156. hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211A &&
  157. (hapd->iconf->spectrum_mgmt_required || dfs))
  158. capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
  159. if (hapd->conf->radio_measurements)
  160. capab |= IEEE80211_CAP_RRM;
  161. return capab;
  162. }
  163. #ifndef CONFIG_NO_RC4
  164. static u16 auth_shared_key(struct hostapd_data *hapd, struct sta_info *sta,
  165. u16 auth_transaction, const u8 *challenge,
  166. int iswep)
  167. {
  168. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  169. HOSTAPD_LEVEL_DEBUG,
  170. "authentication (shared key, transaction %d)",
  171. auth_transaction);
  172. if (auth_transaction == 1) {
  173. if (!sta->challenge) {
  174. /* Generate a pseudo-random challenge */
  175. u8 key[8];
  176. sta->challenge = os_zalloc(WLAN_AUTH_CHALLENGE_LEN);
  177. if (sta->challenge == NULL)
  178. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  179. if (os_get_random(key, sizeof(key)) < 0) {
  180. os_free(sta->challenge);
  181. sta->challenge = NULL;
  182. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  183. }
  184. rc4_skip(key, sizeof(key), 0,
  185. sta->challenge, WLAN_AUTH_CHALLENGE_LEN);
  186. }
  187. return 0;
  188. }
  189. if (auth_transaction != 3)
  190. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  191. /* Transaction 3 */
  192. if (!iswep || !sta->challenge || !challenge ||
  193. os_memcmp_const(sta->challenge, challenge,
  194. WLAN_AUTH_CHALLENGE_LEN)) {
  195. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  196. HOSTAPD_LEVEL_INFO,
  197. "shared key authentication - invalid "
  198. "challenge-response");
  199. return WLAN_STATUS_CHALLENGE_FAIL;
  200. }
  201. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  202. HOSTAPD_LEVEL_DEBUG,
  203. "authentication OK (shared key)");
  204. sta->flags |= WLAN_STA_AUTH;
  205. wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
  206. os_free(sta->challenge);
  207. sta->challenge = NULL;
  208. return 0;
  209. }
  210. #endif /* CONFIG_NO_RC4 */
  211. static int send_auth_reply(struct hostapd_data *hapd,
  212. const u8 *dst, const u8 *bssid,
  213. u16 auth_alg, u16 auth_transaction, u16 resp,
  214. const u8 *ies, size_t ies_len)
  215. {
  216. struct ieee80211_mgmt *reply;
  217. u8 *buf;
  218. size_t rlen;
  219. int reply_res = WLAN_STATUS_UNSPECIFIED_FAILURE;
  220. rlen = IEEE80211_HDRLEN + sizeof(reply->u.auth) + ies_len;
  221. buf = os_zalloc(rlen);
  222. if (buf == NULL)
  223. return -1;
  224. reply = (struct ieee80211_mgmt *) buf;
  225. reply->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  226. WLAN_FC_STYPE_AUTH);
  227. os_memcpy(reply->da, dst, ETH_ALEN);
  228. os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
  229. os_memcpy(reply->bssid, bssid, ETH_ALEN);
  230. reply->u.auth.auth_alg = host_to_le16(auth_alg);
  231. reply->u.auth.auth_transaction = host_to_le16(auth_transaction);
  232. reply->u.auth.status_code = host_to_le16(resp);
  233. if (ies && ies_len)
  234. os_memcpy(reply->u.auth.variable, ies, ies_len);
  235. wpa_printf(MSG_DEBUG, "authentication reply: STA=" MACSTR
  236. " auth_alg=%d auth_transaction=%d resp=%d (IE len=%lu)",
  237. MAC2STR(dst), auth_alg, auth_transaction,
  238. resp, (unsigned long) ies_len);
  239. if (hostapd_drv_send_mlme(hapd, reply, rlen, 0) < 0)
  240. wpa_printf(MSG_INFO, "send_auth_reply: send failed");
  241. else
  242. reply_res = WLAN_STATUS_SUCCESS;
  243. os_free(buf);
  244. return reply_res;
  245. }
  246. #ifdef CONFIG_IEEE80211R
  247. static void handle_auth_ft_finish(void *ctx, const u8 *dst, const u8 *bssid,
  248. u16 auth_transaction, u16 status,
  249. const u8 *ies, size_t ies_len)
  250. {
  251. struct hostapd_data *hapd = ctx;
  252. struct sta_info *sta;
  253. int reply_res;
  254. reply_res = send_auth_reply(hapd, dst, bssid, WLAN_AUTH_FT,
  255. auth_transaction, status, ies, ies_len);
  256. sta = ap_get_sta(hapd, dst);
  257. if (sta == NULL)
  258. return;
  259. if (sta->added_unassoc && (reply_res != WLAN_STATUS_SUCCESS ||
  260. status != WLAN_STATUS_SUCCESS)) {
  261. hostapd_drv_sta_remove(hapd, sta->addr);
  262. sta->added_unassoc = 0;
  263. return;
  264. }
  265. if (status != WLAN_STATUS_SUCCESS)
  266. return;
  267. hostapd_logger(hapd, dst, HOSTAPD_MODULE_IEEE80211,
  268. HOSTAPD_LEVEL_DEBUG, "authentication OK (FT)");
  269. sta->flags |= WLAN_STA_AUTH;
  270. mlme_authenticate_indication(hapd, sta);
  271. }
  272. #endif /* CONFIG_IEEE80211R */
  273. #ifdef CONFIG_SAE
  274. #define dot11RSNASAESync 5 /* attempts */
  275. static struct wpabuf * auth_build_sae_commit(struct hostapd_data *hapd,
  276. struct sta_info *sta, int update)
  277. {
  278. struct wpabuf *buf;
  279. if (hapd->conf->ssid.wpa_passphrase == NULL) {
  280. wpa_printf(MSG_DEBUG, "SAE: No password available");
  281. return NULL;
  282. }
  283. if (update &&
  284. sae_prepare_commit(hapd->own_addr, sta->addr,
  285. (u8 *) hapd->conf->ssid.wpa_passphrase,
  286. os_strlen(hapd->conf->ssid.wpa_passphrase),
  287. sta->sae) < 0) {
  288. wpa_printf(MSG_DEBUG, "SAE: Could not pick PWE");
  289. return NULL;
  290. }
  291. buf = wpabuf_alloc(SAE_COMMIT_MAX_LEN);
  292. if (buf == NULL)
  293. return NULL;
  294. sae_write_commit(sta->sae, buf, sta->sae->tmp ?
  295. sta->sae->tmp->anti_clogging_token : NULL);
  296. return buf;
  297. }
  298. static struct wpabuf * auth_build_sae_confirm(struct hostapd_data *hapd,
  299. struct sta_info *sta)
  300. {
  301. struct wpabuf *buf;
  302. buf = wpabuf_alloc(SAE_CONFIRM_MAX_LEN);
  303. if (buf == NULL)
  304. return NULL;
  305. sae_write_confirm(sta->sae, buf);
  306. return buf;
  307. }
  308. static int auth_sae_send_commit(struct hostapd_data *hapd,
  309. struct sta_info *sta,
  310. const u8 *bssid, int update)
  311. {
  312. struct wpabuf *data;
  313. int reply_res;
  314. data = auth_build_sae_commit(hapd, sta, update);
  315. if (data == NULL)
  316. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  317. reply_res = send_auth_reply(hapd, sta->addr, bssid, WLAN_AUTH_SAE, 1,
  318. WLAN_STATUS_SUCCESS, wpabuf_head(data),
  319. wpabuf_len(data));
  320. wpabuf_free(data);
  321. return reply_res;
  322. }
  323. static int auth_sae_send_confirm(struct hostapd_data *hapd,
  324. struct sta_info *sta,
  325. const u8 *bssid)
  326. {
  327. struct wpabuf *data;
  328. int reply_res;
  329. data = auth_build_sae_confirm(hapd, sta);
  330. if (data == NULL)
  331. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  332. reply_res = send_auth_reply(hapd, sta->addr, bssid, WLAN_AUTH_SAE, 2,
  333. WLAN_STATUS_SUCCESS, wpabuf_head(data),
  334. wpabuf_len(data));
  335. wpabuf_free(data);
  336. return reply_res;
  337. }
  338. static int use_sae_anti_clogging(struct hostapd_data *hapd)
  339. {
  340. struct sta_info *sta;
  341. unsigned int open = 0;
  342. if (hapd->conf->sae_anti_clogging_threshold == 0)
  343. return 1;
  344. for (sta = hapd->sta_list; sta; sta = sta->next) {
  345. if (!sta->sae)
  346. continue;
  347. if (sta->sae->state != SAE_COMMITTED &&
  348. sta->sae->state != SAE_CONFIRMED)
  349. continue;
  350. open++;
  351. if (open >= hapd->conf->sae_anti_clogging_threshold)
  352. return 1;
  353. }
  354. return 0;
  355. }
  356. static int check_sae_token(struct hostapd_data *hapd, const u8 *addr,
  357. const u8 *token, size_t token_len)
  358. {
  359. u8 mac[SHA256_MAC_LEN];
  360. if (token_len != SHA256_MAC_LEN)
  361. return -1;
  362. if (hmac_sha256(hapd->sae_token_key, sizeof(hapd->sae_token_key),
  363. addr, ETH_ALEN, mac) < 0 ||
  364. os_memcmp_const(token, mac, SHA256_MAC_LEN) != 0)
  365. return -1;
  366. return 0;
  367. }
  368. static struct wpabuf * auth_build_token_req(struct hostapd_data *hapd,
  369. int group, const u8 *addr)
  370. {
  371. struct wpabuf *buf;
  372. u8 *token;
  373. struct os_reltime now;
  374. os_get_reltime(&now);
  375. if (!os_reltime_initialized(&hapd->last_sae_token_key_update) ||
  376. os_reltime_expired(&now, &hapd->last_sae_token_key_update, 60)) {
  377. if (random_get_bytes(hapd->sae_token_key,
  378. sizeof(hapd->sae_token_key)) < 0)
  379. return NULL;
  380. wpa_hexdump(MSG_DEBUG, "SAE: Updated token key",
  381. hapd->sae_token_key, sizeof(hapd->sae_token_key));
  382. hapd->last_sae_token_key_update = now;
  383. }
  384. buf = wpabuf_alloc(sizeof(le16) + SHA256_MAC_LEN);
  385. if (buf == NULL)
  386. return NULL;
  387. wpabuf_put_le16(buf, group); /* Finite Cyclic Group */
  388. token = wpabuf_put(buf, SHA256_MAC_LEN);
  389. hmac_sha256(hapd->sae_token_key, sizeof(hapd->sae_token_key),
  390. addr, ETH_ALEN, token);
  391. return buf;
  392. }
  393. static int sae_check_big_sync(struct sta_info *sta)
  394. {
  395. if (sta->sae->sync > dot11RSNASAESync) {
  396. sta->sae->state = SAE_NOTHING;
  397. sta->sae->sync = 0;
  398. return -1;
  399. }
  400. return 0;
  401. }
  402. static void auth_sae_retransmit_timer(void *eloop_ctx, void *eloop_data)
  403. {
  404. struct hostapd_data *hapd = eloop_ctx;
  405. struct sta_info *sta = eloop_data;
  406. int ret;
  407. if (sae_check_big_sync(sta))
  408. return;
  409. sta->sae->sync++;
  410. switch (sta->sae->state) {
  411. case SAE_COMMITTED:
  412. ret = auth_sae_send_commit(hapd, sta, hapd->own_addr, 0);
  413. eloop_register_timeout(0,
  414. hapd->dot11RSNASAERetransPeriod * 1000,
  415. auth_sae_retransmit_timer, hapd, sta);
  416. break;
  417. case SAE_CONFIRMED:
  418. ret = auth_sae_send_confirm(hapd, sta, hapd->own_addr);
  419. eloop_register_timeout(0,
  420. hapd->dot11RSNASAERetransPeriod * 1000,
  421. auth_sae_retransmit_timer, hapd, sta);
  422. break;
  423. default:
  424. ret = -1;
  425. break;
  426. }
  427. if (ret != WLAN_STATUS_SUCCESS)
  428. wpa_printf(MSG_INFO, "SAE: Failed to retransmit: ret=%d", ret);
  429. }
  430. void sae_clear_retransmit_timer(struct hostapd_data *hapd, struct sta_info *sta)
  431. {
  432. eloop_cancel_timeout(auth_sae_retransmit_timer, hapd, sta);
  433. }
  434. static void sae_set_retransmit_timer(struct hostapd_data *hapd,
  435. struct sta_info *sta)
  436. {
  437. if (!(hapd->conf->mesh & MESH_ENABLED))
  438. return;
  439. eloop_cancel_timeout(auth_sae_retransmit_timer, hapd, sta);
  440. eloop_register_timeout(0, hapd->dot11RSNASAERetransPeriod * 1000,
  441. auth_sae_retransmit_timer, hapd, sta);
  442. }
  443. static int sae_sm_step(struct hostapd_data *hapd, struct sta_info *sta,
  444. const u8 *bssid, u8 auth_transaction)
  445. {
  446. int ret;
  447. if (auth_transaction != 1 && auth_transaction != 2)
  448. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  449. switch (sta->sae->state) {
  450. case SAE_NOTHING:
  451. if (auth_transaction == 1) {
  452. ret = auth_sae_send_commit(hapd, sta, bssid, 1);
  453. if (ret)
  454. return ret;
  455. sta->sae->state = SAE_COMMITTED;
  456. if (sae_process_commit(sta->sae) < 0)
  457. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  458. /*
  459. * In mesh case, both Commit and Confirm can be sent
  460. * immediately. In infrastructure BSS, only a single
  461. * Authentication frame (Commit) is expected from the AP
  462. * here and the second one (Confirm) will be sent once
  463. * the STA has sent its second Authentication frame
  464. * (Confirm).
  465. */
  466. if (hapd->conf->mesh & MESH_ENABLED) {
  467. /*
  468. * Send both Commit and Confirm immediately
  469. * based on SAE finite state machine
  470. * Nothing -> Confirm transition.
  471. */
  472. ret = auth_sae_send_confirm(hapd, sta, bssid);
  473. if (ret)
  474. return ret;
  475. sta->sae->state = SAE_CONFIRMED;
  476. } else {
  477. /*
  478. * For infrastructure BSS, send only the Commit
  479. * message now to get alternating sequence of
  480. * Authentication frames between the AP and STA.
  481. * Confirm will be sent in
  482. * Commited -> Confirmed/Accepted transition
  483. * when receiving Confirm from STA.
  484. */
  485. }
  486. sta->sae->sync = 0;
  487. sae_set_retransmit_timer(hapd, sta);
  488. } else {
  489. hostapd_logger(hapd, sta->addr,
  490. HOSTAPD_MODULE_IEEE80211,
  491. HOSTAPD_LEVEL_DEBUG,
  492. "SAE confirm before commit");
  493. }
  494. break;
  495. case SAE_COMMITTED:
  496. sae_clear_retransmit_timer(hapd, sta);
  497. if (auth_transaction == 1) {
  498. if (sae_process_commit(sta->sae) < 0)
  499. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  500. ret = auth_sae_send_confirm(hapd, sta, bssid);
  501. if (ret)
  502. return ret;
  503. sta->sae->state = SAE_CONFIRMED;
  504. sta->sae->sync = 0;
  505. sae_set_retransmit_timer(hapd, sta);
  506. } else if (hapd->conf->mesh & MESH_ENABLED) {
  507. /*
  508. * In mesh case, follow SAE finite state machine and
  509. * send Commit now, if sync count allows.
  510. */
  511. if (sae_check_big_sync(sta))
  512. return WLAN_STATUS_SUCCESS;
  513. sta->sae->sync++;
  514. ret = auth_sae_send_commit(hapd, sta, bssid, 0);
  515. if (ret)
  516. return ret;
  517. sae_set_retransmit_timer(hapd, sta);
  518. } else {
  519. /*
  520. * For instructure BSS, send the postponed Confirm from
  521. * Nothing -> Confirmed transition that was reduced to
  522. * Nothing -> Committed above.
  523. */
  524. ret = auth_sae_send_confirm(hapd, sta, bssid);
  525. if (ret)
  526. return ret;
  527. sta->sae->state = SAE_CONFIRMED;
  528. /*
  529. * Since this was triggered on Confirm RX, run another
  530. * step to get to Accepted without waiting for
  531. * additional events.
  532. */
  533. return sae_sm_step(hapd, sta, bssid, auth_transaction);
  534. }
  535. break;
  536. case SAE_CONFIRMED:
  537. sae_clear_retransmit_timer(hapd, sta);
  538. if (auth_transaction == 1) {
  539. if (sae_check_big_sync(sta))
  540. return WLAN_STATUS_SUCCESS;
  541. sta->sae->sync++;
  542. ret = auth_sae_send_commit(hapd, sta, bssid, 1);
  543. if (ret)
  544. return ret;
  545. if (sae_process_commit(sta->sae) < 0)
  546. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  547. ret = auth_sae_send_confirm(hapd, sta, bssid);
  548. if (ret)
  549. return ret;
  550. sae_set_retransmit_timer(hapd, sta);
  551. } else {
  552. sta->flags |= WLAN_STA_AUTH;
  553. sta->auth_alg = WLAN_AUTH_SAE;
  554. mlme_authenticate_indication(hapd, sta);
  555. wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
  556. sta->sae->state = SAE_ACCEPTED;
  557. wpa_auth_pmksa_add_sae(hapd->wpa_auth, sta->addr,
  558. sta->sae->pmk, sta->sae->pmkid);
  559. }
  560. break;
  561. case SAE_ACCEPTED:
  562. if (auth_transaction == 1) {
  563. wpa_printf(MSG_DEBUG, "SAE: remove the STA (" MACSTR
  564. ") doing reauthentication",
  565. MAC2STR(sta->addr));
  566. ap_free_sta(hapd, sta);
  567. } else {
  568. if (sae_check_big_sync(sta))
  569. return WLAN_STATUS_SUCCESS;
  570. sta->sae->sync++;
  571. ret = auth_sae_send_confirm(hapd, sta, bssid);
  572. sae_clear_temp_data(sta->sae);
  573. if (ret)
  574. return ret;
  575. }
  576. break;
  577. default:
  578. wpa_printf(MSG_ERROR, "SAE: invalid state %d",
  579. sta->sae->state);
  580. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  581. }
  582. return WLAN_STATUS_SUCCESS;
  583. }
  584. static void handle_auth_sae(struct hostapd_data *hapd, struct sta_info *sta,
  585. const struct ieee80211_mgmt *mgmt, size_t len,
  586. u16 auth_transaction, u16 status_code)
  587. {
  588. int resp = WLAN_STATUS_SUCCESS;
  589. struct wpabuf *data = NULL;
  590. if (!sta->sae) {
  591. if (auth_transaction != 1 ||
  592. status_code != WLAN_STATUS_SUCCESS) {
  593. resp = -1;
  594. goto remove_sta;
  595. }
  596. sta->sae = os_zalloc(sizeof(*sta->sae));
  597. if (!sta->sae) {
  598. resp = -1;
  599. goto remove_sta;
  600. }
  601. sta->sae->state = SAE_NOTHING;
  602. sta->sae->sync = 0;
  603. }
  604. if (auth_transaction == 1) {
  605. const u8 *token = NULL, *pos, *end;
  606. size_t token_len = 0;
  607. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  608. HOSTAPD_LEVEL_DEBUG,
  609. "start SAE authentication (RX commit, status=%u)",
  610. status_code);
  611. if ((hapd->conf->mesh & MESH_ENABLED) &&
  612. status_code == WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ &&
  613. sta->sae->tmp) {
  614. pos = mgmt->u.auth.variable;
  615. end = ((const u8 *) mgmt) + len;
  616. if (pos + sizeof(le16) > end) {
  617. wpa_printf(MSG_ERROR,
  618. "SAE: Too short anti-clogging token request");
  619. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  620. goto reply;
  621. }
  622. resp = sae_group_allowed(sta->sae,
  623. hapd->conf->sae_groups,
  624. WPA_GET_LE16(pos));
  625. if (resp != WLAN_STATUS_SUCCESS) {
  626. wpa_printf(MSG_ERROR,
  627. "SAE: Invalid group in anti-clogging token request");
  628. goto reply;
  629. }
  630. pos += sizeof(le16);
  631. wpabuf_free(sta->sae->tmp->anti_clogging_token);
  632. sta->sae->tmp->anti_clogging_token =
  633. wpabuf_alloc_copy(pos, end - pos);
  634. if (sta->sae->tmp->anti_clogging_token == NULL) {
  635. wpa_printf(MSG_ERROR,
  636. "SAE: Failed to alloc for anti-clogging token");
  637. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  638. goto remove_sta;
  639. }
  640. /*
  641. * IEEE Std 802.11-2012, 11.3.8.6.4: If the Status code
  642. * is 76, a new Commit Message shall be constructed
  643. * with the Anti-Clogging Token from the received
  644. * Authentication frame, and the commit-scalar and
  645. * COMMIT-ELEMENT previously sent.
  646. */
  647. resp = auth_sae_send_commit(hapd, sta, mgmt->bssid, 0);
  648. if (resp != WLAN_STATUS_SUCCESS) {
  649. wpa_printf(MSG_ERROR,
  650. "SAE: Failed to send commit message");
  651. goto remove_sta;
  652. }
  653. sta->sae->state = SAE_COMMITTED;
  654. sta->sae->sync = 0;
  655. sae_set_retransmit_timer(hapd, sta);
  656. return;
  657. }
  658. if (status_code != WLAN_STATUS_SUCCESS)
  659. goto remove_sta;
  660. resp = sae_parse_commit(sta->sae, mgmt->u.auth.variable,
  661. ((const u8 *) mgmt) + len -
  662. mgmt->u.auth.variable, &token,
  663. &token_len, hapd->conf->sae_groups);
  664. if (resp == SAE_SILENTLY_DISCARD) {
  665. wpa_printf(MSG_DEBUG,
  666. "SAE: Drop commit message from " MACSTR " due to reflection attack",
  667. MAC2STR(sta->addr));
  668. goto remove_sta;
  669. }
  670. if (token && check_sae_token(hapd, sta->addr, token, token_len)
  671. < 0) {
  672. wpa_printf(MSG_DEBUG, "SAE: Drop commit message with "
  673. "incorrect token from " MACSTR,
  674. MAC2STR(sta->addr));
  675. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  676. goto remove_sta;
  677. }
  678. if (resp != WLAN_STATUS_SUCCESS)
  679. goto reply;
  680. if (!token && use_sae_anti_clogging(hapd)) {
  681. wpa_printf(MSG_DEBUG,
  682. "SAE: Request anti-clogging token from "
  683. MACSTR, MAC2STR(sta->addr));
  684. data = auth_build_token_req(hapd, sta->sae->group,
  685. sta->addr);
  686. resp = WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ;
  687. if (hapd->conf->mesh & MESH_ENABLED)
  688. sta->sae->state = SAE_NOTHING;
  689. goto reply;
  690. }
  691. resp = sae_sm_step(hapd, sta, mgmt->bssid, auth_transaction);
  692. } else if (auth_transaction == 2) {
  693. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  694. HOSTAPD_LEVEL_DEBUG,
  695. "SAE authentication (RX confirm, status=%u)",
  696. status_code);
  697. if (status_code != WLAN_STATUS_SUCCESS)
  698. goto remove_sta;
  699. if (sta->sae->state >= SAE_CONFIRMED ||
  700. !(hapd->conf->mesh & MESH_ENABLED)) {
  701. if (sae_check_confirm(sta->sae, mgmt->u.auth.variable,
  702. ((u8 *) mgmt) + len -
  703. mgmt->u.auth.variable) < 0) {
  704. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  705. goto reply;
  706. }
  707. }
  708. resp = sae_sm_step(hapd, sta, mgmt->bssid, auth_transaction);
  709. } else {
  710. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  711. HOSTAPD_LEVEL_DEBUG,
  712. "unexpected SAE authentication transaction %u (status=%u)",
  713. auth_transaction, status_code);
  714. if (status_code != WLAN_STATUS_SUCCESS)
  715. goto remove_sta;
  716. resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
  717. }
  718. reply:
  719. if (resp != WLAN_STATUS_SUCCESS) {
  720. send_auth_reply(hapd, mgmt->sa, mgmt->bssid, WLAN_AUTH_SAE,
  721. auth_transaction, resp,
  722. data ? wpabuf_head(data) : (u8 *) "",
  723. data ? wpabuf_len(data) : 0);
  724. }
  725. remove_sta:
  726. if (sta->added_unassoc && (resp != WLAN_STATUS_SUCCESS ||
  727. status_code != WLAN_STATUS_SUCCESS)) {
  728. hostapd_drv_sta_remove(hapd, sta->addr);
  729. sta->added_unassoc = 0;
  730. }
  731. wpabuf_free(data);
  732. }
  733. /**
  734. * auth_sae_init_committed - Send COMMIT and start SAE in committed state
  735. * @hapd: BSS data for the device initiating the authentication
  736. * @sta: the peer to which commit authentication frame is sent
  737. *
  738. * This function implements Init event handling (IEEE Std 802.11-2012,
  739. * 11.3.8.6.3) in which initial COMMIT message is sent. Prior to calling, the
  740. * sta->sae structure should be initialized appropriately via a call to
  741. * sae_prepare_commit().
  742. */
  743. int auth_sae_init_committed(struct hostapd_data *hapd, struct sta_info *sta)
  744. {
  745. int ret;
  746. if (!sta->sae || !sta->sae->tmp)
  747. return -1;
  748. if (sta->sae->state != SAE_NOTHING)
  749. return -1;
  750. ret = auth_sae_send_commit(hapd, sta, hapd->own_addr, 0);
  751. if (ret)
  752. return -1;
  753. sta->sae->state = SAE_COMMITTED;
  754. sta->sae->sync = 0;
  755. sae_set_retransmit_timer(hapd, sta);
  756. return 0;
  757. }
  758. #endif /* CONFIG_SAE */
  759. static void handle_auth(struct hostapd_data *hapd,
  760. const struct ieee80211_mgmt *mgmt, size_t len)
  761. {
  762. u16 auth_alg, auth_transaction, status_code;
  763. u16 resp = WLAN_STATUS_SUCCESS;
  764. struct sta_info *sta = NULL;
  765. int res, reply_res;
  766. u16 fc;
  767. const u8 *challenge = NULL;
  768. u32 session_timeout, acct_interim_interval;
  769. struct vlan_description vlan_id;
  770. struct hostapd_sta_wpa_psk_short *psk = NULL;
  771. u8 resp_ies[2 + WLAN_AUTH_CHALLENGE_LEN];
  772. size_t resp_ies_len = 0;
  773. char *identity = NULL;
  774. char *radius_cui = NULL;
  775. u16 seq_ctrl;
  776. os_memset(&vlan_id, 0, sizeof(vlan_id));
  777. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
  778. wpa_printf(MSG_INFO, "handle_auth - too short payload (len=%lu)",
  779. (unsigned long) len);
  780. return;
  781. }
  782. #ifdef CONFIG_TESTING_OPTIONS
  783. if (hapd->iconf->ignore_auth_probability > 0.0 &&
  784. drand48() < hapd->iconf->ignore_auth_probability) {
  785. wpa_printf(MSG_INFO,
  786. "TESTING: ignoring auth frame from " MACSTR,
  787. MAC2STR(mgmt->sa));
  788. return;
  789. }
  790. #endif /* CONFIG_TESTING_OPTIONS */
  791. auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
  792. auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
  793. status_code = le_to_host16(mgmt->u.auth.status_code);
  794. fc = le_to_host16(mgmt->frame_control);
  795. seq_ctrl = le_to_host16(mgmt->seq_ctrl);
  796. if (len >= IEEE80211_HDRLEN + sizeof(mgmt->u.auth) +
  797. 2 + WLAN_AUTH_CHALLENGE_LEN &&
  798. mgmt->u.auth.variable[0] == WLAN_EID_CHALLENGE &&
  799. mgmt->u.auth.variable[1] == WLAN_AUTH_CHALLENGE_LEN)
  800. challenge = &mgmt->u.auth.variable[2];
  801. wpa_printf(MSG_DEBUG, "authentication: STA=" MACSTR " auth_alg=%d "
  802. "auth_transaction=%d status_code=%d wep=%d%s "
  803. "seq_ctrl=0x%x%s",
  804. MAC2STR(mgmt->sa), auth_alg, auth_transaction,
  805. status_code, !!(fc & WLAN_FC_ISWEP),
  806. challenge ? " challenge" : "",
  807. seq_ctrl, (fc & WLAN_FC_RETRY) ? " retry" : "");
  808. #ifdef CONFIG_NO_RC4
  809. if (auth_alg == WLAN_AUTH_SHARED_KEY) {
  810. wpa_printf(MSG_INFO,
  811. "Unsupported authentication algorithm (%d)",
  812. auth_alg);
  813. resp = WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
  814. goto fail;
  815. }
  816. #endif /* CONFIG_NO_RC4 */
  817. if (hapd->tkip_countermeasures) {
  818. resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
  819. goto fail;
  820. }
  821. if (!(((hapd->conf->auth_algs & WPA_AUTH_ALG_OPEN) &&
  822. auth_alg == WLAN_AUTH_OPEN) ||
  823. #ifdef CONFIG_IEEE80211R
  824. (hapd->conf->wpa && wpa_key_mgmt_ft(hapd->conf->wpa_key_mgmt) &&
  825. auth_alg == WLAN_AUTH_FT) ||
  826. #endif /* CONFIG_IEEE80211R */
  827. #ifdef CONFIG_SAE
  828. (hapd->conf->wpa && wpa_key_mgmt_sae(hapd->conf->wpa_key_mgmt) &&
  829. auth_alg == WLAN_AUTH_SAE) ||
  830. #endif /* CONFIG_SAE */
  831. ((hapd->conf->auth_algs & WPA_AUTH_ALG_SHARED) &&
  832. auth_alg == WLAN_AUTH_SHARED_KEY))) {
  833. wpa_printf(MSG_INFO, "Unsupported authentication algorithm (%d)",
  834. auth_alg);
  835. resp = WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
  836. goto fail;
  837. }
  838. if (!(auth_transaction == 1 || auth_alg == WLAN_AUTH_SAE ||
  839. (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 3))) {
  840. wpa_printf(MSG_INFO, "Unknown authentication transaction number (%d)",
  841. auth_transaction);
  842. resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
  843. goto fail;
  844. }
  845. if (os_memcmp(mgmt->sa, hapd->own_addr, ETH_ALEN) == 0) {
  846. wpa_printf(MSG_INFO, "Station " MACSTR " not allowed to authenticate",
  847. MAC2STR(mgmt->sa));
  848. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  849. goto fail;
  850. }
  851. if (hapd->conf->no_auth_if_seen_on) {
  852. struct hostapd_data *other;
  853. other = sta_track_seen_on(hapd->iface, mgmt->sa,
  854. hapd->conf->no_auth_if_seen_on);
  855. if (other) {
  856. u8 *pos;
  857. u32 info;
  858. u8 op_class, channel, phytype;
  859. wpa_printf(MSG_DEBUG, "%s: Reject authentication from "
  860. MACSTR " since STA has been seen on %s",
  861. hapd->conf->iface, MAC2STR(mgmt->sa),
  862. hapd->conf->no_auth_if_seen_on);
  863. resp = WLAN_STATUS_REJECTED_WITH_SUGGESTED_BSS_TRANSITION;
  864. pos = &resp_ies[0];
  865. *pos++ = WLAN_EID_NEIGHBOR_REPORT;
  866. *pos++ = 13;
  867. os_memcpy(pos, other->own_addr, ETH_ALEN);
  868. pos += ETH_ALEN;
  869. info = 0; /* TODO: BSSID Information */
  870. WPA_PUT_LE32(pos, info);
  871. pos += 4;
  872. if (other->iconf->hw_mode == HOSTAPD_MODE_IEEE80211AD)
  873. phytype = 8; /* dmg */
  874. else if (other->iconf->ieee80211ac)
  875. phytype = 9; /* vht */
  876. else if (other->iconf->ieee80211n)
  877. phytype = 7; /* ht */
  878. else if (other->iconf->hw_mode ==
  879. HOSTAPD_MODE_IEEE80211A)
  880. phytype = 4; /* ofdm */
  881. else if (other->iconf->hw_mode ==
  882. HOSTAPD_MODE_IEEE80211G)
  883. phytype = 6; /* erp */
  884. else
  885. phytype = 5; /* hrdsss */
  886. if (ieee80211_freq_to_channel_ext(
  887. hostapd_hw_get_freq(other,
  888. other->iconf->channel),
  889. other->iconf->secondary_channel,
  890. other->iconf->ieee80211ac,
  891. &op_class, &channel) == NUM_HOSTAPD_MODES) {
  892. op_class = 0;
  893. channel = other->iconf->channel;
  894. }
  895. *pos++ = op_class;
  896. *pos++ = channel;
  897. *pos++ = phytype;
  898. resp_ies_len = pos - &resp_ies[0];
  899. goto fail;
  900. }
  901. }
  902. res = hostapd_allowed_address(hapd, mgmt->sa, (u8 *) mgmt, len,
  903. &session_timeout,
  904. &acct_interim_interval, &vlan_id,
  905. &psk, &identity, &radius_cui);
  906. if (res == HOSTAPD_ACL_REJECT) {
  907. wpa_printf(MSG_INFO, "Station " MACSTR " not allowed to authenticate",
  908. MAC2STR(mgmt->sa));
  909. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  910. goto fail;
  911. }
  912. if (res == HOSTAPD_ACL_PENDING) {
  913. wpa_printf(MSG_DEBUG, "Authentication frame from " MACSTR
  914. " waiting for an external authentication",
  915. MAC2STR(mgmt->sa));
  916. /* Authentication code will re-send the authentication frame
  917. * after it has received (and cached) information from the
  918. * external source. */
  919. return;
  920. }
  921. sta = ap_get_sta(hapd, mgmt->sa);
  922. if (sta) {
  923. if ((fc & WLAN_FC_RETRY) &&
  924. sta->last_seq_ctrl != WLAN_INVALID_MGMT_SEQ &&
  925. sta->last_seq_ctrl == seq_ctrl &&
  926. sta->last_subtype == WLAN_FC_STYPE_AUTH) {
  927. hostapd_logger(hapd, sta->addr,
  928. HOSTAPD_MODULE_IEEE80211,
  929. HOSTAPD_LEVEL_DEBUG,
  930. "Drop repeated authentication frame seq_ctrl=0x%x",
  931. seq_ctrl);
  932. return;
  933. }
  934. #ifdef CONFIG_MESH
  935. if ((hapd->conf->mesh & MESH_ENABLED) &&
  936. sta->plink_state == PLINK_BLOCKED) {
  937. wpa_printf(MSG_DEBUG, "Mesh peer " MACSTR
  938. " is blocked - drop Authentication frame",
  939. MAC2STR(mgmt->sa));
  940. return;
  941. }
  942. #endif /* CONFIG_MESH */
  943. } else {
  944. #ifdef CONFIG_MESH
  945. if (hapd->conf->mesh & MESH_ENABLED) {
  946. /* if the mesh peer is not available, we don't do auth.
  947. */
  948. wpa_printf(MSG_DEBUG, "Mesh peer " MACSTR
  949. " not yet known - drop Authentication frame",
  950. MAC2STR(mgmt->sa));
  951. /*
  952. * Save a copy of the frame so that it can be processed
  953. * if a new peer entry is added shortly after this.
  954. */
  955. wpabuf_free(hapd->mesh_pending_auth);
  956. hapd->mesh_pending_auth = wpabuf_alloc_copy(mgmt, len);
  957. os_get_reltime(&hapd->mesh_pending_auth_time);
  958. return;
  959. }
  960. #endif /* CONFIG_MESH */
  961. sta = ap_sta_add(hapd, mgmt->sa);
  962. if (!sta) {
  963. resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  964. goto fail;
  965. }
  966. }
  967. sta->last_seq_ctrl = seq_ctrl;
  968. sta->last_subtype = WLAN_FC_STYPE_AUTH;
  969. if (vlan_id.notempty &&
  970. !hostapd_vlan_valid(hapd->conf->vlan, &vlan_id)) {
  971. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  972. HOSTAPD_LEVEL_INFO,
  973. "Invalid VLAN %d%s received from RADIUS server",
  974. vlan_id.untagged,
  975. vlan_id.tagged[0] ? "+" : "");
  976. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  977. goto fail;
  978. }
  979. if (ap_sta_set_vlan(hapd, sta, &vlan_id) < 0) {
  980. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  981. goto fail;
  982. }
  983. if (sta->vlan_id)
  984. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  985. HOSTAPD_LEVEL_INFO, "VLAN ID %d", sta->vlan_id);
  986. hostapd_free_psk_list(sta->psk);
  987. if (hapd->conf->wpa_psk_radius != PSK_RADIUS_IGNORED) {
  988. sta->psk = psk;
  989. psk = NULL;
  990. } else {
  991. sta->psk = NULL;
  992. }
  993. sta->identity = identity;
  994. identity = NULL;
  995. sta->radius_cui = radius_cui;
  996. radius_cui = NULL;
  997. sta->flags &= ~WLAN_STA_PREAUTH;
  998. ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
  999. if (hapd->conf->acct_interim_interval == 0 && acct_interim_interval)
  1000. sta->acct_interim_interval = acct_interim_interval;
  1001. if (res == HOSTAPD_ACL_ACCEPT_TIMEOUT)
  1002. ap_sta_session_timeout(hapd, sta, session_timeout);
  1003. else
  1004. ap_sta_no_session_timeout(hapd, sta);
  1005. /*
  1006. * If the driver supports full AP client state, add a station to the
  1007. * driver before sending authentication reply to make sure the driver
  1008. * has resources, and not to go through the entire authentication and
  1009. * association handshake, and fail it at the end.
  1010. *
  1011. * If this is not the first transaction, in a multi-step authentication
  1012. * algorithm, the station already exists in the driver
  1013. * (sta->added_unassoc = 1) so skip it.
  1014. *
  1015. * In mesh mode, the station was already added to the driver when the
  1016. * NEW_PEER_CANDIDATE event is received.
  1017. */
  1018. if (FULL_AP_CLIENT_STATE_SUPP(hapd->iface->drv_flags) &&
  1019. !(hapd->conf->mesh & MESH_ENABLED) &&
  1020. !(sta->added_unassoc)) {
  1021. /*
  1022. * If a station that is already associated to the AP, is trying
  1023. * to authenticate again, remove the STA entry, in order to make
  1024. * sure the STA PS state gets cleared and configuration gets
  1025. * updated. To handle this, station's added_unassoc flag is
  1026. * cleared once the station has completed association.
  1027. */
  1028. hostapd_drv_sta_remove(hapd, sta->addr);
  1029. sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_AUTH |
  1030. WLAN_STA_AUTHORIZED);
  1031. if (hostapd_sta_add(hapd, sta->addr, 0, 0, 0, 0, 0,
  1032. NULL, NULL, sta->flags, 0, 0, 0)) {
  1033. hostapd_logger(hapd, sta->addr,
  1034. HOSTAPD_MODULE_IEEE80211,
  1035. HOSTAPD_LEVEL_NOTICE,
  1036. "Could not add STA to kernel driver");
  1037. resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  1038. goto fail;
  1039. }
  1040. sta->added_unassoc = 1;
  1041. }
  1042. switch (auth_alg) {
  1043. case WLAN_AUTH_OPEN:
  1044. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1045. HOSTAPD_LEVEL_DEBUG,
  1046. "authentication OK (open system)");
  1047. sta->flags |= WLAN_STA_AUTH;
  1048. wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
  1049. sta->auth_alg = WLAN_AUTH_OPEN;
  1050. mlme_authenticate_indication(hapd, sta);
  1051. break;
  1052. #ifndef CONFIG_NO_RC4
  1053. case WLAN_AUTH_SHARED_KEY:
  1054. resp = auth_shared_key(hapd, sta, auth_transaction, challenge,
  1055. fc & WLAN_FC_ISWEP);
  1056. sta->auth_alg = WLAN_AUTH_SHARED_KEY;
  1057. mlme_authenticate_indication(hapd, sta);
  1058. if (sta->challenge && auth_transaction == 1) {
  1059. resp_ies[0] = WLAN_EID_CHALLENGE;
  1060. resp_ies[1] = WLAN_AUTH_CHALLENGE_LEN;
  1061. os_memcpy(resp_ies + 2, sta->challenge,
  1062. WLAN_AUTH_CHALLENGE_LEN);
  1063. resp_ies_len = 2 + WLAN_AUTH_CHALLENGE_LEN;
  1064. }
  1065. break;
  1066. #endif /* CONFIG_NO_RC4 */
  1067. #ifdef CONFIG_IEEE80211R
  1068. case WLAN_AUTH_FT:
  1069. sta->auth_alg = WLAN_AUTH_FT;
  1070. if (sta->wpa_sm == NULL)
  1071. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  1072. sta->addr, NULL);
  1073. if (sta->wpa_sm == NULL) {
  1074. wpa_printf(MSG_DEBUG, "FT: Failed to initialize WPA "
  1075. "state machine");
  1076. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  1077. goto fail;
  1078. }
  1079. wpa_ft_process_auth(sta->wpa_sm, mgmt->bssid,
  1080. auth_transaction, mgmt->u.auth.variable,
  1081. len - IEEE80211_HDRLEN -
  1082. sizeof(mgmt->u.auth),
  1083. handle_auth_ft_finish, hapd);
  1084. /* handle_auth_ft_finish() callback will complete auth. */
  1085. return;
  1086. #endif /* CONFIG_IEEE80211R */
  1087. #ifdef CONFIG_SAE
  1088. case WLAN_AUTH_SAE:
  1089. #ifdef CONFIG_MESH
  1090. if (status_code == WLAN_STATUS_SUCCESS &&
  1091. hapd->conf->mesh & MESH_ENABLED) {
  1092. if (sta->wpa_sm == NULL)
  1093. sta->wpa_sm =
  1094. wpa_auth_sta_init(hapd->wpa_auth,
  1095. sta->addr, NULL);
  1096. if (sta->wpa_sm == NULL) {
  1097. wpa_printf(MSG_DEBUG,
  1098. "SAE: Failed to initialize WPA state machine");
  1099. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  1100. goto fail;
  1101. }
  1102. }
  1103. #endif /* CONFIG_MESH */
  1104. handle_auth_sae(hapd, sta, mgmt, len, auth_transaction,
  1105. status_code);
  1106. return;
  1107. #endif /* CONFIG_SAE */
  1108. }
  1109. fail:
  1110. os_free(identity);
  1111. os_free(radius_cui);
  1112. hostapd_free_psk_list(psk);
  1113. reply_res = send_auth_reply(hapd, mgmt->sa, mgmt->bssid, auth_alg,
  1114. auth_transaction + 1, resp, resp_ies,
  1115. resp_ies_len);
  1116. if (sta && sta->added_unassoc && (resp != WLAN_STATUS_SUCCESS ||
  1117. reply_res != WLAN_STATUS_SUCCESS)) {
  1118. hostapd_drv_sta_remove(hapd, sta->addr);
  1119. sta->added_unassoc = 0;
  1120. }
  1121. }
  1122. int hostapd_get_aid(struct hostapd_data *hapd, struct sta_info *sta)
  1123. {
  1124. int i, j = 32, aid;
  1125. /* get a unique AID */
  1126. if (sta->aid > 0) {
  1127. wpa_printf(MSG_DEBUG, " old AID %d", sta->aid);
  1128. return 0;
  1129. }
  1130. for (i = 0; i < AID_WORDS; i++) {
  1131. if (hapd->sta_aid[i] == (u32) -1)
  1132. continue;
  1133. for (j = 0; j < 32; j++) {
  1134. if (!(hapd->sta_aid[i] & BIT(j)))
  1135. break;
  1136. }
  1137. if (j < 32)
  1138. break;
  1139. }
  1140. if (j == 32)
  1141. return -1;
  1142. aid = i * 32 + j + 1;
  1143. if (aid > 2007)
  1144. return -1;
  1145. sta->aid = aid;
  1146. hapd->sta_aid[i] |= BIT(j);
  1147. wpa_printf(MSG_DEBUG, " new AID %d", sta->aid);
  1148. return 0;
  1149. }
  1150. static u16 check_ssid(struct hostapd_data *hapd, struct sta_info *sta,
  1151. const u8 *ssid_ie, size_t ssid_ie_len)
  1152. {
  1153. if (ssid_ie == NULL)
  1154. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1155. if (ssid_ie_len != hapd->conf->ssid.ssid_len ||
  1156. os_memcmp(ssid_ie, hapd->conf->ssid.ssid, ssid_ie_len) != 0) {
  1157. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1158. HOSTAPD_LEVEL_INFO,
  1159. "Station tried to associate with unknown SSID "
  1160. "'%s'", wpa_ssid_txt(ssid_ie, ssid_ie_len));
  1161. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1162. }
  1163. return WLAN_STATUS_SUCCESS;
  1164. }
  1165. static u16 check_wmm(struct hostapd_data *hapd, struct sta_info *sta,
  1166. const u8 *wmm_ie, size_t wmm_ie_len)
  1167. {
  1168. sta->flags &= ~WLAN_STA_WMM;
  1169. sta->qosinfo = 0;
  1170. if (wmm_ie && hapd->conf->wmm_enabled) {
  1171. struct wmm_information_element *wmm;
  1172. if (!hostapd_eid_wmm_valid(hapd, wmm_ie, wmm_ie_len)) {
  1173. hostapd_logger(hapd, sta->addr,
  1174. HOSTAPD_MODULE_WPA,
  1175. HOSTAPD_LEVEL_DEBUG,
  1176. "invalid WMM element in association "
  1177. "request");
  1178. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1179. }
  1180. sta->flags |= WLAN_STA_WMM;
  1181. wmm = (struct wmm_information_element *) wmm_ie;
  1182. sta->qosinfo = wmm->qos_info;
  1183. }
  1184. return WLAN_STATUS_SUCCESS;
  1185. }
  1186. static u16 copy_supp_rates(struct hostapd_data *hapd, struct sta_info *sta,
  1187. struct ieee802_11_elems *elems)
  1188. {
  1189. if (!elems->supp_rates) {
  1190. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1191. HOSTAPD_LEVEL_DEBUG,
  1192. "No supported rates element in AssocReq");
  1193. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1194. }
  1195. if (elems->supp_rates_len + elems->ext_supp_rates_len >
  1196. sizeof(sta->supported_rates)) {
  1197. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1198. HOSTAPD_LEVEL_DEBUG,
  1199. "Invalid supported rates element length %d+%d",
  1200. elems->supp_rates_len,
  1201. elems->ext_supp_rates_len);
  1202. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1203. }
  1204. sta->supported_rates_len = merge_byte_arrays(
  1205. sta->supported_rates, sizeof(sta->supported_rates),
  1206. elems->supp_rates, elems->supp_rates_len,
  1207. elems->ext_supp_rates, elems->ext_supp_rates_len);
  1208. return WLAN_STATUS_SUCCESS;
  1209. }
  1210. static u16 check_ext_capab(struct hostapd_data *hapd, struct sta_info *sta,
  1211. const u8 *ext_capab_ie, size_t ext_capab_ie_len)
  1212. {
  1213. #ifdef CONFIG_INTERWORKING
  1214. /* check for QoS Map support */
  1215. if (ext_capab_ie_len >= 5) {
  1216. if (ext_capab_ie[4] & 0x01)
  1217. sta->qos_map_enabled = 1;
  1218. }
  1219. #endif /* CONFIG_INTERWORKING */
  1220. if (ext_capab_ie_len > 0)
  1221. sta->ecsa_supported = !!(ext_capab_ie[0] & BIT(2));
  1222. return WLAN_STATUS_SUCCESS;
  1223. }
  1224. static u16 check_assoc_ies(struct hostapd_data *hapd, struct sta_info *sta,
  1225. const u8 *ies, size_t ies_len, int reassoc)
  1226. {
  1227. struct ieee802_11_elems elems;
  1228. u16 resp;
  1229. const u8 *wpa_ie;
  1230. size_t wpa_ie_len;
  1231. const u8 *p2p_dev_addr = NULL;
  1232. if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed) {
  1233. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1234. HOSTAPD_LEVEL_INFO, "Station sent an invalid "
  1235. "association request");
  1236. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1237. }
  1238. resp = check_ssid(hapd, sta, elems.ssid, elems.ssid_len);
  1239. if (resp != WLAN_STATUS_SUCCESS)
  1240. return resp;
  1241. resp = check_wmm(hapd, sta, elems.wmm, elems.wmm_len);
  1242. if (resp != WLAN_STATUS_SUCCESS)
  1243. return resp;
  1244. resp = check_ext_capab(hapd, sta, elems.ext_capab, elems.ext_capab_len);
  1245. if (resp != WLAN_STATUS_SUCCESS)
  1246. return resp;
  1247. resp = copy_supp_rates(hapd, sta, &elems);
  1248. if (resp != WLAN_STATUS_SUCCESS)
  1249. return resp;
  1250. #ifdef CONFIG_IEEE80211N
  1251. resp = copy_sta_ht_capab(hapd, sta, elems.ht_capabilities);
  1252. if (resp != WLAN_STATUS_SUCCESS)
  1253. return resp;
  1254. if (hapd->iconf->ieee80211n && hapd->iconf->require_ht &&
  1255. !(sta->flags & WLAN_STA_HT)) {
  1256. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1257. HOSTAPD_LEVEL_INFO, "Station does not support "
  1258. "mandatory HT PHY - reject association");
  1259. return WLAN_STATUS_ASSOC_DENIED_NO_HT;
  1260. }
  1261. #endif /* CONFIG_IEEE80211N */
  1262. #ifdef CONFIG_IEEE80211AC
  1263. if (hapd->iconf->ieee80211ac) {
  1264. resp = copy_sta_vht_capab(hapd, sta, elems.vht_capabilities);
  1265. if (resp != WLAN_STATUS_SUCCESS)
  1266. return resp;
  1267. resp = set_sta_vht_opmode(hapd, sta, elems.vht_opmode_notif);
  1268. if (resp != WLAN_STATUS_SUCCESS)
  1269. return resp;
  1270. }
  1271. if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht &&
  1272. !(sta->flags & WLAN_STA_VHT)) {
  1273. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1274. HOSTAPD_LEVEL_INFO, "Station does not support "
  1275. "mandatory VHT PHY - reject association");
  1276. return WLAN_STATUS_ASSOC_DENIED_NO_VHT;
  1277. }
  1278. if (hapd->conf->vendor_vht && !elems.vht_capabilities) {
  1279. resp = copy_sta_vendor_vht(hapd, sta, elems.vendor_vht,
  1280. elems.vendor_vht_len);
  1281. if (resp != WLAN_STATUS_SUCCESS)
  1282. return resp;
  1283. }
  1284. #endif /* CONFIG_IEEE80211AC */
  1285. #ifdef CONFIG_P2P
  1286. if (elems.p2p) {
  1287. wpabuf_free(sta->p2p_ie);
  1288. sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
  1289. P2P_IE_VENDOR_TYPE);
  1290. if (sta->p2p_ie)
  1291. p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
  1292. } else {
  1293. wpabuf_free(sta->p2p_ie);
  1294. sta->p2p_ie = NULL;
  1295. }
  1296. #endif /* CONFIG_P2P */
  1297. if ((hapd->conf->wpa & WPA_PROTO_RSN) && elems.rsn_ie) {
  1298. wpa_ie = elems.rsn_ie;
  1299. wpa_ie_len = elems.rsn_ie_len;
  1300. } else if ((hapd->conf->wpa & WPA_PROTO_WPA) &&
  1301. elems.wpa_ie) {
  1302. wpa_ie = elems.wpa_ie;
  1303. wpa_ie_len = elems.wpa_ie_len;
  1304. } else {
  1305. wpa_ie = NULL;
  1306. wpa_ie_len = 0;
  1307. }
  1308. #ifdef CONFIG_WPS
  1309. sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS | WLAN_STA_WPS2);
  1310. if (hapd->conf->wps_state && elems.wps_ie) {
  1311. wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)Association "
  1312. "Request - assume WPS is used");
  1313. sta->flags |= WLAN_STA_WPS;
  1314. wpabuf_free(sta->wps_ie);
  1315. sta->wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
  1316. WPS_IE_VENDOR_TYPE);
  1317. if (sta->wps_ie && wps_is_20(sta->wps_ie)) {
  1318. wpa_printf(MSG_DEBUG, "WPS: STA supports WPS 2.0");
  1319. sta->flags |= WLAN_STA_WPS2;
  1320. }
  1321. wpa_ie = NULL;
  1322. wpa_ie_len = 0;
  1323. if (sta->wps_ie && wps_validate_assoc_req(sta->wps_ie) < 0) {
  1324. wpa_printf(MSG_DEBUG, "WPS: Invalid WPS IE in "
  1325. "(Re)Association Request - reject");
  1326. return WLAN_STATUS_INVALID_IE;
  1327. }
  1328. } else if (hapd->conf->wps_state && wpa_ie == NULL) {
  1329. wpa_printf(MSG_DEBUG, "STA did not include WPA/RSN IE in "
  1330. "(Re)Association Request - possible WPS use");
  1331. sta->flags |= WLAN_STA_MAYBE_WPS;
  1332. } else
  1333. #endif /* CONFIG_WPS */
  1334. if (hapd->conf->wpa && wpa_ie == NULL) {
  1335. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1336. HOSTAPD_LEVEL_INFO,
  1337. "No WPA/RSN IE in association request");
  1338. return WLAN_STATUS_INVALID_IE;
  1339. }
  1340. if (hapd->conf->wpa && wpa_ie) {
  1341. int res;
  1342. wpa_ie -= 2;
  1343. wpa_ie_len += 2;
  1344. if (sta->wpa_sm == NULL)
  1345. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  1346. sta->addr,
  1347. p2p_dev_addr);
  1348. if (sta->wpa_sm == NULL) {
  1349. wpa_printf(MSG_WARNING, "Failed to initialize WPA "
  1350. "state machine");
  1351. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1352. }
  1353. res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
  1354. wpa_ie, wpa_ie_len,
  1355. elems.mdie, elems.mdie_len);
  1356. if (res == WPA_INVALID_GROUP)
  1357. resp = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
  1358. else if (res == WPA_INVALID_PAIRWISE)
  1359. resp = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID;
  1360. else if (res == WPA_INVALID_AKMP)
  1361. resp = WLAN_STATUS_AKMP_NOT_VALID;
  1362. else if (res == WPA_ALLOC_FAIL)
  1363. resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
  1364. #ifdef CONFIG_IEEE80211W
  1365. else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
  1366. resp = WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION;
  1367. else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
  1368. resp = WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION;
  1369. #endif /* CONFIG_IEEE80211W */
  1370. else if (res == WPA_INVALID_MDIE)
  1371. resp = WLAN_STATUS_INVALID_MDIE;
  1372. else if (res != WPA_IE_OK)
  1373. resp = WLAN_STATUS_INVALID_IE;
  1374. if (resp != WLAN_STATUS_SUCCESS)
  1375. return resp;
  1376. #ifdef CONFIG_IEEE80211W
  1377. if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
  1378. sta->sa_query_count > 0)
  1379. ap_check_sa_query_timeout(hapd, sta);
  1380. if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
  1381. (!reassoc || sta->auth_alg != WLAN_AUTH_FT)) {
  1382. /*
  1383. * STA has already been associated with MFP and SA
  1384. * Query timeout has not been reached. Reject the
  1385. * association attempt temporarily and start SA Query,
  1386. * if one is not pending.
  1387. */
  1388. if (sta->sa_query_count == 0)
  1389. ap_sta_start_sa_query(hapd, sta);
  1390. return WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY;
  1391. }
  1392. if (wpa_auth_uses_mfp(sta->wpa_sm))
  1393. sta->flags |= WLAN_STA_MFP;
  1394. else
  1395. sta->flags &= ~WLAN_STA_MFP;
  1396. #endif /* CONFIG_IEEE80211W */
  1397. #ifdef CONFIG_IEEE80211R
  1398. if (sta->auth_alg == WLAN_AUTH_FT) {
  1399. if (!reassoc) {
  1400. wpa_printf(MSG_DEBUG, "FT: " MACSTR " tried "
  1401. "to use association (not "
  1402. "re-association) with FT auth_alg",
  1403. MAC2STR(sta->addr));
  1404. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1405. }
  1406. resp = wpa_ft_validate_reassoc(sta->wpa_sm, ies,
  1407. ies_len);
  1408. if (resp != WLAN_STATUS_SUCCESS)
  1409. return resp;
  1410. }
  1411. #endif /* CONFIG_IEEE80211R */
  1412. #ifdef CONFIG_SAE
  1413. if (wpa_auth_uses_sae(sta->wpa_sm) &&
  1414. sta->auth_alg == WLAN_AUTH_OPEN) {
  1415. struct rsn_pmksa_cache_entry *sa;
  1416. sa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
  1417. if (!sa || sa->akmp != WPA_KEY_MGMT_SAE) {
  1418. wpa_printf(MSG_DEBUG,
  1419. "SAE: No PMKSA cache entry found for "
  1420. MACSTR, MAC2STR(sta->addr));
  1421. return WLAN_STATUS_INVALID_PMKID;
  1422. }
  1423. wpa_printf(MSG_DEBUG, "SAE: " MACSTR
  1424. " using PMKSA caching", MAC2STR(sta->addr));
  1425. } else if (wpa_auth_uses_sae(sta->wpa_sm) &&
  1426. sta->auth_alg != WLAN_AUTH_SAE &&
  1427. !(sta->auth_alg == WLAN_AUTH_FT &&
  1428. wpa_auth_uses_ft_sae(sta->wpa_sm))) {
  1429. wpa_printf(MSG_DEBUG, "SAE: " MACSTR " tried to use "
  1430. "SAE AKM after non-SAE auth_alg %u",
  1431. MAC2STR(sta->addr), sta->auth_alg);
  1432. return WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
  1433. }
  1434. #endif /* CONFIG_SAE */
  1435. #ifdef CONFIG_IEEE80211N
  1436. if ((sta->flags & (WLAN_STA_HT | WLAN_STA_VHT)) &&
  1437. wpa_auth_get_pairwise(sta->wpa_sm) == WPA_CIPHER_TKIP) {
  1438. hostapd_logger(hapd, sta->addr,
  1439. HOSTAPD_MODULE_IEEE80211,
  1440. HOSTAPD_LEVEL_INFO,
  1441. "Station tried to use TKIP with HT "
  1442. "association");
  1443. return WLAN_STATUS_CIPHER_REJECTED_PER_POLICY;
  1444. }
  1445. #endif /* CONFIG_IEEE80211N */
  1446. #ifdef CONFIG_HS20
  1447. } else if (hapd->conf->osen) {
  1448. if (elems.osen == NULL) {
  1449. hostapd_logger(
  1450. hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1451. HOSTAPD_LEVEL_INFO,
  1452. "No HS 2.0 OSEN element in association request");
  1453. return WLAN_STATUS_INVALID_IE;
  1454. }
  1455. wpa_printf(MSG_DEBUG, "HS 2.0: OSEN association");
  1456. if (sta->wpa_sm == NULL)
  1457. sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
  1458. sta->addr, NULL);
  1459. if (sta->wpa_sm == NULL) {
  1460. wpa_printf(MSG_WARNING, "Failed to initialize WPA "
  1461. "state machine");
  1462. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1463. }
  1464. if (wpa_validate_osen(hapd->wpa_auth, sta->wpa_sm,
  1465. elems.osen - 2, elems.osen_len + 2) < 0)
  1466. return WLAN_STATUS_INVALID_IE;
  1467. #endif /* CONFIG_HS20 */
  1468. } else
  1469. wpa_auth_sta_no_wpa(sta->wpa_sm);
  1470. #ifdef CONFIG_P2P
  1471. p2p_group_notif_assoc(hapd->p2p_group, sta->addr, ies, ies_len);
  1472. #endif /* CONFIG_P2P */
  1473. #ifdef CONFIG_HS20
  1474. wpabuf_free(sta->hs20_ie);
  1475. if (elems.hs20 && elems.hs20_len > 4) {
  1476. sta->hs20_ie = wpabuf_alloc_copy(elems.hs20 + 4,
  1477. elems.hs20_len - 4);
  1478. } else
  1479. sta->hs20_ie = NULL;
  1480. #endif /* CONFIG_HS20 */
  1481. #ifdef CONFIG_FST
  1482. wpabuf_free(sta->mb_ies);
  1483. if (hapd->iface->fst)
  1484. sta->mb_ies = mb_ies_by_info(&elems.mb_ies);
  1485. else
  1486. sta->mb_ies = NULL;
  1487. #endif /* CONFIG_FST */
  1488. #ifdef CONFIG_MBO
  1489. mbo_ap_check_sta_assoc(hapd, sta, &elems);
  1490. if (hapd->conf->mbo_enabled && (hapd->conf->wpa & 2) &&
  1491. elems.mbo && sta->cell_capa && !(sta->flags & WLAN_STA_MFP) &&
  1492. hapd->conf->ieee80211w != NO_MGMT_FRAME_PROTECTION) {
  1493. wpa_printf(MSG_INFO,
  1494. "MBO: Reject WPA2 association without PMF");
  1495. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1496. }
  1497. #endif /* CONFIG_MBO */
  1498. ap_copy_sta_supp_op_classes(sta, elems.supp_op_classes,
  1499. elems.supp_op_classes_len);
  1500. return WLAN_STATUS_SUCCESS;
  1501. }
  1502. static void send_deauth(struct hostapd_data *hapd, const u8 *addr,
  1503. u16 reason_code)
  1504. {
  1505. int send_len;
  1506. struct ieee80211_mgmt reply;
  1507. os_memset(&reply, 0, sizeof(reply));
  1508. reply.frame_control =
  1509. IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_DEAUTH);
  1510. os_memcpy(reply.da, addr, ETH_ALEN);
  1511. os_memcpy(reply.sa, hapd->own_addr, ETH_ALEN);
  1512. os_memcpy(reply.bssid, hapd->own_addr, ETH_ALEN);
  1513. send_len = IEEE80211_HDRLEN + sizeof(reply.u.deauth);
  1514. reply.u.deauth.reason_code = host_to_le16(reason_code);
  1515. if (hostapd_drv_send_mlme(hapd, &reply, send_len, 0) < 0)
  1516. wpa_printf(MSG_INFO, "Failed to send deauth: %s",
  1517. strerror(errno));
  1518. }
  1519. static int add_associated_sta(struct hostapd_data *hapd,
  1520. struct sta_info *sta)
  1521. {
  1522. struct ieee80211_ht_capabilities ht_cap;
  1523. struct ieee80211_vht_capabilities vht_cap;
  1524. /*
  1525. * Remove the STA entry to ensure the STA PS state gets cleared and
  1526. * configuration gets updated. This is relevant for cases, such as
  1527. * FT-over-the-DS, where a station re-associates back to the same AP but
  1528. * skips the authentication flow, or if working with a driver that
  1529. * does not support full AP client state.
  1530. */
  1531. if (!sta->added_unassoc)
  1532. hostapd_drv_sta_remove(hapd, sta->addr);
  1533. #ifdef CONFIG_IEEE80211N
  1534. if (sta->flags & WLAN_STA_HT)
  1535. hostapd_get_ht_capab(hapd, sta->ht_capabilities, &ht_cap);
  1536. #endif /* CONFIG_IEEE80211N */
  1537. #ifdef CONFIG_IEEE80211AC
  1538. if (sta->flags & WLAN_STA_VHT)
  1539. hostapd_get_vht_capab(hapd, sta->vht_capabilities, &vht_cap);
  1540. #endif /* CONFIG_IEEE80211AC */
  1541. /*
  1542. * Add the station with forced WLAN_STA_ASSOC flag. The sta->flags
  1543. * will be set when the ACK frame for the (Re)Association Response frame
  1544. * is processed (TX status driver event).
  1545. */
  1546. if (hostapd_sta_add(hapd, sta->addr, sta->aid, sta->capability,
  1547. sta->supported_rates, sta->supported_rates_len,
  1548. sta->listen_interval,
  1549. sta->flags & WLAN_STA_HT ? &ht_cap : NULL,
  1550. sta->flags & WLAN_STA_VHT ? &vht_cap : NULL,
  1551. sta->flags | WLAN_STA_ASSOC, sta->qosinfo,
  1552. sta->vht_opmode, sta->added_unassoc)) {
  1553. hostapd_logger(hapd, sta->addr,
  1554. HOSTAPD_MODULE_IEEE80211, HOSTAPD_LEVEL_NOTICE,
  1555. "Could not %s STA to kernel driver",
  1556. sta->added_unassoc ? "set" : "add");
  1557. if (sta->added_unassoc) {
  1558. hostapd_drv_sta_remove(hapd, sta->addr);
  1559. sta->added_unassoc = 0;
  1560. }
  1561. return -1;
  1562. }
  1563. sta->added_unassoc = 0;
  1564. return 0;
  1565. }
  1566. static u16 send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta,
  1567. u16 status_code, int reassoc, const u8 *ies,
  1568. size_t ies_len)
  1569. {
  1570. int send_len;
  1571. u8 buf[sizeof(struct ieee80211_mgmt) + 1024];
  1572. struct ieee80211_mgmt *reply;
  1573. u8 *p;
  1574. os_memset(buf, 0, sizeof(buf));
  1575. reply = (struct ieee80211_mgmt *) buf;
  1576. reply->frame_control =
  1577. IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  1578. (reassoc ? WLAN_FC_STYPE_REASSOC_RESP :
  1579. WLAN_FC_STYPE_ASSOC_RESP));
  1580. os_memcpy(reply->da, sta->addr, ETH_ALEN);
  1581. os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
  1582. os_memcpy(reply->bssid, hapd->own_addr, ETH_ALEN);
  1583. send_len = IEEE80211_HDRLEN;
  1584. send_len += sizeof(reply->u.assoc_resp);
  1585. reply->u.assoc_resp.capab_info =
  1586. host_to_le16(hostapd_own_capab_info(hapd));
  1587. reply->u.assoc_resp.status_code = host_to_le16(status_code);
  1588. reply->u.assoc_resp.aid = host_to_le16(sta->aid | BIT(14) | BIT(15));
  1589. /* Supported rates */
  1590. p = hostapd_eid_supp_rates(hapd, reply->u.assoc_resp.variable);
  1591. /* Extended supported rates */
  1592. p = hostapd_eid_ext_supp_rates(hapd, p);
  1593. #ifdef CONFIG_IEEE80211R
  1594. if (status_code == WLAN_STATUS_SUCCESS) {
  1595. /* IEEE 802.11r: Mobility Domain Information, Fast BSS
  1596. * Transition Information, RSN, [RIC Response] */
  1597. p = wpa_sm_write_assoc_resp_ies(sta->wpa_sm, p,
  1598. buf + sizeof(buf) - p,
  1599. sta->auth_alg, ies, ies_len);
  1600. }
  1601. #endif /* CONFIG_IEEE80211R */
  1602. #ifdef CONFIG_IEEE80211W
  1603. if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY)
  1604. p = hostapd_eid_assoc_comeback_time(hapd, sta, p);
  1605. #endif /* CONFIG_IEEE80211W */
  1606. #ifdef CONFIG_IEEE80211N
  1607. p = hostapd_eid_ht_capabilities(hapd, p);
  1608. p = hostapd_eid_ht_operation(hapd, p);
  1609. #endif /* CONFIG_IEEE80211N */
  1610. #ifdef CONFIG_IEEE80211AC
  1611. if (hapd->iconf->ieee80211ac && !hapd->conf->disable_11ac) {
  1612. p = hostapd_eid_vht_capabilities(hapd, p);
  1613. p = hostapd_eid_vht_operation(hapd, p);
  1614. }
  1615. #endif /* CONFIG_IEEE80211AC */
  1616. p = hostapd_eid_ext_capab(hapd, p);
  1617. p = hostapd_eid_bss_max_idle_period(hapd, p);
  1618. if (sta->qos_map_enabled)
  1619. p = hostapd_eid_qos_map_set(hapd, p);
  1620. #ifdef CONFIG_FST
  1621. if (hapd->iface->fst_ies) {
  1622. os_memcpy(p, wpabuf_head(hapd->iface->fst_ies),
  1623. wpabuf_len(hapd->iface->fst_ies));
  1624. p += wpabuf_len(hapd->iface->fst_ies);
  1625. }
  1626. #endif /* CONFIG_FST */
  1627. #ifdef CONFIG_IEEE80211AC
  1628. if (hapd->conf->vendor_vht && (sta->flags & WLAN_STA_VENDOR_VHT))
  1629. p = hostapd_eid_vendor_vht(hapd, p);
  1630. #endif /* CONFIG_IEEE80211AC */
  1631. if (sta->flags & WLAN_STA_WMM)
  1632. p = hostapd_eid_wmm(hapd, p);
  1633. #ifdef CONFIG_WPS
  1634. if ((sta->flags & WLAN_STA_WPS) ||
  1635. ((sta->flags & WLAN_STA_MAYBE_WPS) && hapd->conf->wpa)) {
  1636. struct wpabuf *wps = wps_build_assoc_resp_ie();
  1637. if (wps) {
  1638. os_memcpy(p, wpabuf_head(wps), wpabuf_len(wps));
  1639. p += wpabuf_len(wps);
  1640. wpabuf_free(wps);
  1641. }
  1642. }
  1643. #endif /* CONFIG_WPS */
  1644. #ifdef CONFIG_P2P
  1645. if (sta->p2p_ie && hapd->p2p_group) {
  1646. struct wpabuf *p2p_resp_ie;
  1647. enum p2p_status_code status;
  1648. switch (status_code) {
  1649. case WLAN_STATUS_SUCCESS:
  1650. status = P2P_SC_SUCCESS;
  1651. break;
  1652. case WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA:
  1653. status = P2P_SC_FAIL_LIMIT_REACHED;
  1654. break;
  1655. default:
  1656. status = P2P_SC_FAIL_INVALID_PARAMS;
  1657. break;
  1658. }
  1659. p2p_resp_ie = p2p_group_assoc_resp_ie(hapd->p2p_group, status);
  1660. if (p2p_resp_ie) {
  1661. os_memcpy(p, wpabuf_head(p2p_resp_ie),
  1662. wpabuf_len(p2p_resp_ie));
  1663. p += wpabuf_len(p2p_resp_ie);
  1664. wpabuf_free(p2p_resp_ie);
  1665. }
  1666. }
  1667. #endif /* CONFIG_P2P */
  1668. #ifdef CONFIG_P2P_MANAGER
  1669. if (hapd->conf->p2p & P2P_MANAGE)
  1670. p = hostapd_eid_p2p_manage(hapd, p);
  1671. #endif /* CONFIG_P2P_MANAGER */
  1672. p = hostapd_eid_mbo(hapd, p, buf + sizeof(buf) - p);
  1673. send_len += p - reply->u.assoc_resp.variable;
  1674. if (hostapd_drv_send_mlme(hapd, reply, send_len, 0) < 0) {
  1675. wpa_printf(MSG_INFO, "Failed to send assoc resp: %s",
  1676. strerror(errno));
  1677. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  1678. }
  1679. return WLAN_STATUS_SUCCESS;
  1680. }
  1681. static void handle_assoc(struct hostapd_data *hapd,
  1682. const struct ieee80211_mgmt *mgmt, size_t len,
  1683. int reassoc)
  1684. {
  1685. u16 capab_info, listen_interval, seq_ctrl, fc;
  1686. u16 resp = WLAN_STATUS_SUCCESS, reply_res;
  1687. const u8 *pos;
  1688. int left, i;
  1689. struct sta_info *sta;
  1690. if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_req) :
  1691. sizeof(mgmt->u.assoc_req))) {
  1692. wpa_printf(MSG_INFO, "handle_assoc(reassoc=%d) - too short payload (len=%lu)",
  1693. reassoc, (unsigned long) len);
  1694. return;
  1695. }
  1696. #ifdef CONFIG_TESTING_OPTIONS
  1697. if (reassoc) {
  1698. if (hapd->iconf->ignore_reassoc_probability > 0.0 &&
  1699. drand48() < hapd->iconf->ignore_reassoc_probability) {
  1700. wpa_printf(MSG_INFO,
  1701. "TESTING: ignoring reassoc request from "
  1702. MACSTR, MAC2STR(mgmt->sa));
  1703. return;
  1704. }
  1705. } else {
  1706. if (hapd->iconf->ignore_assoc_probability > 0.0 &&
  1707. drand48() < hapd->iconf->ignore_assoc_probability) {
  1708. wpa_printf(MSG_INFO,
  1709. "TESTING: ignoring assoc request from "
  1710. MACSTR, MAC2STR(mgmt->sa));
  1711. return;
  1712. }
  1713. }
  1714. #endif /* CONFIG_TESTING_OPTIONS */
  1715. fc = le_to_host16(mgmt->frame_control);
  1716. seq_ctrl = le_to_host16(mgmt->seq_ctrl);
  1717. if (reassoc) {
  1718. capab_info = le_to_host16(mgmt->u.reassoc_req.capab_info);
  1719. listen_interval = le_to_host16(
  1720. mgmt->u.reassoc_req.listen_interval);
  1721. wpa_printf(MSG_DEBUG, "reassociation request: STA=" MACSTR
  1722. " capab_info=0x%02x listen_interval=%d current_ap="
  1723. MACSTR " seq_ctrl=0x%x%s",
  1724. MAC2STR(mgmt->sa), capab_info, listen_interval,
  1725. MAC2STR(mgmt->u.reassoc_req.current_ap),
  1726. seq_ctrl, (fc & WLAN_FC_RETRY) ? " retry" : "");
  1727. left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.reassoc_req));
  1728. pos = mgmt->u.reassoc_req.variable;
  1729. } else {
  1730. capab_info = le_to_host16(mgmt->u.assoc_req.capab_info);
  1731. listen_interval = le_to_host16(
  1732. mgmt->u.assoc_req.listen_interval);
  1733. wpa_printf(MSG_DEBUG, "association request: STA=" MACSTR
  1734. " capab_info=0x%02x listen_interval=%d "
  1735. "seq_ctrl=0x%x%s",
  1736. MAC2STR(mgmt->sa), capab_info, listen_interval,
  1737. seq_ctrl, (fc & WLAN_FC_RETRY) ? " retry" : "");
  1738. left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.assoc_req));
  1739. pos = mgmt->u.assoc_req.variable;
  1740. }
  1741. sta = ap_get_sta(hapd, mgmt->sa);
  1742. #ifdef CONFIG_IEEE80211R
  1743. if (sta && sta->auth_alg == WLAN_AUTH_FT &&
  1744. (sta->flags & WLAN_STA_AUTH) == 0) {
  1745. wpa_printf(MSG_DEBUG, "FT: Allow STA " MACSTR " to associate "
  1746. "prior to authentication since it is using "
  1747. "over-the-DS FT", MAC2STR(mgmt->sa));
  1748. /*
  1749. * Mark station as authenticated, to avoid adding station
  1750. * entry in the driver as associated and not authenticated
  1751. */
  1752. sta->flags |= WLAN_STA_AUTH;
  1753. } else
  1754. #endif /* CONFIG_IEEE80211R */
  1755. if (sta == NULL || (sta->flags & WLAN_STA_AUTH) == 0) {
  1756. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1757. HOSTAPD_LEVEL_INFO, "Station tried to "
  1758. "associate before authentication "
  1759. "(aid=%d flags=0x%x)",
  1760. sta ? sta->aid : -1,
  1761. sta ? sta->flags : 0);
  1762. send_deauth(hapd, mgmt->sa,
  1763. WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA);
  1764. return;
  1765. }
  1766. if ((fc & WLAN_FC_RETRY) &&
  1767. sta->last_seq_ctrl != WLAN_INVALID_MGMT_SEQ &&
  1768. sta->last_seq_ctrl == seq_ctrl &&
  1769. sta->last_subtype == reassoc ? WLAN_FC_STYPE_REASSOC_REQ :
  1770. WLAN_FC_STYPE_ASSOC_REQ) {
  1771. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1772. HOSTAPD_LEVEL_DEBUG,
  1773. "Drop repeated association frame seq_ctrl=0x%x",
  1774. seq_ctrl);
  1775. return;
  1776. }
  1777. sta->last_seq_ctrl = seq_ctrl;
  1778. sta->last_subtype = reassoc ? WLAN_FC_STYPE_REASSOC_REQ :
  1779. WLAN_FC_STYPE_ASSOC_REQ;
  1780. if (hapd->tkip_countermeasures) {
  1781. resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
  1782. goto fail;
  1783. }
  1784. if (listen_interval > hapd->conf->max_listen_interval) {
  1785. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1786. HOSTAPD_LEVEL_DEBUG,
  1787. "Too large Listen Interval (%d)",
  1788. listen_interval);
  1789. resp = WLAN_STATUS_ASSOC_DENIED_LISTEN_INT_TOO_LARGE;
  1790. goto fail;
  1791. }
  1792. #ifdef CONFIG_MBO
  1793. if (hapd->conf->mbo_enabled && hapd->mbo_assoc_disallow) {
  1794. resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  1795. goto fail;
  1796. }
  1797. #endif /* CONFIG_MBO */
  1798. /* followed by SSID and Supported rates; and HT capabilities if 802.11n
  1799. * is used */
  1800. resp = check_assoc_ies(hapd, sta, pos, left, reassoc);
  1801. if (resp != WLAN_STATUS_SUCCESS)
  1802. goto fail;
  1803. if (hostapd_get_aid(hapd, sta) < 0) {
  1804. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  1805. HOSTAPD_LEVEL_INFO, "No room for more AIDs");
  1806. resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  1807. goto fail;
  1808. }
  1809. sta->capability = capab_info;
  1810. sta->listen_interval = listen_interval;
  1811. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G)
  1812. sta->flags |= WLAN_STA_NONERP;
  1813. for (i = 0; i < sta->supported_rates_len; i++) {
  1814. if ((sta->supported_rates[i] & 0x7f) > 22) {
  1815. sta->flags &= ~WLAN_STA_NONERP;
  1816. break;
  1817. }
  1818. }
  1819. if (sta->flags & WLAN_STA_NONERP && !sta->nonerp_set) {
  1820. sta->nonerp_set = 1;
  1821. hapd->iface->num_sta_non_erp++;
  1822. if (hapd->iface->num_sta_non_erp == 1)
  1823. ieee802_11_set_beacons(hapd->iface);
  1824. }
  1825. if (!(sta->capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) &&
  1826. !sta->no_short_slot_time_set) {
  1827. sta->no_short_slot_time_set = 1;
  1828. hapd->iface->num_sta_no_short_slot_time++;
  1829. if (hapd->iface->current_mode->mode ==
  1830. HOSTAPD_MODE_IEEE80211G &&
  1831. hapd->iface->num_sta_no_short_slot_time == 1)
  1832. ieee802_11_set_beacons(hapd->iface);
  1833. }
  1834. if (sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
  1835. sta->flags |= WLAN_STA_SHORT_PREAMBLE;
  1836. else
  1837. sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
  1838. if (!(sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
  1839. !sta->no_short_preamble_set) {
  1840. sta->no_short_preamble_set = 1;
  1841. hapd->iface->num_sta_no_short_preamble++;
  1842. if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
  1843. && hapd->iface->num_sta_no_short_preamble == 1)
  1844. ieee802_11_set_beacons(hapd->iface);
  1845. }
  1846. #ifdef CONFIG_IEEE80211N
  1847. update_ht_state(hapd, sta);
  1848. #endif /* CONFIG_IEEE80211N */
  1849. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1850. HOSTAPD_LEVEL_DEBUG,
  1851. "association OK (aid %d)", sta->aid);
  1852. /* Station will be marked associated, after it acknowledges AssocResp
  1853. */
  1854. sta->flags |= WLAN_STA_ASSOC_REQ_OK;
  1855. #ifdef CONFIG_IEEE80211W
  1856. if ((sta->flags & WLAN_STA_MFP) && sta->sa_query_timed_out) {
  1857. wpa_printf(MSG_DEBUG, "Allowing %sassociation after timed out "
  1858. "SA Query procedure", reassoc ? "re" : "");
  1859. /* TODO: Send a protected Disassociate frame to the STA using
  1860. * the old key and Reason Code "Previous Authentication no
  1861. * longer valid". Make sure this is only sent protected since
  1862. * unprotected frame would be received by the STA that is now
  1863. * trying to associate.
  1864. */
  1865. }
  1866. #endif /* CONFIG_IEEE80211W */
  1867. /* Make sure that the previously registered inactivity timer will not
  1868. * remove the STA immediately. */
  1869. sta->timeout_next = STA_NULLFUNC;
  1870. fail:
  1871. /*
  1872. * In case of a successful response, add the station to the driver.
  1873. * Otherwise, the kernel may ignore Data frames before we process the
  1874. * ACK frame (TX status). In case of a failure, this station will be
  1875. * removed.
  1876. *
  1877. * Note that this is not compliant with the IEEE 802.11 standard that
  1878. * states that a non-AP station should transition into the
  1879. * authenticated/associated state only after the station acknowledges
  1880. * the (Re)Association Response frame. However, still do this as:
  1881. *
  1882. * 1. In case the station does not acknowledge the (Re)Association
  1883. * Response frame, it will be removed.
  1884. * 2. Data frames will be dropped in the kernel until the station is
  1885. * set into authorized state, and there are no significant known
  1886. * issues with processing other non-Data Class 3 frames during this
  1887. * window.
  1888. */
  1889. if (resp == WLAN_STATUS_SUCCESS && add_associated_sta(hapd, sta))
  1890. resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
  1891. reply_res = send_assoc_resp(hapd, sta, resp, reassoc, pos, left);
  1892. /*
  1893. * Remove the station in case tranmission of a success response fails
  1894. * (the STA was added associated to the driver) or if the station was
  1895. * previously added unassociated.
  1896. */
  1897. if ((reply_res != WLAN_STATUS_SUCCESS &&
  1898. resp == WLAN_STATUS_SUCCESS) || sta->added_unassoc) {
  1899. hostapd_drv_sta_remove(hapd, sta->addr);
  1900. sta->added_unassoc = 0;
  1901. }
  1902. }
  1903. static void handle_disassoc(struct hostapd_data *hapd,
  1904. const struct ieee80211_mgmt *mgmt, size_t len)
  1905. {
  1906. struct sta_info *sta;
  1907. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.disassoc)) {
  1908. wpa_printf(MSG_INFO, "handle_disassoc - too short payload (len=%lu)",
  1909. (unsigned long) len);
  1910. return;
  1911. }
  1912. wpa_printf(MSG_DEBUG, "disassocation: STA=" MACSTR " reason_code=%d",
  1913. MAC2STR(mgmt->sa),
  1914. le_to_host16(mgmt->u.disassoc.reason_code));
  1915. sta = ap_get_sta(hapd, mgmt->sa);
  1916. if (sta == NULL) {
  1917. wpa_printf(MSG_INFO, "Station " MACSTR " trying to disassociate, but it is not associated",
  1918. MAC2STR(mgmt->sa));
  1919. return;
  1920. }
  1921. ap_sta_set_authorized(hapd, sta, 0);
  1922. sta->last_seq_ctrl = WLAN_INVALID_MGMT_SEQ;
  1923. sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
  1924. wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
  1925. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1926. HOSTAPD_LEVEL_INFO, "disassociated");
  1927. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  1928. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  1929. /* Stop Accounting and IEEE 802.1X sessions, but leave the STA
  1930. * authenticated. */
  1931. accounting_sta_stop(hapd, sta);
  1932. ieee802_1x_free_station(hapd, sta);
  1933. if (sta->ipaddr)
  1934. hostapd_drv_br_delete_ip_neigh(hapd, 4, (u8 *) &sta->ipaddr);
  1935. ap_sta_ip6addr_del(hapd, sta);
  1936. hostapd_drv_sta_remove(hapd, sta->addr);
  1937. sta->added_unassoc = 0;
  1938. if (sta->timeout_next == STA_NULLFUNC ||
  1939. sta->timeout_next == STA_DISASSOC) {
  1940. sta->timeout_next = STA_DEAUTH;
  1941. eloop_cancel_timeout(ap_handle_timer, hapd, sta);
  1942. eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
  1943. hapd, sta);
  1944. }
  1945. mlme_disassociate_indication(
  1946. hapd, sta, le_to_host16(mgmt->u.disassoc.reason_code));
  1947. }
  1948. static void handle_deauth(struct hostapd_data *hapd,
  1949. const struct ieee80211_mgmt *mgmt, size_t len)
  1950. {
  1951. struct sta_info *sta;
  1952. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.deauth)) {
  1953. wpa_msg(hapd->msg_ctx, MSG_DEBUG, "handle_deauth - too short "
  1954. "payload (len=%lu)", (unsigned long) len);
  1955. return;
  1956. }
  1957. wpa_msg(hapd->msg_ctx, MSG_DEBUG, "deauthentication: STA=" MACSTR
  1958. " reason_code=%d",
  1959. MAC2STR(mgmt->sa), le_to_host16(mgmt->u.deauth.reason_code));
  1960. sta = ap_get_sta(hapd, mgmt->sa);
  1961. if (sta == NULL) {
  1962. wpa_msg(hapd->msg_ctx, MSG_DEBUG, "Station " MACSTR " trying "
  1963. "to deauthenticate, but it is not authenticated",
  1964. MAC2STR(mgmt->sa));
  1965. return;
  1966. }
  1967. ap_sta_set_authorized(hapd, sta, 0);
  1968. sta->last_seq_ctrl = WLAN_INVALID_MGMT_SEQ;
  1969. sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC |
  1970. WLAN_STA_ASSOC_REQ_OK);
  1971. wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
  1972. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  1973. HOSTAPD_LEVEL_DEBUG, "deauthenticated");
  1974. mlme_deauthenticate_indication(
  1975. hapd, sta, le_to_host16(mgmt->u.deauth.reason_code));
  1976. sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
  1977. ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
  1978. ap_free_sta(hapd, sta);
  1979. }
  1980. static void handle_beacon(struct hostapd_data *hapd,
  1981. const struct ieee80211_mgmt *mgmt, size_t len,
  1982. struct hostapd_frame_info *fi)
  1983. {
  1984. struct ieee802_11_elems elems;
  1985. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.beacon)) {
  1986. wpa_printf(MSG_INFO, "handle_beacon - too short payload (len=%lu)",
  1987. (unsigned long) len);
  1988. return;
  1989. }
  1990. (void) ieee802_11_parse_elems(mgmt->u.beacon.variable,
  1991. len - (IEEE80211_HDRLEN +
  1992. sizeof(mgmt->u.beacon)), &elems,
  1993. 0);
  1994. ap_list_process_beacon(hapd->iface, mgmt, &elems, fi);
  1995. }
  1996. #ifdef CONFIG_IEEE80211W
  1997. static int hostapd_sa_query_action(struct hostapd_data *hapd,
  1998. const struct ieee80211_mgmt *mgmt,
  1999. size_t len)
  2000. {
  2001. const u8 *end;
  2002. end = mgmt->u.action.u.sa_query_resp.trans_id +
  2003. WLAN_SA_QUERY_TR_ID_LEN;
  2004. if (((u8 *) mgmt) + len < end) {
  2005. wpa_printf(MSG_DEBUG, "IEEE 802.11: Too short SA Query Action "
  2006. "frame (len=%lu)", (unsigned long) len);
  2007. return 0;
  2008. }
  2009. ieee802_11_sa_query_action(hapd, mgmt->sa,
  2010. mgmt->u.action.u.sa_query_resp.action,
  2011. mgmt->u.action.u.sa_query_resp.trans_id);
  2012. return 1;
  2013. }
  2014. static int robust_action_frame(u8 category)
  2015. {
  2016. return category != WLAN_ACTION_PUBLIC &&
  2017. category != WLAN_ACTION_HT;
  2018. }
  2019. #endif /* CONFIG_IEEE80211W */
  2020. static int handle_action(struct hostapd_data *hapd,
  2021. const struct ieee80211_mgmt *mgmt, size_t len)
  2022. {
  2023. struct sta_info *sta;
  2024. sta = ap_get_sta(hapd, mgmt->sa);
  2025. if (len < IEEE80211_HDRLEN + 1) {
  2026. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  2027. HOSTAPD_LEVEL_DEBUG,
  2028. "handle_action - too short payload (len=%lu)",
  2029. (unsigned long) len);
  2030. return 0;
  2031. }
  2032. if (mgmt->u.action.category != WLAN_ACTION_PUBLIC &&
  2033. (sta == NULL || !(sta->flags & WLAN_STA_ASSOC))) {
  2034. wpa_printf(MSG_DEBUG, "IEEE 802.11: Ignored Action "
  2035. "frame (category=%u) from unassociated STA " MACSTR,
  2036. MAC2STR(mgmt->sa), mgmt->u.action.category);
  2037. return 0;
  2038. }
  2039. #ifdef CONFIG_IEEE80211W
  2040. if (sta && (sta->flags & WLAN_STA_MFP) &&
  2041. !(mgmt->frame_control & host_to_le16(WLAN_FC_ISWEP)) &&
  2042. robust_action_frame(mgmt->u.action.category)) {
  2043. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  2044. HOSTAPD_LEVEL_DEBUG,
  2045. "Dropped unprotected Robust Action frame from "
  2046. "an MFP STA");
  2047. return 0;
  2048. }
  2049. #endif /* CONFIG_IEEE80211W */
  2050. if (sta) {
  2051. u16 fc = le_to_host16(mgmt->frame_control);
  2052. u16 seq_ctrl = le_to_host16(mgmt->seq_ctrl);
  2053. if ((fc & WLAN_FC_RETRY) &&
  2054. sta->last_seq_ctrl != WLAN_INVALID_MGMT_SEQ &&
  2055. sta->last_seq_ctrl == seq_ctrl &&
  2056. sta->last_subtype == WLAN_FC_STYPE_ACTION) {
  2057. hostapd_logger(hapd, sta->addr,
  2058. HOSTAPD_MODULE_IEEE80211,
  2059. HOSTAPD_LEVEL_DEBUG,
  2060. "Drop repeated action frame seq_ctrl=0x%x",
  2061. seq_ctrl);
  2062. return 1;
  2063. }
  2064. sta->last_seq_ctrl = seq_ctrl;
  2065. sta->last_subtype = WLAN_FC_STYPE_ACTION;
  2066. }
  2067. switch (mgmt->u.action.category) {
  2068. #ifdef CONFIG_IEEE80211R
  2069. case WLAN_ACTION_FT:
  2070. if (!sta ||
  2071. wpa_ft_action_rx(sta->wpa_sm, (u8 *) &mgmt->u.action,
  2072. len - IEEE80211_HDRLEN))
  2073. break;
  2074. return 1;
  2075. #endif /* CONFIG_IEEE80211R */
  2076. case WLAN_ACTION_WMM:
  2077. hostapd_wmm_action(hapd, mgmt, len);
  2078. return 1;
  2079. #ifdef CONFIG_IEEE80211W
  2080. case WLAN_ACTION_SA_QUERY:
  2081. return hostapd_sa_query_action(hapd, mgmt, len);
  2082. #endif /* CONFIG_IEEE80211W */
  2083. #ifdef CONFIG_WNM
  2084. case WLAN_ACTION_WNM:
  2085. ieee802_11_rx_wnm_action_ap(hapd, mgmt, len);
  2086. return 1;
  2087. #endif /* CONFIG_WNM */
  2088. #ifdef CONFIG_FST
  2089. case WLAN_ACTION_FST:
  2090. if (hapd->iface->fst)
  2091. fst_rx_action(hapd->iface->fst, mgmt, len);
  2092. else
  2093. wpa_printf(MSG_DEBUG,
  2094. "FST: Ignore FST Action frame - no FST attached");
  2095. return 1;
  2096. #endif /* CONFIG_FST */
  2097. case WLAN_ACTION_PUBLIC:
  2098. case WLAN_ACTION_PROTECTED_DUAL:
  2099. #ifdef CONFIG_IEEE80211N
  2100. if (len >= IEEE80211_HDRLEN + 2 &&
  2101. mgmt->u.action.u.public_action.action ==
  2102. WLAN_PA_20_40_BSS_COEX) {
  2103. wpa_printf(MSG_DEBUG,
  2104. "HT20/40 coex mgmt frame received from STA "
  2105. MACSTR, MAC2STR(mgmt->sa));
  2106. hostapd_2040_coex_action(hapd, mgmt, len);
  2107. }
  2108. #endif /* CONFIG_IEEE80211N */
  2109. if (hapd->public_action_cb) {
  2110. hapd->public_action_cb(hapd->public_action_cb_ctx,
  2111. (u8 *) mgmt, len,
  2112. hapd->iface->freq);
  2113. }
  2114. if (hapd->public_action_cb2) {
  2115. hapd->public_action_cb2(hapd->public_action_cb2_ctx,
  2116. (u8 *) mgmt, len,
  2117. hapd->iface->freq);
  2118. }
  2119. if (hapd->public_action_cb || hapd->public_action_cb2)
  2120. return 1;
  2121. break;
  2122. case WLAN_ACTION_VENDOR_SPECIFIC:
  2123. if (hapd->vendor_action_cb) {
  2124. if (hapd->vendor_action_cb(hapd->vendor_action_cb_ctx,
  2125. (u8 *) mgmt, len,
  2126. hapd->iface->freq) == 0)
  2127. return 1;
  2128. }
  2129. break;
  2130. }
  2131. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  2132. HOSTAPD_LEVEL_DEBUG,
  2133. "handle_action - unknown action category %d or invalid "
  2134. "frame",
  2135. mgmt->u.action.category);
  2136. if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category & 0x80) &&
  2137. !(mgmt->sa[0] & 0x01)) {
  2138. struct ieee80211_mgmt *resp;
  2139. /*
  2140. * IEEE 802.11-REVma/D9.0 - 7.3.1.11
  2141. * Return the Action frame to the source without change
  2142. * except that MSB of the Category set to 1.
  2143. */
  2144. wpa_printf(MSG_DEBUG, "IEEE 802.11: Return unknown Action "
  2145. "frame back to sender");
  2146. resp = os_malloc(len);
  2147. if (resp == NULL)
  2148. return 0;
  2149. os_memcpy(resp, mgmt, len);
  2150. os_memcpy(resp->da, resp->sa, ETH_ALEN);
  2151. os_memcpy(resp->sa, hapd->own_addr, ETH_ALEN);
  2152. os_memcpy(resp->bssid, hapd->own_addr, ETH_ALEN);
  2153. resp->u.action.category |= 0x80;
  2154. if (hostapd_drv_send_mlme(hapd, resp, len, 0) < 0) {
  2155. wpa_printf(MSG_ERROR, "IEEE 802.11: Failed to send "
  2156. "Action frame");
  2157. }
  2158. os_free(resp);
  2159. }
  2160. return 1;
  2161. }
  2162. /**
  2163. * ieee802_11_mgmt - process incoming IEEE 802.11 management frames
  2164. * @hapd: hostapd BSS data structure (the BSS to which the management frame was
  2165. * sent to)
  2166. * @buf: management frame data (starting from IEEE 802.11 header)
  2167. * @len: length of frame data in octets
  2168. * @fi: meta data about received frame (signal level, etc.)
  2169. *
  2170. * Process all incoming IEEE 802.11 management frames. This will be called for
  2171. * each frame received from the kernel driver through wlan#ap interface. In
  2172. * addition, it can be called to re-inserted pending frames (e.g., when using
  2173. * external RADIUS server as an MAC ACL).
  2174. */
  2175. int ieee802_11_mgmt(struct hostapd_data *hapd, const u8 *buf, size_t len,
  2176. struct hostapd_frame_info *fi)
  2177. {
  2178. struct ieee80211_mgmt *mgmt;
  2179. int broadcast;
  2180. u16 fc, stype;
  2181. int ret = 0;
  2182. if (len < 24)
  2183. return 0;
  2184. mgmt = (struct ieee80211_mgmt *) buf;
  2185. fc = le_to_host16(mgmt->frame_control);
  2186. stype = WLAN_FC_GET_STYPE(fc);
  2187. if (stype == WLAN_FC_STYPE_BEACON) {
  2188. handle_beacon(hapd, mgmt, len, fi);
  2189. return 1;
  2190. }
  2191. broadcast = mgmt->bssid[0] == 0xff && mgmt->bssid[1] == 0xff &&
  2192. mgmt->bssid[2] == 0xff && mgmt->bssid[3] == 0xff &&
  2193. mgmt->bssid[4] == 0xff && mgmt->bssid[5] == 0xff;
  2194. if (!broadcast &&
  2195. #ifdef CONFIG_P2P
  2196. /* Invitation responses can be sent with the peer MAC as BSSID */
  2197. !((hapd->conf->p2p & P2P_GROUP_OWNER) &&
  2198. stype == WLAN_FC_STYPE_ACTION) &&
  2199. #endif /* CONFIG_P2P */
  2200. #ifdef CONFIG_MESH
  2201. !(hapd->conf->mesh & MESH_ENABLED) &&
  2202. #endif /* CONFIG_MESH */
  2203. os_memcmp(mgmt->bssid, hapd->own_addr, ETH_ALEN) != 0) {
  2204. wpa_printf(MSG_INFO, "MGMT: BSSID=" MACSTR " not our address",
  2205. MAC2STR(mgmt->bssid));
  2206. return 0;
  2207. }
  2208. if (stype == WLAN_FC_STYPE_PROBE_REQ) {
  2209. handle_probe_req(hapd, mgmt, len, fi->ssi_signal);
  2210. return 1;
  2211. }
  2212. if (os_memcmp(mgmt->da, hapd->own_addr, ETH_ALEN) != 0) {
  2213. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  2214. HOSTAPD_LEVEL_DEBUG,
  2215. "MGMT: DA=" MACSTR " not our address",
  2216. MAC2STR(mgmt->da));
  2217. return 0;
  2218. }
  2219. if (hapd->iconf->track_sta_max_num)
  2220. sta_track_add(hapd->iface, mgmt->sa);
  2221. switch (stype) {
  2222. case WLAN_FC_STYPE_AUTH:
  2223. wpa_printf(MSG_DEBUG, "mgmt::auth");
  2224. handle_auth(hapd, mgmt, len);
  2225. ret = 1;
  2226. break;
  2227. case WLAN_FC_STYPE_ASSOC_REQ:
  2228. wpa_printf(MSG_DEBUG, "mgmt::assoc_req");
  2229. handle_assoc(hapd, mgmt, len, 0);
  2230. ret = 1;
  2231. break;
  2232. case WLAN_FC_STYPE_REASSOC_REQ:
  2233. wpa_printf(MSG_DEBUG, "mgmt::reassoc_req");
  2234. handle_assoc(hapd, mgmt, len, 1);
  2235. ret = 1;
  2236. break;
  2237. case WLAN_FC_STYPE_DISASSOC:
  2238. wpa_printf(MSG_DEBUG, "mgmt::disassoc");
  2239. handle_disassoc(hapd, mgmt, len);
  2240. ret = 1;
  2241. break;
  2242. case WLAN_FC_STYPE_DEAUTH:
  2243. wpa_msg(hapd->msg_ctx, MSG_DEBUG, "mgmt::deauth");
  2244. handle_deauth(hapd, mgmt, len);
  2245. ret = 1;
  2246. break;
  2247. case WLAN_FC_STYPE_ACTION:
  2248. wpa_printf(MSG_DEBUG, "mgmt::action");
  2249. ret = handle_action(hapd, mgmt, len);
  2250. break;
  2251. default:
  2252. hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
  2253. HOSTAPD_LEVEL_DEBUG,
  2254. "unknown mgmt frame subtype %d", stype);
  2255. break;
  2256. }
  2257. return ret;
  2258. }
  2259. static void handle_auth_cb(struct hostapd_data *hapd,
  2260. const struct ieee80211_mgmt *mgmt,
  2261. size_t len, int ok)
  2262. {
  2263. u16 auth_alg, auth_transaction, status_code;
  2264. struct sta_info *sta;
  2265. sta = ap_get_sta(hapd, mgmt->da);
  2266. if (!sta) {
  2267. wpa_printf(MSG_INFO, "handle_auth_cb: STA " MACSTR " not found",
  2268. MAC2STR(mgmt->da));
  2269. return;
  2270. }
  2271. auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
  2272. auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
  2273. status_code = le_to_host16(mgmt->u.auth.status_code);
  2274. if (!ok) {
  2275. hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
  2276. HOSTAPD_LEVEL_NOTICE,
  2277. "did not acknowledge authentication response");
  2278. goto fail;
  2279. }
  2280. if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
  2281. wpa_printf(MSG_INFO, "handle_auth_cb - too short payload (len=%lu)",
  2282. (unsigned long) len);
  2283. goto fail;
  2284. }
  2285. if (status_code == WLAN_STATUS_SUCCESS &&
  2286. ((auth_alg == WLAN_AUTH_OPEN && auth_transaction == 2) ||
  2287. (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 4))) {
  2288. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  2289. HOSTAPD_LEVEL_INFO, "authenticated");
  2290. sta->flags |= WLAN_STA_AUTH;
  2291. if (sta->added_unassoc)
  2292. hostapd_set_sta_flags(hapd, sta);
  2293. return;
  2294. }
  2295. fail:
  2296. if (status_code != WLAN_STATUS_SUCCESS && sta->added_unassoc) {
  2297. hostapd_drv_sta_remove(hapd, sta->addr);
  2298. sta->added_unassoc = 0;
  2299. }
  2300. }
  2301. static void hostapd_set_wds_encryption(struct hostapd_data *hapd,
  2302. struct sta_info *sta,
  2303. char *ifname_wds)
  2304. {
  2305. int i;
  2306. struct hostapd_ssid *ssid = &hapd->conf->ssid;
  2307. if (hapd->conf->ieee802_1x || hapd->conf->wpa)
  2308. return;
  2309. for (i = 0; i < 4; i++) {
  2310. if (ssid->wep.key[i] &&
  2311. hostapd_drv_set_key(ifname_wds, hapd, WPA_ALG_WEP, NULL, i,
  2312. i == ssid->wep.idx, NULL, 0,
  2313. ssid->wep.key[i], ssid->wep.len[i])) {
  2314. wpa_printf(MSG_WARNING,
  2315. "Could not set WEP keys for WDS interface; %s",
  2316. ifname_wds);
  2317. break;
  2318. }
  2319. }
  2320. }
  2321. static void handle_assoc_cb(struct hostapd_data *hapd,
  2322. const struct ieee80211_mgmt *mgmt,
  2323. size_t len, int reassoc, int ok)
  2324. {
  2325. u16 status;
  2326. struct sta_info *sta;
  2327. int new_assoc = 1;
  2328. sta = ap_get_sta(hapd, mgmt->da);
  2329. if (!sta) {
  2330. wpa_printf(MSG_INFO, "handle_assoc_cb: STA " MACSTR " not found",
  2331. MAC2STR(mgmt->da));
  2332. return;
  2333. }
  2334. if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_resp) :
  2335. sizeof(mgmt->u.assoc_resp))) {
  2336. wpa_printf(MSG_INFO,
  2337. "handle_assoc_cb(reassoc=%d) - too short payload (len=%lu)",
  2338. reassoc, (unsigned long) len);
  2339. hostapd_drv_sta_remove(hapd, sta->addr);
  2340. return;
  2341. }
  2342. if (reassoc)
  2343. status = le_to_host16(mgmt->u.reassoc_resp.status_code);
  2344. else
  2345. status = le_to_host16(mgmt->u.assoc_resp.status_code);
  2346. if (!ok) {
  2347. hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
  2348. HOSTAPD_LEVEL_DEBUG,
  2349. "did not acknowledge association response");
  2350. sta->flags &= ~WLAN_STA_ASSOC_REQ_OK;
  2351. /* The STA is added only in case of SUCCESS */
  2352. if (status == WLAN_STATUS_SUCCESS)
  2353. hostapd_drv_sta_remove(hapd, sta->addr);
  2354. return;
  2355. }
  2356. if (status != WLAN_STATUS_SUCCESS)
  2357. return;
  2358. /* Stop previous accounting session, if one is started, and allocate
  2359. * new session id for the new session. */
  2360. accounting_sta_stop(hapd, sta);
  2361. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  2362. HOSTAPD_LEVEL_INFO,
  2363. "associated (aid %d)",
  2364. sta->aid);
  2365. if (sta->flags & WLAN_STA_ASSOC)
  2366. new_assoc = 0;
  2367. sta->flags |= WLAN_STA_ASSOC;
  2368. sta->flags &= ~WLAN_STA_WNM_SLEEP_MODE;
  2369. if ((!hapd->conf->ieee802_1x && !hapd->conf->wpa && !hapd->conf->osen) ||
  2370. sta->auth_alg == WLAN_AUTH_FT) {
  2371. /*
  2372. * Open, static WEP, or FT protocol; no separate authorization
  2373. * step.
  2374. */
  2375. ap_sta_set_authorized(hapd, sta, 1);
  2376. }
  2377. if (reassoc)
  2378. mlme_reassociate_indication(hapd, sta);
  2379. else
  2380. mlme_associate_indication(hapd, sta);
  2381. #ifdef CONFIG_IEEE80211W
  2382. sta->sa_query_timed_out = 0;
  2383. #endif /* CONFIG_IEEE80211W */
  2384. if (sta->flags & WLAN_STA_WDS) {
  2385. int ret;
  2386. char ifname_wds[IFNAMSIZ + 1];
  2387. ret = hostapd_set_wds_sta(hapd, ifname_wds, sta->addr,
  2388. sta->aid, 1);
  2389. if (!ret)
  2390. hostapd_set_wds_encryption(hapd, sta, ifname_wds);
  2391. }
  2392. if (sta->eapol_sm == NULL) {
  2393. /*
  2394. * This STA does not use RADIUS server for EAP authentication,
  2395. * so bind it to the selected VLAN interface now, since the
  2396. * interface selection is not going to change anymore.
  2397. */
  2398. if (ap_sta_bind_vlan(hapd, sta) < 0)
  2399. return;
  2400. } else if (sta->vlan_id) {
  2401. /* VLAN ID already set (e.g., by PMKSA caching), so bind STA */
  2402. if (ap_sta_bind_vlan(hapd, sta) < 0)
  2403. return;
  2404. }
  2405. hostapd_set_sta_flags(hapd, sta);
  2406. if (sta->auth_alg == WLAN_AUTH_FT)
  2407. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC_FT);
  2408. else
  2409. wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
  2410. hapd->new_assoc_sta_cb(hapd, sta, !new_assoc);
  2411. ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
  2412. if (sta->pending_eapol_rx) {
  2413. struct os_reltime now, age;
  2414. os_get_reltime(&now);
  2415. os_reltime_sub(&now, &sta->pending_eapol_rx->rx_time, &age);
  2416. if (age.sec == 0 && age.usec < 200000) {
  2417. wpa_printf(MSG_DEBUG,
  2418. "Process pending EAPOL frame that was received from " MACSTR " just before association notification",
  2419. MAC2STR(sta->addr));
  2420. ieee802_1x_receive(
  2421. hapd, mgmt->da,
  2422. wpabuf_head(sta->pending_eapol_rx->buf),
  2423. wpabuf_len(sta->pending_eapol_rx->buf));
  2424. }
  2425. wpabuf_free(sta->pending_eapol_rx->buf);
  2426. os_free(sta->pending_eapol_rx);
  2427. sta->pending_eapol_rx = NULL;
  2428. }
  2429. }
  2430. static void handle_deauth_cb(struct hostapd_data *hapd,
  2431. const struct ieee80211_mgmt *mgmt,
  2432. size_t len, int ok)
  2433. {
  2434. struct sta_info *sta;
  2435. if (mgmt->da[0] & 0x01)
  2436. return;
  2437. sta = ap_get_sta(hapd, mgmt->da);
  2438. if (!sta) {
  2439. wpa_printf(MSG_DEBUG, "handle_deauth_cb: STA " MACSTR
  2440. " not found", MAC2STR(mgmt->da));
  2441. return;
  2442. }
  2443. if (ok)
  2444. wpa_printf(MSG_DEBUG, "STA " MACSTR " acknowledged deauth",
  2445. MAC2STR(sta->addr));
  2446. else
  2447. wpa_printf(MSG_DEBUG, "STA " MACSTR " did not acknowledge "
  2448. "deauth", MAC2STR(sta->addr));
  2449. ap_sta_deauth_cb(hapd, sta);
  2450. }
  2451. static void handle_disassoc_cb(struct hostapd_data *hapd,
  2452. const struct ieee80211_mgmt *mgmt,
  2453. size_t len, int ok)
  2454. {
  2455. struct sta_info *sta;
  2456. if (mgmt->da[0] & 0x01)
  2457. return;
  2458. sta = ap_get_sta(hapd, mgmt->da);
  2459. if (!sta) {
  2460. wpa_printf(MSG_DEBUG, "handle_disassoc_cb: STA " MACSTR
  2461. " not found", MAC2STR(mgmt->da));
  2462. return;
  2463. }
  2464. if (ok)
  2465. wpa_printf(MSG_DEBUG, "STA " MACSTR " acknowledged disassoc",
  2466. MAC2STR(sta->addr));
  2467. else
  2468. wpa_printf(MSG_DEBUG, "STA " MACSTR " did not acknowledge "
  2469. "disassoc", MAC2STR(sta->addr));
  2470. ap_sta_disassoc_cb(hapd, sta);
  2471. }
  2472. /**
  2473. * ieee802_11_mgmt_cb - Process management frame TX status callback
  2474. * @hapd: hostapd BSS data structure (the BSS from which the management frame
  2475. * was sent from)
  2476. * @buf: management frame data (starting from IEEE 802.11 header)
  2477. * @len: length of frame data in octets
  2478. * @stype: management frame subtype from frame control field
  2479. * @ok: Whether the frame was ACK'ed
  2480. */
  2481. void ieee802_11_mgmt_cb(struct hostapd_data *hapd, const u8 *buf, size_t len,
  2482. u16 stype, int ok)
  2483. {
  2484. const struct ieee80211_mgmt *mgmt;
  2485. mgmt = (const struct ieee80211_mgmt *) buf;
  2486. #ifdef CONFIG_TESTING_OPTIONS
  2487. if (hapd->ext_mgmt_frame_handling) {
  2488. wpa_msg(hapd->msg_ctx, MSG_INFO, "MGMT-TX-STATUS stype=%u ok=%d",
  2489. stype, ok);
  2490. return;
  2491. }
  2492. #endif /* CONFIG_TESTING_OPTIONS */
  2493. switch (stype) {
  2494. case WLAN_FC_STYPE_AUTH:
  2495. wpa_printf(MSG_DEBUG, "mgmt::auth cb");
  2496. handle_auth_cb(hapd, mgmt, len, ok);
  2497. break;
  2498. case WLAN_FC_STYPE_ASSOC_RESP:
  2499. wpa_printf(MSG_DEBUG, "mgmt::assoc_resp cb");
  2500. handle_assoc_cb(hapd, mgmt, len, 0, ok);
  2501. break;
  2502. case WLAN_FC_STYPE_REASSOC_RESP:
  2503. wpa_printf(MSG_DEBUG, "mgmt::reassoc_resp cb");
  2504. handle_assoc_cb(hapd, mgmt, len, 1, ok);
  2505. break;
  2506. case WLAN_FC_STYPE_PROBE_RESP:
  2507. wpa_printf(MSG_EXCESSIVE, "mgmt::proberesp cb ok=%d", ok);
  2508. break;
  2509. case WLAN_FC_STYPE_DEAUTH:
  2510. wpa_printf(MSG_DEBUG, "mgmt::deauth cb");
  2511. handle_deauth_cb(hapd, mgmt, len, ok);
  2512. break;
  2513. case WLAN_FC_STYPE_DISASSOC:
  2514. wpa_printf(MSG_DEBUG, "mgmt::disassoc cb");
  2515. handle_disassoc_cb(hapd, mgmt, len, ok);
  2516. break;
  2517. case WLAN_FC_STYPE_ACTION:
  2518. wpa_printf(MSG_DEBUG, "mgmt::action cb ok=%d", ok);
  2519. break;
  2520. default:
  2521. wpa_printf(MSG_INFO, "unknown mgmt cb frame subtype %d", stype);
  2522. break;
  2523. }
  2524. }
  2525. int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
  2526. {
  2527. /* TODO */
  2528. return 0;
  2529. }
  2530. int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
  2531. char *buf, size_t buflen)
  2532. {
  2533. /* TODO */
  2534. return 0;
  2535. }
  2536. void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
  2537. const u8 *buf, size_t len, int ack)
  2538. {
  2539. struct sta_info *sta;
  2540. struct hostapd_iface *iface = hapd->iface;
  2541. sta = ap_get_sta(hapd, addr);
  2542. if (sta == NULL && iface->num_bss > 1) {
  2543. size_t j;
  2544. for (j = 0; j < iface->num_bss; j++) {
  2545. hapd = iface->bss[j];
  2546. sta = ap_get_sta(hapd, addr);
  2547. if (sta)
  2548. break;
  2549. }
  2550. }
  2551. if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC))
  2552. return;
  2553. if (sta->flags & WLAN_STA_PENDING_POLL) {
  2554. wpa_printf(MSG_DEBUG, "STA " MACSTR " %s pending "
  2555. "activity poll", MAC2STR(sta->addr),
  2556. ack ? "ACKed" : "did not ACK");
  2557. if (ack)
  2558. sta->flags &= ~WLAN_STA_PENDING_POLL;
  2559. }
  2560. ieee802_1x_tx_status(hapd, sta, buf, len, ack);
  2561. }
  2562. void hostapd_eapol_tx_status(struct hostapd_data *hapd, const u8 *dst,
  2563. const u8 *data, size_t len, int ack)
  2564. {
  2565. struct sta_info *sta;
  2566. struct hostapd_iface *iface = hapd->iface;
  2567. sta = ap_get_sta(hapd, dst);
  2568. if (sta == NULL && iface->num_bss > 1) {
  2569. size_t j;
  2570. for (j = 0; j < iface->num_bss; j++) {
  2571. hapd = iface->bss[j];
  2572. sta = ap_get_sta(hapd, dst);
  2573. if (sta)
  2574. break;
  2575. }
  2576. }
  2577. if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC)) {
  2578. wpa_printf(MSG_DEBUG, "Ignore TX status for Data frame to STA "
  2579. MACSTR " that is not currently associated",
  2580. MAC2STR(dst));
  2581. return;
  2582. }
  2583. ieee802_1x_eapol_tx_status(hapd, sta, data, len, ack);
  2584. }
  2585. void hostapd_client_poll_ok(struct hostapd_data *hapd, const u8 *addr)
  2586. {
  2587. struct sta_info *sta;
  2588. struct hostapd_iface *iface = hapd->iface;
  2589. sta = ap_get_sta(hapd, addr);
  2590. if (sta == NULL && iface->num_bss > 1) {
  2591. size_t j;
  2592. for (j = 0; j < iface->num_bss; j++) {
  2593. hapd = iface->bss[j];
  2594. sta = ap_get_sta(hapd, addr);
  2595. if (sta)
  2596. break;
  2597. }
  2598. }
  2599. if (sta == NULL)
  2600. return;
  2601. if (!(sta->flags & WLAN_STA_PENDING_POLL))
  2602. return;
  2603. wpa_printf(MSG_DEBUG, "STA " MACSTR " ACKed pending "
  2604. "activity poll", MAC2STR(sta->addr));
  2605. sta->flags &= ~WLAN_STA_PENDING_POLL;
  2606. }
  2607. void ieee802_11_rx_from_unknown(struct hostapd_data *hapd, const u8 *src,
  2608. int wds)
  2609. {
  2610. struct sta_info *sta;
  2611. sta = ap_get_sta(hapd, src);
  2612. if (sta && (sta->flags & WLAN_STA_ASSOC)) {
  2613. if (!hapd->conf->wds_sta)
  2614. return;
  2615. if (wds && !(sta->flags & WLAN_STA_WDS)) {
  2616. int ret;
  2617. char ifname_wds[IFNAMSIZ + 1];
  2618. wpa_printf(MSG_DEBUG, "Enable 4-address WDS mode for "
  2619. "STA " MACSTR " (aid %u)",
  2620. MAC2STR(sta->addr), sta->aid);
  2621. sta->flags |= WLAN_STA_WDS;
  2622. ret = hostapd_set_wds_sta(hapd, ifname_wds,
  2623. sta->addr, sta->aid, 1);
  2624. if (!ret)
  2625. hostapd_set_wds_encryption(hapd, sta,
  2626. ifname_wds);
  2627. }
  2628. return;
  2629. }
  2630. wpa_printf(MSG_DEBUG, "Data/PS-poll frame from not associated STA "
  2631. MACSTR, MAC2STR(src));
  2632. if (src[0] & 0x01) {
  2633. /* Broadcast bit set in SA?! Ignore the frame silently. */
  2634. return;
  2635. }
  2636. if (sta && (sta->flags & WLAN_STA_ASSOC_REQ_OK)) {
  2637. wpa_printf(MSG_DEBUG, "Association Response to the STA has "
  2638. "already been sent, but no TX status yet known - "
  2639. "ignore Class 3 frame issue with " MACSTR,
  2640. MAC2STR(src));
  2641. return;
  2642. }
  2643. if (sta && (sta->flags & WLAN_STA_AUTH))
  2644. hostapd_drv_sta_disassoc(
  2645. hapd, src,
  2646. WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
  2647. else
  2648. hostapd_drv_sta_deauth(
  2649. hapd, src,
  2650. WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
  2651. }
  2652. #endif /* CONFIG_NATIVE_WINDOWS */