mlme.c 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546
  1. /*
  2. * BSS client mode implementation
  3. * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
  4. * Copyright 2004, Instant802 Networks, Inc.
  5. * Copyright 2005, Devicescape Software, Inc.
  6. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  7. * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/delay.h>
  14. #include <linux/if_ether.h>
  15. #include <linux/skbuff.h>
  16. #include <linux/if_arp.h>
  17. #include <linux/etherdevice.h>
  18. #include <linux/moduleparam.h>
  19. #include <linux/rtnetlink.h>
  20. #include <linux/pm_qos.h>
  21. #include <linux/crc32.h>
  22. #include <linux/slab.h>
  23. #include <linux/export.h>
  24. #include <net/mac80211.h>
  25. #include <asm/unaligned.h>
  26. #include "ieee80211_i.h"
  27. #include "driver-ops.h"
  28. #include "rate.h"
  29. #include "led.h"
  30. #define IEEE80211_AUTH_TIMEOUT (HZ / 5)
  31. #define IEEE80211_AUTH_MAX_TRIES 3
  32. #define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
  33. #define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
  34. #define IEEE80211_ASSOC_MAX_TRIES 3
  35. static int max_nullfunc_tries = 2;
  36. module_param(max_nullfunc_tries, int, 0644);
  37. MODULE_PARM_DESC(max_nullfunc_tries,
  38. "Maximum nullfunc tx tries before disconnecting (reason 4).");
  39. static int max_probe_tries = 5;
  40. module_param(max_probe_tries, int, 0644);
  41. MODULE_PARM_DESC(max_probe_tries,
  42. "Maximum probe tries before disconnecting (reason 4).");
  43. /*
  44. * Beacon loss timeout is calculated as N frames times the
  45. * advertised beacon interval. This may need to be somewhat
  46. * higher than what hardware might detect to account for
  47. * delays in the host processing frames. But since we also
  48. * probe on beacon miss before declaring the connection lost
  49. * default to what we want.
  50. */
  51. #define IEEE80211_BEACON_LOSS_COUNT 7
  52. /*
  53. * Time the connection can be idle before we probe
  54. * it to see if we can still talk to the AP.
  55. */
  56. #define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
  57. /*
  58. * Time we wait for a probe response after sending
  59. * a probe request because of beacon loss or for
  60. * checking the connection still works.
  61. */
  62. static int probe_wait_ms = 500;
  63. module_param(probe_wait_ms, int, 0644);
  64. MODULE_PARM_DESC(probe_wait_ms,
  65. "Maximum time(ms) to wait for probe response"
  66. " before disconnecting (reason 4).");
  67. /*
  68. * Weight given to the latest Beacon frame when calculating average signal
  69. * strength for Beacon frames received in the current BSS. This must be
  70. * between 1 and 15.
  71. */
  72. #define IEEE80211_SIGNAL_AVE_WEIGHT 3
  73. /*
  74. * How many Beacon frames need to have been used in average signal strength
  75. * before starting to indicate signal change events.
  76. */
  77. #define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
  78. #define TMR_RUNNING_TIMER 0
  79. #define TMR_RUNNING_CHANSW 1
  80. #define DEAUTH_DISASSOC_LEN (24 /* hdr */ + 2 /* reason */)
  81. /*
  82. * All cfg80211 functions have to be called outside a locked
  83. * section so that they can acquire a lock themselves... This
  84. * is much simpler than queuing up things in cfg80211, but we
  85. * do need some indirection for that here.
  86. */
  87. enum rx_mgmt_action {
  88. /* no action required */
  89. RX_MGMT_NONE,
  90. /* caller must call cfg80211_send_deauth() */
  91. RX_MGMT_CFG80211_DEAUTH,
  92. /* caller must call cfg80211_send_disassoc() */
  93. RX_MGMT_CFG80211_DISASSOC,
  94. /* caller must call cfg80211_send_rx_auth() */
  95. RX_MGMT_CFG80211_RX_AUTH,
  96. /* caller must call cfg80211_send_rx_assoc() */
  97. RX_MGMT_CFG80211_RX_ASSOC,
  98. /* caller must call cfg80211_send_assoc_timeout() */
  99. RX_MGMT_CFG80211_ASSOC_TIMEOUT,
  100. };
  101. /* utils */
  102. static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
  103. {
  104. lockdep_assert_held(&ifmgd->mtx);
  105. }
  106. /*
  107. * We can have multiple work items (and connection probing)
  108. * scheduling this timer, but we need to take care to only
  109. * reschedule it when it should fire _earlier_ than it was
  110. * asked for before, or if it's not pending right now. This
  111. * function ensures that. Note that it then is required to
  112. * run this function for all timeouts after the first one
  113. * has happened -- the work that runs from this timer will
  114. * do that.
  115. */
  116. static void run_again(struct ieee80211_if_managed *ifmgd, unsigned long timeout)
  117. {
  118. ASSERT_MGD_MTX(ifmgd);
  119. if (!timer_pending(&ifmgd->timer) ||
  120. time_before(timeout, ifmgd->timer.expires))
  121. mod_timer(&ifmgd->timer, timeout);
  122. }
  123. void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
  124. {
  125. if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
  126. return;
  127. mod_timer(&sdata->u.mgd.bcn_mon_timer,
  128. round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
  129. }
  130. void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
  131. {
  132. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  133. if (unlikely(!sdata->u.mgd.associated))
  134. return;
  135. if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
  136. return;
  137. mod_timer(&sdata->u.mgd.conn_mon_timer,
  138. round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
  139. ifmgd->probe_send_count = 0;
  140. }
  141. static int ecw2cw(int ecw)
  142. {
  143. return (1 << ecw) - 1;
  144. }
  145. static u32 ieee80211_config_ht_tx(struct ieee80211_sub_if_data *sdata,
  146. struct ieee80211_ht_operation *ht_oper,
  147. const u8 *bssid, bool reconfig)
  148. {
  149. struct ieee80211_local *local = sdata->local;
  150. struct ieee80211_supported_band *sband;
  151. struct sta_info *sta;
  152. u32 changed = 0;
  153. u16 ht_opmode;
  154. bool disable_40 = false;
  155. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  156. switch (sdata->vif.bss_conf.channel_type) {
  157. case NL80211_CHAN_HT40PLUS:
  158. if (local->hw.conf.channel->flags & IEEE80211_CHAN_NO_HT40PLUS)
  159. disable_40 = true;
  160. break;
  161. case NL80211_CHAN_HT40MINUS:
  162. if (local->hw.conf.channel->flags & IEEE80211_CHAN_NO_HT40MINUS)
  163. disable_40 = true;
  164. break;
  165. default:
  166. break;
  167. }
  168. /* This can change during the lifetime of the BSS */
  169. if (!(ht_oper->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
  170. disable_40 = true;
  171. mutex_lock(&local->sta_mtx);
  172. sta = sta_info_get(sdata, bssid);
  173. WARN_ON_ONCE(!sta);
  174. if (sta && !sta->supports_40mhz)
  175. disable_40 = true;
  176. if (sta && (!reconfig ||
  177. (disable_40 != !!(sta->sta.ht_cap.cap &
  178. IEEE80211_HT_CAP_SUP_WIDTH_20_40)))) {
  179. if (disable_40)
  180. sta->sta.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  181. else
  182. sta->sta.ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  183. rate_control_rate_update(local, sband, sta,
  184. IEEE80211_RC_BW_CHANGED);
  185. }
  186. mutex_unlock(&local->sta_mtx);
  187. ht_opmode = le16_to_cpu(ht_oper->operation_mode);
  188. /* if bss configuration changed store the new one */
  189. if (!reconfig || (sdata->vif.bss_conf.ht_operation_mode != ht_opmode)) {
  190. changed |= BSS_CHANGED_HT;
  191. sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
  192. }
  193. return changed;
  194. }
  195. /* frame sending functions */
  196. static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
  197. struct ieee80211_supported_band *sband,
  198. u32 *rates)
  199. {
  200. int i, j, count;
  201. *rates = 0;
  202. count = 0;
  203. for (i = 0; i < supp_rates_len; i++) {
  204. int rate = (supp_rates[i] & 0x7F) * 5;
  205. for (j = 0; j < sband->n_bitrates; j++)
  206. if (sband->bitrates[j].bitrate == rate) {
  207. *rates |= BIT(j);
  208. count++;
  209. break;
  210. }
  211. }
  212. return count;
  213. }
  214. static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
  215. struct sk_buff *skb, const u8 *ht_oper_ie,
  216. struct ieee80211_supported_band *sband,
  217. struct ieee80211_channel *channel,
  218. enum ieee80211_smps_mode smps)
  219. {
  220. struct ieee80211_ht_operation *ht_oper;
  221. u8 *pos;
  222. u32 flags = channel->flags;
  223. u16 cap;
  224. struct ieee80211_sta_ht_cap ht_cap;
  225. BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
  226. if (!ht_oper_ie)
  227. return;
  228. if (ht_oper_ie[1] < sizeof(struct ieee80211_ht_operation))
  229. return;
  230. memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
  231. ieee80211_apply_htcap_overrides(sdata, &ht_cap);
  232. ht_oper = (struct ieee80211_ht_operation *)(ht_oper_ie + 2);
  233. /* determine capability flags */
  234. cap = ht_cap.cap;
  235. switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
  236. case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
  237. if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
  238. cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  239. cap &= ~IEEE80211_HT_CAP_SGI_40;
  240. }
  241. break;
  242. case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
  243. if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
  244. cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  245. cap &= ~IEEE80211_HT_CAP_SGI_40;
  246. }
  247. break;
  248. }
  249. /*
  250. * If 40 MHz was disabled associate as though we weren't
  251. * capable of 40 MHz -- some broken APs will never fall
  252. * back to trying to transmit in 20 MHz.
  253. */
  254. if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
  255. cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  256. cap &= ~IEEE80211_HT_CAP_SGI_40;
  257. }
  258. /* set SM PS mode properly */
  259. cap &= ~IEEE80211_HT_CAP_SM_PS;
  260. switch (smps) {
  261. case IEEE80211_SMPS_AUTOMATIC:
  262. case IEEE80211_SMPS_NUM_MODES:
  263. WARN_ON(1);
  264. case IEEE80211_SMPS_OFF:
  265. cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
  266. IEEE80211_HT_CAP_SM_PS_SHIFT;
  267. break;
  268. case IEEE80211_SMPS_STATIC:
  269. cap |= WLAN_HT_CAP_SM_PS_STATIC <<
  270. IEEE80211_HT_CAP_SM_PS_SHIFT;
  271. break;
  272. case IEEE80211_SMPS_DYNAMIC:
  273. cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
  274. IEEE80211_HT_CAP_SM_PS_SHIFT;
  275. break;
  276. }
  277. /* reserve and fill IE */
  278. pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
  279. ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
  280. }
  281. static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
  282. {
  283. struct ieee80211_local *local = sdata->local;
  284. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  285. struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
  286. struct sk_buff *skb;
  287. struct ieee80211_mgmt *mgmt;
  288. u8 *pos, qos_info;
  289. size_t offset = 0, noffset;
  290. int i, count, rates_len, supp_rates_len;
  291. u16 capab;
  292. struct ieee80211_supported_band *sband;
  293. u32 rates = 0;
  294. lockdep_assert_held(&ifmgd->mtx);
  295. sband = local->hw.wiphy->bands[local->oper_channel->band];
  296. if (assoc_data->supp_rates_len) {
  297. /*
  298. * Get all rates supported by the device and the AP as
  299. * some APs don't like getting a superset of their rates
  300. * in the association request (e.g. D-Link DAP 1353 in
  301. * b-only mode)...
  302. */
  303. rates_len = ieee80211_compatible_rates(assoc_data->supp_rates,
  304. assoc_data->supp_rates_len,
  305. sband, &rates);
  306. } else {
  307. /*
  308. * In case AP not provide any supported rates information
  309. * before association, we send information element(s) with
  310. * all rates that we support.
  311. */
  312. rates = ~0;
  313. rates_len = sband->n_bitrates;
  314. }
  315. skb = alloc_skb(local->hw.extra_tx_headroom +
  316. sizeof(*mgmt) + /* bit too much but doesn't matter */
  317. 2 + assoc_data->ssid_len + /* SSID */
  318. 4 + rates_len + /* (extended) rates */
  319. 4 + /* power capability */
  320. 2 + 2 * sband->n_channels + /* supported channels */
  321. 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
  322. assoc_data->ie_len + /* extra IEs */
  323. 9, /* WMM */
  324. GFP_KERNEL);
  325. if (!skb)
  326. return;
  327. skb_reserve(skb, local->hw.extra_tx_headroom);
  328. capab = WLAN_CAPABILITY_ESS;
  329. if (sband->band == IEEE80211_BAND_2GHZ) {
  330. if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
  331. capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
  332. if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
  333. capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
  334. }
  335. if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
  336. capab |= WLAN_CAPABILITY_PRIVACY;
  337. if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
  338. (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
  339. capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
  340. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  341. memset(mgmt, 0, 24);
  342. memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
  343. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  344. memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
  345. if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
  346. skb_put(skb, 10);
  347. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  348. IEEE80211_STYPE_REASSOC_REQ);
  349. mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
  350. mgmt->u.reassoc_req.listen_interval =
  351. cpu_to_le16(local->hw.conf.listen_interval);
  352. memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
  353. ETH_ALEN);
  354. } else {
  355. skb_put(skb, 4);
  356. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  357. IEEE80211_STYPE_ASSOC_REQ);
  358. mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
  359. mgmt->u.assoc_req.listen_interval =
  360. cpu_to_le16(local->hw.conf.listen_interval);
  361. }
  362. /* SSID */
  363. pos = skb_put(skb, 2 + assoc_data->ssid_len);
  364. *pos++ = WLAN_EID_SSID;
  365. *pos++ = assoc_data->ssid_len;
  366. memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
  367. /* add all rates which were marked to be used above */
  368. supp_rates_len = rates_len;
  369. if (supp_rates_len > 8)
  370. supp_rates_len = 8;
  371. pos = skb_put(skb, supp_rates_len + 2);
  372. *pos++ = WLAN_EID_SUPP_RATES;
  373. *pos++ = supp_rates_len;
  374. count = 0;
  375. for (i = 0; i < sband->n_bitrates; i++) {
  376. if (BIT(i) & rates) {
  377. int rate = sband->bitrates[i].bitrate;
  378. *pos++ = (u8) (rate / 5);
  379. if (++count == 8)
  380. break;
  381. }
  382. }
  383. if (rates_len > count) {
  384. pos = skb_put(skb, rates_len - count + 2);
  385. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  386. *pos++ = rates_len - count;
  387. for (i++; i < sband->n_bitrates; i++) {
  388. if (BIT(i) & rates) {
  389. int rate = sband->bitrates[i].bitrate;
  390. *pos++ = (u8) (rate / 5);
  391. }
  392. }
  393. }
  394. if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
  395. /* 1. power capabilities */
  396. pos = skb_put(skb, 4);
  397. *pos++ = WLAN_EID_PWR_CAPABILITY;
  398. *pos++ = 2;
  399. *pos++ = 0; /* min tx power */
  400. *pos++ = local->oper_channel->max_power; /* max tx power */
  401. /* 2. supported channels */
  402. /* TODO: get this in reg domain format */
  403. pos = skb_put(skb, 2 * sband->n_channels + 2);
  404. *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
  405. *pos++ = 2 * sband->n_channels;
  406. for (i = 0; i < sband->n_channels; i++) {
  407. *pos++ = ieee80211_frequency_to_channel(
  408. sband->channels[i].center_freq);
  409. *pos++ = 1; /* one channel in the subband*/
  410. }
  411. }
  412. /* if present, add any custom IEs that go before HT */
  413. if (assoc_data->ie_len && assoc_data->ie) {
  414. static const u8 before_ht[] = {
  415. WLAN_EID_SSID,
  416. WLAN_EID_SUPP_RATES,
  417. WLAN_EID_EXT_SUPP_RATES,
  418. WLAN_EID_PWR_CAPABILITY,
  419. WLAN_EID_SUPPORTED_CHANNELS,
  420. WLAN_EID_RSN,
  421. WLAN_EID_QOS_CAPA,
  422. WLAN_EID_RRM_ENABLED_CAPABILITIES,
  423. WLAN_EID_MOBILITY_DOMAIN,
  424. WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
  425. };
  426. noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
  427. before_ht, ARRAY_SIZE(before_ht),
  428. offset);
  429. pos = skb_put(skb, noffset - offset);
  430. memcpy(pos, assoc_data->ie + offset, noffset - offset);
  431. offset = noffset;
  432. }
  433. if (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
  434. ieee80211_add_ht_ie(sdata, skb, assoc_data->ht_operation_ie,
  435. sband, local->oper_channel, ifmgd->ap_smps);
  436. /* if present, add any custom non-vendor IEs that go after HT */
  437. if (assoc_data->ie_len && assoc_data->ie) {
  438. noffset = ieee80211_ie_split_vendor(assoc_data->ie,
  439. assoc_data->ie_len,
  440. offset);
  441. pos = skb_put(skb, noffset - offset);
  442. memcpy(pos, assoc_data->ie + offset, noffset - offset);
  443. offset = noffset;
  444. }
  445. if (assoc_data->wmm) {
  446. if (assoc_data->uapsd) {
  447. qos_info = ifmgd->uapsd_queues;
  448. qos_info |= (ifmgd->uapsd_max_sp_len <<
  449. IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
  450. } else {
  451. qos_info = 0;
  452. }
  453. pos = skb_put(skb, 9);
  454. *pos++ = WLAN_EID_VENDOR_SPECIFIC;
  455. *pos++ = 7; /* len */
  456. *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
  457. *pos++ = 0x50;
  458. *pos++ = 0xf2;
  459. *pos++ = 2; /* WME */
  460. *pos++ = 0; /* WME info */
  461. *pos++ = 1; /* WME ver */
  462. *pos++ = qos_info;
  463. }
  464. /* add any remaining custom (i.e. vendor specific here) IEs */
  465. if (assoc_data->ie_len && assoc_data->ie) {
  466. noffset = assoc_data->ie_len;
  467. pos = skb_put(skb, noffset - offset);
  468. memcpy(pos, assoc_data->ie + offset, noffset - offset);
  469. }
  470. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  471. ieee80211_tx_skb(sdata, skb);
  472. }
  473. static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
  474. const u8 *bssid, u16 stype,
  475. u16 reason, bool send_frame,
  476. u8 *frame_buf)
  477. {
  478. struct ieee80211_local *local = sdata->local;
  479. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  480. struct sk_buff *skb;
  481. struct ieee80211_mgmt *mgmt = (void *)frame_buf;
  482. /* build frame */
  483. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
  484. mgmt->duration = 0; /* initialize only */
  485. mgmt->seq_ctrl = 0; /* initialize only */
  486. memcpy(mgmt->da, bssid, ETH_ALEN);
  487. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  488. memcpy(mgmt->bssid, bssid, ETH_ALEN);
  489. /* u.deauth.reason_code == u.disassoc.reason_code */
  490. mgmt->u.deauth.reason_code = cpu_to_le16(reason);
  491. if (send_frame) {
  492. skb = dev_alloc_skb(local->hw.extra_tx_headroom +
  493. DEAUTH_DISASSOC_LEN);
  494. if (!skb)
  495. return;
  496. skb_reserve(skb, local->hw.extra_tx_headroom);
  497. /* copy in frame */
  498. memcpy(skb_put(skb, DEAUTH_DISASSOC_LEN),
  499. mgmt, DEAUTH_DISASSOC_LEN);
  500. if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
  501. IEEE80211_SKB_CB(skb)->flags |=
  502. IEEE80211_TX_INTFL_DONT_ENCRYPT;
  503. ieee80211_tx_skb(sdata, skb);
  504. }
  505. }
  506. void ieee80211_send_pspoll(struct ieee80211_local *local,
  507. struct ieee80211_sub_if_data *sdata)
  508. {
  509. struct ieee80211_pspoll *pspoll;
  510. struct sk_buff *skb;
  511. skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
  512. if (!skb)
  513. return;
  514. pspoll = (struct ieee80211_pspoll *) skb->data;
  515. pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
  516. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  517. ieee80211_tx_skb(sdata, skb);
  518. }
  519. void ieee80211_send_nullfunc(struct ieee80211_local *local,
  520. struct ieee80211_sub_if_data *sdata,
  521. int powersave)
  522. {
  523. struct sk_buff *skb;
  524. struct ieee80211_hdr_3addr *nullfunc;
  525. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  526. skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
  527. if (!skb)
  528. return;
  529. nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
  530. if (powersave)
  531. nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
  532. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  533. if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  534. IEEE80211_STA_CONNECTION_POLL))
  535. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
  536. ieee80211_tx_skb(sdata, skb);
  537. }
  538. static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
  539. struct ieee80211_sub_if_data *sdata)
  540. {
  541. struct sk_buff *skb;
  542. struct ieee80211_hdr *nullfunc;
  543. __le16 fc;
  544. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  545. return;
  546. skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
  547. if (!skb)
  548. return;
  549. skb_reserve(skb, local->hw.extra_tx_headroom);
  550. nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
  551. memset(nullfunc, 0, 30);
  552. fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
  553. IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
  554. nullfunc->frame_control = fc;
  555. memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
  556. memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
  557. memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
  558. memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
  559. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  560. ieee80211_tx_skb(sdata, skb);
  561. }
  562. /* spectrum management related things */
  563. static void ieee80211_chswitch_work(struct work_struct *work)
  564. {
  565. struct ieee80211_sub_if_data *sdata =
  566. container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
  567. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  568. if (!ieee80211_sdata_running(sdata))
  569. return;
  570. mutex_lock(&ifmgd->mtx);
  571. if (!ifmgd->associated)
  572. goto out;
  573. sdata->local->oper_channel = sdata->local->csa_channel;
  574. if (!sdata->local->ops->channel_switch) {
  575. /* call "hw_config" only if doing sw channel switch */
  576. ieee80211_hw_config(sdata->local,
  577. IEEE80211_CONF_CHANGE_CHANNEL);
  578. } else {
  579. /* update the device channel directly */
  580. sdata->local->hw.conf.channel = sdata->local->oper_channel;
  581. }
  582. /* XXX: shouldn't really modify cfg80211-owned data! */
  583. ifmgd->associated->channel = sdata->local->oper_channel;
  584. ieee80211_wake_queues_by_reason(&sdata->local->hw,
  585. IEEE80211_QUEUE_STOP_REASON_CSA);
  586. out:
  587. ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
  588. mutex_unlock(&ifmgd->mtx);
  589. }
  590. void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
  591. {
  592. struct ieee80211_sub_if_data *sdata;
  593. struct ieee80211_if_managed *ifmgd;
  594. sdata = vif_to_sdata(vif);
  595. ifmgd = &sdata->u.mgd;
  596. trace_api_chswitch_done(sdata, success);
  597. if (!success) {
  598. /*
  599. * If the channel switch was not successful, stay
  600. * around on the old channel. We currently lack
  601. * good handling of this situation, possibly we
  602. * should just drop the association.
  603. */
  604. sdata->local->csa_channel = sdata->local->oper_channel;
  605. }
  606. ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
  607. }
  608. EXPORT_SYMBOL(ieee80211_chswitch_done);
  609. static void ieee80211_chswitch_timer(unsigned long data)
  610. {
  611. struct ieee80211_sub_if_data *sdata =
  612. (struct ieee80211_sub_if_data *) data;
  613. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  614. if (sdata->local->quiescing) {
  615. set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
  616. return;
  617. }
  618. ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
  619. }
  620. void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
  621. struct ieee80211_channel_sw_ie *sw_elem,
  622. struct ieee80211_bss *bss,
  623. u64 timestamp)
  624. {
  625. struct cfg80211_bss *cbss =
  626. container_of((void *)bss, struct cfg80211_bss, priv);
  627. struct ieee80211_channel *new_ch;
  628. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  629. int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num,
  630. cbss->channel->band);
  631. ASSERT_MGD_MTX(ifmgd);
  632. if (!ifmgd->associated)
  633. return;
  634. if (sdata->local->scanning)
  635. return;
  636. /* Disregard subsequent beacons if we are already running a timer
  637. processing a CSA */
  638. if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
  639. return;
  640. new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
  641. if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
  642. return;
  643. sdata->local->csa_channel = new_ch;
  644. if (sdata->local->ops->channel_switch) {
  645. /* use driver's channel switch callback */
  646. struct ieee80211_channel_switch ch_switch;
  647. memset(&ch_switch, 0, sizeof(ch_switch));
  648. ch_switch.timestamp = timestamp;
  649. if (sw_elem->mode) {
  650. ch_switch.block_tx = true;
  651. ieee80211_stop_queues_by_reason(&sdata->local->hw,
  652. IEEE80211_QUEUE_STOP_REASON_CSA);
  653. }
  654. ch_switch.channel = new_ch;
  655. ch_switch.count = sw_elem->count;
  656. ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
  657. drv_channel_switch(sdata->local, &ch_switch);
  658. return;
  659. }
  660. /* channel switch handled in software */
  661. if (sw_elem->count <= 1) {
  662. ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
  663. } else {
  664. if (sw_elem->mode)
  665. ieee80211_stop_queues_by_reason(&sdata->local->hw,
  666. IEEE80211_QUEUE_STOP_REASON_CSA);
  667. ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
  668. mod_timer(&ifmgd->chswitch_timer,
  669. jiffies +
  670. msecs_to_jiffies(sw_elem->count *
  671. cbss->beacon_interval));
  672. }
  673. }
  674. static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
  675. u16 capab_info, u8 *pwr_constr_elem,
  676. u8 pwr_constr_elem_len)
  677. {
  678. struct ieee80211_conf *conf = &sdata->local->hw.conf;
  679. if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
  680. return;
  681. /* Power constraint IE length should be 1 octet */
  682. if (pwr_constr_elem_len != 1)
  683. return;
  684. if ((*pwr_constr_elem <= conf->channel->max_reg_power) &&
  685. (*pwr_constr_elem != sdata->local->power_constr_level)) {
  686. sdata->local->power_constr_level = *pwr_constr_elem;
  687. ieee80211_hw_config(sdata->local, 0);
  688. }
  689. }
  690. void ieee80211_enable_dyn_ps(struct ieee80211_vif *vif)
  691. {
  692. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  693. struct ieee80211_local *local = sdata->local;
  694. struct ieee80211_conf *conf = &local->hw.conf;
  695. WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
  696. !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
  697. (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
  698. local->disable_dynamic_ps = false;
  699. conf->dynamic_ps_timeout = local->dynamic_ps_user_timeout;
  700. }
  701. EXPORT_SYMBOL(ieee80211_enable_dyn_ps);
  702. void ieee80211_disable_dyn_ps(struct ieee80211_vif *vif)
  703. {
  704. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  705. struct ieee80211_local *local = sdata->local;
  706. struct ieee80211_conf *conf = &local->hw.conf;
  707. WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
  708. !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
  709. (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
  710. local->disable_dynamic_ps = true;
  711. conf->dynamic_ps_timeout = 0;
  712. del_timer_sync(&local->dynamic_ps_timer);
  713. ieee80211_queue_work(&local->hw,
  714. &local->dynamic_ps_enable_work);
  715. }
  716. EXPORT_SYMBOL(ieee80211_disable_dyn_ps);
  717. /* powersave */
  718. static void ieee80211_enable_ps(struct ieee80211_local *local,
  719. struct ieee80211_sub_if_data *sdata)
  720. {
  721. struct ieee80211_conf *conf = &local->hw.conf;
  722. /*
  723. * If we are scanning right now then the parameters will
  724. * take effect when scan finishes.
  725. */
  726. if (local->scanning)
  727. return;
  728. if (conf->dynamic_ps_timeout > 0 &&
  729. !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
  730. mod_timer(&local->dynamic_ps_timer, jiffies +
  731. msecs_to_jiffies(conf->dynamic_ps_timeout));
  732. } else {
  733. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  734. ieee80211_send_nullfunc(local, sdata, 1);
  735. if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
  736. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
  737. return;
  738. conf->flags |= IEEE80211_CONF_PS;
  739. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  740. }
  741. }
  742. static void ieee80211_change_ps(struct ieee80211_local *local)
  743. {
  744. struct ieee80211_conf *conf = &local->hw.conf;
  745. if (local->ps_sdata) {
  746. ieee80211_enable_ps(local, local->ps_sdata);
  747. } else if (conf->flags & IEEE80211_CONF_PS) {
  748. conf->flags &= ~IEEE80211_CONF_PS;
  749. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  750. del_timer_sync(&local->dynamic_ps_timer);
  751. cancel_work_sync(&local->dynamic_ps_enable_work);
  752. }
  753. }
  754. static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
  755. {
  756. struct ieee80211_if_managed *mgd = &sdata->u.mgd;
  757. struct sta_info *sta = NULL;
  758. bool authorized = false;
  759. if (!mgd->powersave)
  760. return false;
  761. if (mgd->broken_ap)
  762. return false;
  763. if (!mgd->associated)
  764. return false;
  765. if (!mgd->associated->beacon_ies)
  766. return false;
  767. if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
  768. IEEE80211_STA_CONNECTION_POLL))
  769. return false;
  770. rcu_read_lock();
  771. sta = sta_info_get(sdata, mgd->bssid);
  772. if (sta)
  773. authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
  774. rcu_read_unlock();
  775. return authorized;
  776. }
  777. /* need to hold RTNL or interface lock */
  778. void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
  779. {
  780. struct ieee80211_sub_if_data *sdata, *found = NULL;
  781. int count = 0;
  782. int timeout;
  783. if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
  784. local->ps_sdata = NULL;
  785. return;
  786. }
  787. if (!list_empty(&local->work_list)) {
  788. local->ps_sdata = NULL;
  789. goto change;
  790. }
  791. list_for_each_entry(sdata, &local->interfaces, list) {
  792. if (!ieee80211_sdata_running(sdata))
  793. continue;
  794. if (sdata->vif.type == NL80211_IFTYPE_AP) {
  795. /* If an AP vif is found, then disable PS
  796. * by setting the count to zero thereby setting
  797. * ps_sdata to NULL.
  798. */
  799. count = 0;
  800. break;
  801. }
  802. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  803. continue;
  804. found = sdata;
  805. count++;
  806. }
  807. if (count == 1 && ieee80211_powersave_allowed(found)) {
  808. struct ieee80211_conf *conf = &local->hw.conf;
  809. s32 beaconint_us;
  810. if (latency < 0)
  811. latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
  812. beaconint_us = ieee80211_tu_to_usec(
  813. found->vif.bss_conf.beacon_int);
  814. timeout = local->dynamic_ps_forced_timeout;
  815. if (timeout < 0) {
  816. /*
  817. * Go to full PSM if the user configures a very low
  818. * latency requirement.
  819. * The 2000 second value is there for compatibility
  820. * until the PM_QOS_NETWORK_LATENCY is configured
  821. * with real values.
  822. */
  823. if (latency > (1900 * USEC_PER_MSEC) &&
  824. latency != (2000 * USEC_PER_SEC))
  825. timeout = 0;
  826. else
  827. timeout = 100;
  828. }
  829. local->dynamic_ps_user_timeout = timeout;
  830. if (!local->disable_dynamic_ps)
  831. conf->dynamic_ps_timeout =
  832. local->dynamic_ps_user_timeout;
  833. if (beaconint_us > latency) {
  834. local->ps_sdata = NULL;
  835. } else {
  836. struct ieee80211_bss *bss;
  837. int maxslp = 1;
  838. u8 dtimper;
  839. bss = (void *)found->u.mgd.associated->priv;
  840. dtimper = bss->dtim_period;
  841. /* If the TIM IE is invalid, pretend the value is 1 */
  842. if (!dtimper)
  843. dtimper = 1;
  844. else if (dtimper > 1)
  845. maxslp = min_t(int, dtimper,
  846. latency / beaconint_us);
  847. local->hw.conf.max_sleep_period = maxslp;
  848. local->hw.conf.ps_dtim_period = dtimper;
  849. local->ps_sdata = found;
  850. }
  851. } else {
  852. local->ps_sdata = NULL;
  853. }
  854. change:
  855. ieee80211_change_ps(local);
  856. }
  857. void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
  858. {
  859. struct ieee80211_local *local =
  860. container_of(work, struct ieee80211_local,
  861. dynamic_ps_disable_work);
  862. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  863. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  864. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  865. }
  866. ieee80211_wake_queues_by_reason(&local->hw,
  867. IEEE80211_QUEUE_STOP_REASON_PS);
  868. }
  869. void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
  870. {
  871. struct ieee80211_local *local =
  872. container_of(work, struct ieee80211_local,
  873. dynamic_ps_enable_work);
  874. struct ieee80211_sub_if_data *sdata = local->ps_sdata;
  875. struct ieee80211_if_managed *ifmgd;
  876. unsigned long flags;
  877. int q;
  878. /* can only happen when PS was just disabled anyway */
  879. if (!sdata)
  880. return;
  881. ifmgd = &sdata->u.mgd;
  882. if (local->hw.conf.flags & IEEE80211_CONF_PS)
  883. return;
  884. if (!local->disable_dynamic_ps &&
  885. local->hw.conf.dynamic_ps_timeout > 0) {
  886. /* don't enter PS if TX frames are pending */
  887. if (drv_tx_frames_pending(local)) {
  888. mod_timer(&local->dynamic_ps_timer, jiffies +
  889. msecs_to_jiffies(
  890. local->hw.conf.dynamic_ps_timeout));
  891. return;
  892. }
  893. /*
  894. * transmission can be stopped by others which leads to
  895. * dynamic_ps_timer expiry. Postpone the ps timer if it
  896. * is not the actual idle state.
  897. */
  898. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  899. for (q = 0; q < local->hw.queues; q++) {
  900. if (local->queue_stop_reasons[q]) {
  901. spin_unlock_irqrestore(&local->queue_stop_reason_lock,
  902. flags);
  903. mod_timer(&local->dynamic_ps_timer, jiffies +
  904. msecs_to_jiffies(
  905. local->hw.conf.dynamic_ps_timeout));
  906. return;
  907. }
  908. }
  909. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  910. }
  911. if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
  912. !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
  913. netif_tx_stop_all_queues(sdata->dev);
  914. if (drv_tx_frames_pending(local))
  915. mod_timer(&local->dynamic_ps_timer, jiffies +
  916. msecs_to_jiffies(
  917. local->hw.conf.dynamic_ps_timeout));
  918. else {
  919. ieee80211_send_nullfunc(local, sdata, 1);
  920. /* Flush to get the tx status of nullfunc frame */
  921. drv_flush(local, false);
  922. }
  923. }
  924. if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
  925. (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
  926. (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
  927. ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
  928. local->hw.conf.flags |= IEEE80211_CONF_PS;
  929. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  930. }
  931. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  932. netif_tx_wake_all_queues(sdata->dev);
  933. }
  934. void ieee80211_dynamic_ps_timer(unsigned long data)
  935. {
  936. struct ieee80211_local *local = (void *) data;
  937. if (local->quiescing || local->suspended)
  938. return;
  939. ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
  940. }
  941. /* MLME */
  942. static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
  943. struct ieee80211_sub_if_data *sdata,
  944. u8 *wmm_param, size_t wmm_param_len)
  945. {
  946. struct ieee80211_tx_queue_params params;
  947. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  948. size_t left;
  949. int count;
  950. u8 *pos, uapsd_queues = 0;
  951. if (!local->ops->conf_tx)
  952. return;
  953. if (local->hw.queues < IEEE80211_NUM_ACS)
  954. return;
  955. if (!wmm_param)
  956. return;
  957. if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
  958. return;
  959. if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
  960. uapsd_queues = ifmgd->uapsd_queues;
  961. count = wmm_param[6] & 0x0f;
  962. if (count == ifmgd->wmm_last_param_set)
  963. return;
  964. ifmgd->wmm_last_param_set = count;
  965. pos = wmm_param + 8;
  966. left = wmm_param_len - 8;
  967. memset(&params, 0, sizeof(params));
  968. local->wmm_acm = 0;
  969. for (; left >= 4; left -= 4, pos += 4) {
  970. int aci = (pos[0] >> 5) & 0x03;
  971. int acm = (pos[0] >> 4) & 0x01;
  972. bool uapsd = false;
  973. int queue;
  974. switch (aci) {
  975. case 1: /* AC_BK */
  976. queue = 3;
  977. if (acm)
  978. local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
  979. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
  980. uapsd = true;
  981. break;
  982. case 2: /* AC_VI */
  983. queue = 1;
  984. if (acm)
  985. local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
  986. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
  987. uapsd = true;
  988. break;
  989. case 3: /* AC_VO */
  990. queue = 0;
  991. if (acm)
  992. local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
  993. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
  994. uapsd = true;
  995. break;
  996. case 0: /* AC_BE */
  997. default:
  998. queue = 2;
  999. if (acm)
  1000. local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
  1001. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
  1002. uapsd = true;
  1003. break;
  1004. }
  1005. params.aifs = pos[0] & 0x0f;
  1006. params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
  1007. params.cw_min = ecw2cw(pos[1] & 0x0f);
  1008. params.txop = get_unaligned_le16(pos + 2);
  1009. params.uapsd = uapsd;
  1010. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1011. wiphy_debug(local->hw.wiphy,
  1012. "WMM queue=%d aci=%d acm=%d aifs=%d "
  1013. "cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
  1014. queue, aci, acm,
  1015. params.aifs, params.cw_min, params.cw_max,
  1016. params.txop, params.uapsd);
  1017. #endif
  1018. sdata->tx_conf[queue] = params;
  1019. if (drv_conf_tx(local, sdata, queue, &params))
  1020. wiphy_debug(local->hw.wiphy,
  1021. "failed to set TX queue parameters for queue %d\n",
  1022. queue);
  1023. }
  1024. /* enable WMM or activate new settings */
  1025. sdata->vif.bss_conf.qos = true;
  1026. }
  1027. static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
  1028. u16 capab, bool erp_valid, u8 erp)
  1029. {
  1030. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1031. u32 changed = 0;
  1032. bool use_protection;
  1033. bool use_short_preamble;
  1034. bool use_short_slot;
  1035. if (erp_valid) {
  1036. use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
  1037. use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
  1038. } else {
  1039. use_protection = false;
  1040. use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
  1041. }
  1042. use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
  1043. if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
  1044. use_short_slot = true;
  1045. if (use_protection != bss_conf->use_cts_prot) {
  1046. bss_conf->use_cts_prot = use_protection;
  1047. changed |= BSS_CHANGED_ERP_CTS_PROT;
  1048. }
  1049. if (use_short_preamble != bss_conf->use_short_preamble) {
  1050. bss_conf->use_short_preamble = use_short_preamble;
  1051. changed |= BSS_CHANGED_ERP_PREAMBLE;
  1052. }
  1053. if (use_short_slot != bss_conf->use_short_slot) {
  1054. bss_conf->use_short_slot = use_short_slot;
  1055. changed |= BSS_CHANGED_ERP_SLOT;
  1056. }
  1057. return changed;
  1058. }
  1059. static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
  1060. struct cfg80211_bss *cbss,
  1061. u32 bss_info_changed)
  1062. {
  1063. struct ieee80211_bss *bss = (void *)cbss->priv;
  1064. struct ieee80211_local *local = sdata->local;
  1065. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1066. bss_info_changed |= BSS_CHANGED_ASSOC;
  1067. /* set timing information */
  1068. bss_conf->beacon_int = cbss->beacon_interval;
  1069. bss_conf->last_tsf = cbss->tsf;
  1070. bss_info_changed |= BSS_CHANGED_BEACON_INT;
  1071. bss_info_changed |= ieee80211_handle_bss_capability(sdata,
  1072. cbss->capability, bss->has_erp_value, bss->erp_value);
  1073. sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
  1074. IEEE80211_BEACON_LOSS_COUNT * bss_conf->beacon_int));
  1075. sdata->u.mgd.associated = cbss;
  1076. memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
  1077. sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
  1078. /* just to be sure */
  1079. sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
  1080. IEEE80211_STA_BEACON_POLL);
  1081. ieee80211_led_assoc(local, 1);
  1082. if (local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
  1083. bss_conf->dtim_period = bss->dtim_period;
  1084. else
  1085. bss_conf->dtim_period = 0;
  1086. bss_conf->assoc = 1;
  1087. /* Tell the driver to monitor connection quality (if supported) */
  1088. if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
  1089. bss_conf->cqm_rssi_thold)
  1090. bss_info_changed |= BSS_CHANGED_CQM;
  1091. /* Enable ARP filtering */
  1092. if (bss_conf->arp_filter_enabled != sdata->arp_filter_state) {
  1093. bss_conf->arp_filter_enabled = sdata->arp_filter_state;
  1094. bss_info_changed |= BSS_CHANGED_ARP_FILTER;
  1095. }
  1096. ieee80211_bss_info_change_notify(sdata, bss_info_changed);
  1097. mutex_lock(&local->iflist_mtx);
  1098. ieee80211_recalc_ps(local, -1);
  1099. ieee80211_recalc_smps(local);
  1100. mutex_unlock(&local->iflist_mtx);
  1101. netif_tx_start_all_queues(sdata->dev);
  1102. netif_carrier_on(sdata->dev);
  1103. }
  1104. static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
  1105. u16 stype, u16 reason, bool tx,
  1106. u8 *frame_buf)
  1107. {
  1108. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1109. struct ieee80211_local *local = sdata->local;
  1110. struct sta_info *sta;
  1111. u32 changed = 0;
  1112. u8 bssid[ETH_ALEN];
  1113. ASSERT_MGD_MTX(ifmgd);
  1114. if (WARN_ON_ONCE(tx && !frame_buf))
  1115. return;
  1116. if (WARN_ON(!ifmgd->associated))
  1117. return;
  1118. memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
  1119. ifmgd->associated = NULL;
  1120. memset(ifmgd->bssid, 0, ETH_ALEN);
  1121. /*
  1122. * we need to commit the associated = NULL change because the
  1123. * scan code uses that to determine whether this iface should
  1124. * go to/wake up from powersave or not -- and could otherwise
  1125. * wake the queues erroneously.
  1126. */
  1127. smp_mb();
  1128. /*
  1129. * Thus, we can only afterwards stop the queues -- to account
  1130. * for the case where another CPU is finishing a scan at this
  1131. * time -- we don't want the scan code to enable queues.
  1132. */
  1133. netif_tx_stop_all_queues(sdata->dev);
  1134. netif_carrier_off(sdata->dev);
  1135. mutex_lock(&local->sta_mtx);
  1136. sta = sta_info_get(sdata, bssid);
  1137. if (sta) {
  1138. set_sta_flag(sta, WLAN_STA_BLOCK_BA);
  1139. ieee80211_sta_tear_down_BA_sessions(sta, tx);
  1140. }
  1141. mutex_unlock(&local->sta_mtx);
  1142. /* deauthenticate/disassociate now */
  1143. if (tx || frame_buf)
  1144. ieee80211_send_deauth_disassoc(sdata, bssid, stype, reason,
  1145. tx, frame_buf);
  1146. /* flush out frame */
  1147. if (tx)
  1148. drv_flush(local, false);
  1149. /* remove AP and TDLS peers */
  1150. sta_info_flush(local, sdata);
  1151. /* finally reset all BSS / config parameters */
  1152. changed |= ieee80211_reset_erp_info(sdata);
  1153. ieee80211_led_assoc(local, 0);
  1154. changed |= BSS_CHANGED_ASSOC;
  1155. sdata->vif.bss_conf.assoc = false;
  1156. /* on the next assoc, re-program HT parameters */
  1157. memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
  1158. memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
  1159. local->power_constr_level = 0;
  1160. del_timer_sync(&local->dynamic_ps_timer);
  1161. cancel_work_sync(&local->dynamic_ps_enable_work);
  1162. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  1163. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  1164. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  1165. }
  1166. local->ps_sdata = NULL;
  1167. /* Disable ARP filtering */
  1168. if (sdata->vif.bss_conf.arp_filter_enabled) {
  1169. sdata->vif.bss_conf.arp_filter_enabled = false;
  1170. changed |= BSS_CHANGED_ARP_FILTER;
  1171. }
  1172. sdata->vif.bss_conf.qos = false;
  1173. changed |= BSS_CHANGED_QOS;
  1174. /* The BSSID (not really interesting) and HT changed */
  1175. changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
  1176. ieee80211_bss_info_change_notify(sdata, changed);
  1177. /* channel(_type) changes are handled by ieee80211_hw_config */
  1178. WARN_ON(!ieee80211_set_channel_type(local, sdata, NL80211_CHAN_NO_HT));
  1179. ieee80211_hw_config(local, 0);
  1180. /* disassociated - set to defaults now */
  1181. ieee80211_set_wmm_default(sdata, false);
  1182. del_timer_sync(&sdata->u.mgd.conn_mon_timer);
  1183. del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
  1184. del_timer_sync(&sdata->u.mgd.timer);
  1185. del_timer_sync(&sdata->u.mgd.chswitch_timer);
  1186. }
  1187. void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
  1188. struct ieee80211_hdr *hdr)
  1189. {
  1190. /*
  1191. * We can postpone the mgd.timer whenever receiving unicast frames
  1192. * from AP because we know that the connection is working both ways
  1193. * at that time. But multicast frames (and hence also beacons) must
  1194. * be ignored here, because we need to trigger the timer during
  1195. * data idle periods for sending the periodic probe request to the
  1196. * AP we're connected to.
  1197. */
  1198. if (is_multicast_ether_addr(hdr->addr1))
  1199. return;
  1200. ieee80211_sta_reset_conn_monitor(sdata);
  1201. }
  1202. static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
  1203. {
  1204. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1205. if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  1206. IEEE80211_STA_CONNECTION_POLL)))
  1207. return;
  1208. ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
  1209. IEEE80211_STA_BEACON_POLL);
  1210. mutex_lock(&sdata->local->iflist_mtx);
  1211. ieee80211_recalc_ps(sdata->local, -1);
  1212. mutex_unlock(&sdata->local->iflist_mtx);
  1213. if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
  1214. return;
  1215. /*
  1216. * We've received a probe response, but are not sure whether
  1217. * we have or will be receiving any beacons or data, so let's
  1218. * schedule the timers again, just in case.
  1219. */
  1220. ieee80211_sta_reset_beacon_monitor(sdata);
  1221. mod_timer(&ifmgd->conn_mon_timer,
  1222. round_jiffies_up(jiffies +
  1223. IEEE80211_CONNECTION_IDLE_TIME));
  1224. }
  1225. void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
  1226. struct ieee80211_hdr *hdr, bool ack)
  1227. {
  1228. if (!ieee80211_is_data(hdr->frame_control))
  1229. return;
  1230. if (ack)
  1231. ieee80211_sta_reset_conn_monitor(sdata);
  1232. if (ieee80211_is_nullfunc(hdr->frame_control) &&
  1233. sdata->u.mgd.probe_send_count > 0) {
  1234. if (ack)
  1235. sdata->u.mgd.probe_send_count = 0;
  1236. else
  1237. sdata->u.mgd.nullfunc_failed = true;
  1238. ieee80211_queue_work(&sdata->local->hw, &sdata->work);
  1239. }
  1240. }
  1241. static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
  1242. {
  1243. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1244. const u8 *ssid;
  1245. u8 *dst = ifmgd->associated->bssid;
  1246. u8 unicast_limit = max(1, max_probe_tries - 3);
  1247. /*
  1248. * Try sending broadcast probe requests for the last three
  1249. * probe requests after the first ones failed since some
  1250. * buggy APs only support broadcast probe requests.
  1251. */
  1252. if (ifmgd->probe_send_count >= unicast_limit)
  1253. dst = NULL;
  1254. /*
  1255. * When the hardware reports an accurate Tx ACK status, it's
  1256. * better to send a nullfunc frame instead of a probe request,
  1257. * as it will kick us off the AP quickly if we aren't associated
  1258. * anymore. The timeout will be reset if the frame is ACKed by
  1259. * the AP.
  1260. */
  1261. if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  1262. ifmgd->nullfunc_failed = false;
  1263. ieee80211_send_nullfunc(sdata->local, sdata, 0);
  1264. } else {
  1265. int ssid_len;
  1266. ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
  1267. if (WARN_ON_ONCE(ssid == NULL))
  1268. ssid_len = 0;
  1269. else
  1270. ssid_len = ssid[1];
  1271. ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
  1272. 0, (u32) -1, true, false);
  1273. }
  1274. ifmgd->probe_send_count++;
  1275. ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
  1276. run_again(ifmgd, ifmgd->probe_timeout);
  1277. if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
  1278. drv_flush(sdata->local, false);
  1279. }
  1280. static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
  1281. bool beacon)
  1282. {
  1283. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1284. bool already = false;
  1285. if (!ieee80211_sdata_running(sdata))
  1286. return;
  1287. if (sdata->local->scanning)
  1288. return;
  1289. if (sdata->local->tmp_channel)
  1290. return;
  1291. mutex_lock(&ifmgd->mtx);
  1292. if (!ifmgd->associated)
  1293. goto out;
  1294. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1295. if (beacon && net_ratelimit())
  1296. printk(KERN_DEBUG "%s: detected beacon loss from AP "
  1297. "- sending probe request\n", sdata->name);
  1298. #endif
  1299. /*
  1300. * The driver/our work has already reported this event or the
  1301. * connection monitoring has kicked in and we have already sent
  1302. * a probe request. Or maybe the AP died and the driver keeps
  1303. * reporting until we disassociate...
  1304. *
  1305. * In either case we have to ignore the current call to this
  1306. * function (except for setting the correct probe reason bit)
  1307. * because otherwise we would reset the timer every time and
  1308. * never check whether we received a probe response!
  1309. */
  1310. if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  1311. IEEE80211_STA_CONNECTION_POLL))
  1312. already = true;
  1313. if (beacon)
  1314. ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
  1315. else
  1316. ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
  1317. if (already)
  1318. goto out;
  1319. mutex_lock(&sdata->local->iflist_mtx);
  1320. ieee80211_recalc_ps(sdata->local, -1);
  1321. mutex_unlock(&sdata->local->iflist_mtx);
  1322. ifmgd->probe_send_count = 0;
  1323. ieee80211_mgd_probe_ap_send(sdata);
  1324. out:
  1325. mutex_unlock(&ifmgd->mtx);
  1326. }
  1327. struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
  1328. struct ieee80211_vif *vif)
  1329. {
  1330. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1331. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1332. struct sk_buff *skb;
  1333. const u8 *ssid;
  1334. int ssid_len;
  1335. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  1336. return NULL;
  1337. ASSERT_MGD_MTX(ifmgd);
  1338. if (!ifmgd->associated)
  1339. return NULL;
  1340. ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
  1341. if (WARN_ON_ONCE(ssid == NULL))
  1342. ssid_len = 0;
  1343. else
  1344. ssid_len = ssid[1];
  1345. skb = ieee80211_build_probe_req(sdata, ifmgd->associated->bssid,
  1346. (u32) -1, ssid + 2, ssid_len,
  1347. NULL, 0, true);
  1348. return skb;
  1349. }
  1350. EXPORT_SYMBOL(ieee80211_ap_probereq_get);
  1351. static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata)
  1352. {
  1353. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1354. struct ieee80211_local *local = sdata->local;
  1355. u8 bssid[ETH_ALEN];
  1356. u8 frame_buf[DEAUTH_DISASSOC_LEN];
  1357. mutex_lock(&ifmgd->mtx);
  1358. if (!ifmgd->associated) {
  1359. mutex_unlock(&ifmgd->mtx);
  1360. return;
  1361. }
  1362. memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
  1363. printk(KERN_DEBUG "%s: Connection to AP %pM lost.\n",
  1364. sdata->name, bssid);
  1365. ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
  1366. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
  1367. false, frame_buf);
  1368. mutex_unlock(&ifmgd->mtx);
  1369. /*
  1370. * must be outside lock due to cfg80211,
  1371. * but that's not a problem.
  1372. */
  1373. cfg80211_send_deauth(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
  1374. mutex_lock(&local->mtx);
  1375. ieee80211_recalc_idle(local);
  1376. mutex_unlock(&local->mtx);
  1377. }
  1378. void ieee80211_beacon_connection_loss_work(struct work_struct *work)
  1379. {
  1380. struct ieee80211_sub_if_data *sdata =
  1381. container_of(work, struct ieee80211_sub_if_data,
  1382. u.mgd.beacon_connection_loss_work);
  1383. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1384. struct sta_info *sta;
  1385. if (ifmgd->associated) {
  1386. rcu_read_lock();
  1387. sta = sta_info_get(sdata, ifmgd->bssid);
  1388. if (sta)
  1389. sta->beacon_loss_count++;
  1390. rcu_read_unlock();
  1391. }
  1392. if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
  1393. __ieee80211_connection_loss(sdata);
  1394. else
  1395. ieee80211_mgd_probe_ap(sdata, true);
  1396. }
  1397. void ieee80211_beacon_loss(struct ieee80211_vif *vif)
  1398. {
  1399. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1400. struct ieee80211_hw *hw = &sdata->local->hw;
  1401. trace_api_beacon_loss(sdata);
  1402. WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
  1403. ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
  1404. }
  1405. EXPORT_SYMBOL(ieee80211_beacon_loss);
  1406. void ieee80211_connection_loss(struct ieee80211_vif *vif)
  1407. {
  1408. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1409. struct ieee80211_hw *hw = &sdata->local->hw;
  1410. trace_api_connection_loss(sdata);
  1411. WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
  1412. ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
  1413. }
  1414. EXPORT_SYMBOL(ieee80211_connection_loss);
  1415. static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
  1416. bool assoc)
  1417. {
  1418. struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
  1419. lockdep_assert_held(&sdata->u.mgd.mtx);
  1420. if (!assoc) {
  1421. sta_info_destroy_addr(sdata, auth_data->bss->bssid);
  1422. memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
  1423. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
  1424. }
  1425. cfg80211_put_bss(auth_data->bss);
  1426. kfree(auth_data);
  1427. sdata->u.mgd.auth_data = NULL;
  1428. }
  1429. static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
  1430. struct ieee80211_mgmt *mgmt, size_t len)
  1431. {
  1432. struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
  1433. u8 *pos;
  1434. struct ieee802_11_elems elems;
  1435. pos = mgmt->u.auth.variable;
  1436. ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
  1437. if (!elems.challenge)
  1438. return;
  1439. auth_data->expected_transaction = 4;
  1440. ieee80211_send_auth(sdata, 3, auth_data->algorithm,
  1441. elems.challenge - 2, elems.challenge_len + 2,
  1442. auth_data->bss->bssid, auth_data->bss->bssid,
  1443. auth_data->key, auth_data->key_len,
  1444. auth_data->key_idx);
  1445. }
  1446. static enum rx_mgmt_action __must_check
  1447. ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
  1448. struct ieee80211_mgmt *mgmt, size_t len)
  1449. {
  1450. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1451. u8 bssid[ETH_ALEN];
  1452. u16 auth_alg, auth_transaction, status_code;
  1453. struct sta_info *sta;
  1454. lockdep_assert_held(&ifmgd->mtx);
  1455. if (len < 24 + 6)
  1456. return RX_MGMT_NONE;
  1457. if (!ifmgd->auth_data || ifmgd->auth_data->done)
  1458. return RX_MGMT_NONE;
  1459. memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
  1460. if (compare_ether_addr(bssid, mgmt->bssid))
  1461. return RX_MGMT_NONE;
  1462. auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
  1463. auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
  1464. status_code = le16_to_cpu(mgmt->u.auth.status_code);
  1465. if (auth_alg != ifmgd->auth_data->algorithm ||
  1466. auth_transaction != ifmgd->auth_data->expected_transaction)
  1467. return RX_MGMT_NONE;
  1468. if (status_code != WLAN_STATUS_SUCCESS) {
  1469. printk(KERN_DEBUG "%s: %pM denied authentication (status %d)\n",
  1470. sdata->name, mgmt->sa, status_code);
  1471. goto out;
  1472. }
  1473. switch (ifmgd->auth_data->algorithm) {
  1474. case WLAN_AUTH_OPEN:
  1475. case WLAN_AUTH_LEAP:
  1476. case WLAN_AUTH_FT:
  1477. break;
  1478. case WLAN_AUTH_SHARED_KEY:
  1479. if (ifmgd->auth_data->expected_transaction != 4) {
  1480. ieee80211_auth_challenge(sdata, mgmt, len);
  1481. /* need another frame */
  1482. return RX_MGMT_NONE;
  1483. }
  1484. break;
  1485. default:
  1486. WARN_ONCE(1, "invalid auth alg %d",
  1487. ifmgd->auth_data->algorithm);
  1488. return RX_MGMT_NONE;
  1489. }
  1490. printk(KERN_DEBUG "%s: authenticated\n", sdata->name);
  1491. out:
  1492. ifmgd->auth_data->done = true;
  1493. ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
  1494. run_again(ifmgd, ifmgd->auth_data->timeout);
  1495. /* move station state to auth */
  1496. mutex_lock(&sdata->local->sta_mtx);
  1497. sta = sta_info_get(sdata, bssid);
  1498. if (!sta) {
  1499. WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
  1500. goto out_err;
  1501. }
  1502. if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
  1503. printk(KERN_DEBUG "%s: failed moving %pM to auth\n",
  1504. sdata->name, bssid);
  1505. goto out_err;
  1506. }
  1507. mutex_unlock(&sdata->local->sta_mtx);
  1508. return RX_MGMT_CFG80211_RX_AUTH;
  1509. out_err:
  1510. mutex_unlock(&sdata->local->sta_mtx);
  1511. /* ignore frame -- wait for timeout */
  1512. return RX_MGMT_NONE;
  1513. }
  1514. static enum rx_mgmt_action __must_check
  1515. ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
  1516. struct ieee80211_mgmt *mgmt, size_t len)
  1517. {
  1518. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1519. const u8 *bssid = NULL;
  1520. u16 reason_code;
  1521. lockdep_assert_held(&ifmgd->mtx);
  1522. if (len < 24 + 2)
  1523. return RX_MGMT_NONE;
  1524. if (!ifmgd->associated ||
  1525. compare_ether_addr(mgmt->bssid, ifmgd->associated->bssid))
  1526. return RX_MGMT_NONE;
  1527. bssid = ifmgd->associated->bssid;
  1528. reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
  1529. printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
  1530. sdata->name, bssid, reason_code);
  1531. ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
  1532. mutex_lock(&sdata->local->mtx);
  1533. ieee80211_recalc_idle(sdata->local);
  1534. mutex_unlock(&sdata->local->mtx);
  1535. return RX_MGMT_CFG80211_DEAUTH;
  1536. }
  1537. static enum rx_mgmt_action __must_check
  1538. ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
  1539. struct ieee80211_mgmt *mgmt, size_t len)
  1540. {
  1541. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1542. u16 reason_code;
  1543. lockdep_assert_held(&ifmgd->mtx);
  1544. if (len < 24 + 2)
  1545. return RX_MGMT_NONE;
  1546. if (!ifmgd->associated ||
  1547. compare_ether_addr(mgmt->bssid, ifmgd->associated->bssid))
  1548. return RX_MGMT_NONE;
  1549. reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
  1550. printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
  1551. sdata->name, mgmt->sa, reason_code);
  1552. ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
  1553. mutex_lock(&sdata->local->mtx);
  1554. ieee80211_recalc_idle(sdata->local);
  1555. mutex_unlock(&sdata->local->mtx);
  1556. return RX_MGMT_CFG80211_DISASSOC;
  1557. }
  1558. static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
  1559. u8 *supp_rates, unsigned int supp_rates_len,
  1560. u32 *rates, u32 *basic_rates,
  1561. bool *have_higher_than_11mbit,
  1562. int *min_rate, int *min_rate_index)
  1563. {
  1564. int i, j;
  1565. for (i = 0; i < supp_rates_len; i++) {
  1566. int rate = (supp_rates[i] & 0x7f) * 5;
  1567. bool is_basic = !!(supp_rates[i] & 0x80);
  1568. if (rate > 110)
  1569. *have_higher_than_11mbit = true;
  1570. /*
  1571. * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
  1572. * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
  1573. *
  1574. * Note: Even through the membership selector and the basic
  1575. * rate flag share the same bit, they are not exactly
  1576. * the same.
  1577. */
  1578. if (!!(supp_rates[i] & 0x80) &&
  1579. (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
  1580. continue;
  1581. for (j = 0; j < sband->n_bitrates; j++) {
  1582. if (sband->bitrates[j].bitrate == rate) {
  1583. *rates |= BIT(j);
  1584. if (is_basic)
  1585. *basic_rates |= BIT(j);
  1586. if (rate < *min_rate) {
  1587. *min_rate = rate;
  1588. *min_rate_index = j;
  1589. }
  1590. break;
  1591. }
  1592. }
  1593. }
  1594. }
  1595. static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
  1596. bool assoc)
  1597. {
  1598. struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
  1599. lockdep_assert_held(&sdata->u.mgd.mtx);
  1600. if (!assoc) {
  1601. sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
  1602. memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
  1603. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
  1604. }
  1605. kfree(assoc_data);
  1606. sdata->u.mgd.assoc_data = NULL;
  1607. }
  1608. static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
  1609. struct cfg80211_bss *cbss,
  1610. struct ieee80211_mgmt *mgmt, size_t len)
  1611. {
  1612. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1613. struct ieee80211_local *local = sdata->local;
  1614. struct ieee80211_supported_band *sband;
  1615. struct sta_info *sta;
  1616. u8 *pos;
  1617. u16 capab_info, aid;
  1618. struct ieee802_11_elems elems;
  1619. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1620. u32 changed = 0;
  1621. int err;
  1622. /* AssocResp and ReassocResp have identical structure */
  1623. aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
  1624. capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
  1625. if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
  1626. printk(KERN_DEBUG
  1627. "%s: invalid AID value 0x%x; bits 15:14 not set\n",
  1628. sdata->name, aid);
  1629. aid &= ~(BIT(15) | BIT(14));
  1630. ifmgd->broken_ap = false;
  1631. if (aid == 0 || aid > IEEE80211_MAX_AID) {
  1632. printk(KERN_DEBUG
  1633. "%s: invalid AID value %d (out of range), turn off PS\n",
  1634. sdata->name, aid);
  1635. aid = 0;
  1636. ifmgd->broken_ap = true;
  1637. }
  1638. pos = mgmt->u.assoc_resp.variable;
  1639. ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
  1640. if (!elems.supp_rates) {
  1641. printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
  1642. sdata->name);
  1643. return false;
  1644. }
  1645. ifmgd->aid = aid;
  1646. mutex_lock(&sdata->local->sta_mtx);
  1647. /*
  1648. * station info was already allocated and inserted before
  1649. * the association and should be available to us
  1650. */
  1651. sta = sta_info_get(sdata, cbss->bssid);
  1652. if (WARN_ON(!sta)) {
  1653. mutex_unlock(&sdata->local->sta_mtx);
  1654. return false;
  1655. }
  1656. sband = local->hw.wiphy->bands[local->oper_channel->band];
  1657. if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
  1658. ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
  1659. elems.ht_cap_elem, &sta->sta.ht_cap);
  1660. sta->supports_40mhz =
  1661. sta->sta.ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  1662. rate_control_rate_init(sta);
  1663. if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
  1664. set_sta_flag(sta, WLAN_STA_MFP);
  1665. if (elems.wmm_param)
  1666. set_sta_flag(sta, WLAN_STA_WME);
  1667. err = sta_info_move_state(sta, IEEE80211_STA_AUTH);
  1668. if (!err)
  1669. err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
  1670. if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
  1671. err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
  1672. if (err) {
  1673. printk(KERN_DEBUG
  1674. "%s: failed to move station %pM to desired state\n",
  1675. sdata->name, sta->sta.addr);
  1676. WARN_ON(__sta_info_destroy(sta));
  1677. mutex_unlock(&sdata->local->sta_mtx);
  1678. return false;
  1679. }
  1680. mutex_unlock(&sdata->local->sta_mtx);
  1681. /*
  1682. * Always handle WMM once after association regardless
  1683. * of the first value the AP uses. Setting -1 here has
  1684. * that effect because the AP values is an unsigned
  1685. * 4-bit value.
  1686. */
  1687. ifmgd->wmm_last_param_set = -1;
  1688. if (elems.wmm_param)
  1689. ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
  1690. elems.wmm_param_len);
  1691. else
  1692. ieee80211_set_wmm_default(sdata, false);
  1693. changed |= BSS_CHANGED_QOS;
  1694. if (elems.ht_operation && elems.wmm_param &&
  1695. !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
  1696. changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
  1697. cbss->bssid, false);
  1698. /* set AID and assoc capability,
  1699. * ieee80211_set_associated() will tell the driver */
  1700. bss_conf->aid = aid;
  1701. bss_conf->assoc_capability = capab_info;
  1702. ieee80211_set_associated(sdata, cbss, changed);
  1703. /*
  1704. * If we're using 4-addr mode, let the AP know that we're
  1705. * doing so, so that it can create the STA VLAN on its side
  1706. */
  1707. if (ifmgd->use_4addr)
  1708. ieee80211_send_4addr_nullfunc(local, sdata);
  1709. /*
  1710. * Start timer to probe the connection to the AP now.
  1711. * Also start the timer that will detect beacon loss.
  1712. */
  1713. ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
  1714. ieee80211_sta_reset_beacon_monitor(sdata);
  1715. return true;
  1716. }
  1717. static enum rx_mgmt_action __must_check
  1718. ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
  1719. struct ieee80211_mgmt *mgmt, size_t len,
  1720. struct cfg80211_bss **bss)
  1721. {
  1722. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1723. struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
  1724. u16 capab_info, status_code, aid;
  1725. struct ieee802_11_elems elems;
  1726. u8 *pos;
  1727. bool reassoc;
  1728. lockdep_assert_held(&ifmgd->mtx);
  1729. if (!assoc_data)
  1730. return RX_MGMT_NONE;
  1731. if (compare_ether_addr(assoc_data->bss->bssid, mgmt->bssid))
  1732. return RX_MGMT_NONE;
  1733. /*
  1734. * AssocResp and ReassocResp have identical structure, so process both
  1735. * of them in this function.
  1736. */
  1737. if (len < 24 + 6)
  1738. return RX_MGMT_NONE;
  1739. reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
  1740. capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
  1741. status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
  1742. aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
  1743. printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
  1744. "status=%d aid=%d)\n",
  1745. sdata->name, reassoc ? "Rea" : "A", mgmt->sa,
  1746. capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
  1747. pos = mgmt->u.assoc_resp.variable;
  1748. ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
  1749. if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
  1750. elems.timeout_int && elems.timeout_int_len == 5 &&
  1751. elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
  1752. u32 tu, ms;
  1753. tu = get_unaligned_le32(elems.timeout_int + 1);
  1754. ms = tu * 1024 / 1000;
  1755. printk(KERN_DEBUG "%s: %pM rejected association temporarily; "
  1756. "comeback duration %u TU (%u ms)\n",
  1757. sdata->name, mgmt->sa, tu, ms);
  1758. assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
  1759. if (ms > IEEE80211_ASSOC_TIMEOUT)
  1760. run_again(ifmgd, assoc_data->timeout);
  1761. return RX_MGMT_NONE;
  1762. }
  1763. *bss = assoc_data->bss;
  1764. if (status_code != WLAN_STATUS_SUCCESS) {
  1765. printk(KERN_DEBUG "%s: %pM denied association (code=%d)\n",
  1766. sdata->name, mgmt->sa, status_code);
  1767. ieee80211_destroy_assoc_data(sdata, false);
  1768. } else {
  1769. printk(KERN_DEBUG "%s: associated\n", sdata->name);
  1770. if (!ieee80211_assoc_success(sdata, *bss, mgmt, len)) {
  1771. /* oops -- internal error -- send timeout for now */
  1772. ieee80211_destroy_assoc_data(sdata, true);
  1773. sta_info_destroy_addr(sdata, mgmt->bssid);
  1774. cfg80211_put_bss(*bss);
  1775. return RX_MGMT_CFG80211_ASSOC_TIMEOUT;
  1776. }
  1777. /*
  1778. * destroy assoc_data afterwards, as otherwise an idle
  1779. * recalc after assoc_data is NULL but before associated
  1780. * is set can cause the interface to go idle
  1781. */
  1782. ieee80211_destroy_assoc_data(sdata, true);
  1783. }
  1784. return RX_MGMT_CFG80211_RX_ASSOC;
  1785. }
  1786. static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
  1787. struct ieee80211_mgmt *mgmt,
  1788. size_t len,
  1789. struct ieee80211_rx_status *rx_status,
  1790. struct ieee802_11_elems *elems,
  1791. bool beacon)
  1792. {
  1793. struct ieee80211_local *local = sdata->local;
  1794. int freq;
  1795. struct ieee80211_bss *bss;
  1796. struct ieee80211_channel *channel;
  1797. bool need_ps = false;
  1798. if (sdata->u.mgd.associated &&
  1799. compare_ether_addr(mgmt->bssid, sdata->u.mgd.associated->bssid)
  1800. == 0) {
  1801. bss = (void *)sdata->u.mgd.associated->priv;
  1802. /* not previously set so we may need to recalc */
  1803. need_ps = !bss->dtim_period;
  1804. }
  1805. if (elems->ds_params && elems->ds_params_len == 1)
  1806. freq = ieee80211_channel_to_frequency(elems->ds_params[0],
  1807. rx_status->band);
  1808. else
  1809. freq = rx_status->freq;
  1810. channel = ieee80211_get_channel(local->hw.wiphy, freq);
  1811. if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
  1812. return;
  1813. bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
  1814. channel, beacon);
  1815. if (bss)
  1816. ieee80211_rx_bss_put(local, bss);
  1817. if (!sdata->u.mgd.associated)
  1818. return;
  1819. if (need_ps) {
  1820. mutex_lock(&local->iflist_mtx);
  1821. ieee80211_recalc_ps(local, -1);
  1822. mutex_unlock(&local->iflist_mtx);
  1823. }
  1824. if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
  1825. (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid,
  1826. ETH_ALEN) == 0)) {
  1827. struct ieee80211_channel_sw_ie *sw_elem =
  1828. (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
  1829. ieee80211_sta_process_chanswitch(sdata, sw_elem,
  1830. bss, rx_status->mactime);
  1831. }
  1832. }
  1833. static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
  1834. struct sk_buff *skb)
  1835. {
  1836. struct ieee80211_mgmt *mgmt = (void *)skb->data;
  1837. struct ieee80211_if_managed *ifmgd;
  1838. struct ieee80211_rx_status *rx_status = (void *) skb->cb;
  1839. size_t baselen, len = skb->len;
  1840. struct ieee802_11_elems elems;
  1841. ifmgd = &sdata->u.mgd;
  1842. ASSERT_MGD_MTX(ifmgd);
  1843. if (compare_ether_addr(mgmt->da, sdata->vif.addr))
  1844. return; /* ignore ProbeResp to foreign address */
  1845. baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
  1846. if (baselen > len)
  1847. return;
  1848. ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
  1849. &elems);
  1850. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
  1851. if (ifmgd->associated &&
  1852. compare_ether_addr(mgmt->bssid, ifmgd->associated->bssid) == 0)
  1853. ieee80211_reset_ap_probe(sdata);
  1854. if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
  1855. compare_ether_addr(mgmt->bssid, ifmgd->auth_data->bss->bssid)
  1856. == 0) {
  1857. /* got probe response, continue with auth */
  1858. printk(KERN_DEBUG "%s: direct probe responded\n", sdata->name);
  1859. ifmgd->auth_data->tries = 0;
  1860. ifmgd->auth_data->timeout = jiffies;
  1861. run_again(ifmgd, ifmgd->auth_data->timeout);
  1862. }
  1863. }
  1864. /*
  1865. * This is the canonical list of information elements we care about,
  1866. * the filter code also gives us all changes to the Microsoft OUI
  1867. * (00:50:F2) vendor IE which is used for WMM which we need to track.
  1868. *
  1869. * We implement beacon filtering in software since that means we can
  1870. * avoid processing the frame here and in cfg80211, and userspace
  1871. * will not be able to tell whether the hardware supports it or not.
  1872. *
  1873. * XXX: This list needs to be dynamic -- userspace needs to be able to
  1874. * add items it requires. It also needs to be able to tell us to
  1875. * look out for other vendor IEs.
  1876. */
  1877. static const u64 care_about_ies =
  1878. (1ULL << WLAN_EID_COUNTRY) |
  1879. (1ULL << WLAN_EID_ERP_INFO) |
  1880. (1ULL << WLAN_EID_CHANNEL_SWITCH) |
  1881. (1ULL << WLAN_EID_PWR_CONSTRAINT) |
  1882. (1ULL << WLAN_EID_HT_CAPABILITY) |
  1883. (1ULL << WLAN_EID_HT_OPERATION);
  1884. static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
  1885. struct ieee80211_mgmt *mgmt,
  1886. size_t len,
  1887. struct ieee80211_rx_status *rx_status)
  1888. {
  1889. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1890. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1891. size_t baselen;
  1892. struct ieee802_11_elems elems;
  1893. struct ieee80211_local *local = sdata->local;
  1894. u32 changed = 0;
  1895. bool erp_valid, directed_tim = false;
  1896. u8 erp_value = 0;
  1897. u32 ncrc;
  1898. u8 *bssid;
  1899. lockdep_assert_held(&ifmgd->mtx);
  1900. /* Process beacon from the current BSS */
  1901. baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
  1902. if (baselen > len)
  1903. return;
  1904. if (rx_status->freq != local->hw.conf.channel->center_freq)
  1905. return;
  1906. if (ifmgd->assoc_data && !ifmgd->assoc_data->have_beacon &&
  1907. compare_ether_addr(mgmt->bssid, ifmgd->assoc_data->bss->bssid)
  1908. == 0) {
  1909. ieee802_11_parse_elems(mgmt->u.beacon.variable,
  1910. len - baselen, &elems);
  1911. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
  1912. false);
  1913. ifmgd->assoc_data->have_beacon = true;
  1914. ifmgd->assoc_data->sent_assoc = false;
  1915. /* continue assoc process */
  1916. ifmgd->assoc_data->timeout = jiffies;
  1917. run_again(ifmgd, ifmgd->assoc_data->timeout);
  1918. return;
  1919. }
  1920. if (!ifmgd->associated ||
  1921. compare_ether_addr(mgmt->bssid, ifmgd->associated->bssid))
  1922. return;
  1923. bssid = ifmgd->associated->bssid;
  1924. /* Track average RSSI from the Beacon frames of the current AP */
  1925. ifmgd->last_beacon_signal = rx_status->signal;
  1926. if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
  1927. ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
  1928. ifmgd->ave_beacon_signal = rx_status->signal * 16;
  1929. ifmgd->last_cqm_event_signal = 0;
  1930. ifmgd->count_beacon_signal = 1;
  1931. ifmgd->last_ave_beacon_signal = 0;
  1932. } else {
  1933. ifmgd->ave_beacon_signal =
  1934. (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
  1935. (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
  1936. ifmgd->ave_beacon_signal) / 16;
  1937. ifmgd->count_beacon_signal++;
  1938. }
  1939. if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
  1940. ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
  1941. int sig = ifmgd->ave_beacon_signal;
  1942. int last_sig = ifmgd->last_ave_beacon_signal;
  1943. /*
  1944. * if signal crosses either of the boundaries, invoke callback
  1945. * with appropriate parameters
  1946. */
  1947. if (sig > ifmgd->rssi_max_thold &&
  1948. (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
  1949. ifmgd->last_ave_beacon_signal = sig;
  1950. drv_rssi_callback(local, RSSI_EVENT_HIGH);
  1951. } else if (sig < ifmgd->rssi_min_thold &&
  1952. (last_sig >= ifmgd->rssi_max_thold ||
  1953. last_sig == 0)) {
  1954. ifmgd->last_ave_beacon_signal = sig;
  1955. drv_rssi_callback(local, RSSI_EVENT_LOW);
  1956. }
  1957. }
  1958. if (bss_conf->cqm_rssi_thold &&
  1959. ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
  1960. !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
  1961. int sig = ifmgd->ave_beacon_signal / 16;
  1962. int last_event = ifmgd->last_cqm_event_signal;
  1963. int thold = bss_conf->cqm_rssi_thold;
  1964. int hyst = bss_conf->cqm_rssi_hyst;
  1965. if (sig < thold &&
  1966. (last_event == 0 || sig < last_event - hyst)) {
  1967. ifmgd->last_cqm_event_signal = sig;
  1968. ieee80211_cqm_rssi_notify(
  1969. &sdata->vif,
  1970. NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
  1971. GFP_KERNEL);
  1972. } else if (sig > thold &&
  1973. (last_event == 0 || sig > last_event + hyst)) {
  1974. ifmgd->last_cqm_event_signal = sig;
  1975. ieee80211_cqm_rssi_notify(
  1976. &sdata->vif,
  1977. NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
  1978. GFP_KERNEL);
  1979. }
  1980. }
  1981. if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
  1982. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1983. if (net_ratelimit()) {
  1984. printk(KERN_DEBUG "%s: cancelling probereq poll due "
  1985. "to a received beacon\n", sdata->name);
  1986. }
  1987. #endif
  1988. ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
  1989. mutex_lock(&local->iflist_mtx);
  1990. ieee80211_recalc_ps(local, -1);
  1991. mutex_unlock(&local->iflist_mtx);
  1992. }
  1993. /*
  1994. * Push the beacon loss detection into the future since
  1995. * we are processing a beacon from the AP just now.
  1996. */
  1997. ieee80211_sta_reset_beacon_monitor(sdata);
  1998. ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
  1999. ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
  2000. len - baselen, &elems,
  2001. care_about_ies, ncrc);
  2002. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  2003. directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
  2004. ifmgd->aid);
  2005. if (ncrc != ifmgd->beacon_crc || !ifmgd->beacon_crc_valid) {
  2006. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
  2007. true);
  2008. ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
  2009. elems.wmm_param_len);
  2010. }
  2011. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
  2012. if (directed_tim) {
  2013. if (local->hw.conf.dynamic_ps_timeout > 0) {
  2014. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  2015. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  2016. ieee80211_hw_config(local,
  2017. IEEE80211_CONF_CHANGE_PS);
  2018. }
  2019. ieee80211_send_nullfunc(local, sdata, 0);
  2020. } else if (!local->pspolling && sdata->u.mgd.powersave) {
  2021. local->pspolling = true;
  2022. /*
  2023. * Here is assumed that the driver will be
  2024. * able to send ps-poll frame and receive a
  2025. * response even though power save mode is
  2026. * enabled, but some drivers might require
  2027. * to disable power save here. This needs
  2028. * to be investigated.
  2029. */
  2030. ieee80211_send_pspoll(local, sdata);
  2031. }
  2032. }
  2033. }
  2034. if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
  2035. return;
  2036. ifmgd->beacon_crc = ncrc;
  2037. ifmgd->beacon_crc_valid = true;
  2038. if (elems.erp_info && elems.erp_info_len >= 1) {
  2039. erp_valid = true;
  2040. erp_value = elems.erp_info[0];
  2041. } else {
  2042. erp_valid = false;
  2043. }
  2044. changed |= ieee80211_handle_bss_capability(sdata,
  2045. le16_to_cpu(mgmt->u.beacon.capab_info),
  2046. erp_valid, erp_value);
  2047. if (elems.ht_cap_elem && elems.ht_operation && elems.wmm_param &&
  2048. !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
  2049. struct ieee80211_supported_band *sband;
  2050. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  2051. changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
  2052. bssid, true);
  2053. }
  2054. /* Note: country IE parsing is done for us by cfg80211 */
  2055. if (elems.country_elem) {
  2056. /* TODO: IBSS also needs this */
  2057. if (elems.pwr_constr_elem)
  2058. ieee80211_handle_pwr_constr(sdata,
  2059. le16_to_cpu(mgmt->u.probe_resp.capab_info),
  2060. elems.pwr_constr_elem,
  2061. elems.pwr_constr_elem_len);
  2062. }
  2063. ieee80211_bss_info_change_notify(sdata, changed);
  2064. }
  2065. void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
  2066. struct sk_buff *skb)
  2067. {
  2068. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2069. struct ieee80211_rx_status *rx_status;
  2070. struct ieee80211_mgmt *mgmt;
  2071. struct cfg80211_bss *bss = NULL;
  2072. enum rx_mgmt_action rma = RX_MGMT_NONE;
  2073. u16 fc;
  2074. rx_status = (struct ieee80211_rx_status *) skb->cb;
  2075. mgmt = (struct ieee80211_mgmt *) skb->data;
  2076. fc = le16_to_cpu(mgmt->frame_control);
  2077. mutex_lock(&ifmgd->mtx);
  2078. switch (fc & IEEE80211_FCTL_STYPE) {
  2079. case IEEE80211_STYPE_BEACON:
  2080. ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
  2081. break;
  2082. case IEEE80211_STYPE_PROBE_RESP:
  2083. ieee80211_rx_mgmt_probe_resp(sdata, skb);
  2084. break;
  2085. case IEEE80211_STYPE_AUTH:
  2086. rma = ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
  2087. break;
  2088. case IEEE80211_STYPE_DEAUTH:
  2089. rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
  2090. break;
  2091. case IEEE80211_STYPE_DISASSOC:
  2092. rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
  2093. break;
  2094. case IEEE80211_STYPE_ASSOC_RESP:
  2095. case IEEE80211_STYPE_REASSOC_RESP:
  2096. rma = ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, &bss);
  2097. break;
  2098. case IEEE80211_STYPE_ACTION:
  2099. switch (mgmt->u.action.category) {
  2100. case WLAN_CATEGORY_SPECTRUM_MGMT:
  2101. ieee80211_sta_process_chanswitch(sdata,
  2102. &mgmt->u.action.u.chan_switch.sw_elem,
  2103. (void *)ifmgd->associated->priv,
  2104. rx_status->mactime);
  2105. break;
  2106. }
  2107. }
  2108. mutex_unlock(&ifmgd->mtx);
  2109. switch (rma) {
  2110. case RX_MGMT_NONE:
  2111. /* no action */
  2112. break;
  2113. case RX_MGMT_CFG80211_DEAUTH:
  2114. cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
  2115. break;
  2116. case RX_MGMT_CFG80211_DISASSOC:
  2117. cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
  2118. break;
  2119. case RX_MGMT_CFG80211_RX_AUTH:
  2120. cfg80211_send_rx_auth(sdata->dev, (u8 *)mgmt, skb->len);
  2121. break;
  2122. case RX_MGMT_CFG80211_RX_ASSOC:
  2123. cfg80211_send_rx_assoc(sdata->dev, bss, (u8 *)mgmt, skb->len);
  2124. break;
  2125. case RX_MGMT_CFG80211_ASSOC_TIMEOUT:
  2126. cfg80211_send_assoc_timeout(sdata->dev, mgmt->bssid);
  2127. break;
  2128. default:
  2129. WARN(1, "unexpected: %d", rma);
  2130. }
  2131. }
  2132. static void ieee80211_sta_timer(unsigned long data)
  2133. {
  2134. struct ieee80211_sub_if_data *sdata =
  2135. (struct ieee80211_sub_if_data *) data;
  2136. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2137. struct ieee80211_local *local = sdata->local;
  2138. if (local->quiescing) {
  2139. set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
  2140. return;
  2141. }
  2142. ieee80211_queue_work(&local->hw, &sdata->work);
  2143. }
  2144. static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
  2145. u8 *bssid, u8 reason)
  2146. {
  2147. struct ieee80211_local *local = sdata->local;
  2148. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2149. u8 frame_buf[DEAUTH_DISASSOC_LEN];
  2150. ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
  2151. IEEE80211_STA_BEACON_POLL);
  2152. ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
  2153. false, frame_buf);
  2154. mutex_unlock(&ifmgd->mtx);
  2155. /*
  2156. * must be outside lock due to cfg80211,
  2157. * but that's not a problem.
  2158. */
  2159. cfg80211_send_deauth(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
  2160. mutex_lock(&local->mtx);
  2161. ieee80211_recalc_idle(local);
  2162. mutex_unlock(&local->mtx);
  2163. mutex_lock(&ifmgd->mtx);
  2164. }
  2165. static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
  2166. {
  2167. struct ieee80211_local *local = sdata->local;
  2168. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2169. struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
  2170. lockdep_assert_held(&ifmgd->mtx);
  2171. if (WARN_ON_ONCE(!auth_data))
  2172. return -EINVAL;
  2173. auth_data->tries++;
  2174. if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
  2175. printk(KERN_DEBUG "%s: authentication with %pM timed out\n",
  2176. sdata->name, auth_data->bss->bssid);
  2177. /*
  2178. * Most likely AP is not in the range so remove the
  2179. * bss struct for that AP.
  2180. */
  2181. cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
  2182. return -ETIMEDOUT;
  2183. }
  2184. if (auth_data->bss->proberesp_ies) {
  2185. printk(KERN_DEBUG "%s: send auth to %pM (try %d/%d)\n",
  2186. sdata->name, auth_data->bss->bssid, auth_data->tries,
  2187. IEEE80211_AUTH_MAX_TRIES);
  2188. auth_data->expected_transaction = 2;
  2189. ieee80211_send_auth(sdata, 1, auth_data->algorithm,
  2190. auth_data->ie, auth_data->ie_len,
  2191. auth_data->bss->bssid,
  2192. auth_data->bss->bssid, NULL, 0, 0);
  2193. } else {
  2194. const u8 *ssidie;
  2195. printk(KERN_DEBUG "%s: direct probe to %pM (try %d/%i)\n",
  2196. sdata->name, auth_data->bss->bssid, auth_data->tries,
  2197. IEEE80211_AUTH_MAX_TRIES);
  2198. ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
  2199. if (!ssidie)
  2200. return -EINVAL;
  2201. /*
  2202. * Direct probe is sent to broadcast address as some APs
  2203. * will not answer to direct packet in unassociated state.
  2204. */
  2205. ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
  2206. NULL, 0, (u32) -1, true, false);
  2207. }
  2208. auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
  2209. run_again(ifmgd, auth_data->timeout);
  2210. return 0;
  2211. }
  2212. static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
  2213. {
  2214. struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
  2215. struct ieee80211_local *local = sdata->local;
  2216. lockdep_assert_held(&sdata->u.mgd.mtx);
  2217. assoc_data->tries++;
  2218. if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
  2219. printk(KERN_DEBUG "%s: association with %pM timed out\n",
  2220. sdata->name, assoc_data->bss->bssid);
  2221. /*
  2222. * Most likely AP is not in the range so remove the
  2223. * bss struct for that AP.
  2224. */
  2225. cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
  2226. return -ETIMEDOUT;
  2227. }
  2228. printk(KERN_DEBUG "%s: associate with %pM (try %d/%d)\n",
  2229. sdata->name, assoc_data->bss->bssid, assoc_data->tries,
  2230. IEEE80211_ASSOC_MAX_TRIES);
  2231. ieee80211_send_assoc(sdata);
  2232. assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
  2233. run_again(&sdata->u.mgd, assoc_data->timeout);
  2234. return 0;
  2235. }
  2236. void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
  2237. {
  2238. struct ieee80211_local *local = sdata->local;
  2239. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2240. mutex_lock(&ifmgd->mtx);
  2241. if (ifmgd->auth_data &&
  2242. time_after(jiffies, ifmgd->auth_data->timeout)) {
  2243. if (ifmgd->auth_data->done) {
  2244. /*
  2245. * ok ... we waited for assoc but userspace didn't,
  2246. * so let's just kill the auth data
  2247. */
  2248. ieee80211_destroy_auth_data(sdata, false);
  2249. } else if (ieee80211_probe_auth(sdata)) {
  2250. u8 bssid[ETH_ALEN];
  2251. memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
  2252. ieee80211_destroy_auth_data(sdata, false);
  2253. mutex_unlock(&ifmgd->mtx);
  2254. cfg80211_send_auth_timeout(sdata->dev, bssid);
  2255. mutex_lock(&ifmgd->mtx);
  2256. }
  2257. } else if (ifmgd->auth_data)
  2258. run_again(ifmgd, ifmgd->auth_data->timeout);
  2259. if (ifmgd->assoc_data &&
  2260. time_after(jiffies, ifmgd->assoc_data->timeout)) {
  2261. if (!ifmgd->assoc_data->have_beacon ||
  2262. ieee80211_do_assoc(sdata)) {
  2263. u8 bssid[ETH_ALEN];
  2264. memcpy(bssid, ifmgd->assoc_data->bss->bssid, ETH_ALEN);
  2265. ieee80211_destroy_assoc_data(sdata, false);
  2266. mutex_unlock(&ifmgd->mtx);
  2267. cfg80211_send_assoc_timeout(sdata->dev, bssid);
  2268. mutex_lock(&ifmgd->mtx);
  2269. }
  2270. } else if (ifmgd->assoc_data)
  2271. run_again(ifmgd, ifmgd->assoc_data->timeout);
  2272. if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  2273. IEEE80211_STA_CONNECTION_POLL) &&
  2274. ifmgd->associated) {
  2275. u8 bssid[ETH_ALEN];
  2276. int max_tries;
  2277. memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
  2278. if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
  2279. max_tries = max_nullfunc_tries;
  2280. else
  2281. max_tries = max_probe_tries;
  2282. /* ACK received for nullfunc probing frame */
  2283. if (!ifmgd->probe_send_count)
  2284. ieee80211_reset_ap_probe(sdata);
  2285. else if (ifmgd->nullfunc_failed) {
  2286. if (ifmgd->probe_send_count < max_tries) {
  2287. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  2288. wiphy_debug(local->hw.wiphy,
  2289. "%s: No ack for nullfunc frame to"
  2290. " AP %pM, try %d/%i\n",
  2291. sdata->name, bssid,
  2292. ifmgd->probe_send_count, max_tries);
  2293. #endif
  2294. ieee80211_mgd_probe_ap_send(sdata);
  2295. } else {
  2296. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  2297. wiphy_debug(local->hw.wiphy,
  2298. "%s: No ack for nullfunc frame to"
  2299. " AP %pM, disconnecting.\n",
  2300. sdata->name, bssid);
  2301. #endif
  2302. ieee80211_sta_connection_lost(sdata, bssid,
  2303. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  2304. }
  2305. } else if (time_is_after_jiffies(ifmgd->probe_timeout))
  2306. run_again(ifmgd, ifmgd->probe_timeout);
  2307. else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  2308. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  2309. wiphy_debug(local->hw.wiphy,
  2310. "%s: Failed to send nullfunc to AP %pM"
  2311. " after %dms, disconnecting.\n",
  2312. sdata->name,
  2313. bssid, probe_wait_ms);
  2314. #endif
  2315. ieee80211_sta_connection_lost(sdata, bssid,
  2316. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  2317. } else if (ifmgd->probe_send_count < max_tries) {
  2318. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  2319. wiphy_debug(local->hw.wiphy,
  2320. "%s: No probe response from AP %pM"
  2321. " after %dms, try %d/%i\n",
  2322. sdata->name,
  2323. bssid, probe_wait_ms,
  2324. ifmgd->probe_send_count, max_tries);
  2325. #endif
  2326. ieee80211_mgd_probe_ap_send(sdata);
  2327. } else {
  2328. /*
  2329. * We actually lost the connection ... or did we?
  2330. * Let's make sure!
  2331. */
  2332. wiphy_debug(local->hw.wiphy,
  2333. "%s: No probe response from AP %pM"
  2334. " after %dms, disconnecting.\n",
  2335. sdata->name,
  2336. bssid, probe_wait_ms);
  2337. ieee80211_sta_connection_lost(sdata, bssid,
  2338. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  2339. }
  2340. }
  2341. mutex_unlock(&ifmgd->mtx);
  2342. mutex_lock(&local->mtx);
  2343. ieee80211_recalc_idle(local);
  2344. mutex_unlock(&local->mtx);
  2345. }
  2346. static void ieee80211_sta_bcn_mon_timer(unsigned long data)
  2347. {
  2348. struct ieee80211_sub_if_data *sdata =
  2349. (struct ieee80211_sub_if_data *) data;
  2350. struct ieee80211_local *local = sdata->local;
  2351. if (local->quiescing)
  2352. return;
  2353. ieee80211_queue_work(&sdata->local->hw,
  2354. &sdata->u.mgd.beacon_connection_loss_work);
  2355. }
  2356. static void ieee80211_sta_conn_mon_timer(unsigned long data)
  2357. {
  2358. struct ieee80211_sub_if_data *sdata =
  2359. (struct ieee80211_sub_if_data *) data;
  2360. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2361. struct ieee80211_local *local = sdata->local;
  2362. if (local->quiescing)
  2363. return;
  2364. ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
  2365. }
  2366. static void ieee80211_sta_monitor_work(struct work_struct *work)
  2367. {
  2368. struct ieee80211_sub_if_data *sdata =
  2369. container_of(work, struct ieee80211_sub_if_data,
  2370. u.mgd.monitor_work);
  2371. ieee80211_mgd_probe_ap(sdata, false);
  2372. }
  2373. static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
  2374. {
  2375. u32 flags;
  2376. if (sdata->vif.type == NL80211_IFTYPE_STATION) {
  2377. sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
  2378. IEEE80211_STA_CONNECTION_POLL);
  2379. /* let's probe the connection once */
  2380. flags = sdata->local->hw.flags;
  2381. if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
  2382. ieee80211_queue_work(&sdata->local->hw,
  2383. &sdata->u.mgd.monitor_work);
  2384. /* and do all the other regular work too */
  2385. ieee80211_queue_work(&sdata->local->hw, &sdata->work);
  2386. }
  2387. }
  2388. #ifdef CONFIG_PM
  2389. void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
  2390. {
  2391. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2392. /*
  2393. * we need to use atomic bitops for the running bits
  2394. * only because both timers might fire at the same
  2395. * time -- the code here is properly synchronised.
  2396. */
  2397. cancel_work_sync(&ifmgd->request_smps_work);
  2398. cancel_work_sync(&ifmgd->monitor_work);
  2399. cancel_work_sync(&ifmgd->beacon_connection_loss_work);
  2400. if (del_timer_sync(&ifmgd->timer))
  2401. set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
  2402. cancel_work_sync(&ifmgd->chswitch_work);
  2403. if (del_timer_sync(&ifmgd->chswitch_timer))
  2404. set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
  2405. /* these will just be re-established on connection */
  2406. del_timer_sync(&ifmgd->conn_mon_timer);
  2407. del_timer_sync(&ifmgd->bcn_mon_timer);
  2408. }
  2409. void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
  2410. {
  2411. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2412. if (!ifmgd->associated)
  2413. return;
  2414. if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
  2415. sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
  2416. mutex_lock(&ifmgd->mtx);
  2417. if (ifmgd->associated) {
  2418. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  2419. wiphy_debug(sdata->local->hw.wiphy,
  2420. "%s: driver requested disconnect after resume.\n",
  2421. sdata->name);
  2422. #endif
  2423. ieee80211_sta_connection_lost(sdata,
  2424. ifmgd->associated->bssid,
  2425. WLAN_REASON_UNSPECIFIED);
  2426. mutex_unlock(&ifmgd->mtx);
  2427. return;
  2428. }
  2429. mutex_unlock(&ifmgd->mtx);
  2430. }
  2431. if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
  2432. add_timer(&ifmgd->timer);
  2433. if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
  2434. add_timer(&ifmgd->chswitch_timer);
  2435. ieee80211_sta_reset_beacon_monitor(sdata);
  2436. ieee80211_restart_sta_timer(sdata);
  2437. }
  2438. #endif
  2439. /* interface setup */
  2440. void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
  2441. {
  2442. struct ieee80211_if_managed *ifmgd;
  2443. ifmgd = &sdata->u.mgd;
  2444. INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
  2445. INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
  2446. INIT_WORK(&ifmgd->beacon_connection_loss_work,
  2447. ieee80211_beacon_connection_loss_work);
  2448. INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
  2449. setup_timer(&ifmgd->timer, ieee80211_sta_timer,
  2450. (unsigned long) sdata);
  2451. setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
  2452. (unsigned long) sdata);
  2453. setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
  2454. (unsigned long) sdata);
  2455. setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
  2456. (unsigned long) sdata);
  2457. ifmgd->flags = 0;
  2458. ifmgd->powersave = sdata->wdev.ps;
  2459. ifmgd->uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
  2460. ifmgd->uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
  2461. mutex_init(&ifmgd->mtx);
  2462. if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
  2463. ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
  2464. else
  2465. ifmgd->req_smps = IEEE80211_SMPS_OFF;
  2466. }
  2467. /* scan finished notification */
  2468. void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
  2469. {
  2470. struct ieee80211_sub_if_data *sdata = local->scan_sdata;
  2471. /* Restart STA timers */
  2472. rcu_read_lock();
  2473. list_for_each_entry_rcu(sdata, &local->interfaces, list)
  2474. ieee80211_restart_sta_timer(sdata);
  2475. rcu_read_unlock();
  2476. }
  2477. int ieee80211_max_network_latency(struct notifier_block *nb,
  2478. unsigned long data, void *dummy)
  2479. {
  2480. s32 latency_usec = (s32) data;
  2481. struct ieee80211_local *local =
  2482. container_of(nb, struct ieee80211_local,
  2483. network_latency_notifier);
  2484. mutex_lock(&local->iflist_mtx);
  2485. ieee80211_recalc_ps(local, latency_usec);
  2486. mutex_unlock(&local->iflist_mtx);
  2487. return 0;
  2488. }
  2489. static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
  2490. struct cfg80211_bss *cbss, bool assoc)
  2491. {
  2492. struct ieee80211_local *local = sdata->local;
  2493. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2494. struct ieee80211_bss *bss = (void *)cbss->priv;
  2495. struct sta_info *sta;
  2496. bool have_sta = false;
  2497. int err;
  2498. int ht_cfreq;
  2499. enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
  2500. const u8 *ht_oper_ie;
  2501. const struct ieee80211_ht_operation *ht_oper = NULL;
  2502. struct ieee80211_supported_band *sband;
  2503. if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
  2504. return -EINVAL;
  2505. if (assoc) {
  2506. rcu_read_lock();
  2507. have_sta = sta_info_get(sdata, cbss->bssid);
  2508. rcu_read_unlock();
  2509. }
  2510. if (!have_sta) {
  2511. sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
  2512. if (!sta)
  2513. return -ENOMEM;
  2514. }
  2515. mutex_lock(&local->mtx);
  2516. ieee80211_recalc_idle(sdata->local);
  2517. mutex_unlock(&local->mtx);
  2518. /* switch to the right channel */
  2519. sband = local->hw.wiphy->bands[cbss->channel->band];
  2520. ifmgd->flags &= ~IEEE80211_STA_DISABLE_40MHZ;
  2521. if (sband->ht_cap.ht_supported) {
  2522. ht_oper_ie = cfg80211_find_ie(WLAN_EID_HT_OPERATION,
  2523. cbss->information_elements,
  2524. cbss->len_information_elements);
  2525. if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
  2526. ht_oper = (void *)(ht_oper_ie + 2);
  2527. }
  2528. if (ht_oper) {
  2529. ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
  2530. cbss->channel->band);
  2531. /* check that channel matches the right operating channel */
  2532. if (cbss->channel->center_freq != ht_cfreq) {
  2533. /*
  2534. * It's possible that some APs are confused here;
  2535. * Netgear WNDR3700 sometimes reports 4 higher than
  2536. * the actual channel in association responses, but
  2537. * since we look at probe response/beacon data here
  2538. * it should be OK.
  2539. */
  2540. printk(KERN_DEBUG
  2541. "%s: Wrong control channel: center-freq: %d"
  2542. " ht-cfreq: %d ht->primary_chan: %d"
  2543. " band: %d. Disabling HT.\n",
  2544. sdata->name, cbss->channel->center_freq,
  2545. ht_cfreq, ht_oper->primary_chan,
  2546. cbss->channel->band);
  2547. ht_oper = NULL;
  2548. }
  2549. }
  2550. if (ht_oper) {
  2551. channel_type = NL80211_CHAN_HT20;
  2552. if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
  2553. switch (ht_oper->ht_param &
  2554. IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
  2555. case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
  2556. channel_type = NL80211_CHAN_HT40PLUS;
  2557. break;
  2558. case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
  2559. channel_type = NL80211_CHAN_HT40MINUS;
  2560. break;
  2561. }
  2562. }
  2563. }
  2564. if (!ieee80211_set_channel_type(local, sdata, channel_type)) {
  2565. /* can only fail due to HT40+/- mismatch */
  2566. channel_type = NL80211_CHAN_HT20;
  2567. printk(KERN_DEBUG
  2568. "%s: disabling 40 MHz due to multi-vif mismatch\n",
  2569. sdata->name);
  2570. ifmgd->flags |= IEEE80211_STA_DISABLE_40MHZ;
  2571. WARN_ON(!ieee80211_set_channel_type(local, sdata,
  2572. channel_type));
  2573. }
  2574. local->oper_channel = cbss->channel;
  2575. ieee80211_hw_config(local, 0);
  2576. if (!have_sta) {
  2577. u32 rates = 0, basic_rates = 0;
  2578. bool have_higher_than_11mbit;
  2579. int min_rate = INT_MAX, min_rate_index = -1;
  2580. ieee80211_get_rates(sband, bss->supp_rates,
  2581. bss->supp_rates_len,
  2582. &rates, &basic_rates,
  2583. &have_higher_than_11mbit,
  2584. &min_rate, &min_rate_index);
  2585. /*
  2586. * This used to be a workaround for basic rates missing
  2587. * in the association response frame. Now that we no
  2588. * longer use the basic rates from there, it probably
  2589. * doesn't happen any more, but keep the workaround so
  2590. * in case some *other* APs are buggy in different ways
  2591. * we can connect -- with a warning.
  2592. */
  2593. if (!basic_rates && min_rate_index >= 0) {
  2594. printk(KERN_DEBUG
  2595. "%s: No basic rates, using min rate instead.\n",
  2596. sdata->name);
  2597. basic_rates = BIT(min_rate_index);
  2598. }
  2599. sta->sta.supp_rates[cbss->channel->band] = rates;
  2600. sdata->vif.bss_conf.basic_rates = basic_rates;
  2601. /* cf. IEEE 802.11 9.2.12 */
  2602. if (local->oper_channel->band == IEEE80211_BAND_2GHZ &&
  2603. have_higher_than_11mbit)
  2604. sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
  2605. else
  2606. sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
  2607. memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
  2608. /* tell driver about BSSID and basic rates */
  2609. ieee80211_bss_info_change_notify(sdata,
  2610. BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES);
  2611. if (assoc)
  2612. sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
  2613. err = sta_info_insert(sta);
  2614. sta = NULL;
  2615. if (err) {
  2616. printk(KERN_DEBUG
  2617. "%s: failed to insert STA entry for the AP (error %d)\n",
  2618. sdata->name, err);
  2619. return err;
  2620. }
  2621. } else
  2622. WARN_ON_ONCE(compare_ether_addr(ifmgd->bssid, cbss->bssid));
  2623. return 0;
  2624. }
  2625. /* config hooks */
  2626. int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
  2627. struct cfg80211_auth_request *req)
  2628. {
  2629. struct ieee80211_local *local = sdata->local;
  2630. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2631. struct ieee80211_mgd_auth_data *auth_data;
  2632. u16 auth_alg;
  2633. int err;
  2634. /* prepare auth data structure */
  2635. switch (req->auth_type) {
  2636. case NL80211_AUTHTYPE_OPEN_SYSTEM:
  2637. auth_alg = WLAN_AUTH_OPEN;
  2638. break;
  2639. case NL80211_AUTHTYPE_SHARED_KEY:
  2640. if (IS_ERR(local->wep_tx_tfm))
  2641. return -EOPNOTSUPP;
  2642. auth_alg = WLAN_AUTH_SHARED_KEY;
  2643. break;
  2644. case NL80211_AUTHTYPE_FT:
  2645. auth_alg = WLAN_AUTH_FT;
  2646. break;
  2647. case NL80211_AUTHTYPE_NETWORK_EAP:
  2648. auth_alg = WLAN_AUTH_LEAP;
  2649. break;
  2650. default:
  2651. return -EOPNOTSUPP;
  2652. }
  2653. auth_data = kzalloc(sizeof(*auth_data) + req->ie_len, GFP_KERNEL);
  2654. if (!auth_data)
  2655. return -ENOMEM;
  2656. auth_data->bss = req->bss;
  2657. if (req->ie && req->ie_len) {
  2658. memcpy(auth_data->ie, req->ie, req->ie_len);
  2659. auth_data->ie_len = req->ie_len;
  2660. }
  2661. if (req->key && req->key_len) {
  2662. auth_data->key_len = req->key_len;
  2663. auth_data->key_idx = req->key_idx;
  2664. memcpy(auth_data->key, req->key, req->key_len);
  2665. }
  2666. auth_data->algorithm = auth_alg;
  2667. /* try to authenticate/probe */
  2668. mutex_lock(&ifmgd->mtx);
  2669. if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
  2670. ifmgd->assoc_data) {
  2671. err = -EBUSY;
  2672. goto err_free;
  2673. }
  2674. if (ifmgd->auth_data)
  2675. ieee80211_destroy_auth_data(sdata, false);
  2676. /* prep auth_data so we don't go into idle on disassoc */
  2677. ifmgd->auth_data = auth_data;
  2678. if (ifmgd->associated)
  2679. ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
  2680. printk(KERN_DEBUG "%s: authenticate with %pM\n",
  2681. sdata->name, req->bss->bssid);
  2682. err = ieee80211_prep_connection(sdata, req->bss, false);
  2683. if (err)
  2684. goto err_clear;
  2685. err = ieee80211_probe_auth(sdata);
  2686. if (err) {
  2687. sta_info_destroy_addr(sdata, req->bss->bssid);
  2688. goto err_clear;
  2689. }
  2690. /* hold our own reference */
  2691. cfg80211_ref_bss(auth_data->bss);
  2692. err = 0;
  2693. goto out_unlock;
  2694. err_clear:
  2695. ifmgd->auth_data = NULL;
  2696. err_free:
  2697. kfree(auth_data);
  2698. out_unlock:
  2699. mutex_unlock(&ifmgd->mtx);
  2700. return err;
  2701. }
  2702. int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
  2703. struct cfg80211_assoc_request *req)
  2704. {
  2705. struct ieee80211_local *local = sdata->local;
  2706. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2707. struct ieee80211_bss *bss = (void *)req->bss->priv;
  2708. struct ieee80211_mgd_assoc_data *assoc_data;
  2709. struct ieee80211_supported_band *sband;
  2710. const u8 *ssidie;
  2711. int i, err;
  2712. ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
  2713. if (!ssidie)
  2714. return -EINVAL;
  2715. assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
  2716. if (!assoc_data)
  2717. return -ENOMEM;
  2718. mutex_lock(&ifmgd->mtx);
  2719. if (ifmgd->associated)
  2720. ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
  2721. if (ifmgd->auth_data && !ifmgd->auth_data->done) {
  2722. err = -EBUSY;
  2723. goto err_free;
  2724. }
  2725. if (ifmgd->assoc_data) {
  2726. err = -EBUSY;
  2727. goto err_free;
  2728. }
  2729. if (ifmgd->auth_data) {
  2730. bool match;
  2731. /* keep sta info, bssid if matching */
  2732. match = compare_ether_addr(ifmgd->bssid, req->bss->bssid) == 0;
  2733. ieee80211_destroy_auth_data(sdata, match);
  2734. }
  2735. /* prepare assoc data */
  2736. ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
  2737. ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
  2738. ifmgd->beacon_crc_valid = false;
  2739. /*
  2740. * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
  2741. * We still associate in non-HT mode (11a/b/g) if any one of these
  2742. * ciphers is configured as pairwise.
  2743. * We can set this to true for non-11n hardware, that'll be checked
  2744. * separately along with the peer capabilities.
  2745. */
  2746. for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
  2747. if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
  2748. req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
  2749. req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
  2750. ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
  2751. if (req->flags & ASSOC_REQ_DISABLE_HT)
  2752. ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
  2753. /* Also disable HT if we don't support it or the AP doesn't use WMM */
  2754. sband = local->hw.wiphy->bands[req->bss->channel->band];
  2755. if (!sband->ht_cap.ht_supported ||
  2756. local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used)
  2757. ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
  2758. memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
  2759. memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
  2760. sizeof(ifmgd->ht_capa_mask));
  2761. if (req->ie && req->ie_len) {
  2762. memcpy(assoc_data->ie, req->ie, req->ie_len);
  2763. assoc_data->ie_len = req->ie_len;
  2764. }
  2765. assoc_data->bss = req->bss;
  2766. if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
  2767. if (ifmgd->powersave)
  2768. ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
  2769. else
  2770. ifmgd->ap_smps = IEEE80211_SMPS_OFF;
  2771. } else
  2772. ifmgd->ap_smps = ifmgd->req_smps;
  2773. assoc_data->capability = req->bss->capability;
  2774. assoc_data->wmm = bss->wmm_used &&
  2775. (local->hw.queues >= IEEE80211_NUM_ACS);
  2776. assoc_data->supp_rates = bss->supp_rates;
  2777. assoc_data->supp_rates_len = bss->supp_rates_len;
  2778. assoc_data->ht_operation_ie =
  2779. ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
  2780. if (bss->wmm_used && bss->uapsd_supported &&
  2781. (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
  2782. assoc_data->uapsd = true;
  2783. ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
  2784. } else {
  2785. assoc_data->uapsd = false;
  2786. ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
  2787. }
  2788. memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
  2789. assoc_data->ssid_len = ssidie[1];
  2790. if (req->prev_bssid)
  2791. memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
  2792. if (req->use_mfp) {
  2793. ifmgd->mfp = IEEE80211_MFP_REQUIRED;
  2794. ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
  2795. } else {
  2796. ifmgd->mfp = IEEE80211_MFP_DISABLED;
  2797. ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
  2798. }
  2799. if (req->crypto.control_port)
  2800. ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
  2801. else
  2802. ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
  2803. sdata->control_port_protocol = req->crypto.control_port_ethertype;
  2804. sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
  2805. /* kick off associate process */
  2806. ifmgd->assoc_data = assoc_data;
  2807. err = ieee80211_prep_connection(sdata, req->bss, true);
  2808. if (err)
  2809. goto err_clear;
  2810. if (!bss->dtim_period &&
  2811. sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD) {
  2812. /*
  2813. * Wait up to one beacon interval ...
  2814. * should this be more if we miss one?
  2815. */
  2816. printk(KERN_DEBUG "%s: waiting for beacon from %pM\n",
  2817. sdata->name, ifmgd->bssid);
  2818. assoc_data->timeout = jiffies +
  2819. TU_TO_EXP_TIME(req->bss->beacon_interval);
  2820. } else {
  2821. assoc_data->have_beacon = true;
  2822. assoc_data->sent_assoc = false;
  2823. assoc_data->timeout = jiffies;
  2824. }
  2825. run_again(ifmgd, assoc_data->timeout);
  2826. if (bss->corrupt_data) {
  2827. char *corrupt_type = "data";
  2828. if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
  2829. if (bss->corrupt_data &
  2830. IEEE80211_BSS_CORRUPT_PROBE_RESP)
  2831. corrupt_type = "beacon and probe response";
  2832. else
  2833. corrupt_type = "beacon";
  2834. } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
  2835. corrupt_type = "probe response";
  2836. printk(KERN_DEBUG "%s: associating with AP with corrupt %s\n",
  2837. sdata->name, corrupt_type);
  2838. }
  2839. err = 0;
  2840. goto out;
  2841. err_clear:
  2842. ifmgd->assoc_data = NULL;
  2843. err_free:
  2844. kfree(assoc_data);
  2845. out:
  2846. mutex_unlock(&ifmgd->mtx);
  2847. return err;
  2848. }
  2849. int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
  2850. struct cfg80211_deauth_request *req)
  2851. {
  2852. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2853. u8 frame_buf[DEAUTH_DISASSOC_LEN];
  2854. mutex_lock(&ifmgd->mtx);
  2855. if (ifmgd->auth_data) {
  2856. ieee80211_destroy_auth_data(sdata, false);
  2857. mutex_unlock(&ifmgd->mtx);
  2858. return 0;
  2859. }
  2860. printk(KERN_DEBUG
  2861. "%s: deauthenticating from %pM by local choice (reason=%d)\n",
  2862. sdata->name, req->bssid, req->reason_code);
  2863. if (ifmgd->associated &&
  2864. compare_ether_addr(ifmgd->associated->bssid, req->bssid) == 0)
  2865. ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
  2866. req->reason_code, true, frame_buf);
  2867. else
  2868. ieee80211_send_deauth_disassoc(sdata, req->bssid,
  2869. IEEE80211_STYPE_DEAUTH,
  2870. req->reason_code, true,
  2871. frame_buf);
  2872. mutex_unlock(&ifmgd->mtx);
  2873. __cfg80211_send_deauth(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
  2874. mutex_lock(&sdata->local->mtx);
  2875. ieee80211_recalc_idle(sdata->local);
  2876. mutex_unlock(&sdata->local->mtx);
  2877. return 0;
  2878. }
  2879. int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
  2880. struct cfg80211_disassoc_request *req)
  2881. {
  2882. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2883. u8 bssid[ETH_ALEN];
  2884. u8 frame_buf[DEAUTH_DISASSOC_LEN];
  2885. mutex_lock(&ifmgd->mtx);
  2886. /*
  2887. * cfg80211 should catch this ... but it's racy since
  2888. * we can receive a disassoc frame, process it, hand it
  2889. * to cfg80211 while that's in a locked section already
  2890. * trying to tell us that the user wants to disconnect.
  2891. */
  2892. if (ifmgd->associated != req->bss) {
  2893. mutex_unlock(&ifmgd->mtx);
  2894. return -ENOLINK;
  2895. }
  2896. printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
  2897. sdata->name, req->bss->bssid, req->reason_code);
  2898. memcpy(bssid, req->bss->bssid, ETH_ALEN);
  2899. ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
  2900. req->reason_code, !req->local_state_change,
  2901. frame_buf);
  2902. mutex_unlock(&ifmgd->mtx);
  2903. __cfg80211_send_disassoc(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
  2904. mutex_lock(&sdata->local->mtx);
  2905. ieee80211_recalc_idle(sdata->local);
  2906. mutex_unlock(&sdata->local->mtx);
  2907. return 0;
  2908. }
  2909. void ieee80211_mgd_teardown(struct ieee80211_sub_if_data *sdata)
  2910. {
  2911. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2912. mutex_lock(&ifmgd->mtx);
  2913. if (ifmgd->assoc_data)
  2914. ieee80211_destroy_assoc_data(sdata, false);
  2915. if (ifmgd->auth_data)
  2916. ieee80211_destroy_auth_data(sdata, false);
  2917. del_timer_sync(&ifmgd->timer);
  2918. mutex_unlock(&ifmgd->mtx);
  2919. }
  2920. void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
  2921. enum nl80211_cqm_rssi_threshold_event rssi_event,
  2922. gfp_t gfp)
  2923. {
  2924. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  2925. trace_api_cqm_rssi_notify(sdata, rssi_event);
  2926. cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
  2927. }
  2928. EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
  2929. unsigned char ieee80211_get_operstate(struct ieee80211_vif *vif)
  2930. {
  2931. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  2932. return sdata->dev->operstate;
  2933. }
  2934. EXPORT_SYMBOL(ieee80211_get_operstate);