mlme.c 99 KB

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