mlme.c 98 KB

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