mlme.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183
  1. /*
  2. * WPA Supplicant - Client mode MLME
  3. * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2004, Instant802 Networks, Inc.
  5. * Copyright (c) 2005-2006, Devicescape Software, Inc.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Alternatively, this software may be distributed under the terms of BSD
  12. * license.
  13. *
  14. * See README and COPYING for more details.
  15. */
  16. #include "includes.h"
  17. #include "common.h"
  18. #include "eloop.h"
  19. #include "config_ssid.h"
  20. #include "wpa_supplicant_i.h"
  21. #include "driver_i.h"
  22. #include "wpa.h"
  23. #include "ieee802_11_defs.h"
  24. #include "ieee802_11_common.h"
  25. #include "mlme.h"
  26. /* Timeouts and intervals in milliseconds */
  27. #define IEEE80211_AUTH_TIMEOUT (200)
  28. #define IEEE80211_AUTH_MAX_TRIES 3
  29. #define IEEE80211_ASSOC_TIMEOUT (200)
  30. #define IEEE80211_ASSOC_MAX_TRIES 3
  31. #define IEEE80211_MONITORING_INTERVAL (2000)
  32. #define IEEE80211_PROBE_INTERVAL (60000)
  33. #define IEEE80211_RETRY_AUTH_INTERVAL (1000)
  34. #define IEEE80211_SCAN_INTERVAL (2000)
  35. #define IEEE80211_SCAN_INTERVAL_SLOW (15000)
  36. #define IEEE80211_IBSS_JOIN_TIMEOUT (20000)
  37. #define IEEE80211_PROBE_DELAY (33)
  38. #define IEEE80211_CHANNEL_TIME (33)
  39. #define IEEE80211_PASSIVE_CHANNEL_TIME (200)
  40. #define IEEE80211_SCAN_RESULT_EXPIRE (10000)
  41. #define IEEE80211_IBSS_MERGE_INTERVAL (30000)
  42. #define IEEE80211_IBSS_INACTIVITY_LIMIT (60000)
  43. #define IEEE80211_IBSS_MAX_STA_ENTRIES 128
  44. #define IEEE80211_FC(type, stype) host_to_le16((type << 2) | (stype << 4))
  45. struct ieee80211_sta_bss {
  46. struct ieee80211_sta_bss *next;
  47. struct ieee80211_sta_bss *hnext;
  48. u8 bssid[ETH_ALEN];
  49. u8 ssid[MAX_SSID_LEN];
  50. size_t ssid_len;
  51. u16 capability; /* host byte order */
  52. int hw_mode;
  53. int channel;
  54. int freq;
  55. int rssi;
  56. u8 *ie;
  57. size_t ie_len;
  58. u8 *wpa_ie;
  59. size_t wpa_ie_len;
  60. u8 *rsn_ie;
  61. size_t rsn_ie_len;
  62. u8 *wmm_ie;
  63. size_t wmm_ie_len;
  64. u8 *mdie;
  65. size_t mdie_len;
  66. #define IEEE80211_MAX_SUPP_RATES 32
  67. u8 supp_rates[IEEE80211_MAX_SUPP_RATES];
  68. size_t supp_rates_len;
  69. int beacon_int;
  70. u64 timestamp;
  71. int probe_resp;
  72. struct os_time last_update;
  73. };
  74. static void ieee80211_send_probe_req(struct wpa_supplicant *wpa_s,
  75. const u8 *dst,
  76. const u8 *ssid, size_t ssid_len);
  77. static struct ieee80211_sta_bss *
  78. ieee80211_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid);
  79. static int ieee80211_sta_find_ibss(struct wpa_supplicant *wpa_s);
  80. static int ieee80211_sta_wep_configured(struct wpa_supplicant *wpa_s);
  81. static void ieee80211_sta_timer(void *eloop_ctx, void *timeout_ctx);
  82. static void ieee80211_sta_scan_timer(void *eloop_ctx, void *timeout_ctx);
  83. static void ieee80211_build_tspec(struct wpabuf *buf);
  84. static int ieee80211_sta_set_channel(struct wpa_supplicant *wpa_s,
  85. hostapd_hw_mode phymode, int chan,
  86. int freq)
  87. {
  88. size_t i;
  89. struct hostapd_hw_modes *mode;
  90. for (i = 0; i < wpa_s->mlme.num_modes; i++) {
  91. mode = &wpa_s->mlme.modes[i];
  92. if (mode->mode == phymode) {
  93. wpa_s->mlme.curr_rates = mode->rates;
  94. wpa_s->mlme.num_curr_rates = mode->num_rates;
  95. break;
  96. }
  97. }
  98. return wpa_drv_set_channel(wpa_s, phymode, chan, freq);
  99. }
  100. static int ecw2cw(int ecw)
  101. {
  102. int cw = 1;
  103. while (ecw > 0) {
  104. cw <<= 1;
  105. ecw--;
  106. }
  107. return cw - 1;
  108. }
  109. static void ieee80211_sta_wmm_params(struct wpa_supplicant *wpa_s,
  110. u8 *wmm_param, size_t wmm_param_len)
  111. {
  112. size_t left;
  113. int count;
  114. u8 *pos;
  115. u8 wmm_acm;
  116. if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
  117. return;
  118. count = wmm_param[6] & 0x0f;
  119. if (count == wpa_s->mlme.wmm_last_param_set)
  120. return;
  121. wpa_s->mlme.wmm_last_param_set = count;
  122. pos = wmm_param + 8;
  123. left = wmm_param_len - 8;
  124. wmm_acm = 0;
  125. for (; left >= 4; left -= 4, pos += 4) {
  126. int aci = (pos[0] >> 5) & 0x03;
  127. int acm = (pos[0] >> 4) & 0x01;
  128. int aifs, cw_max, cw_min, burst_time;
  129. switch (aci) {
  130. case 1: /* AC_BK */
  131. if (acm)
  132. wmm_acm |= BIT(1) | BIT(2); /* BK/- */
  133. break;
  134. case 2: /* AC_VI */
  135. if (acm)
  136. wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
  137. break;
  138. case 3: /* AC_VO */
  139. if (acm)
  140. wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
  141. break;
  142. case 0: /* AC_BE */
  143. default:
  144. if (acm)
  145. wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
  146. break;
  147. }
  148. aifs = pos[0] & 0x0f;
  149. cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
  150. cw_min = ecw2cw(pos[1] & 0x0f);
  151. /* TXOP is in units of 32 usec; burst_time in 0.1 ms */
  152. burst_time = (pos[2] | (pos[3] << 8)) * 32 / 100;
  153. wpa_printf(MSG_DEBUG, "MLME: WMM aci=%d acm=%d aifs=%d "
  154. "cWmin=%d cWmax=%d burst=%d",
  155. aci, acm, aifs, cw_min, cw_max, burst_time);
  156. /* TODO: driver configuration */
  157. }
  158. }
  159. static void ieee80211_set_associated(struct wpa_supplicant *wpa_s, int assoc)
  160. {
  161. if (wpa_s->mlme.associated == assoc && !assoc)
  162. return;
  163. wpa_s->mlme.associated = assoc;
  164. if (assoc) {
  165. union wpa_event_data data;
  166. os_memset(&data, 0, sizeof(data));
  167. wpa_s->mlme.prev_bssid_set = 1;
  168. os_memcpy(wpa_s->mlme.prev_bssid, wpa_s->bssid, ETH_ALEN);
  169. data.assoc_info.req_ies = wpa_s->mlme.assocreq_ies;
  170. data.assoc_info.req_ies_len = wpa_s->mlme.assocreq_ies_len;
  171. data.assoc_info.resp_ies = wpa_s->mlme.assocresp_ies;
  172. data.assoc_info.resp_ies_len = wpa_s->mlme.assocresp_ies_len;
  173. wpa_supplicant_event(wpa_s, EVENT_ASSOC, &data);
  174. } else {
  175. wpa_supplicant_event(wpa_s, EVENT_DISASSOC, NULL);
  176. }
  177. os_get_time(&wpa_s->mlme.last_probe);
  178. }
  179. static int ieee80211_sta_tx(struct wpa_supplicant *wpa_s, const u8 *buf,
  180. size_t len)
  181. {
  182. return wpa_drv_send_mlme(wpa_s, buf, len);
  183. }
  184. static void ieee80211_send_auth(struct wpa_supplicant *wpa_s,
  185. int transaction, u8 *extra, size_t extra_len,
  186. int encrypt)
  187. {
  188. u8 *buf;
  189. size_t len;
  190. struct ieee80211_mgmt *mgmt;
  191. buf = os_malloc(sizeof(*mgmt) + 6 + extra_len);
  192. if (buf == NULL) {
  193. wpa_printf(MSG_DEBUG, "MLME: failed to allocate buffer for "
  194. "auth frame");
  195. return;
  196. }
  197. mgmt = (struct ieee80211_mgmt *) buf;
  198. len = 24 + 6;
  199. os_memset(mgmt, 0, 24 + 6);
  200. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  201. WLAN_FC_STYPE_AUTH);
  202. if (encrypt)
  203. mgmt->frame_control |= host_to_le16(WLAN_FC_ISWEP);
  204. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  205. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  206. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  207. mgmt->u.auth.auth_alg = host_to_le16(wpa_s->mlme.auth_alg);
  208. mgmt->u.auth.auth_transaction = host_to_le16(transaction);
  209. wpa_s->mlme.auth_transaction = transaction + 1;
  210. mgmt->u.auth.status_code = host_to_le16(0);
  211. if (extra) {
  212. os_memcpy(buf + len, extra, extra_len);
  213. len += extra_len;
  214. }
  215. ieee80211_sta_tx(wpa_s, buf, len);
  216. os_free(buf);
  217. }
  218. static void ieee80211_reschedule_timer(struct wpa_supplicant *wpa_s, int ms)
  219. {
  220. eloop_cancel_timeout(ieee80211_sta_timer, wpa_s, NULL);
  221. eloop_register_timeout(ms / 1000, 1000 * (ms % 1000),
  222. ieee80211_sta_timer, wpa_s, NULL);
  223. }
  224. static void ieee80211_authenticate(struct wpa_supplicant *wpa_s)
  225. {
  226. u8 *extra;
  227. size_t extra_len;
  228. wpa_s->mlme.auth_tries++;
  229. if (wpa_s->mlme.auth_tries > IEEE80211_AUTH_MAX_TRIES) {
  230. wpa_printf(MSG_DEBUG, "MLME: authentication with AP " MACSTR
  231. " timed out", MAC2STR(wpa_s->bssid));
  232. return;
  233. }
  234. wpa_s->mlme.state = IEEE80211_AUTHENTICATE;
  235. wpa_printf(MSG_DEBUG, "MLME: authenticate with AP " MACSTR,
  236. MAC2STR(wpa_s->bssid));
  237. extra = NULL;
  238. extra_len = 0;
  239. #ifdef CONFIG_IEEE80211R
  240. if ((wpa_s->mlme.key_mgmt == KEY_MGMT_FT_802_1X ||
  241. wpa_s->mlme.key_mgmt == KEY_MGMT_FT_PSK) &&
  242. wpa_s->mlme.ft_ies) {
  243. struct ieee80211_sta_bss *bss;
  244. struct rsn_mdie *mdie = NULL;
  245. bss = ieee80211_bss_get(wpa_s, wpa_s->bssid);
  246. if (bss && bss->mdie_len >= 2 + sizeof(*mdie))
  247. mdie = (struct rsn_mdie *) (bss->mdie + 2);
  248. if (mdie &&
  249. os_memcmp(mdie->mobility_domain, wpa_s->mlme.current_md,
  250. MOBILITY_DOMAIN_ID_LEN) == 0) {
  251. wpa_printf(MSG_DEBUG, "MLME: Trying to use FT "
  252. "over-the-air");
  253. wpa_s->mlme.auth_alg = WLAN_AUTH_FT;
  254. extra = wpa_s->mlme.ft_ies;
  255. extra_len = wpa_s->mlme.ft_ies_len;
  256. }
  257. }
  258. #endif /* CONFIG_IEEE80211R */
  259. ieee80211_send_auth(wpa_s, 1, extra, extra_len, 0);
  260. ieee80211_reschedule_timer(wpa_s, IEEE80211_AUTH_TIMEOUT);
  261. }
  262. static void ieee80211_send_assoc(struct wpa_supplicant *wpa_s)
  263. {
  264. struct ieee80211_mgmt *mgmt;
  265. u8 *pos, *ies, *buf;
  266. int i, len;
  267. u16 capab;
  268. struct ieee80211_sta_bss *bss;
  269. int wmm = 0;
  270. size_t blen, buflen;
  271. if (wpa_s->mlme.curr_rates == NULL) {
  272. wpa_printf(MSG_DEBUG, "MLME: curr_rates not set for assoc");
  273. return;
  274. }
  275. buflen = sizeof(*mgmt) + 200 + wpa_s->mlme.extra_ie_len +
  276. wpa_s->mlme.ssid_len;
  277. #ifdef CONFIG_IEEE80211R
  278. if (wpa_s->mlme.ft_ies)
  279. buflen += wpa_s->mlme.ft_ies_len;
  280. #endif /* CONFIG_IEEE80211R */
  281. buf = os_malloc(buflen);
  282. if (buf == NULL) {
  283. wpa_printf(MSG_DEBUG, "MLME: failed to allocate buffer for "
  284. "assoc frame");
  285. return;
  286. }
  287. blen = 0;
  288. capab = wpa_s->mlme.capab;
  289. if (wpa_s->mlme.phymode == HOSTAPD_MODE_IEEE80211G) {
  290. capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME |
  291. WLAN_CAPABILITY_SHORT_PREAMBLE;
  292. }
  293. bss = ieee80211_bss_get(wpa_s, wpa_s->bssid);
  294. if (bss) {
  295. if (bss->capability & WLAN_CAPABILITY_PRIVACY)
  296. capab |= WLAN_CAPABILITY_PRIVACY;
  297. if (bss->wmm_ie) {
  298. wmm = 1;
  299. }
  300. }
  301. mgmt = (struct ieee80211_mgmt *) buf;
  302. blen += 24;
  303. os_memset(mgmt, 0, 24);
  304. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  305. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  306. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  307. if (wpa_s->mlme.prev_bssid_set) {
  308. blen += 10;
  309. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  310. WLAN_FC_STYPE_REASSOC_REQ);
  311. mgmt->u.reassoc_req.capab_info = host_to_le16(capab);
  312. mgmt->u.reassoc_req.listen_interval = host_to_le16(1);
  313. os_memcpy(mgmt->u.reassoc_req.current_ap,
  314. wpa_s->mlme.prev_bssid,
  315. ETH_ALEN);
  316. } else {
  317. blen += 4;
  318. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  319. WLAN_FC_STYPE_ASSOC_REQ);
  320. mgmt->u.assoc_req.capab_info = host_to_le16(capab);
  321. mgmt->u.assoc_req.listen_interval = host_to_le16(1);
  322. }
  323. /* SSID */
  324. ies = pos = buf + blen;
  325. blen += 2 + wpa_s->mlme.ssid_len;
  326. *pos++ = WLAN_EID_SSID;
  327. *pos++ = wpa_s->mlme.ssid_len;
  328. os_memcpy(pos, wpa_s->mlme.ssid, wpa_s->mlme.ssid_len);
  329. len = wpa_s->mlme.num_curr_rates;
  330. if (len > 8)
  331. len = 8;
  332. pos = buf + blen;
  333. blen += len + 2;
  334. *pos++ = WLAN_EID_SUPP_RATES;
  335. *pos++ = len;
  336. for (i = 0; i < len; i++) {
  337. int rate = wpa_s->mlme.curr_rates[i].rate;
  338. *pos++ = (u8) (rate / 5);
  339. }
  340. if (wpa_s->mlme.num_curr_rates > len) {
  341. pos = buf + blen;
  342. blen += wpa_s->mlme.num_curr_rates - len + 2;
  343. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  344. *pos++ = wpa_s->mlme.num_curr_rates - len;
  345. for (i = len; i < wpa_s->mlme.num_curr_rates; i++) {
  346. int rate = wpa_s->mlme.curr_rates[i].rate;
  347. *pos++ = (u8) (rate / 5);
  348. }
  349. }
  350. if (wpa_s->mlme.extra_ie && wpa_s->mlme.auth_alg != WLAN_AUTH_FT) {
  351. pos = buf + blen;
  352. blen += wpa_s->mlme.extra_ie_len;
  353. os_memcpy(pos, wpa_s->mlme.extra_ie, wpa_s->mlme.extra_ie_len);
  354. }
  355. #ifdef CONFIG_IEEE80211R
  356. if ((wpa_s->mlme.key_mgmt == KEY_MGMT_FT_802_1X ||
  357. wpa_s->mlme.key_mgmt == KEY_MGMT_FT_PSK) &&
  358. wpa_s->mlme.auth_alg != WLAN_AUTH_FT &&
  359. bss && bss->mdie &&
  360. bss->mdie_len >= 2 + sizeof(struct rsn_mdie) &&
  361. bss->mdie[1] >= sizeof(struct rsn_mdie)) {
  362. pos = buf + blen;
  363. blen += 2 + sizeof(struct rsn_mdie);
  364. *pos++ = WLAN_EID_MOBILITY_DOMAIN;
  365. *pos++ = sizeof(struct rsn_mdie);
  366. os_memcpy(pos, bss->mdie + 2, MOBILITY_DOMAIN_ID_LEN);
  367. pos += MOBILITY_DOMAIN_ID_LEN;
  368. *pos++ = 0; /* FIX: copy from the target AP's MDIE */
  369. }
  370. if ((wpa_s->mlme.key_mgmt == KEY_MGMT_FT_802_1X ||
  371. wpa_s->mlme.key_mgmt == KEY_MGMT_FT_PSK) &&
  372. wpa_s->mlme.auth_alg == WLAN_AUTH_FT && wpa_s->mlme.ft_ies) {
  373. pos = buf + blen;
  374. os_memcpy(pos, wpa_s->mlme.ft_ies, wpa_s->mlme.ft_ies_len);
  375. pos += wpa_s->mlme.ft_ies_len;
  376. blen += wpa_s->mlme.ft_ies_len;
  377. }
  378. #endif /* CONFIG_IEEE80211R */
  379. if (wmm && wpa_s->mlme.wmm_enabled) {
  380. pos = buf + blen;
  381. blen += 9;
  382. *pos++ = WLAN_EID_VENDOR_SPECIFIC;
  383. *pos++ = 7; /* len */
  384. *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
  385. *pos++ = 0x50;
  386. *pos++ = 0xf2;
  387. *pos++ = 2; /* WMM */
  388. *pos++ = 0; /* WMM info */
  389. *pos++ = 1; /* WMM ver */
  390. *pos++ = 0;
  391. }
  392. os_free(wpa_s->mlme.assocreq_ies);
  393. wpa_s->mlme.assocreq_ies_len = (buf + blen) - ies;
  394. wpa_s->mlme.assocreq_ies = os_malloc(wpa_s->mlme.assocreq_ies_len);
  395. if (wpa_s->mlme.assocreq_ies) {
  396. os_memcpy(wpa_s->mlme.assocreq_ies, ies,
  397. wpa_s->mlme.assocreq_ies_len);
  398. }
  399. ieee80211_sta_tx(wpa_s, buf, blen);
  400. os_free(buf);
  401. }
  402. static void ieee80211_send_deauth(struct wpa_supplicant *wpa_s, u16 reason)
  403. {
  404. u8 *buf;
  405. size_t len;
  406. struct ieee80211_mgmt *mgmt;
  407. buf = os_zalloc(sizeof(*mgmt));
  408. if (buf == NULL) {
  409. wpa_printf(MSG_DEBUG, "MLME: failed to allocate buffer for "
  410. "deauth frame");
  411. return;
  412. }
  413. mgmt = (struct ieee80211_mgmt *) buf;
  414. len = 24;
  415. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  416. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  417. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  418. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  419. WLAN_FC_STYPE_DEAUTH);
  420. len += 2;
  421. mgmt->u.deauth.reason_code = host_to_le16(reason);
  422. ieee80211_sta_tx(wpa_s, buf, len);
  423. os_free(buf);
  424. }
  425. static void ieee80211_send_disassoc(struct wpa_supplicant *wpa_s, u16 reason)
  426. {
  427. u8 *buf;
  428. size_t len;
  429. struct ieee80211_mgmt *mgmt;
  430. buf = os_zalloc(sizeof(*mgmt));
  431. if (buf == NULL) {
  432. wpa_printf(MSG_DEBUG, "MLME: failed to allocate buffer for "
  433. "disassoc frame");
  434. return;
  435. }
  436. mgmt = (struct ieee80211_mgmt *) buf;
  437. len = 24;
  438. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  439. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  440. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  441. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  442. WLAN_FC_STYPE_DISASSOC);
  443. len += 2;
  444. mgmt->u.disassoc.reason_code = host_to_le16(reason);
  445. ieee80211_sta_tx(wpa_s, buf, len);
  446. os_free(buf);
  447. }
  448. static int ieee80211_privacy_mismatch(struct wpa_supplicant *wpa_s)
  449. {
  450. struct ieee80211_sta_bss *bss;
  451. int res = 0;
  452. if (wpa_s->mlme.mixed_cell ||
  453. wpa_s->mlme.key_mgmt != KEY_MGMT_NONE)
  454. return 0;
  455. bss = ieee80211_bss_get(wpa_s, wpa_s->bssid);
  456. if (bss == NULL)
  457. return 0;
  458. if (ieee80211_sta_wep_configured(wpa_s) !=
  459. !!(bss->capability & WLAN_CAPABILITY_PRIVACY))
  460. res = 1;
  461. return res;
  462. }
  463. static void ieee80211_associate(struct wpa_supplicant *wpa_s)
  464. {
  465. wpa_s->mlme.assoc_tries++;
  466. if (wpa_s->mlme.assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
  467. wpa_printf(MSG_DEBUG, "MLME: association with AP " MACSTR
  468. " timed out", MAC2STR(wpa_s->bssid));
  469. return;
  470. }
  471. wpa_s->mlme.state = IEEE80211_ASSOCIATE;
  472. wpa_printf(MSG_DEBUG, "MLME: associate with AP " MACSTR,
  473. MAC2STR(wpa_s->bssid));
  474. if (ieee80211_privacy_mismatch(wpa_s)) {
  475. wpa_printf(MSG_DEBUG, "MLME: mismatch in privacy "
  476. "configuration and mixed-cell disabled - abort "
  477. "association");
  478. return;
  479. }
  480. ieee80211_send_assoc(wpa_s);
  481. ieee80211_reschedule_timer(wpa_s, IEEE80211_ASSOC_TIMEOUT);
  482. }
  483. static void ieee80211_associated(struct wpa_supplicant *wpa_s)
  484. {
  485. int disassoc;
  486. /* TODO: start monitoring current AP signal quality and number of
  487. * missed beacons. Scan other channels every now and then and search
  488. * for better APs. */
  489. /* TODO: remove expired BSSes */
  490. wpa_s->mlme.state = IEEE80211_ASSOCIATED;
  491. #if 0 /* FIX */
  492. sta = sta_info_get(local, wpa_s->bssid);
  493. if (sta == NULL) {
  494. wpa_printf(MSG_DEBUG "MLME: No STA entry for own AP " MACSTR,
  495. MAC2STR(wpa_s->bssid));
  496. disassoc = 1;
  497. } else {
  498. disassoc = 0;
  499. if (time_after(jiffies,
  500. sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
  501. if (wpa_s->mlme.probereq_poll) {
  502. wpa_printf(MSG_DEBUG "MLME: No ProbeResp from "
  503. "current AP " MACSTR " - assume "
  504. "out of range",
  505. MAC2STR(wpa_s->bssid));
  506. disassoc = 1;
  507. } else {
  508. ieee80211_send_probe_req(
  509. wpa_s->bssid,
  510. wpa_s->mlme.scan_ssid,
  511. wpa_s->mlme.scan_ssid_len);
  512. wpa_s->mlme.probereq_poll = 1;
  513. }
  514. } else {
  515. wpa_s->mlme.probereq_poll = 0;
  516. if (time_after(jiffies, wpa_s->mlme.last_probe +
  517. IEEE80211_PROBE_INTERVAL)) {
  518. wpa_s->mlme.last_probe = jiffies;
  519. ieee80211_send_probe_req(wpa_s->bssid,
  520. wpa_s->mlme.ssid,
  521. wpa_s->mlme.ssid_len);
  522. }
  523. }
  524. sta_info_release(local, sta);
  525. }
  526. #else
  527. disassoc = 0;
  528. #endif
  529. if (disassoc) {
  530. wpa_supplicant_event(wpa_s, EVENT_DISASSOC, NULL);
  531. ieee80211_reschedule_timer(wpa_s,
  532. IEEE80211_MONITORING_INTERVAL +
  533. 30000);
  534. } else {
  535. ieee80211_reschedule_timer(wpa_s,
  536. IEEE80211_MONITORING_INTERVAL);
  537. }
  538. }
  539. static void ieee80211_send_probe_req(struct wpa_supplicant *wpa_s,
  540. const u8 *dst,
  541. const u8 *ssid, size_t ssid_len)
  542. {
  543. u8 *buf;
  544. size_t len;
  545. struct ieee80211_mgmt *mgmt;
  546. u8 *pos, *supp_rates;
  547. u8 *esupp_rates = NULL;
  548. int i;
  549. buf = os_malloc(sizeof(*mgmt) + 200 + wpa_s->mlme.extra_probe_ie_len);
  550. if (buf == NULL) {
  551. wpa_printf(MSG_DEBUG, "MLME: failed to allocate buffer for "
  552. "probe request");
  553. return;
  554. }
  555. mgmt = (struct ieee80211_mgmt *) buf;
  556. len = 24;
  557. os_memset(mgmt, 0, 24);
  558. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  559. WLAN_FC_STYPE_PROBE_REQ);
  560. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  561. if (dst) {
  562. os_memcpy(mgmt->da, dst, ETH_ALEN);
  563. os_memcpy(mgmt->bssid, dst, ETH_ALEN);
  564. } else {
  565. os_memset(mgmt->da, 0xff, ETH_ALEN);
  566. os_memset(mgmt->bssid, 0xff, ETH_ALEN);
  567. }
  568. pos = buf + len;
  569. len += 2 + ssid_len;
  570. *pos++ = WLAN_EID_SSID;
  571. *pos++ = ssid_len;
  572. os_memcpy(pos, ssid, ssid_len);
  573. supp_rates = buf + len;
  574. len += 2;
  575. supp_rates[0] = WLAN_EID_SUPP_RATES;
  576. supp_rates[1] = 0;
  577. for (i = 0; i < wpa_s->mlme.num_curr_rates; i++) {
  578. struct hostapd_rate_data *rate = &wpa_s->mlme.curr_rates[i];
  579. if (esupp_rates) {
  580. pos = buf + len;
  581. len++;
  582. esupp_rates[1]++;
  583. } else if (supp_rates[1] == 8) {
  584. esupp_rates = pos;
  585. esupp_rates[0] = WLAN_EID_EXT_SUPP_RATES;
  586. esupp_rates[1] = 1;
  587. pos = &esupp_rates[2];
  588. len += 3;
  589. } else {
  590. pos = buf + len;
  591. len++;
  592. supp_rates[1]++;
  593. }
  594. *pos++ = rate->rate / 5;
  595. }
  596. if (wpa_s->mlme.extra_probe_ie) {
  597. os_memcpy(pos, wpa_s->mlme.extra_probe_ie,
  598. wpa_s->mlme.extra_probe_ie_len);
  599. len += wpa_s->mlme.extra_probe_ie_len;
  600. }
  601. ieee80211_sta_tx(wpa_s, buf, len);
  602. os_free(buf);
  603. }
  604. static int ieee80211_sta_wep_configured(struct wpa_supplicant *wpa_s)
  605. {
  606. #if 0 /* FIX */
  607. if (sdata == NULL || sdata->default_key == NULL ||
  608. sdata->default_key->alg != ALG_WEP)
  609. return 0;
  610. return 1;
  611. #else
  612. return 0;
  613. #endif
  614. }
  615. static void ieee80211_auth_completed(struct wpa_supplicant *wpa_s)
  616. {
  617. wpa_printf(MSG_DEBUG, "MLME: authenticated");
  618. wpa_s->mlme.authenticated = 1;
  619. ieee80211_associate(wpa_s);
  620. }
  621. static void ieee80211_auth_challenge(struct wpa_supplicant *wpa_s,
  622. struct ieee80211_mgmt *mgmt,
  623. size_t len,
  624. struct ieee80211_rx_status *rx_status)
  625. {
  626. u8 *pos;
  627. struct ieee802_11_elems elems;
  628. wpa_printf(MSG_DEBUG, "MLME: replying to auth challenge");
  629. pos = mgmt->u.auth.variable;
  630. if (ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems, 0)
  631. == ParseFailed) {
  632. wpa_printf(MSG_DEBUG, "MLME: failed to parse Auth(challenge)");
  633. return;
  634. }
  635. if (elems.challenge == NULL) {
  636. wpa_printf(MSG_DEBUG, "MLME: no challenge IE in shared key "
  637. "auth frame");
  638. return;
  639. }
  640. ieee80211_send_auth(wpa_s, 3, elems.challenge - 2,
  641. elems.challenge_len + 2, 1);
  642. }
  643. static void ieee80211_rx_mgmt_auth(struct wpa_supplicant *wpa_s,
  644. struct ieee80211_mgmt *mgmt,
  645. size_t len,
  646. struct ieee80211_rx_status *rx_status)
  647. {
  648. struct wpa_ssid *ssid = wpa_s->current_ssid;
  649. u16 auth_alg, auth_transaction, status_code;
  650. int adhoc;
  651. adhoc = ssid && ssid->mode == 1;
  652. if (wpa_s->mlme.state != IEEE80211_AUTHENTICATE && !adhoc) {
  653. wpa_printf(MSG_DEBUG, "MLME: authentication frame received "
  654. "from " MACSTR ", but not in authenticate state - "
  655. "ignored", MAC2STR(mgmt->sa));
  656. return;
  657. }
  658. if (len < 24 + 6) {
  659. wpa_printf(MSG_DEBUG, "MLME: too short (%lu) authentication "
  660. "frame received from " MACSTR " - ignored",
  661. (unsigned long) len, MAC2STR(mgmt->sa));
  662. return;
  663. }
  664. if (!adhoc && os_memcmp(wpa_s->bssid, mgmt->sa, ETH_ALEN) != 0) {
  665. wpa_printf(MSG_DEBUG, "MLME: authentication frame received "
  666. "from unknown AP (SA=" MACSTR " BSSID=" MACSTR
  667. ") - ignored",
  668. MAC2STR(mgmt->sa), MAC2STR(mgmt->bssid));
  669. return;
  670. }
  671. if (adhoc && os_memcmp(wpa_s->bssid, mgmt->bssid, ETH_ALEN) != 0) {
  672. wpa_printf(MSG_DEBUG, "MLME: authentication frame received "
  673. "from unknown BSSID (SA=" MACSTR " BSSID=" MACSTR
  674. ") - ignored",
  675. MAC2STR(mgmt->sa), MAC2STR(mgmt->bssid));
  676. return;
  677. }
  678. auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
  679. auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
  680. status_code = le_to_host16(mgmt->u.auth.status_code);
  681. wpa_printf(MSG_DEBUG, "MLME: RX authentication from " MACSTR
  682. " (alg=%d transaction=%d status=%d)",
  683. MAC2STR(mgmt->sa), auth_alg, auth_transaction, status_code);
  684. if (adhoc) {
  685. /* IEEE 802.11 standard does not require authentication in IBSS
  686. * networks and most implementations do not seem to use it.
  687. * However, try to reply to authentication attempts if someone
  688. * has actually implemented this.
  689. * TODO: Could implement shared key authentication. */
  690. if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1) {
  691. wpa_printf(MSG_DEBUG, "MLME: unexpected IBSS "
  692. "authentication frame (alg=%d "
  693. "transaction=%d)",
  694. auth_alg, auth_transaction);
  695. return;
  696. }
  697. ieee80211_send_auth(wpa_s, 2, NULL, 0, 0);
  698. }
  699. if (auth_alg != wpa_s->mlme.auth_alg ||
  700. auth_transaction != wpa_s->mlme.auth_transaction) {
  701. wpa_printf(MSG_DEBUG, "MLME: unexpected authentication frame "
  702. "(alg=%d transaction=%d)",
  703. auth_alg, auth_transaction);
  704. return;
  705. }
  706. if (status_code != WLAN_STATUS_SUCCESS) {
  707. wpa_printf(MSG_DEBUG, "MLME: AP denied authentication "
  708. "(auth_alg=%d code=%d)", wpa_s->mlme.auth_alg,
  709. status_code);
  710. if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
  711. const int num_algs = 3;
  712. u8 algs[num_algs];
  713. int i, pos;
  714. algs[0] = algs[1] = algs[2] = 0xff;
  715. if (wpa_s->mlme.auth_algs & IEEE80211_AUTH_ALG_OPEN)
  716. algs[0] = WLAN_AUTH_OPEN;
  717. if (wpa_s->mlme.auth_algs &
  718. IEEE80211_AUTH_ALG_SHARED_KEY)
  719. algs[1] = WLAN_AUTH_SHARED_KEY;
  720. if (wpa_s->mlme.auth_algs & IEEE80211_AUTH_ALG_LEAP)
  721. algs[2] = WLAN_AUTH_LEAP;
  722. if (wpa_s->mlme.auth_alg == WLAN_AUTH_OPEN)
  723. pos = 0;
  724. else if (wpa_s->mlme.auth_alg == WLAN_AUTH_SHARED_KEY)
  725. pos = 1;
  726. else
  727. pos = 2;
  728. for (i = 0; i < num_algs; i++) {
  729. pos++;
  730. if (pos >= num_algs)
  731. pos = 0;
  732. if (algs[pos] == wpa_s->mlme.auth_alg ||
  733. algs[pos] == 0xff)
  734. continue;
  735. if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
  736. !ieee80211_sta_wep_configured(wpa_s))
  737. continue;
  738. wpa_s->mlme.auth_alg = algs[pos];
  739. wpa_printf(MSG_DEBUG, "MLME: set auth_alg=%d "
  740. "for next try",
  741. wpa_s->mlme.auth_alg);
  742. break;
  743. }
  744. }
  745. return;
  746. }
  747. switch (wpa_s->mlme.auth_alg) {
  748. case WLAN_AUTH_OPEN:
  749. case WLAN_AUTH_LEAP:
  750. ieee80211_auth_completed(wpa_s);
  751. break;
  752. case WLAN_AUTH_SHARED_KEY:
  753. if (wpa_s->mlme.auth_transaction == 4)
  754. ieee80211_auth_completed(wpa_s);
  755. else
  756. ieee80211_auth_challenge(wpa_s, mgmt, len,
  757. rx_status);
  758. break;
  759. #ifdef CONFIG_IEEE80211R
  760. case WLAN_AUTH_FT:
  761. {
  762. union wpa_event_data data;
  763. struct wpabuf *ric = NULL;
  764. os_memset(&data, 0, sizeof(data));
  765. data.ft_ies.ies = mgmt->u.auth.variable;
  766. data.ft_ies.ies_len = len -
  767. (mgmt->u.auth.variable - (u8 *) mgmt);
  768. os_memcpy(data.ft_ies.target_ap, wpa_s->bssid, ETH_ALEN);
  769. if (os_strcmp(wpa_s->driver->name, "test") == 0 &&
  770. wpa_s->mlme.wmm_enabled) {
  771. ric = wpabuf_alloc(200);
  772. if (ric) {
  773. /* Build simple RIC-Request: RDIE | TSPEC */
  774. /* RIC Data (RDIE) */
  775. wpabuf_put_u8(ric, WLAN_EID_RIC_DATA);
  776. wpabuf_put_u8(ric, 4);
  777. wpabuf_put_u8(ric, 0); /* RDIE Identifier */
  778. wpabuf_put_u8(ric, 1); /* Resource Descriptor
  779. * Count */
  780. wpabuf_put_le16(ric, 0); /* Status Code */
  781. /* WMM TSPEC */
  782. ieee80211_build_tspec(ric);
  783. data.ft_ies.ric_ies = wpabuf_head(ric);
  784. data.ft_ies.ric_ies_len = wpabuf_len(ric);
  785. }
  786. }
  787. wpa_supplicant_event(wpa_s, EVENT_FT_RESPONSE, &data);
  788. wpabuf_free(ric);
  789. ieee80211_auth_completed(wpa_s);
  790. break;
  791. }
  792. #endif /* CONFIG_IEEE80211R */
  793. }
  794. }
  795. static void ieee80211_rx_mgmt_deauth(struct wpa_supplicant *wpa_s,
  796. struct ieee80211_mgmt *mgmt,
  797. size_t len,
  798. struct ieee80211_rx_status *rx_status)
  799. {
  800. u16 reason_code;
  801. if (len < 24 + 2) {
  802. wpa_printf(MSG_DEBUG, "MLME: too short (%lu) deauthentication "
  803. "frame received from " MACSTR " - ignored",
  804. (unsigned long) len, MAC2STR(mgmt->sa));
  805. return;
  806. }
  807. if (os_memcmp(wpa_s->bssid, mgmt->sa, ETH_ALEN) != 0) {
  808. wpa_printf(MSG_DEBUG, "MLME: deauthentication frame received "
  809. "from unknown AP (SA=" MACSTR " BSSID=" MACSTR
  810. ") - ignored",
  811. MAC2STR(mgmt->sa), MAC2STR(mgmt->bssid));
  812. return;
  813. }
  814. reason_code = le_to_host16(mgmt->u.deauth.reason_code);
  815. wpa_printf(MSG_DEBUG, "MLME: RX deauthentication from " MACSTR
  816. " (reason=%d)", MAC2STR(mgmt->sa), reason_code);
  817. if (wpa_s->mlme.authenticated)
  818. wpa_printf(MSG_DEBUG, "MLME: deauthenticated");
  819. if (wpa_s->mlme.state == IEEE80211_AUTHENTICATE ||
  820. wpa_s->mlme.state == IEEE80211_ASSOCIATE ||
  821. wpa_s->mlme.state == IEEE80211_ASSOCIATED) {
  822. wpa_s->mlme.state = IEEE80211_AUTHENTICATE;
  823. ieee80211_reschedule_timer(wpa_s,
  824. IEEE80211_RETRY_AUTH_INTERVAL);
  825. }
  826. ieee80211_set_associated(wpa_s, 0);
  827. wpa_s->mlme.authenticated = 0;
  828. }
  829. static void ieee80211_rx_mgmt_disassoc(struct wpa_supplicant *wpa_s,
  830. struct ieee80211_mgmt *mgmt,
  831. size_t len,
  832. struct ieee80211_rx_status *rx_status)
  833. {
  834. u16 reason_code;
  835. if (len < 24 + 2) {
  836. wpa_printf(MSG_DEBUG, "MLME: too short (%lu) disassociation "
  837. "frame received from " MACSTR " - ignored",
  838. (unsigned long) len, MAC2STR(mgmt->sa));
  839. return;
  840. }
  841. if (os_memcmp(wpa_s->bssid, mgmt->sa, ETH_ALEN) != 0) {
  842. wpa_printf(MSG_DEBUG, "MLME: disassociation frame received "
  843. "from unknown AP (SA=" MACSTR " BSSID=" MACSTR
  844. ") - ignored",
  845. MAC2STR(mgmt->sa), MAC2STR(mgmt->bssid));
  846. return;
  847. }
  848. reason_code = le_to_host16(mgmt->u.disassoc.reason_code);
  849. wpa_printf(MSG_DEBUG, "MLME: RX disassociation from " MACSTR
  850. " (reason=%d)", MAC2STR(mgmt->sa), reason_code);
  851. if (wpa_s->mlme.associated)
  852. wpa_printf(MSG_DEBUG, "MLME: disassociated");
  853. if (wpa_s->mlme.state == IEEE80211_ASSOCIATED) {
  854. wpa_s->mlme.state = IEEE80211_ASSOCIATE;
  855. ieee80211_reschedule_timer(wpa_s,
  856. IEEE80211_RETRY_AUTH_INTERVAL);
  857. }
  858. ieee80211_set_associated(wpa_s, 0);
  859. }
  860. static int ieee80211_ft_assoc_resp(struct wpa_supplicant *wpa_s,
  861. struct ieee802_11_elems *elems)
  862. {
  863. #ifdef CONFIG_IEEE80211R
  864. const u8 *mobility_domain = NULL;
  865. const u8 *r0kh_id = NULL;
  866. size_t r0kh_id_len = 0;
  867. const u8 *r1kh_id = NULL;
  868. struct rsn_ftie *hdr;
  869. const u8 *pos, *end;
  870. if (elems->mdie && elems->mdie_len >= MOBILITY_DOMAIN_ID_LEN)
  871. mobility_domain = elems->mdie;
  872. if (elems->ftie && elems->ftie_len >= sizeof(struct rsn_ftie)) {
  873. end = elems->ftie + elems->ftie_len;
  874. hdr = (struct rsn_ftie *) elems->ftie;
  875. pos = (const u8 *) (hdr + 1);
  876. while (pos + 1 < end) {
  877. if (pos + 2 + pos[1] > end)
  878. break;
  879. if (pos[0] == FTIE_SUBELEM_R1KH_ID &&
  880. pos[1] == FT_R1KH_ID_LEN)
  881. r1kh_id = pos + 2;
  882. else if (pos[0] == FTIE_SUBELEM_R0KH_ID &&
  883. pos[1] >= 1 && pos[1] <= FT_R0KH_ID_MAX_LEN) {
  884. r0kh_id = pos + 2;
  885. r0kh_id_len = pos[1];
  886. }
  887. pos += 2 + pos[1];
  888. }
  889. }
  890. return wpa_sm_set_ft_params(wpa_s->wpa, mobility_domain, r0kh_id,
  891. r0kh_id_len, r1kh_id);
  892. #else /* CONFIG_IEEE80211R */
  893. return 0;
  894. #endif /* CONFIG_IEEE80211R */
  895. }
  896. static void ieee80211_build_tspec(struct wpabuf *buf)
  897. {
  898. struct wmm_tspec_element *tspec;
  899. int tid, up;
  900. tspec = wpabuf_put(buf, sizeof(*tspec));
  901. tspec->eid = WLAN_EID_VENDOR_SPECIFIC;
  902. tspec->length = sizeof(*tspec) - 2;
  903. tspec->oui[0] = 0x00;
  904. tspec->oui[1] = 0x50;
  905. tspec->oui[2] = 0xf2;
  906. tspec->oui_type = 2;
  907. tspec->oui_subtype = 2;
  908. tspec->version = 1;
  909. tid = 1;
  910. up = 6; /* Voice */
  911. tspec->ts_info[0] = (tid << 1) |
  912. (WMM_TSPEC_DIRECTION_BI_DIRECTIONAL << 5) |
  913. BIT(7);
  914. tspec->ts_info[1] = up << 3;
  915. tspec->nominal_msdu_size = host_to_le16(1530);
  916. tspec->mean_data_rate = host_to_le32(128000); /* bits per second */
  917. tspec->minimum_phy_rate = host_to_le32(6000000);
  918. tspec->surplus_bandwidth_allowance = host_to_le16(0x3000); /* 150% */
  919. }
  920. static void ieee80211_tx_addts(struct wpa_supplicant *wpa_s)
  921. {
  922. struct wpabuf *buf;
  923. struct ieee80211_mgmt *mgmt;
  924. size_t alen;
  925. wpa_printf(MSG_DEBUG, "MLME: Send ADDTS Request for Voice TSPEC");
  926. mgmt = NULL;
  927. alen = mgmt->u.action.u.wmm_action.variable - (u8 *) mgmt;
  928. buf = wpabuf_alloc(alen + sizeof(struct wmm_tspec_element));
  929. if (buf == NULL)
  930. return;
  931. mgmt = wpabuf_put(buf, alen);
  932. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  933. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  934. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  935. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  936. WLAN_FC_STYPE_ACTION);
  937. mgmt->u.action.category = WLAN_ACTION_WMM;
  938. mgmt->u.action.u.wmm_action.action_code = WMM_ACTION_CODE_ADDTS_REQ;
  939. mgmt->u.action.u.wmm_action.dialog_token = 1;
  940. mgmt->u.action.u.wmm_action.status_code = 0;
  941. ieee80211_build_tspec(buf);
  942. ieee80211_sta_tx(wpa_s, wpabuf_head(buf), wpabuf_len(buf));
  943. wpabuf_free(buf);
  944. }
  945. static void ieee80211_rx_mgmt_assoc_resp(struct wpa_supplicant *wpa_s,
  946. struct ieee80211_mgmt *mgmt,
  947. size_t len,
  948. struct ieee80211_rx_status *rx_status,
  949. int reassoc)
  950. {
  951. u8 rates[32];
  952. size_t rates_len;
  953. u16 capab_info, status_code, aid;
  954. struct ieee802_11_elems elems;
  955. u8 *pos;
  956. /* AssocResp and ReassocResp have identical structure, so process both
  957. * of them in this function. */
  958. if (wpa_s->mlme.state != IEEE80211_ASSOCIATE) {
  959. wpa_printf(MSG_DEBUG, "MLME: association frame received from "
  960. MACSTR ", but not in associate state - ignored",
  961. MAC2STR(mgmt->sa));
  962. return;
  963. }
  964. if (len < 24 + 6) {
  965. wpa_printf(MSG_DEBUG, "MLME: too short (%lu) association "
  966. "frame received from " MACSTR " - ignored",
  967. (unsigned long) len, MAC2STR(mgmt->sa));
  968. return;
  969. }
  970. if (os_memcmp(wpa_s->bssid, mgmt->sa, ETH_ALEN) != 0) {
  971. wpa_printf(MSG_DEBUG, "MLME: association frame received from "
  972. "unknown AP (SA=" MACSTR " BSSID=" MACSTR ") - "
  973. "ignored", MAC2STR(mgmt->sa), MAC2STR(mgmt->bssid));
  974. return;
  975. }
  976. capab_info = le_to_host16(mgmt->u.assoc_resp.capab_info);
  977. status_code = le_to_host16(mgmt->u.assoc_resp.status_code);
  978. aid = le_to_host16(mgmt->u.assoc_resp.aid);
  979. if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
  980. wpa_printf(MSG_DEBUG, "MLME: invalid aid value %d; bits 15:14 "
  981. "not set", aid);
  982. aid &= ~(BIT(15) | BIT(14));
  983. wpa_printf(MSG_DEBUG, "MLME: RX %sssocResp from " MACSTR
  984. " (capab=0x%x status=%d aid=%d)",
  985. reassoc ? "Rea" : "A", MAC2STR(mgmt->sa),
  986. capab_info, status_code, aid);
  987. pos = mgmt->u.assoc_resp.variable;
  988. if (ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems, 0)
  989. == ParseFailed) {
  990. wpa_printf(MSG_DEBUG, "MLME: failed to parse AssocResp");
  991. return;
  992. }
  993. if (status_code != WLAN_STATUS_SUCCESS) {
  994. wpa_printf(MSG_DEBUG, "MLME: AP denied association (code=%d)",
  995. status_code);
  996. #ifdef CONFIG_IEEE80211W
  997. if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
  998. elems.timeout_int && elems.timeout_int_len == 5 &&
  999. elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
  1000. u32 tu, ms;
  1001. tu = WPA_GET_LE32(elems.timeout_int + 1);
  1002. ms = tu * 1024 / 1000;
  1003. wpa_printf(MSG_DEBUG, "MLME: AP rejected association "
  1004. "temporarily; comeback duration %u TU "
  1005. "(%u ms)", tu, ms);
  1006. if (ms > IEEE80211_ASSOC_TIMEOUT) {
  1007. wpa_printf(MSG_DEBUG, "MLME: Update timer "
  1008. "based on comeback duration");
  1009. ieee80211_reschedule_timer(wpa_s, ms);
  1010. }
  1011. }
  1012. #endif /* CONFIG_IEEE80211W */
  1013. return;
  1014. }
  1015. if (elems.supp_rates == NULL) {
  1016. wpa_printf(MSG_DEBUG, "MLME: no SuppRates element in "
  1017. "AssocResp");
  1018. return;
  1019. }
  1020. if (wpa_s->mlme.auth_alg == WLAN_AUTH_FT) {
  1021. if (!reassoc) {
  1022. wpa_printf(MSG_DEBUG, "MLME: AP tried to use "
  1023. "association, not reassociation, response "
  1024. "with FT");
  1025. return;
  1026. }
  1027. if (wpa_ft_validate_reassoc_resp(
  1028. wpa_s->wpa, pos, len - (pos - (u8 *) mgmt),
  1029. mgmt->sa) < 0) {
  1030. wpa_printf(MSG_DEBUG, "MLME: FT validation of Reassoc"
  1031. "Resp failed");
  1032. return;
  1033. }
  1034. } else if (ieee80211_ft_assoc_resp(wpa_s, &elems) < 0)
  1035. return;
  1036. wpa_printf(MSG_DEBUG, "MLME: associated");
  1037. wpa_s->mlme.aid = aid;
  1038. wpa_s->mlme.ap_capab = capab_info;
  1039. os_free(wpa_s->mlme.assocresp_ies);
  1040. wpa_s->mlme.assocresp_ies_len = len - (pos - (u8 *) mgmt);
  1041. wpa_s->mlme.assocresp_ies = os_malloc(wpa_s->mlme.assocresp_ies_len);
  1042. if (wpa_s->mlme.assocresp_ies) {
  1043. os_memcpy(wpa_s->mlme.assocresp_ies, pos,
  1044. wpa_s->mlme.assocresp_ies_len);
  1045. }
  1046. ieee80211_set_associated(wpa_s, 1);
  1047. rates_len = elems.supp_rates_len;
  1048. if (rates_len > sizeof(rates))
  1049. rates_len = sizeof(rates);
  1050. os_memcpy(rates, elems.supp_rates, rates_len);
  1051. if (elems.ext_supp_rates) {
  1052. size_t _len = elems.ext_supp_rates_len;
  1053. if (_len > sizeof(rates) - rates_len)
  1054. _len = sizeof(rates) - rates_len;
  1055. os_memcpy(rates + rates_len, elems.ext_supp_rates, _len);
  1056. rates_len += _len;
  1057. }
  1058. if (wpa_drv_set_bssid(wpa_s, wpa_s->bssid) < 0) {
  1059. wpa_printf(MSG_DEBUG, "MLME: failed to set BSSID for the "
  1060. "netstack");
  1061. }
  1062. if (wpa_drv_set_ssid(wpa_s, wpa_s->mlme.ssid, wpa_s->mlme.ssid_len) <
  1063. 0) {
  1064. wpa_printf(MSG_DEBUG, "MLME: failed to set SSID for the "
  1065. "netstack");
  1066. }
  1067. /* Remove STA entry before adding a new one just in case to avoid
  1068. * problems with existing configuration (e.g., keys). */
  1069. wpa_drv_mlme_remove_sta(wpa_s, wpa_s->bssid);
  1070. if (wpa_drv_mlme_add_sta(wpa_s, wpa_s->bssid, rates, rates_len) < 0) {
  1071. wpa_printf(MSG_DEBUG, "MLME: failed to add STA entry to the "
  1072. "netstack");
  1073. }
  1074. if (elems.wmm && wpa_s->mlme.wmm_enabled)
  1075. ieee80211_sta_wmm_params(wpa_s, elems.wmm, elems.wmm_len);
  1076. ieee80211_associated(wpa_s);
  1077. if (wpa_s->mlme.auth_alg != WLAN_AUTH_FT &&
  1078. os_strcmp(wpa_s->driver->name, "test") == 0 &&
  1079. elems.wmm && wpa_s->mlme.wmm_enabled) {
  1080. /* Test WMM-AC - send ADDTS for WMM TSPEC */
  1081. ieee80211_tx_addts(wpa_s);
  1082. }
  1083. }
  1084. /* Caller must hold local->sta_bss_lock */
  1085. static void __ieee80211_bss_hash_add(struct wpa_supplicant *wpa_s,
  1086. struct ieee80211_sta_bss *bss)
  1087. {
  1088. bss->hnext = wpa_s->mlme.sta_bss_hash[STA_HASH(bss->bssid)];
  1089. wpa_s->mlme.sta_bss_hash[STA_HASH(bss->bssid)] = bss;
  1090. }
  1091. /* Caller must hold local->sta_bss_lock */
  1092. static void __ieee80211_bss_hash_del(struct wpa_supplicant *wpa_s,
  1093. struct ieee80211_sta_bss *bss)
  1094. {
  1095. struct ieee80211_sta_bss *b, *prev = NULL;
  1096. b = wpa_s->mlme.sta_bss_hash[STA_HASH(bss->bssid)];
  1097. while (b) {
  1098. if (b == bss) {
  1099. if (prev == NULL) {
  1100. wpa_s->mlme.sta_bss_hash[STA_HASH(bss->bssid)]
  1101. = bss->hnext;
  1102. } else {
  1103. prev->hnext = bss->hnext;
  1104. }
  1105. break;
  1106. }
  1107. prev = b;
  1108. b = b->hnext;
  1109. }
  1110. }
  1111. static struct ieee80211_sta_bss *
  1112. ieee80211_bss_add(struct wpa_supplicant *wpa_s, const u8 *bssid)
  1113. {
  1114. struct ieee80211_sta_bss *bss;
  1115. bss = os_zalloc(sizeof(*bss));
  1116. if (bss == NULL)
  1117. return NULL;
  1118. os_memcpy(bss->bssid, bssid, ETH_ALEN);
  1119. /* TODO: order by RSSI? */
  1120. bss->next = wpa_s->mlme.sta_bss_list;
  1121. wpa_s->mlme.sta_bss_list = bss;
  1122. __ieee80211_bss_hash_add(wpa_s, bss);
  1123. return bss;
  1124. }
  1125. static struct ieee80211_sta_bss *
  1126. ieee80211_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid)
  1127. {
  1128. struct ieee80211_sta_bss *bss;
  1129. bss = wpa_s->mlme.sta_bss_hash[STA_HASH(bssid)];
  1130. while (bss) {
  1131. if (os_memcmp(bss->bssid, bssid, ETH_ALEN) == 0)
  1132. break;
  1133. bss = bss->hnext;
  1134. }
  1135. return bss;
  1136. }
  1137. static void ieee80211_bss_free(struct wpa_supplicant *wpa_s,
  1138. struct ieee80211_sta_bss *bss)
  1139. {
  1140. __ieee80211_bss_hash_del(wpa_s, bss);
  1141. os_free(bss->ie);
  1142. os_free(bss->wpa_ie);
  1143. os_free(bss->rsn_ie);
  1144. os_free(bss->wmm_ie);
  1145. os_free(bss->mdie);
  1146. os_free(bss);
  1147. }
  1148. static void ieee80211_bss_list_deinit(struct wpa_supplicant *wpa_s)
  1149. {
  1150. struct ieee80211_sta_bss *bss, *prev;
  1151. bss = wpa_s->mlme.sta_bss_list;
  1152. wpa_s->mlme.sta_bss_list = NULL;
  1153. while (bss) {
  1154. prev = bss;
  1155. bss = bss->next;
  1156. ieee80211_bss_free(wpa_s, prev);
  1157. }
  1158. }
  1159. static void ieee80211_bss_info(struct wpa_supplicant *wpa_s,
  1160. struct ieee80211_mgmt *mgmt,
  1161. size_t len,
  1162. struct ieee80211_rx_status *rx_status,
  1163. int beacon)
  1164. {
  1165. struct ieee802_11_elems elems;
  1166. size_t baselen;
  1167. int channel, invalid = 0, clen;
  1168. struct ieee80211_sta_bss *bss;
  1169. u64 timestamp;
  1170. u8 *pos, *ie_pos;
  1171. size_t ie_len;
  1172. if (!beacon && os_memcmp(mgmt->da, wpa_s->own_addr, ETH_ALEN))
  1173. return; /* ignore ProbeResp to foreign address */
  1174. #if 0
  1175. wpa_printf(MSG_MSGDUMP, "MLME: RX %s from " MACSTR " to " MACSTR,
  1176. beacon ? "Beacon" : "Probe Response",
  1177. MAC2STR(mgmt->sa), MAC2STR(mgmt->da));
  1178. #endif
  1179. baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
  1180. if (baselen > len)
  1181. return;
  1182. pos = mgmt->u.beacon.timestamp;
  1183. timestamp = WPA_GET_LE64(pos);
  1184. #if 0 /* FIX */
  1185. if (local->conf.mode == IW_MODE_ADHOC && beacon &&
  1186. os_memcmp(mgmt->bssid, local->bssid, ETH_ALEN) == 0) {
  1187. #ifdef IEEE80211_IBSS_DEBUG
  1188. static unsigned long last_tsf_debug = 0;
  1189. u64 tsf;
  1190. if (local->hw->get_tsf)
  1191. tsf = local->hw->get_tsf(local->mdev);
  1192. else
  1193. tsf = -1LLU;
  1194. if (time_after(jiffies, last_tsf_debug + 5 * HZ)) {
  1195. wpa_printf(MSG_DEBUG, "RX beacon SA=" MACSTR " BSSID="
  1196. MACSTR " TSF=0x%llx BCN=0x%llx diff=%lld "
  1197. "@%ld",
  1198. MAC2STR(mgmt->sa), MAC2STR(mgmt->bssid),
  1199. tsf, timestamp, tsf - timestamp, jiffies);
  1200. last_tsf_debug = jiffies;
  1201. }
  1202. #endif /* IEEE80211_IBSS_DEBUG */
  1203. }
  1204. #endif
  1205. ie_pos = mgmt->u.beacon.variable;
  1206. ie_len = len - baselen;
  1207. if (ieee802_11_parse_elems(ie_pos, ie_len, &elems, 0) == ParseFailed)
  1208. invalid = 1;
  1209. #if 0 /* FIX */
  1210. if (local->conf.mode == IW_MODE_ADHOC && elems.supp_rates &&
  1211. os_memcmp(mgmt->bssid, local->bssid, ETH_ALEN) == 0 &&
  1212. (sta = sta_info_get(local, mgmt->sa))) {
  1213. struct ieee80211_rate *rates;
  1214. size_t num_rates;
  1215. u32 supp_rates, prev_rates;
  1216. int i, j, oper_mode;
  1217. rates = local->curr_rates;
  1218. num_rates = local->num_curr_rates;
  1219. oper_mode = wpa_s->mlme.sta_scanning ?
  1220. local->scan_oper_phymode : local->conf.phymode;
  1221. for (i = 0; i < local->hw->num_modes; i++) {
  1222. struct ieee80211_hw_modes *mode = &local->hw->modes[i];
  1223. if (oper_mode == mode->mode) {
  1224. rates = mode->rates;
  1225. num_rates = mode->num_rates;
  1226. break;
  1227. }
  1228. }
  1229. supp_rates = 0;
  1230. for (i = 0; i < elems.supp_rates_len +
  1231. elems.ext_supp_rates_len; i++) {
  1232. u8 rate = 0;
  1233. int own_rate;
  1234. if (i < elems.supp_rates_len)
  1235. rate = elems.supp_rates[i];
  1236. else if (elems.ext_supp_rates)
  1237. rate = elems.ext_supp_rates
  1238. [i - elems.supp_rates_len];
  1239. own_rate = 5 * (rate & 0x7f);
  1240. if (oper_mode == MODE_ATHEROS_TURBO)
  1241. own_rate *= 2;
  1242. for (j = 0; j < num_rates; j++)
  1243. if (rates[j].rate == own_rate)
  1244. supp_rates |= BIT(j);
  1245. }
  1246. prev_rates = sta->supp_rates;
  1247. sta->supp_rates &= supp_rates;
  1248. if (sta->supp_rates == 0) {
  1249. /* No matching rates - this should not really happen.
  1250. * Make sure that at least one rate is marked
  1251. * supported to avoid issues with TX rate ctrl. */
  1252. sta->supp_rates = wpa_s->mlme.supp_rates_bits;
  1253. }
  1254. if (sta->supp_rates != prev_rates) {
  1255. wpa_printf(MSG_DEBUG, "MLME: updated supp_rates set "
  1256. "for " MACSTR " based on beacon info "
  1257. "(0x%x & 0x%x -> 0x%x)",
  1258. MAC2STR(sta->addr), prev_rates,
  1259. supp_rates, sta->supp_rates);
  1260. }
  1261. sta_info_release(local, sta);
  1262. }
  1263. #endif
  1264. if (elems.ssid == NULL)
  1265. return;
  1266. if (elems.ds_params && elems.ds_params_len == 1)
  1267. channel = elems.ds_params[0];
  1268. else
  1269. channel = rx_status->channel;
  1270. bss = ieee80211_bss_get(wpa_s, mgmt->bssid);
  1271. if (bss == NULL) {
  1272. bss = ieee80211_bss_add(wpa_s, mgmt->bssid);
  1273. if (bss == NULL)
  1274. return;
  1275. } else {
  1276. #if 0
  1277. /* TODO: order by RSSI? */
  1278. spin_lock_bh(&local->sta_bss_lock);
  1279. list_move_tail(&bss->list, &local->sta_bss_list);
  1280. spin_unlock_bh(&local->sta_bss_lock);
  1281. #endif
  1282. }
  1283. if (bss->probe_resp && beacon) {
  1284. /* Do not allow beacon to override data from Probe Response. */
  1285. return;
  1286. }
  1287. bss->beacon_int = le_to_host16(mgmt->u.beacon.beacon_int);
  1288. bss->capability = le_to_host16(mgmt->u.beacon.capab_info);
  1289. if (bss->ie == NULL || bss->ie_len < ie_len) {
  1290. os_free(bss->ie);
  1291. bss->ie = os_malloc(ie_len);
  1292. }
  1293. if (bss->ie) {
  1294. os_memcpy(bss->ie, ie_pos, ie_len);
  1295. bss->ie_len = ie_len;
  1296. }
  1297. if (elems.ssid && elems.ssid_len <= MAX_SSID_LEN) {
  1298. os_memcpy(bss->ssid, elems.ssid, elems.ssid_len);
  1299. bss->ssid_len = elems.ssid_len;
  1300. }
  1301. bss->supp_rates_len = 0;
  1302. if (elems.supp_rates) {
  1303. clen = IEEE80211_MAX_SUPP_RATES - bss->supp_rates_len;
  1304. if (clen > elems.supp_rates_len)
  1305. clen = elems.supp_rates_len;
  1306. os_memcpy(&bss->supp_rates[bss->supp_rates_len],
  1307. elems.supp_rates, clen);
  1308. bss->supp_rates_len += clen;
  1309. }
  1310. if (elems.ext_supp_rates) {
  1311. clen = IEEE80211_MAX_SUPP_RATES - bss->supp_rates_len;
  1312. if (clen > elems.ext_supp_rates_len)
  1313. clen = elems.ext_supp_rates_len;
  1314. os_memcpy(&bss->supp_rates[bss->supp_rates_len],
  1315. elems.ext_supp_rates, clen);
  1316. bss->supp_rates_len += clen;
  1317. }
  1318. if (elems.wpa_ie &&
  1319. (bss->wpa_ie == NULL || bss->wpa_ie_len != elems.wpa_ie_len ||
  1320. os_memcmp(bss->wpa_ie, elems.wpa_ie, elems.wpa_ie_len))) {
  1321. os_free(bss->wpa_ie);
  1322. bss->wpa_ie = os_malloc(elems.wpa_ie_len + 2);
  1323. if (bss->wpa_ie) {
  1324. os_memcpy(bss->wpa_ie, elems.wpa_ie - 2,
  1325. elems.wpa_ie_len + 2);
  1326. bss->wpa_ie_len = elems.wpa_ie_len + 2;
  1327. } else
  1328. bss->wpa_ie_len = 0;
  1329. } else if (!elems.wpa_ie && bss->wpa_ie) {
  1330. os_free(bss->wpa_ie);
  1331. bss->wpa_ie = NULL;
  1332. bss->wpa_ie_len = 0;
  1333. }
  1334. if (elems.rsn_ie &&
  1335. (bss->rsn_ie == NULL || bss->rsn_ie_len != elems.rsn_ie_len ||
  1336. os_memcmp(bss->rsn_ie, elems.rsn_ie, elems.rsn_ie_len))) {
  1337. os_free(bss->rsn_ie);
  1338. bss->rsn_ie = os_malloc(elems.rsn_ie_len + 2);
  1339. if (bss->rsn_ie) {
  1340. os_memcpy(bss->rsn_ie, elems.rsn_ie - 2,
  1341. elems.rsn_ie_len + 2);
  1342. bss->rsn_ie_len = elems.rsn_ie_len + 2;
  1343. } else
  1344. bss->rsn_ie_len = 0;
  1345. } else if (!elems.rsn_ie && bss->rsn_ie) {
  1346. os_free(bss->rsn_ie);
  1347. bss->rsn_ie = NULL;
  1348. bss->rsn_ie_len = 0;
  1349. }
  1350. if (elems.wmm &&
  1351. (bss->wmm_ie == NULL || bss->wmm_ie_len != elems.wmm_len ||
  1352. os_memcmp(bss->wmm_ie, elems.wmm, elems.wmm_len))) {
  1353. os_free(bss->wmm_ie);
  1354. bss->wmm_ie = os_malloc(elems.wmm_len + 2);
  1355. if (bss->wmm_ie) {
  1356. os_memcpy(bss->wmm_ie, elems.wmm - 2,
  1357. elems.wmm_len + 2);
  1358. bss->wmm_ie_len = elems.wmm_len + 2;
  1359. } else
  1360. bss->wmm_ie_len = 0;
  1361. } else if (!elems.wmm && bss->wmm_ie) {
  1362. os_free(bss->wmm_ie);
  1363. bss->wmm_ie = NULL;
  1364. bss->wmm_ie_len = 0;
  1365. }
  1366. #ifdef CONFIG_IEEE80211R
  1367. if (elems.mdie &&
  1368. (bss->mdie == NULL || bss->mdie_len != elems.mdie_len ||
  1369. os_memcmp(bss->mdie, elems.mdie, elems.mdie_len))) {
  1370. os_free(bss->mdie);
  1371. bss->mdie = os_malloc(elems.mdie_len + 2);
  1372. if (bss->mdie) {
  1373. os_memcpy(bss->mdie, elems.mdie - 2,
  1374. elems.mdie_len + 2);
  1375. bss->mdie_len = elems.mdie_len + 2;
  1376. } else
  1377. bss->mdie_len = 0;
  1378. } else if (!elems.mdie && bss->mdie) {
  1379. os_free(bss->mdie);
  1380. bss->mdie = NULL;
  1381. bss->mdie_len = 0;
  1382. }
  1383. #endif /* CONFIG_IEEE80211R */
  1384. bss->hw_mode = wpa_s->mlme.phymode;
  1385. bss->channel = channel;
  1386. bss->freq = wpa_s->mlme.freq;
  1387. if (channel != wpa_s->mlme.channel &&
  1388. (wpa_s->mlme.phymode == HOSTAPD_MODE_IEEE80211G ||
  1389. wpa_s->mlme.phymode == HOSTAPD_MODE_IEEE80211B) &&
  1390. channel >= 1 && channel <= 14) {
  1391. static const int freq_list[] = {
  1392. 2412, 2417, 2422, 2427, 2432, 2437, 2442,
  1393. 2447, 2452, 2457, 2462, 2467, 2472, 2484
  1394. };
  1395. /* IEEE 802.11g/b mode can receive packets from neighboring
  1396. * channels, so map the channel into frequency. */
  1397. bss->freq = freq_list[channel - 1];
  1398. }
  1399. bss->timestamp = timestamp;
  1400. os_get_time(&bss->last_update);
  1401. bss->rssi = rx_status->ssi;
  1402. if (!beacon)
  1403. bss->probe_resp++;
  1404. }
  1405. static void ieee80211_rx_mgmt_probe_resp(struct wpa_supplicant *wpa_s,
  1406. struct ieee80211_mgmt *mgmt,
  1407. size_t len,
  1408. struct ieee80211_rx_status *rx_status)
  1409. {
  1410. ieee80211_bss_info(wpa_s, mgmt, len, rx_status, 0);
  1411. }
  1412. static void ieee80211_rx_mgmt_beacon(struct wpa_supplicant *wpa_s,
  1413. struct ieee80211_mgmt *mgmt,
  1414. size_t len,
  1415. struct ieee80211_rx_status *rx_status)
  1416. {
  1417. int use_protection;
  1418. size_t baselen;
  1419. struct ieee802_11_elems elems;
  1420. ieee80211_bss_info(wpa_s, mgmt, len, rx_status, 1);
  1421. if (!wpa_s->mlme.associated ||
  1422. os_memcmp(wpa_s->bssid, mgmt->bssid, ETH_ALEN) != 0)
  1423. return;
  1424. /* Process beacon from the current BSS */
  1425. baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
  1426. if (baselen > len)
  1427. return;
  1428. if (ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen,
  1429. &elems, 0) == ParseFailed)
  1430. return;
  1431. use_protection = 0;
  1432. if (elems.erp_info && elems.erp_info_len >= 1) {
  1433. use_protection =
  1434. (elems.erp_info[0] & ERP_INFO_USE_PROTECTION) != 0;
  1435. }
  1436. if (use_protection != !!wpa_s->mlme.use_protection) {
  1437. wpa_printf(MSG_DEBUG, "MLME: CTS protection %s (BSSID=" MACSTR
  1438. ")",
  1439. use_protection ? "enabled" : "disabled",
  1440. MAC2STR(wpa_s->bssid));
  1441. wpa_s->mlme.use_protection = use_protection ? 1 : 0;
  1442. wpa_s->mlme.cts_protect_erp_frames = use_protection;
  1443. }
  1444. if (elems.wmm && wpa_s->mlme.wmm_enabled) {
  1445. ieee80211_sta_wmm_params(wpa_s, elems.wmm,
  1446. elems.wmm_len);
  1447. }
  1448. }
  1449. static void ieee80211_rx_mgmt_probe_req(struct wpa_supplicant *wpa_s,
  1450. struct ieee80211_mgmt *mgmt,
  1451. size_t len,
  1452. struct ieee80211_rx_status *rx_status)
  1453. {
  1454. int tx_last_beacon, adhoc;
  1455. #if 0 /* FIX */
  1456. struct ieee80211_mgmt *resp;
  1457. #endif
  1458. u8 *pos, *end;
  1459. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1460. adhoc = ssid && ssid->mode == 1;
  1461. if (!adhoc || wpa_s->mlme.state != IEEE80211_IBSS_JOINED ||
  1462. len < 24 + 2 || wpa_s->mlme.probe_resp == NULL)
  1463. return;
  1464. #if 0 /* FIX */
  1465. if (local->hw->tx_last_beacon)
  1466. tx_last_beacon = local->hw->tx_last_beacon(local->mdev);
  1467. else
  1468. #endif
  1469. tx_last_beacon = 1;
  1470. #ifdef IEEE80211_IBSS_DEBUG
  1471. wpa_printf(MSG_DEBUG, "MLME: RX ProbeReq SA=" MACSTR " DA=" MACSTR
  1472. " BSSID=" MACSTR " (tx_last_beacon=%d)",
  1473. MAC2STR(mgmt->sa), MAC2STR(mgmt->da),
  1474. MAC2STR(mgmt->bssid), tx_last_beacon);
  1475. #endif /* IEEE80211_IBSS_DEBUG */
  1476. if (!tx_last_beacon)
  1477. return;
  1478. if (os_memcmp(mgmt->bssid, wpa_s->bssid, ETH_ALEN) != 0 &&
  1479. os_memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
  1480. return;
  1481. end = ((u8 *) mgmt) + len;
  1482. pos = mgmt->u.probe_req.variable;
  1483. if (pos[0] != WLAN_EID_SSID ||
  1484. pos + 2 + pos[1] > end) {
  1485. wpa_printf(MSG_DEBUG, "MLME: Invalid SSID IE in ProbeReq from "
  1486. MACSTR, MAC2STR(mgmt->sa));
  1487. return;
  1488. }
  1489. if (pos[1] != 0 &&
  1490. (pos[1] != wpa_s->mlme.ssid_len ||
  1491. os_memcmp(pos + 2, wpa_s->mlme.ssid, wpa_s->mlme.ssid_len) != 0))
  1492. {
  1493. /* Ignore ProbeReq for foreign SSID */
  1494. return;
  1495. }
  1496. #if 0 /* FIX */
  1497. /* Reply with ProbeResp */
  1498. skb = skb_copy(wpa_s->mlme.probe_resp, GFP_ATOMIC);
  1499. if (skb == NULL)
  1500. return;
  1501. resp = (struct ieee80211_mgmt *) skb->data;
  1502. os_memcpy(resp->da, mgmt->sa, ETH_ALEN);
  1503. #ifdef IEEE80211_IBSS_DEBUG
  1504. wpa_printf(MSG_DEBUG, "MLME: Sending ProbeResp to " MACSTR,
  1505. MAC2STR(resp->da));
  1506. #endif /* IEEE80211_IBSS_DEBUG */
  1507. ieee80211_sta_tx(wpa_s, skb, 0, 1);
  1508. #endif
  1509. }
  1510. #ifdef CONFIG_IEEE80211R
  1511. static void ieee80211_rx_mgmt_ft_action(struct wpa_supplicant *wpa_s,
  1512. struct ieee80211_mgmt *mgmt,
  1513. size_t len,
  1514. struct ieee80211_rx_status *rx_status)
  1515. {
  1516. union wpa_event_data data;
  1517. u16 status;
  1518. u8 *sta_addr, *target_ap_addr;
  1519. if (len < 24 + 1 + sizeof(mgmt->u.action.u.ft_action_resp)) {
  1520. wpa_printf(MSG_DEBUG, "MLME: Too short FT Action frame");
  1521. return;
  1522. }
  1523. /*
  1524. * Only FT Action Response is needed for now since reservation
  1525. * protocol is not supported.
  1526. */
  1527. if (mgmt->u.action.u.ft_action_resp.action != 2) {
  1528. wpa_printf(MSG_DEBUG, "MLME: Unexpected FT Action %d",
  1529. mgmt->u.action.u.ft_action_resp.action);
  1530. return;
  1531. }
  1532. status = le_to_host16(mgmt->u.action.u.ft_action_resp.status_code);
  1533. sta_addr = mgmt->u.action.u.ft_action_resp.sta_addr;
  1534. target_ap_addr = mgmt->u.action.u.ft_action_resp.target_ap_addr;
  1535. wpa_printf(MSG_DEBUG, "MLME: Received FT Action Response: STA " MACSTR
  1536. " TargetAP " MACSTR " Status Code %d",
  1537. MAC2STR(sta_addr), MAC2STR(target_ap_addr), status);
  1538. if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) {
  1539. wpa_printf(MSG_DEBUG, "MLME: Foreign STA Address " MACSTR
  1540. " in FT Action Response", MAC2STR(sta_addr));
  1541. return;
  1542. }
  1543. if (status) {
  1544. wpa_printf(MSG_DEBUG, "MLME: FT Action Response indicates "
  1545. "failure (status code %d)", status);
  1546. /* TODO: report error to FT code(?) */
  1547. return;
  1548. }
  1549. os_memset(&data, 0, sizeof(data));
  1550. data.ft_ies.ies = mgmt->u.action.u.ft_action_resp.variable;
  1551. data.ft_ies.ies_len = len - (mgmt->u.action.u.ft_action_resp.variable -
  1552. (u8 *) mgmt);
  1553. data.ft_ies.ft_action = 1;
  1554. os_memcpy(data.ft_ies.target_ap, target_ap_addr, ETH_ALEN);
  1555. wpa_supplicant_event(wpa_s, EVENT_FT_RESPONSE, &data);
  1556. /* TODO: should only re-associate, if EVENT_FT_RESPONSE was processed
  1557. * successfully */
  1558. wpa_s->mlme.prev_bssid_set = 1;
  1559. wpa_s->mlme.auth_alg = WLAN_AUTH_FT;
  1560. os_memcpy(wpa_s->mlme.prev_bssid, wpa_s->bssid, ETH_ALEN);
  1561. os_memcpy(wpa_s->bssid, target_ap_addr, ETH_ALEN);
  1562. ieee80211_associate(wpa_s);
  1563. }
  1564. #endif /* CONFIG_IEEE80211R */
  1565. #ifdef CONFIG_IEEE80211W
  1566. /* MLME-SAQuery.response */
  1567. static int ieee80211_sta_send_sa_query_resp(struct wpa_supplicant *wpa_s,
  1568. const u8 *addr, const u8 *trans_id)
  1569. {
  1570. struct ieee80211_mgmt *mgmt;
  1571. int res;
  1572. size_t len;
  1573. mgmt = os_zalloc(sizeof(*mgmt));
  1574. if (mgmt == NULL) {
  1575. wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for "
  1576. "SA Query action frame");
  1577. return -1;
  1578. }
  1579. len = 24;
  1580. os_memcpy(mgmt->da, addr, ETH_ALEN);
  1581. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  1582. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  1583. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  1584. WLAN_FC_STYPE_ACTION);
  1585. mgmt->u.action.category = WLAN_ACTION_SA_QUERY;
  1586. mgmt->u.action.u.sa_query_resp.action = WLAN_SA_QUERY_RESPONSE;
  1587. os_memcpy(mgmt->u.action.u.sa_query_resp.trans_id, trans_id,
  1588. WLAN_SA_QUERY_TR_ID_LEN);
  1589. len += 1 + sizeof(mgmt->u.action.u.sa_query_resp);
  1590. res = ieee80211_sta_tx(wpa_s, (u8 *) mgmt, len);
  1591. os_free(mgmt);
  1592. return res;
  1593. }
  1594. static void ieee80211_rx_mgmt_sa_query_action(
  1595. struct wpa_supplicant *wpa_s, struct ieee80211_mgmt *mgmt, size_t len,
  1596. struct ieee80211_rx_status *rx_status)
  1597. {
  1598. if (len < 24 + 1 + sizeof(mgmt->u.action.u.sa_query_req)) {
  1599. wpa_printf(MSG_DEBUG, "MLME: Too short SA Query Action frame");
  1600. return;
  1601. }
  1602. if (mgmt->u.action.u.sa_query_req.action != WLAN_SA_QUERY_REQUEST) {
  1603. wpa_printf(MSG_DEBUG, "MLME: Unexpected SA Query Action %d",
  1604. mgmt->u.action.u.sa_query_req.action);
  1605. return;
  1606. }
  1607. if (os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0) {
  1608. wpa_printf(MSG_DEBUG, "MLME: Ignore SA Query from unknown "
  1609. "source " MACSTR, MAC2STR(mgmt->sa));
  1610. return;
  1611. }
  1612. if (wpa_s->mlme.state == IEEE80211_ASSOCIATE) {
  1613. wpa_printf(MSG_DEBUG, "MLME: Ignore SA query request during "
  1614. "association process");
  1615. return;
  1616. }
  1617. wpa_printf(MSG_DEBUG, "MLME: Replying to SA Query request");
  1618. ieee80211_sta_send_sa_query_resp(wpa_s, mgmt->sa, mgmt->u.action.u.
  1619. sa_query_req.trans_id);
  1620. }
  1621. #endif /* CONFIG_IEEE80211W */
  1622. static void dump_tspec(struct wmm_tspec_element *tspec)
  1623. {
  1624. int up, psb, dir, tid;
  1625. u16 val;
  1626. up = (tspec->ts_info[1] >> 3) & 0x07;
  1627. psb = (tspec->ts_info[1] >> 2) & 0x01;
  1628. dir = (tspec->ts_info[0] >> 5) & 0x03;
  1629. tid = (tspec->ts_info[0] >> 1) & 0x0f;
  1630. wpa_printf(MSG_DEBUG, "WMM: TS Info: UP=%d PSB=%d Direction=%d TID=%d",
  1631. up, psb, dir, tid);
  1632. val = le_to_host16(tspec->nominal_msdu_size);
  1633. wpa_printf(MSG_DEBUG, "WMM: Nominal MSDU Size: %d%s",
  1634. val & 0x7fff, val & 0x8000 ? " (fixed)" : "");
  1635. wpa_printf(MSG_DEBUG, "WMM: Mean Data Rate: %u bps",
  1636. le_to_host32(tspec->mean_data_rate));
  1637. wpa_printf(MSG_DEBUG, "WMM: Minimum PHY Rate: %u bps",
  1638. le_to_host32(tspec->minimum_phy_rate));
  1639. val = le_to_host16(tspec->surplus_bandwidth_allowance);
  1640. wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance: %u.%04u",
  1641. val >> 13, 10000 * (val & 0x1fff) / 0x2000);
  1642. val = le_to_host16(tspec->medium_time);
  1643. wpa_printf(MSG_DEBUG, "WMM: Medium Time: %u (= %u usec/sec)",
  1644. val, 32 * val);
  1645. }
  1646. static int is_wmm_tspec(const u8 *ie, size_t len)
  1647. {
  1648. const struct wmm_tspec_element *tspec;
  1649. if (len < sizeof(*tspec))
  1650. return 0;
  1651. tspec = (const struct wmm_tspec_element *) ie;
  1652. if (tspec->eid != WLAN_EID_VENDOR_SPECIFIC ||
  1653. tspec->length < sizeof(*tspec) - 2 ||
  1654. tspec->oui[0] != 0x00 || tspec->oui[1] != 0x50 ||
  1655. tspec->oui[2] != 0xf2 || tspec->oui_type != 2 ||
  1656. tspec->oui_subtype != 2 || tspec->version != 1)
  1657. return 0;
  1658. return 1;
  1659. }
  1660. static void ieee80211_rx_addts_resp(
  1661. struct wpa_supplicant *wpa_s, struct ieee80211_mgmt *mgmt, size_t len,
  1662. size_t var_len)
  1663. {
  1664. struct wmm_tspec_element *tspec;
  1665. wpa_printf(MSG_DEBUG, "WMM: Received ADDTS Response");
  1666. wpa_hexdump(MSG_MSGDUMP, "WMM: ADDTS Response IE(s)",
  1667. mgmt->u.action.u.wmm_action.variable, var_len);
  1668. if (!is_wmm_tspec(mgmt->u.action.u.wmm_action.variable, var_len))
  1669. return;
  1670. tspec = (struct wmm_tspec_element *)
  1671. mgmt->u.action.u.wmm_action.variable;
  1672. dump_tspec(tspec);
  1673. }
  1674. static void ieee80211_rx_delts(
  1675. struct wpa_supplicant *wpa_s, struct ieee80211_mgmt *mgmt, size_t len,
  1676. size_t var_len)
  1677. {
  1678. struct wmm_tspec_element *tspec;
  1679. wpa_printf(MSG_DEBUG, "WMM: Received DELTS");
  1680. wpa_hexdump(MSG_MSGDUMP, "WMM: DELTS IE(s)",
  1681. mgmt->u.action.u.wmm_action.variable, var_len);
  1682. if (!is_wmm_tspec(mgmt->u.action.u.wmm_action.variable, var_len))
  1683. return;
  1684. tspec = (struct wmm_tspec_element *)
  1685. mgmt->u.action.u.wmm_action.variable;
  1686. dump_tspec(tspec);
  1687. }
  1688. static void ieee80211_rx_mgmt_wmm_action(
  1689. struct wpa_supplicant *wpa_s, struct ieee80211_mgmt *mgmt, size_t len,
  1690. struct ieee80211_rx_status *rx_status)
  1691. {
  1692. size_t alen;
  1693. alen = mgmt->u.action.u.wmm_action.variable - (u8 *) mgmt;
  1694. if (len < alen) {
  1695. wpa_printf(MSG_DEBUG, "WMM: Received Action frame too short");
  1696. return;
  1697. }
  1698. wpa_printf(MSG_DEBUG, "WMM: Received Action frame: Action Code %d, "
  1699. "Dialog Token %d, Status Code %d",
  1700. mgmt->u.action.u.wmm_action.action_code,
  1701. mgmt->u.action.u.wmm_action.dialog_token,
  1702. mgmt->u.action.u.wmm_action.status_code);
  1703. switch (mgmt->u.action.u.wmm_action.action_code) {
  1704. case WMM_ACTION_CODE_ADDTS_RESP:
  1705. ieee80211_rx_addts_resp(wpa_s, mgmt, len, len - alen);
  1706. break;
  1707. case WMM_ACTION_CODE_DELTS:
  1708. ieee80211_rx_delts(wpa_s, mgmt, len, len - alen);
  1709. break;
  1710. default:
  1711. wpa_printf(MSG_DEBUG, "WMM: Unsupported Action Code %d",
  1712. mgmt->u.action.u.wmm_action.action_code);
  1713. break;
  1714. }
  1715. }
  1716. static void ieee80211_rx_mgmt_action(struct wpa_supplicant *wpa_s,
  1717. struct ieee80211_mgmt *mgmt,
  1718. size_t len,
  1719. struct ieee80211_rx_status *rx_status)
  1720. {
  1721. wpa_printf(MSG_DEBUG, "MLME: received Action frame");
  1722. if (len < 25)
  1723. return;
  1724. switch (mgmt->u.action.category) {
  1725. #ifdef CONFIG_IEEE80211R
  1726. case WLAN_ACTION_FT:
  1727. ieee80211_rx_mgmt_ft_action(wpa_s, mgmt, len, rx_status);
  1728. break;
  1729. #endif /* CONFIG_IEEE80211R */
  1730. #ifdef CONFIG_IEEE80211W
  1731. case WLAN_ACTION_SA_QUERY:
  1732. ieee80211_rx_mgmt_sa_query_action(wpa_s, mgmt, len, rx_status);
  1733. break;
  1734. #endif /* CONFIG_IEEE80211W */
  1735. case WLAN_ACTION_WMM:
  1736. ieee80211_rx_mgmt_wmm_action(wpa_s, mgmt, len, rx_status);
  1737. break;
  1738. default:
  1739. wpa_printf(MSG_DEBUG, "MLME: unknown Action Category %d",
  1740. mgmt->u.action.category);
  1741. break;
  1742. }
  1743. }
  1744. static void ieee80211_sta_rx_mgmt(struct wpa_supplicant *wpa_s,
  1745. const u8 *buf, size_t len,
  1746. struct ieee80211_rx_status *rx_status)
  1747. {
  1748. struct ieee80211_mgmt *mgmt;
  1749. u16 fc;
  1750. if (len < 24)
  1751. return;
  1752. mgmt = (struct ieee80211_mgmt *) buf;
  1753. fc = le_to_host16(mgmt->frame_control);
  1754. switch (WLAN_FC_GET_STYPE(fc)) {
  1755. case WLAN_FC_STYPE_PROBE_REQ:
  1756. ieee80211_rx_mgmt_probe_req(wpa_s, mgmt, len, rx_status);
  1757. break;
  1758. case WLAN_FC_STYPE_PROBE_RESP:
  1759. ieee80211_rx_mgmt_probe_resp(wpa_s, mgmt, len, rx_status);
  1760. break;
  1761. case WLAN_FC_STYPE_BEACON:
  1762. ieee80211_rx_mgmt_beacon(wpa_s, mgmt, len, rx_status);
  1763. break;
  1764. case WLAN_FC_STYPE_AUTH:
  1765. ieee80211_rx_mgmt_auth(wpa_s, mgmt, len, rx_status);
  1766. break;
  1767. case WLAN_FC_STYPE_ASSOC_RESP:
  1768. ieee80211_rx_mgmt_assoc_resp(wpa_s, mgmt, len, rx_status, 0);
  1769. break;
  1770. case WLAN_FC_STYPE_REASSOC_RESP:
  1771. ieee80211_rx_mgmt_assoc_resp(wpa_s, mgmt, len, rx_status, 1);
  1772. break;
  1773. case WLAN_FC_STYPE_DEAUTH:
  1774. ieee80211_rx_mgmt_deauth(wpa_s, mgmt, len, rx_status);
  1775. break;
  1776. case WLAN_FC_STYPE_DISASSOC:
  1777. ieee80211_rx_mgmt_disassoc(wpa_s, mgmt, len, rx_status);
  1778. break;
  1779. case WLAN_FC_STYPE_ACTION:
  1780. ieee80211_rx_mgmt_action(wpa_s, mgmt, len, rx_status);
  1781. break;
  1782. default:
  1783. wpa_printf(MSG_DEBUG, "MLME: received unknown management "
  1784. "frame - stype=%d", WLAN_FC_GET_STYPE(fc));
  1785. break;
  1786. }
  1787. }
  1788. static void ieee80211_sta_rx_scan(struct wpa_supplicant *wpa_s,
  1789. const u8 *buf, size_t len,
  1790. struct ieee80211_rx_status *rx_status)
  1791. {
  1792. struct ieee80211_mgmt *mgmt;
  1793. u16 fc;
  1794. if (len < 24)
  1795. return;
  1796. mgmt = (struct ieee80211_mgmt *) buf;
  1797. fc = le_to_host16(mgmt->frame_control);
  1798. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT) {
  1799. if (WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
  1800. ieee80211_rx_mgmt_probe_resp(wpa_s, mgmt,
  1801. len, rx_status);
  1802. } else if (WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON) {
  1803. ieee80211_rx_mgmt_beacon(wpa_s, mgmt, len, rx_status);
  1804. }
  1805. }
  1806. }
  1807. static int ieee80211_sta_active_ibss(struct wpa_supplicant *wpa_s)
  1808. {
  1809. int active = 0;
  1810. #if 0 /* FIX */
  1811. list_for_each(ptr, &local->sta_list) {
  1812. sta = list_entry(ptr, struct sta_info, list);
  1813. if (sta->dev == dev &&
  1814. time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
  1815. jiffies)) {
  1816. active++;
  1817. break;
  1818. }
  1819. }
  1820. #endif
  1821. return active;
  1822. }
  1823. static void ieee80211_sta_expire(struct wpa_supplicant *wpa_s)
  1824. {
  1825. #if 0 /* FIX */
  1826. list_for_each_safe(ptr, n, &local->sta_list) {
  1827. sta = list_entry(ptr, struct sta_info, list);
  1828. if (time_after(jiffies, sta->last_rx +
  1829. IEEE80211_IBSS_INACTIVITY_LIMIT)) {
  1830. wpa_printf(MSG_DEBUG, "MLME: expiring inactive STA "
  1831. MACSTR, MAC2STR(sta->addr));
  1832. sta_info_free(local, sta, 1);
  1833. }
  1834. }
  1835. #endif
  1836. }
  1837. static void ieee80211_sta_merge_ibss(struct wpa_supplicant *wpa_s)
  1838. {
  1839. ieee80211_reschedule_timer(wpa_s, IEEE80211_IBSS_MERGE_INTERVAL);
  1840. ieee80211_sta_expire(wpa_s);
  1841. if (ieee80211_sta_active_ibss(wpa_s))
  1842. return;
  1843. wpa_printf(MSG_DEBUG, "MLME: No active IBSS STAs - trying to scan for "
  1844. "other IBSS networks with same SSID (merge)");
  1845. ieee80211_sta_req_scan(wpa_s, wpa_s->mlme.ssid, wpa_s->mlme.ssid_len);
  1846. }
  1847. static void ieee80211_sta_timer(void *eloop_ctx, void *timeout_ctx)
  1848. {
  1849. struct wpa_supplicant *wpa_s = eloop_ctx;
  1850. switch (wpa_s->mlme.state) {
  1851. case IEEE80211_DISABLED:
  1852. break;
  1853. case IEEE80211_AUTHENTICATE:
  1854. ieee80211_authenticate(wpa_s);
  1855. break;
  1856. case IEEE80211_ASSOCIATE:
  1857. ieee80211_associate(wpa_s);
  1858. break;
  1859. case IEEE80211_ASSOCIATED:
  1860. ieee80211_associated(wpa_s);
  1861. break;
  1862. case IEEE80211_IBSS_SEARCH:
  1863. ieee80211_sta_find_ibss(wpa_s);
  1864. break;
  1865. case IEEE80211_IBSS_JOINED:
  1866. ieee80211_sta_merge_ibss(wpa_s);
  1867. break;
  1868. default:
  1869. wpa_printf(MSG_DEBUG, "ieee80211_sta_timer: Unknown state %d",
  1870. wpa_s->mlme.state);
  1871. break;
  1872. }
  1873. if (ieee80211_privacy_mismatch(wpa_s)) {
  1874. wpa_printf(MSG_DEBUG, "MLME: privacy configuration mismatch "
  1875. "and mixed-cell disabled - disassociate");
  1876. ieee80211_send_disassoc(wpa_s, WLAN_REASON_UNSPECIFIED);
  1877. ieee80211_set_associated(wpa_s, 0);
  1878. }
  1879. }
  1880. static void ieee80211_sta_new_auth(struct wpa_supplicant *wpa_s)
  1881. {
  1882. struct wpa_ssid *ssid = wpa_s->current_ssid;
  1883. if (ssid && ssid->mode != 0)
  1884. return;
  1885. #if 0 /* FIX */
  1886. if (local->hw->reset_tsf) {
  1887. /* Reset own TSF to allow time synchronization work. */
  1888. local->hw->reset_tsf(local->mdev);
  1889. }
  1890. #endif
  1891. wpa_s->mlme.wmm_last_param_set = -1; /* allow any WMM update */
  1892. if (wpa_s->mlme.auth_algs & IEEE80211_AUTH_ALG_OPEN)
  1893. wpa_s->mlme.auth_alg = WLAN_AUTH_OPEN;
  1894. else if (wpa_s->mlme.auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
  1895. wpa_s->mlme.auth_alg = WLAN_AUTH_SHARED_KEY;
  1896. else if (wpa_s->mlme.auth_algs & IEEE80211_AUTH_ALG_LEAP)
  1897. wpa_s->mlme.auth_alg = WLAN_AUTH_LEAP;
  1898. else
  1899. wpa_s->mlme.auth_alg = WLAN_AUTH_OPEN;
  1900. wpa_printf(MSG_DEBUG, "MLME: Initial auth_alg=%d",
  1901. wpa_s->mlme.auth_alg);
  1902. wpa_s->mlme.auth_transaction = -1;
  1903. wpa_s->mlme.auth_tries = wpa_s->mlme.assoc_tries = 0;
  1904. ieee80211_authenticate(wpa_s);
  1905. }
  1906. static int ieee80211_ibss_allowed(struct wpa_supplicant *wpa_s)
  1907. {
  1908. #if 0 /* FIX */
  1909. int m, c;
  1910. for (m = 0; m < local->hw->num_modes; m++) {
  1911. struct ieee80211_hw_modes *mode = &local->hw->modes[m];
  1912. if (mode->mode != local->conf.phymode)
  1913. continue;
  1914. for (c = 0; c < mode->num_channels; c++) {
  1915. struct ieee80211_channel *chan = &mode->channels[c];
  1916. if (chan->flag & IEEE80211_CHAN_W_SCAN &&
  1917. chan->chan == local->conf.channel) {
  1918. if (chan->flag & IEEE80211_CHAN_W_IBSS)
  1919. return 1;
  1920. break;
  1921. }
  1922. }
  1923. }
  1924. #endif
  1925. return 0;
  1926. }
  1927. static int ieee80211_sta_join_ibss(struct wpa_supplicant *wpa_s,
  1928. struct ieee80211_sta_bss *bss)
  1929. {
  1930. int res = 0, rates, done = 0;
  1931. struct ieee80211_mgmt *mgmt;
  1932. #if 0 /* FIX */
  1933. struct ieee80211_tx_control control;
  1934. struct ieee80211_rate *rate;
  1935. struct rate_control_extra extra;
  1936. #endif
  1937. u8 *pos, *buf;
  1938. size_t len;
  1939. /* Remove possible STA entries from other IBSS networks. */
  1940. #if 0 /* FIX */
  1941. sta_info_flush(local, NULL);
  1942. if (local->hw->reset_tsf) {
  1943. /* Reset own TSF to allow time synchronization work. */
  1944. local->hw->reset_tsf(local->mdev);
  1945. }
  1946. #endif
  1947. os_memcpy(wpa_s->bssid, bss->bssid, ETH_ALEN);
  1948. #if 0 /* FIX */
  1949. local->conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10;
  1950. sdata->drop_unencrypted = bss->capability &
  1951. host_to_le16(WLAN_CAPABILITY_PRIVACY) ? 1 : 0;
  1952. #endif
  1953. #if 0 /* FIX */
  1954. os_memset(&rq, 0, sizeof(rq));
  1955. rq.m = bss->freq * 100000;
  1956. rq.e = 1;
  1957. res = ieee80211_ioctl_siwfreq(wpa_s, NULL, &rq, NULL);
  1958. #endif
  1959. if (!ieee80211_ibss_allowed(wpa_s)) {
  1960. #if 0 /* FIX */
  1961. wpa_printf(MSG_DEBUG, "MLME: IBSS not allowed on channel %d "
  1962. "(%d MHz)", local->conf.channel,
  1963. local->conf.freq);
  1964. #endif
  1965. return -1;
  1966. }
  1967. /* Set beacon template based on scan results */
  1968. buf = os_malloc(400);
  1969. len = 0;
  1970. do {
  1971. if (buf == NULL)
  1972. break;
  1973. mgmt = (struct ieee80211_mgmt *) buf;
  1974. len += 24 + sizeof(mgmt->u.beacon);
  1975. os_memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
  1976. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  1977. WLAN_FC_STYPE_BEACON);
  1978. os_memset(mgmt->da, 0xff, ETH_ALEN);
  1979. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  1980. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  1981. #if 0 /* FIX */
  1982. mgmt->u.beacon.beacon_int =
  1983. host_to_le16(local->conf.beacon_int);
  1984. #endif
  1985. mgmt->u.beacon.capab_info = host_to_le16(bss->capability);
  1986. pos = buf + len;
  1987. len += 2 + wpa_s->mlme.ssid_len;
  1988. *pos++ = WLAN_EID_SSID;
  1989. *pos++ = wpa_s->mlme.ssid_len;
  1990. os_memcpy(pos, wpa_s->mlme.ssid, wpa_s->mlme.ssid_len);
  1991. rates = bss->supp_rates_len;
  1992. if (rates > 8)
  1993. rates = 8;
  1994. pos = buf + len;
  1995. len += 2 + rates;
  1996. *pos++ = WLAN_EID_SUPP_RATES;
  1997. *pos++ = rates;
  1998. os_memcpy(pos, bss->supp_rates, rates);
  1999. pos = buf + len;
  2000. len += 2 + 1;
  2001. *pos++ = WLAN_EID_DS_PARAMS;
  2002. *pos++ = 1;
  2003. *pos++ = bss->channel;
  2004. pos = buf + len;
  2005. len += 2 + 2;
  2006. *pos++ = WLAN_EID_IBSS_PARAMS;
  2007. *pos++ = 2;
  2008. /* FIX: set ATIM window based on scan results */
  2009. *pos++ = 0;
  2010. *pos++ = 0;
  2011. if (bss->supp_rates_len > 8) {
  2012. rates = bss->supp_rates_len - 8;
  2013. pos = buf + len;
  2014. len += 2 + rates;
  2015. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  2016. *pos++ = rates;
  2017. os_memcpy(pos, &bss->supp_rates[8], rates);
  2018. }
  2019. #if 0 /* FIX */
  2020. os_memset(&control, 0, sizeof(control));
  2021. control.pkt_type = PKT_PROBE_RESP;
  2022. os_memset(&extra, 0, sizeof(extra));
  2023. extra.endidx = local->num_curr_rates;
  2024. rate = rate_control_get_rate(wpa_s, skb, &extra);
  2025. if (rate == NULL) {
  2026. wpa_printf(MSG_DEBUG, "MLME: Failed to determine TX "
  2027. "rate for IBSS beacon");
  2028. break;
  2029. }
  2030. control.tx_rate = (wpa_s->mlme.short_preamble &&
  2031. (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
  2032. rate->val2 : rate->val;
  2033. control.antenna_sel = local->conf.antenna_sel;
  2034. control.power_level = local->conf.power_level;
  2035. control.no_ack = 1;
  2036. control.retry_limit = 1;
  2037. control.rts_cts_duration = 0;
  2038. #endif
  2039. #if 0 /* FIX */
  2040. wpa_s->mlme.probe_resp = skb_copy(skb, GFP_ATOMIC);
  2041. if (wpa_s->mlme.probe_resp) {
  2042. mgmt = (struct ieee80211_mgmt *)
  2043. wpa_s->mlme.probe_resp->data;
  2044. mgmt->frame_control =
  2045. IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  2046. WLAN_FC_STYPE_PROBE_RESP);
  2047. } else {
  2048. wpa_printf(MSG_DEBUG, "MLME: Could not allocate "
  2049. "ProbeResp template for IBSS");
  2050. }
  2051. if (local->hw->beacon_update &&
  2052. local->hw->beacon_update(wpa_s, skb, &control) == 0) {
  2053. wpa_printf(MSG_DEBUG, "MLME: Configured IBSS beacon "
  2054. "template based on scan results");
  2055. skb = NULL;
  2056. }
  2057. rates = 0;
  2058. for (i = 0; i < bss->supp_rates_len; i++) {
  2059. int rate = (bss->supp_rates[i] & 0x7f) * 5;
  2060. if (local->conf.phymode == MODE_ATHEROS_TURBO)
  2061. rate *= 2;
  2062. for (j = 0; j < local->num_curr_rates; j++)
  2063. if (local->curr_rates[j].rate == rate)
  2064. rates |= BIT(j);
  2065. }
  2066. wpa_s->mlme.supp_rates_bits = rates;
  2067. #endif
  2068. done = 1;
  2069. } while (0);
  2070. os_free(buf);
  2071. if (!done) {
  2072. wpa_printf(MSG_DEBUG, "MLME: Failed to configure IBSS beacon "
  2073. "template");
  2074. }
  2075. wpa_s->mlme.state = IEEE80211_IBSS_JOINED;
  2076. ieee80211_reschedule_timer(wpa_s, IEEE80211_IBSS_MERGE_INTERVAL);
  2077. return res;
  2078. }
  2079. #if 0 /* FIX */
  2080. static int ieee80211_sta_create_ibss(struct wpa_supplicant *wpa_s)
  2081. {
  2082. struct ieee80211_sta_bss *bss;
  2083. u8 bssid[ETH_ALEN], *pos;
  2084. int i;
  2085. #if 0
  2086. /* Easier testing, use fixed BSSID. */
  2087. os_memset(bssid, 0xfe, ETH_ALEN);
  2088. #else
  2089. /* Generate random, not broadcast, locally administered BSSID. Mix in
  2090. * own MAC address to make sure that devices that do not have proper
  2091. * random number generator get different BSSID. */
  2092. os_get_random(bssid, ETH_ALEN);
  2093. for (i = 0; i < ETH_ALEN; i++)
  2094. bssid[i] ^= wpa_s->own_addr[i];
  2095. bssid[0] &= ~0x01;
  2096. bssid[0] |= 0x02;
  2097. #endif
  2098. wpa_printf(MSG_DEBUG, "MLME: Creating new IBSS network, BSSID "
  2099. MACSTR "", MAC2STR(bssid));
  2100. bss = ieee80211_bss_add(wpa_s, bssid);
  2101. if (bss == NULL)
  2102. return -ENOMEM;
  2103. #if 0 /* FIX */
  2104. if (local->conf.beacon_int == 0)
  2105. local->conf.beacon_int = 100;
  2106. bss->beacon_int = local->conf.beacon_int;
  2107. bss->hw_mode = local->conf.phymode;
  2108. bss->channel = local->conf.channel;
  2109. bss->freq = local->conf.freq;
  2110. #endif
  2111. os_get_time(&bss->last_update);
  2112. bss->capability = host_to_le16(WLAN_CAPABILITY_IBSS);
  2113. #if 0 /* FIX */
  2114. if (sdata->default_key) {
  2115. bss->capability |= host_to_le16(WLAN_CAPABILITY_PRIVACY);
  2116. } else
  2117. sdata->drop_unencrypted = 0;
  2118. bss->supp_rates_len = local->num_curr_rates;
  2119. #endif
  2120. pos = bss->supp_rates;
  2121. #if 0 /* FIX */
  2122. for (i = 0; i < local->num_curr_rates; i++) {
  2123. int rate = local->curr_rates[i].rate;
  2124. if (local->conf.phymode == MODE_ATHEROS_TURBO)
  2125. rate /= 2;
  2126. *pos++ = (u8) (rate / 5);
  2127. }
  2128. #endif
  2129. return ieee80211_sta_join_ibss(wpa_s, bss);
  2130. }
  2131. #endif
  2132. static int ieee80211_sta_find_ibss(struct wpa_supplicant *wpa_s)
  2133. {
  2134. struct ieee80211_sta_bss *bss;
  2135. int found = 0;
  2136. u8 bssid[ETH_ALEN];
  2137. int active_ibss;
  2138. struct os_time now;
  2139. if (wpa_s->mlme.ssid_len == 0)
  2140. return -EINVAL;
  2141. active_ibss = ieee80211_sta_active_ibss(wpa_s);
  2142. #ifdef IEEE80211_IBSS_DEBUG
  2143. wpa_printf(MSG_DEBUG, "MLME: sta_find_ibss (active_ibss=%d)",
  2144. active_ibss);
  2145. #endif /* IEEE80211_IBSS_DEBUG */
  2146. for (bss = wpa_s->mlme.sta_bss_list; bss; bss = bss->next) {
  2147. if (wpa_s->mlme.ssid_len != bss->ssid_len ||
  2148. os_memcmp(wpa_s->mlme.ssid, bss->ssid, bss->ssid_len) != 0
  2149. || !(bss->capability & WLAN_CAPABILITY_IBSS))
  2150. continue;
  2151. #ifdef IEEE80211_IBSS_DEBUG
  2152. wpa_printf(MSG_DEBUG, " bssid=" MACSTR " found",
  2153. MAC2STR(bss->bssid));
  2154. #endif /* IEEE80211_IBSS_DEBUG */
  2155. os_memcpy(bssid, bss->bssid, ETH_ALEN);
  2156. found = 1;
  2157. if (active_ibss ||
  2158. os_memcmp(bssid, wpa_s->bssid, ETH_ALEN) != 0)
  2159. break;
  2160. }
  2161. #ifdef IEEE80211_IBSS_DEBUG
  2162. wpa_printf(MSG_DEBUG, " sta_find_ibss: selected " MACSTR " current "
  2163. MACSTR, MAC2STR(bssid), MAC2STR(wpa_s->bssid));
  2164. #endif /* IEEE80211_IBSS_DEBUG */
  2165. if (found && os_memcmp(wpa_s->bssid, bssid, ETH_ALEN) != 0 &&
  2166. (bss = ieee80211_bss_get(wpa_s, bssid))) {
  2167. wpa_printf(MSG_DEBUG, "MLME: Selected IBSS BSSID " MACSTR
  2168. " based on configured SSID",
  2169. MAC2STR(bssid));
  2170. return ieee80211_sta_join_ibss(wpa_s, bss);
  2171. }
  2172. #ifdef IEEE80211_IBSS_DEBUG
  2173. wpa_printf(MSG_DEBUG, " did not try to join ibss");
  2174. #endif /* IEEE80211_IBSS_DEBUG */
  2175. /* Selected IBSS not found in current scan results - try to scan */
  2176. os_get_time(&now);
  2177. #if 0 /* FIX */
  2178. if (wpa_s->mlme.state == IEEE80211_IBSS_JOINED &&
  2179. !ieee80211_sta_active_ibss(wpa_s)) {
  2180. ieee80211_reschedule_timer(wpa_s,
  2181. IEEE80211_IBSS_MERGE_INTERVAL);
  2182. } else if (time_after(jiffies, wpa_s->mlme.last_scan_completed +
  2183. IEEE80211_SCAN_INTERVAL)) {
  2184. wpa_printf(MSG_DEBUG, "MLME: Trigger new scan to find an IBSS "
  2185. "to join");
  2186. return ieee80211_sta_req_scan(wpa_s->mlme.ssid,
  2187. wpa_s->mlme.ssid_len);
  2188. } else if (wpa_s->mlme.state != IEEE80211_IBSS_JOINED) {
  2189. int interval = IEEE80211_SCAN_INTERVAL;
  2190. if (time_after(jiffies, wpa_s->mlme.ibss_join_req +
  2191. IEEE80211_IBSS_JOIN_TIMEOUT)) {
  2192. if (wpa_s->mlme.create_ibss &&
  2193. ieee80211_ibss_allowed(wpa_s))
  2194. return ieee80211_sta_create_ibss(wpa_s);
  2195. if (wpa_s->mlme.create_ibss) {
  2196. wpa_printf(MSG_DEBUG, "MLME: IBSS not allowed "
  2197. "on the configured channel %d "
  2198. "(%d MHz)",
  2199. local->conf.channel,
  2200. local->conf.freq);
  2201. }
  2202. /* No IBSS found - decrease scan interval and continue
  2203. * scanning. */
  2204. interval = IEEE80211_SCAN_INTERVAL_SLOW;
  2205. }
  2206. wpa_s->mlme.state = IEEE80211_IBSS_SEARCH;
  2207. ieee80211_reschedule_timer(wpa_s, interval);
  2208. return 0;
  2209. }
  2210. #endif
  2211. return 0;
  2212. }
  2213. int ieee80211_sta_get_ssid(struct wpa_supplicant *wpa_s, u8 *ssid,
  2214. size_t *len)
  2215. {
  2216. os_memcpy(ssid, wpa_s->mlme.ssid, wpa_s->mlme.ssid_len);
  2217. *len = wpa_s->mlme.ssid_len;
  2218. return 0;
  2219. }
  2220. int ieee80211_sta_associate(struct wpa_supplicant *wpa_s,
  2221. struct wpa_driver_associate_params *params)
  2222. {
  2223. struct ieee80211_sta_bss *bss;
  2224. wpa_s->mlme.bssid_set = 0;
  2225. wpa_s->mlme.freq = params->freq;
  2226. if (params->bssid) {
  2227. os_memcpy(wpa_s->bssid, params->bssid, ETH_ALEN);
  2228. if (!is_zero_ether_addr(params->bssid))
  2229. wpa_s->mlme.bssid_set = 1;
  2230. bss = ieee80211_bss_get(wpa_s, wpa_s->bssid);
  2231. if (bss) {
  2232. wpa_s->mlme.phymode = bss->hw_mode;
  2233. wpa_s->mlme.channel = bss->channel;
  2234. wpa_s->mlme.freq = bss->freq;
  2235. }
  2236. }
  2237. #if 0 /* FIX */
  2238. /* TODO: This should always be done for IBSS, even if IEEE80211_QOS is
  2239. * not defined. */
  2240. if (local->hw->conf_tx) {
  2241. struct ieee80211_tx_queue_params qparam;
  2242. int i;
  2243. os_memset(&qparam, 0, sizeof(qparam));
  2244. /* TODO: are these ok defaults for all hw_modes? */
  2245. qparam.aifs = 2;
  2246. qparam.cw_min =
  2247. local->conf.phymode == MODE_IEEE80211B ? 31 : 15;
  2248. qparam.cw_max = 1023;
  2249. qparam.burst_time = 0;
  2250. for (i = IEEE80211_TX_QUEUE_DATA0; i < NUM_TX_DATA_QUEUES; i++)
  2251. {
  2252. local->hw->conf_tx(wpa_s, i + IEEE80211_TX_QUEUE_DATA0,
  2253. &qparam);
  2254. }
  2255. /* IBSS uses different parameters for Beacon sending */
  2256. qparam.cw_min++;
  2257. qparam.cw_min *= 2;
  2258. qparam.cw_min--;
  2259. local->hw->conf_tx(wpa_s, IEEE80211_TX_QUEUE_BEACON, &qparam);
  2260. }
  2261. #endif
  2262. if (wpa_s->mlme.ssid_len != params->ssid_len ||
  2263. os_memcmp(wpa_s->mlme.ssid, params->ssid, params->ssid_len) != 0)
  2264. wpa_s->mlme.prev_bssid_set = 0;
  2265. os_memcpy(wpa_s->mlme.ssid, params->ssid, params->ssid_len);
  2266. os_memset(wpa_s->mlme.ssid + params->ssid_len, 0,
  2267. MAX_SSID_LEN - params->ssid_len);
  2268. wpa_s->mlme.ssid_len = params->ssid_len;
  2269. wpa_s->mlme.ssid_set = 1;
  2270. os_free(wpa_s->mlme.extra_ie);
  2271. if (params->wpa_ie == NULL || params->wpa_ie_len == 0) {
  2272. wpa_s->mlme.extra_ie = NULL;
  2273. wpa_s->mlme.extra_ie_len = 0;
  2274. } else {
  2275. wpa_s->mlme.extra_ie = os_malloc(params->wpa_ie_len);
  2276. if (wpa_s->mlme.extra_ie == NULL) {
  2277. wpa_s->mlme.extra_ie_len = 0;
  2278. return -1;
  2279. }
  2280. os_memcpy(wpa_s->mlme.extra_ie, params->wpa_ie,
  2281. params->wpa_ie_len);
  2282. wpa_s->mlme.extra_ie_len = params->wpa_ie_len;
  2283. }
  2284. wpa_s->mlme.key_mgmt = params->key_mgmt_suite;
  2285. ieee80211_sta_set_channel(wpa_s, wpa_s->mlme.phymode,
  2286. wpa_s->mlme.channel, wpa_s->mlme.freq);
  2287. if (params->mode == 1 && !wpa_s->mlme.bssid_set) {
  2288. os_get_time(&wpa_s->mlme.ibss_join_req);
  2289. wpa_s->mlme.state = IEEE80211_IBSS_SEARCH;
  2290. return ieee80211_sta_find_ibss(wpa_s);
  2291. }
  2292. if (wpa_s->mlme.bssid_set)
  2293. ieee80211_sta_new_auth(wpa_s);
  2294. return 0;
  2295. }
  2296. static void ieee80211_sta_save_oper_chan(struct wpa_supplicant *wpa_s)
  2297. {
  2298. wpa_s->mlme.scan_oper_channel = wpa_s->mlme.channel;
  2299. wpa_s->mlme.scan_oper_freq = wpa_s->mlme.freq;
  2300. wpa_s->mlme.scan_oper_phymode = wpa_s->mlme.phymode;
  2301. }
  2302. static int ieee80211_sta_restore_oper_chan(struct wpa_supplicant *wpa_s)
  2303. {
  2304. wpa_s->mlme.channel = wpa_s->mlme.scan_oper_channel;
  2305. wpa_s->mlme.freq = wpa_s->mlme.scan_oper_freq;
  2306. wpa_s->mlme.phymode = wpa_s->mlme.scan_oper_phymode;
  2307. if (wpa_s->mlme.freq == 0)
  2308. return 0;
  2309. return ieee80211_sta_set_channel(wpa_s, wpa_s->mlme.phymode,
  2310. wpa_s->mlme.channel,
  2311. wpa_s->mlme.freq);
  2312. }
  2313. static int ieee80211_active_scan(struct wpa_supplicant *wpa_s)
  2314. {
  2315. size_t m;
  2316. int c;
  2317. for (m = 0; m < wpa_s->mlme.num_modes; m++) {
  2318. struct hostapd_hw_modes *mode = &wpa_s->mlme.modes[m];
  2319. if ((int) mode->mode != (int) wpa_s->mlme.phymode)
  2320. continue;
  2321. for (c = 0; c < mode->num_channels; c++) {
  2322. struct hostapd_channel_data *chan = &mode->channels[c];
  2323. if (!(chan->flag & HOSTAPD_CHAN_DISABLED) &&
  2324. chan->chan == wpa_s->mlme.channel) {
  2325. if (!(chan->flag & HOSTAPD_CHAN_PASSIVE_SCAN))
  2326. return 1;
  2327. break;
  2328. }
  2329. }
  2330. }
  2331. return 0;
  2332. }
  2333. static void ieee80211_sta_scan_timer(void *eloop_ctx, void *timeout_ctx)
  2334. {
  2335. struct wpa_supplicant *wpa_s = eloop_ctx;
  2336. struct hostapd_hw_modes *mode;
  2337. struct hostapd_channel_data *chan;
  2338. int skip = 0;
  2339. int timeout = 0;
  2340. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2341. int adhoc;
  2342. if (!wpa_s->mlme.sta_scanning || wpa_s->mlme.modes == NULL)
  2343. return;
  2344. adhoc = ssid && ssid->mode == 1;
  2345. switch (wpa_s->mlme.scan_state) {
  2346. case SCAN_SET_CHANNEL:
  2347. mode = &wpa_s->mlme.modes[wpa_s->mlme.scan_hw_mode_idx];
  2348. if (wpa_s->mlme.scan_hw_mode_idx >=
  2349. (int) wpa_s->mlme.num_modes ||
  2350. (wpa_s->mlme.scan_hw_mode_idx + 1 ==
  2351. (int) wpa_s->mlme.num_modes
  2352. && wpa_s->mlme.scan_channel_idx >= mode->num_channels)) {
  2353. if (ieee80211_sta_restore_oper_chan(wpa_s)) {
  2354. wpa_printf(MSG_DEBUG, "MLME: failed to "
  2355. "restore operational channel after "
  2356. "scan");
  2357. }
  2358. wpa_printf(MSG_DEBUG, "MLME: scan completed");
  2359. wpa_s->mlme.sta_scanning = 0;
  2360. os_get_time(&wpa_s->mlme.last_scan_completed);
  2361. wpa_supplicant_event(wpa_s, EVENT_SCAN_RESULTS, NULL);
  2362. if (adhoc) {
  2363. if (!wpa_s->mlme.bssid_set ||
  2364. (wpa_s->mlme.state ==
  2365. IEEE80211_IBSS_JOINED &&
  2366. !ieee80211_sta_active_ibss(wpa_s)))
  2367. ieee80211_sta_find_ibss(wpa_s);
  2368. }
  2369. return;
  2370. }
  2371. skip = !(wpa_s->mlme.hw_modes & (1 << mode->mode));
  2372. chan = &mode->channels[wpa_s->mlme.scan_channel_idx];
  2373. if ((chan->flag & HOSTAPD_CHAN_DISABLED) ||
  2374. (adhoc && (chan->flag & HOSTAPD_CHAN_NO_IBSS)) ||
  2375. (wpa_s->mlme.hw_modes & (1 << HOSTAPD_MODE_IEEE80211G) &&
  2376. mode->mode == HOSTAPD_MODE_IEEE80211B &&
  2377. wpa_s->mlme.scan_skip_11b))
  2378. skip = 1;
  2379. if (!skip) {
  2380. wpa_printf(MSG_MSGDUMP,
  2381. "MLME: scan channel %d (%d MHz)",
  2382. chan->chan, chan->freq);
  2383. wpa_s->mlme.channel = chan->chan;
  2384. wpa_s->mlme.freq = chan->freq;
  2385. wpa_s->mlme.phymode = mode->mode;
  2386. if (ieee80211_sta_set_channel(wpa_s, mode->mode,
  2387. chan->chan, chan->freq))
  2388. {
  2389. wpa_printf(MSG_DEBUG, "MLME: failed to set "
  2390. "channel %d (%d MHz) for scan",
  2391. chan->chan, chan->freq);
  2392. skip = 1;
  2393. }
  2394. }
  2395. wpa_s->mlme.scan_channel_idx++;
  2396. if (wpa_s->mlme.scan_channel_idx >=
  2397. wpa_s->mlme.modes[wpa_s->mlme.scan_hw_mode_idx].
  2398. num_channels) {
  2399. wpa_s->mlme.scan_hw_mode_idx++;
  2400. wpa_s->mlme.scan_channel_idx = 0;
  2401. }
  2402. if (skip) {
  2403. timeout = 0;
  2404. break;
  2405. }
  2406. timeout = IEEE80211_PROBE_DELAY;
  2407. wpa_s->mlme.scan_state = SCAN_SEND_PROBE;
  2408. break;
  2409. case SCAN_SEND_PROBE:
  2410. if (ieee80211_active_scan(wpa_s)) {
  2411. ieee80211_send_probe_req(wpa_s, NULL,
  2412. wpa_s->mlme.scan_ssid,
  2413. wpa_s->mlme.scan_ssid_len);
  2414. timeout = IEEE80211_CHANNEL_TIME;
  2415. } else {
  2416. timeout = IEEE80211_PASSIVE_CHANNEL_TIME;
  2417. }
  2418. wpa_s->mlme.scan_state = SCAN_SET_CHANNEL;
  2419. break;
  2420. }
  2421. eloop_register_timeout(timeout / 1000, 1000 * (timeout % 1000),
  2422. ieee80211_sta_scan_timer, wpa_s, NULL);
  2423. }
  2424. int ieee80211_sta_req_scan(struct wpa_supplicant *wpa_s, const u8 *ssid,
  2425. size_t ssid_len)
  2426. {
  2427. if (ssid_len > MAX_SSID_LEN)
  2428. return -1;
  2429. /* MLME-SCAN.request (page 118) page 144 (11.1.3.1)
  2430. * BSSType: INFRASTRUCTURE, INDEPENDENT, ANY_BSS
  2431. * BSSID: MACAddress
  2432. * SSID
  2433. * ScanType: ACTIVE, PASSIVE
  2434. * ProbeDelay: delay (in microseconds) to be used prior to transmitting
  2435. * a Probe frame during active scanning
  2436. * ChannelList
  2437. * MinChannelTime (>= ProbeDelay), in TU
  2438. * MaxChannelTime: (>= MinChannelTime), in TU
  2439. */
  2440. /* MLME-SCAN.confirm
  2441. * BSSDescriptionSet
  2442. * ResultCode: SUCCESS, INVALID_PARAMETERS
  2443. */
  2444. /* TODO: if assoc, move to power save mode for the duration of the
  2445. * scan */
  2446. if (wpa_s->mlme.sta_scanning)
  2447. return -1;
  2448. wpa_printf(MSG_DEBUG, "MLME: starting scan");
  2449. ieee80211_sta_save_oper_chan(wpa_s);
  2450. wpa_s->mlme.sta_scanning = 1;
  2451. /* TODO: stop TX queue? */
  2452. if (ssid) {
  2453. wpa_s->mlme.scan_ssid_len = ssid_len;
  2454. os_memcpy(wpa_s->mlme.scan_ssid, ssid, ssid_len);
  2455. } else
  2456. wpa_s->mlme.scan_ssid_len = 0;
  2457. wpa_s->mlme.scan_skip_11b = 1; /* FIX: clear this is 11g is not
  2458. * supported */
  2459. wpa_s->mlme.scan_state = SCAN_SET_CHANNEL;
  2460. wpa_s->mlme.scan_hw_mode_idx = 0;
  2461. wpa_s->mlme.scan_channel_idx = 0;
  2462. eloop_register_timeout(0, 1, ieee80211_sta_scan_timer, wpa_s, NULL);
  2463. return 0;
  2464. }
  2465. struct wpa_scan_results *
  2466. ieee80211_sta_get_scan_results(struct wpa_supplicant *wpa_s)
  2467. {
  2468. size_t ap_num = 0;
  2469. struct wpa_scan_results *res;
  2470. struct wpa_scan_res *r;
  2471. struct ieee80211_sta_bss *bss;
  2472. res = os_zalloc(sizeof(*res));
  2473. for (bss = wpa_s->mlme.sta_bss_list; bss; bss = bss->next)
  2474. ap_num++;
  2475. res->res = os_zalloc(ap_num * sizeof(struct wpa_scan_res *));
  2476. if (res->res == NULL) {
  2477. os_free(res);
  2478. return NULL;
  2479. }
  2480. for (bss = wpa_s->mlme.sta_bss_list; bss; bss = bss->next) {
  2481. r = os_zalloc(sizeof(*r) + bss->ie_len);
  2482. if (r == NULL)
  2483. break;
  2484. os_memcpy(r->bssid, bss->bssid, ETH_ALEN);
  2485. r->freq = bss->freq;
  2486. r->beacon_int = bss->beacon_int;
  2487. r->caps = bss->capability;
  2488. r->level = bss->rssi;
  2489. r->tsf = bss->timestamp;
  2490. if (bss->ie) {
  2491. r->ie_len = bss->ie_len;
  2492. os_memcpy(r + 1, bss->ie, bss->ie_len);
  2493. }
  2494. res->res[res->num++] = r;
  2495. }
  2496. return res;
  2497. }
  2498. #if 0 /* FIX */
  2499. struct sta_info * ieee80211_ibss_add_sta(struct wpa_supplicant *wpa_s,
  2500. struct sk_buff *skb, u8 *bssid,
  2501. u8 *addr)
  2502. {
  2503. struct ieee80211_local *local = dev->priv;
  2504. struct list_head *ptr;
  2505. struct sta_info *sta;
  2506. struct wpa_supplicant *sta_dev = NULL;
  2507. /* TODO: Could consider removing the least recently used entry and
  2508. * allow new one to be added. */
  2509. if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
  2510. if (net_ratelimit()) {
  2511. wpa_printf(MSG_DEBUG, "MLME: No room for a new IBSS "
  2512. "STA entry " MACSTR, MAC2STR(addr));
  2513. }
  2514. return NULL;
  2515. }
  2516. spin_lock_bh(&local->sub_if_lock);
  2517. list_for_each(ptr, &local->sub_if_list) {
  2518. sdata = list_entry(ptr, struct ieee80211_sub_if_data, list);
  2519. if (sdata->type == IEEE80211_SUB_IF_TYPE_STA &&
  2520. os_memcmp(bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) {
  2521. sta_dev = sdata->dev;
  2522. break;
  2523. }
  2524. }
  2525. spin_unlock_bh(&local->sub_if_lock);
  2526. if (sta_dev == NULL)
  2527. return NULL;
  2528. wpa_printf(MSG_DEBUG, "MLME: Adding new IBSS station " MACSTR
  2529. " (dev=%s)", MAC2STR(addr), sta_dev->name);
  2530. sta = sta_info_add(wpa_s, addr);
  2531. if (sta == NULL) {
  2532. return NULL;
  2533. }
  2534. sta->dev = sta_dev;
  2535. sta->supp_rates = wpa_s->mlme.supp_rates_bits;
  2536. rate_control_rate_init(local, sta);
  2537. return sta; /* caller will call sta_info_release() */
  2538. }
  2539. #endif
  2540. int ieee80211_sta_deauthenticate(struct wpa_supplicant *wpa_s, u16 reason)
  2541. {
  2542. wpa_printf(MSG_DEBUG, "MLME: deauthenticate(reason=%d)", reason);
  2543. ieee80211_send_deauth(wpa_s, reason);
  2544. ieee80211_set_associated(wpa_s, 0);
  2545. return 0;
  2546. }
  2547. int ieee80211_sta_disassociate(struct wpa_supplicant *wpa_s, u16 reason)
  2548. {
  2549. wpa_printf(MSG_DEBUG, "MLME: disassociate(reason=%d)", reason);
  2550. if (!wpa_s->mlme.associated)
  2551. return -1;
  2552. ieee80211_send_disassoc(wpa_s, reason);
  2553. ieee80211_set_associated(wpa_s, 0);
  2554. return 0;
  2555. }
  2556. void ieee80211_sta_rx(struct wpa_supplicant *wpa_s, const u8 *buf, size_t len,
  2557. struct ieee80211_rx_status *rx_status)
  2558. {
  2559. struct ieee80211_mgmt *mgmt;
  2560. u16 fc;
  2561. const u8 *pos;
  2562. /* wpa_hexdump(MSG_MSGDUMP, "MLME: Received frame", buf, len); */
  2563. if (wpa_s->mlme.sta_scanning) {
  2564. ieee80211_sta_rx_scan(wpa_s, buf, len, rx_status);
  2565. return;
  2566. }
  2567. if (len < 24)
  2568. return;
  2569. mgmt = (struct ieee80211_mgmt *) buf;
  2570. fc = le_to_host16(mgmt->frame_control);
  2571. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT)
  2572. ieee80211_sta_rx_mgmt(wpa_s, buf, len, rx_status);
  2573. else if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_DATA) {
  2574. if ((fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) !=
  2575. WLAN_FC_FROMDS)
  2576. return;
  2577. /* mgmt->sa is actually BSSID for FromDS data frames */
  2578. if (os_memcmp(mgmt->sa, wpa_s->bssid, ETH_ALEN) != 0)
  2579. return;
  2580. /* Skip IEEE 802.11 and LLC headers */
  2581. pos = buf + 24 + 6;
  2582. if (WPA_GET_BE16(pos) != ETH_P_EAPOL)
  2583. return;
  2584. pos += 2;
  2585. /* mgmt->bssid is actually BSSID for SA data frames */
  2586. wpa_supplicant_rx_eapol(wpa_s, mgmt->bssid,
  2587. pos, buf + len - pos);
  2588. }
  2589. }
  2590. void ieee80211_sta_free_hw_features(struct hostapd_hw_modes *hw_features,
  2591. size_t num_hw_features)
  2592. {
  2593. size_t i;
  2594. if (hw_features == NULL)
  2595. return;
  2596. for (i = 0; i < num_hw_features; i++) {
  2597. os_free(hw_features[i].channels);
  2598. os_free(hw_features[i].rates);
  2599. }
  2600. os_free(hw_features);
  2601. }
  2602. int ieee80211_sta_init(struct wpa_supplicant *wpa_s)
  2603. {
  2604. u16 num_modes, flags;
  2605. wpa_s->mlme.modes = wpa_drv_get_hw_feature_data(wpa_s, &num_modes,
  2606. &flags);
  2607. if (wpa_s->mlme.modes == NULL) {
  2608. wpa_printf(MSG_ERROR, "MLME: Failed to read supported "
  2609. "channels and rates from the driver");
  2610. return -1;
  2611. }
  2612. wpa_s->mlme.num_modes = num_modes;
  2613. wpa_s->mlme.hw_modes = 1 << HOSTAPD_MODE_IEEE80211A;
  2614. wpa_s->mlme.hw_modes |= 1 << HOSTAPD_MODE_IEEE80211B;
  2615. wpa_s->mlme.hw_modes |= 1 << HOSTAPD_MODE_IEEE80211G;
  2616. wpa_s->mlme.wmm_enabled = 1;
  2617. return 0;
  2618. }
  2619. void ieee80211_sta_deinit(struct wpa_supplicant *wpa_s)
  2620. {
  2621. eloop_cancel_timeout(ieee80211_sta_timer, wpa_s, NULL);
  2622. eloop_cancel_timeout(ieee80211_sta_scan_timer, wpa_s, NULL);
  2623. os_free(wpa_s->mlme.extra_ie);
  2624. wpa_s->mlme.extra_ie = NULL;
  2625. os_free(wpa_s->mlme.extra_probe_ie);
  2626. wpa_s->mlme.extra_probe_ie = NULL;
  2627. os_free(wpa_s->mlme.assocreq_ies);
  2628. wpa_s->mlme.assocreq_ies = NULL;
  2629. os_free(wpa_s->mlme.assocresp_ies);
  2630. wpa_s->mlme.assocresp_ies = NULL;
  2631. ieee80211_bss_list_deinit(wpa_s);
  2632. ieee80211_sta_free_hw_features(wpa_s->mlme.modes,
  2633. wpa_s->mlme.num_modes);
  2634. #ifdef CONFIG_IEEE80211R
  2635. os_free(wpa_s->mlme.ft_ies);
  2636. wpa_s->mlme.ft_ies = NULL;
  2637. wpa_s->mlme.ft_ies_len = 0;
  2638. #endif /* CONFIG_IEEE80211R */
  2639. }
  2640. #ifdef CONFIG_IEEE80211R
  2641. int ieee80211_sta_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
  2642. const u8 *ies, size_t ies_len)
  2643. {
  2644. if (md == NULL) {
  2645. wpa_printf(MSG_DEBUG, "MLME: Clear FT mobility domain");
  2646. os_memset(wpa_s->mlme.current_md, 0, MOBILITY_DOMAIN_ID_LEN);
  2647. } else {
  2648. wpa_printf(MSG_DEBUG, "MLME: Update FT IEs for MD " MACSTR,
  2649. MAC2STR(md));
  2650. os_memcpy(wpa_s->mlme.current_md, md, MOBILITY_DOMAIN_ID_LEN);
  2651. }
  2652. wpa_hexdump(MSG_DEBUG, "MLME: FT IEs", ies, ies_len);
  2653. os_free(wpa_s->mlme.ft_ies);
  2654. wpa_s->mlme.ft_ies = os_malloc(ies_len);
  2655. if (wpa_s->mlme.ft_ies == NULL)
  2656. return -1;
  2657. os_memcpy(wpa_s->mlme.ft_ies, ies, ies_len);
  2658. wpa_s->mlme.ft_ies_len = ies_len;
  2659. return 0;
  2660. }
  2661. int ieee80211_sta_send_ft_action(struct wpa_supplicant *wpa_s, u8 action,
  2662. const u8 *target_ap,
  2663. const u8 *ies, size_t ies_len)
  2664. {
  2665. u8 *buf;
  2666. size_t len;
  2667. struct ieee80211_mgmt *mgmt;
  2668. int res;
  2669. /*
  2670. * Action frame payload:
  2671. * Category[1] = 6 (Fast BSS Transition)
  2672. * Action[1] = 1 (Fast BSS Transition Request)
  2673. * STA Address
  2674. * Target AP Address
  2675. * FT IEs
  2676. */
  2677. buf = os_zalloc(sizeof(*mgmt) + ies_len);
  2678. if (buf == NULL) {
  2679. wpa_printf(MSG_DEBUG, "MLME: Failed to allocate buffer for "
  2680. "FT action frame");
  2681. return -1;
  2682. }
  2683. mgmt = (struct ieee80211_mgmt *) buf;
  2684. len = 24;
  2685. os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
  2686. os_memcpy(mgmt->sa, wpa_s->own_addr, ETH_ALEN);
  2687. os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
  2688. mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  2689. WLAN_FC_STYPE_ACTION);
  2690. mgmt->u.action.category = WLAN_ACTION_FT;
  2691. mgmt->u.action.u.ft_action_req.action = action;
  2692. os_memcpy(mgmt->u.action.u.ft_action_req.sta_addr, wpa_s->own_addr,
  2693. ETH_ALEN);
  2694. os_memcpy(mgmt->u.action.u.ft_action_req.target_ap_addr, target_ap,
  2695. ETH_ALEN);
  2696. os_memcpy(mgmt->u.action.u.ft_action_req.variable, ies, ies_len);
  2697. len += 1 + sizeof(mgmt->u.action.u.ft_action_req) + ies_len;
  2698. wpa_printf(MSG_DEBUG, "MLME: Send FT Action Frame: Action=%d "
  2699. "Target AP=" MACSTR " body_len=%lu",
  2700. action, MAC2STR(target_ap), (unsigned long) ies_len);
  2701. res = ieee80211_sta_tx(wpa_s, buf, len);
  2702. os_free(buf);
  2703. return res;
  2704. }
  2705. #endif /* CONFIG_IEEE80211R */
  2706. int ieee80211_sta_set_probe_req_ie(struct wpa_supplicant *wpa_s, const u8 *ies,
  2707. size_t ies_len)
  2708. {
  2709. os_free(wpa_s->mlme.extra_probe_ie);
  2710. wpa_s->mlme.extra_probe_ie = NULL;
  2711. wpa_s->mlme.extra_probe_ie_len = 0;
  2712. if (ies == NULL)
  2713. return 0;
  2714. wpa_s->mlme.extra_probe_ie = os_malloc(ies_len);
  2715. if (wpa_s->mlme.extra_probe_ie == NULL)
  2716. return -1;
  2717. os_memcpy(wpa_s->mlme.extra_probe_ie, ies, ies_len);
  2718. wpa_s->mlme.extra_probe_ie_len = ies_len;
  2719. return 0;
  2720. }