mlme.c 85 KB

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