mlme.c 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844
  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/rtnetlink.h>
  19. #include <linux/pm_qos.h>
  20. #include <linux/crc32.h>
  21. #include <linux/slab.h>
  22. #include <net/mac80211.h>
  23. #include <asm/unaligned.h>
  24. #include "ieee80211_i.h"
  25. #include "driver-ops.h"
  26. #include "rate.h"
  27. #include "led.h"
  28. static int max_nullfunc_tries = 2;
  29. module_param(max_nullfunc_tries, int, 0644);
  30. MODULE_PARM_DESC(max_nullfunc_tries,
  31. "Maximum nullfunc tx tries before disconnecting (reason 4).");
  32. static int max_probe_tries = 5;
  33. module_param(max_probe_tries, int, 0644);
  34. MODULE_PARM_DESC(max_probe_tries,
  35. "Maximum probe tries before disconnecting (reason 4).");
  36. /*
  37. * Beacon loss timeout is calculated as N frames times the
  38. * advertised beacon interval. This may need to be somewhat
  39. * higher than what hardware might detect to account for
  40. * delays in the host processing frames. But since we also
  41. * probe on beacon miss before declaring the connection lost
  42. * default to what we want.
  43. */
  44. #define IEEE80211_BEACON_LOSS_COUNT 7
  45. /*
  46. * Time the connection can be idle before we probe
  47. * it to see if we can still talk to the AP.
  48. */
  49. #define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
  50. /*
  51. * Time we wait for a probe response after sending
  52. * a probe request because of beacon loss or for
  53. * checking the connection still works.
  54. */
  55. static int probe_wait_ms = 500;
  56. module_param(probe_wait_ms, int, 0644);
  57. MODULE_PARM_DESC(probe_wait_ms,
  58. "Maximum time(ms) to wait for probe response"
  59. " before disconnecting (reason 4).");
  60. /*
  61. * Weight given to the latest Beacon frame when calculating average signal
  62. * strength for Beacon frames received in the current BSS. This must be
  63. * between 1 and 15.
  64. */
  65. #define IEEE80211_SIGNAL_AVE_WEIGHT 3
  66. /*
  67. * How many Beacon frames need to have been used in average signal strength
  68. * before starting to indicate signal change events.
  69. */
  70. #define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
  71. #define TMR_RUNNING_TIMER 0
  72. #define TMR_RUNNING_CHANSW 1
  73. /*
  74. * All cfg80211 functions have to be called outside a locked
  75. * section so that they can acquire a lock themselves... This
  76. * is much simpler than queuing up things in cfg80211, but we
  77. * do need some indirection for that here.
  78. */
  79. enum rx_mgmt_action {
  80. /* no action required */
  81. RX_MGMT_NONE,
  82. /* caller must call cfg80211_send_deauth() */
  83. RX_MGMT_CFG80211_DEAUTH,
  84. /* caller must call cfg80211_send_disassoc() */
  85. RX_MGMT_CFG80211_DISASSOC,
  86. };
  87. /* utils */
  88. static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
  89. {
  90. lockdep_assert_held(&ifmgd->mtx);
  91. }
  92. /*
  93. * We can have multiple work items (and connection probing)
  94. * scheduling this timer, but we need to take care to only
  95. * reschedule it when it should fire _earlier_ than it was
  96. * asked for before, or if it's not pending right now. This
  97. * function ensures that. Note that it then is required to
  98. * run this function for all timeouts after the first one
  99. * has happened -- the work that runs from this timer will
  100. * do that.
  101. */
  102. static void run_again(struct ieee80211_if_managed *ifmgd,
  103. unsigned long timeout)
  104. {
  105. ASSERT_MGD_MTX(ifmgd);
  106. if (!timer_pending(&ifmgd->timer) ||
  107. time_before(timeout, ifmgd->timer.expires))
  108. mod_timer(&ifmgd->timer, timeout);
  109. }
  110. void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
  111. {
  112. if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
  113. return;
  114. mod_timer(&sdata->u.mgd.bcn_mon_timer,
  115. round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
  116. }
  117. void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
  118. {
  119. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  120. if (unlikely(!sdata->u.mgd.associated))
  121. return;
  122. if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
  123. return;
  124. mod_timer(&sdata->u.mgd.conn_mon_timer,
  125. round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
  126. ifmgd->probe_send_count = 0;
  127. }
  128. static int ecw2cw(int ecw)
  129. {
  130. return (1 << ecw) - 1;
  131. }
  132. /*
  133. * ieee80211_enable_ht should be called only after the operating band
  134. * has been determined as ht configuration depends on the hw's
  135. * HT abilities for a specific band.
  136. */
  137. static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
  138. struct ieee80211_ht_info *hti,
  139. const u8 *bssid, u16 ap_ht_cap_flags,
  140. bool beacon_htcap_ie)
  141. {
  142. struct ieee80211_local *local = sdata->local;
  143. struct ieee80211_supported_band *sband;
  144. struct sta_info *sta;
  145. u32 changed = 0;
  146. int hti_cfreq;
  147. u16 ht_opmode;
  148. bool enable_ht = true;
  149. enum nl80211_channel_type prev_chantype;
  150. enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
  151. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  152. prev_chantype = sdata->vif.bss_conf.channel_type;
  153. /* HT is not supported */
  154. if (!sband->ht_cap.ht_supported)
  155. enable_ht = false;
  156. if (enable_ht) {
  157. hti_cfreq = ieee80211_channel_to_frequency(hti->control_chan,
  158. sband->band);
  159. /* check that channel matches the right operating channel */
  160. if (local->hw.conf.channel->center_freq != hti_cfreq) {
  161. /* Some APs mess this up, evidently.
  162. * Netgear WNDR3700 sometimes reports 4 higher than
  163. * the actual channel, for instance.
  164. */
  165. printk(KERN_DEBUG
  166. "%s: Wrong control channel in association"
  167. " response: configured center-freq: %d"
  168. " hti-cfreq: %d hti->control_chan: %d"
  169. " band: %d. Disabling HT.\n",
  170. sdata->name,
  171. local->hw.conf.channel->center_freq,
  172. hti_cfreq, hti->control_chan,
  173. sband->band);
  174. enable_ht = false;
  175. }
  176. }
  177. if (enable_ht) {
  178. channel_type = NL80211_CHAN_HT20;
  179. if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
  180. (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
  181. (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
  182. switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
  183. case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
  184. if (!(local->hw.conf.channel->flags &
  185. IEEE80211_CHAN_NO_HT40PLUS))
  186. channel_type = NL80211_CHAN_HT40PLUS;
  187. break;
  188. case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
  189. if (!(local->hw.conf.channel->flags &
  190. IEEE80211_CHAN_NO_HT40MINUS))
  191. channel_type = NL80211_CHAN_HT40MINUS;
  192. break;
  193. }
  194. }
  195. }
  196. if (local->tmp_channel)
  197. local->tmp_channel_type = channel_type;
  198. if (!ieee80211_set_channel_type(local, sdata, channel_type)) {
  199. /* can only fail due to HT40+/- mismatch */
  200. channel_type = NL80211_CHAN_HT20;
  201. WARN_ON(!ieee80211_set_channel_type(local, sdata, channel_type));
  202. }
  203. if (beacon_htcap_ie && (prev_chantype != channel_type)) {
  204. /*
  205. * Whenever the AP announces the HT mode change that can be
  206. * 40MHz intolerant or etc., it would be safer to stop tx
  207. * queues before doing hw config to avoid buffer overflow.
  208. */
  209. ieee80211_stop_queues_by_reason(&sdata->local->hw,
  210. IEEE80211_QUEUE_STOP_REASON_CHTYPE_CHANGE);
  211. /* flush out all packets */
  212. synchronize_net();
  213. drv_flush(local, false);
  214. }
  215. /* channel_type change automatically detected */
  216. ieee80211_hw_config(local, 0);
  217. if (prev_chantype != channel_type) {
  218. rcu_read_lock();
  219. sta = sta_info_get(sdata, bssid);
  220. if (sta)
  221. rate_control_rate_update(local, sband, sta,
  222. IEEE80211_RC_HT_CHANGED,
  223. channel_type);
  224. rcu_read_unlock();
  225. if (beacon_htcap_ie)
  226. ieee80211_wake_queues_by_reason(&sdata->local->hw,
  227. IEEE80211_QUEUE_STOP_REASON_CHTYPE_CHANGE);
  228. }
  229. ht_opmode = le16_to_cpu(hti->operation_mode);
  230. /* if bss configuration changed store the new one */
  231. if (sdata->ht_opmode_valid != enable_ht ||
  232. sdata->vif.bss_conf.ht_operation_mode != ht_opmode ||
  233. prev_chantype != channel_type) {
  234. changed |= BSS_CHANGED_HT;
  235. sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
  236. sdata->ht_opmode_valid = enable_ht;
  237. }
  238. return changed;
  239. }
  240. /* frame sending functions */
  241. static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
  242. const u8 *bssid, u16 stype, u16 reason,
  243. void *cookie, bool send_frame)
  244. {
  245. struct ieee80211_local *local = sdata->local;
  246. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  247. struct sk_buff *skb;
  248. struct ieee80211_mgmt *mgmt;
  249. skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
  250. if (!skb)
  251. return;
  252. skb_reserve(skb, local->hw.extra_tx_headroom);
  253. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  254. memset(mgmt, 0, 24);
  255. memcpy(mgmt->da, bssid, ETH_ALEN);
  256. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  257. memcpy(mgmt->bssid, bssid, ETH_ALEN);
  258. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
  259. skb_put(skb, 2);
  260. /* u.deauth.reason_code == u.disassoc.reason_code */
  261. mgmt->u.deauth.reason_code = cpu_to_le16(reason);
  262. if (stype == IEEE80211_STYPE_DEAUTH)
  263. if (cookie)
  264. __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
  265. else
  266. cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
  267. else
  268. if (cookie)
  269. __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
  270. else
  271. cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
  272. if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
  273. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  274. if (send_frame)
  275. ieee80211_tx_skb(sdata, skb);
  276. else
  277. kfree_skb(skb);
  278. }
  279. void ieee80211_send_pspoll(struct ieee80211_local *local,
  280. struct ieee80211_sub_if_data *sdata)
  281. {
  282. struct ieee80211_pspoll *pspoll;
  283. struct sk_buff *skb;
  284. skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
  285. if (!skb)
  286. return;
  287. pspoll = (struct ieee80211_pspoll *) skb->data;
  288. pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
  289. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  290. ieee80211_tx_skb(sdata, skb);
  291. }
  292. void ieee80211_send_nullfunc(struct ieee80211_local *local,
  293. struct ieee80211_sub_if_data *sdata,
  294. int powersave)
  295. {
  296. struct sk_buff *skb;
  297. struct ieee80211_hdr_3addr *nullfunc;
  298. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  299. skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
  300. if (!skb)
  301. return;
  302. nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
  303. if (powersave)
  304. nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
  305. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  306. if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  307. IEEE80211_STA_CONNECTION_POLL))
  308. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
  309. ieee80211_tx_skb(sdata, skb);
  310. }
  311. static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
  312. struct ieee80211_sub_if_data *sdata)
  313. {
  314. struct sk_buff *skb;
  315. struct ieee80211_hdr *nullfunc;
  316. __le16 fc;
  317. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  318. return;
  319. skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
  320. if (!skb)
  321. return;
  322. skb_reserve(skb, local->hw.extra_tx_headroom);
  323. nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
  324. memset(nullfunc, 0, 30);
  325. fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
  326. IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
  327. nullfunc->frame_control = fc;
  328. memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
  329. memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
  330. memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
  331. memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
  332. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  333. ieee80211_tx_skb(sdata, skb);
  334. }
  335. /* spectrum management related things */
  336. static void ieee80211_chswitch_work(struct work_struct *work)
  337. {
  338. struct ieee80211_sub_if_data *sdata =
  339. container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
  340. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  341. if (!ieee80211_sdata_running(sdata))
  342. return;
  343. mutex_lock(&ifmgd->mtx);
  344. if (!ifmgd->associated)
  345. goto out;
  346. sdata->local->oper_channel = sdata->local->csa_channel;
  347. if (!sdata->local->ops->channel_switch) {
  348. /* call "hw_config" only if doing sw channel switch */
  349. ieee80211_hw_config(sdata->local,
  350. IEEE80211_CONF_CHANGE_CHANNEL);
  351. } else {
  352. /* update the device channel directly */
  353. sdata->local->hw.conf.channel = sdata->local->oper_channel;
  354. }
  355. /* XXX: shouldn't really modify cfg80211-owned data! */
  356. ifmgd->associated->channel = sdata->local->oper_channel;
  357. ieee80211_wake_queues_by_reason(&sdata->local->hw,
  358. IEEE80211_QUEUE_STOP_REASON_CSA);
  359. out:
  360. ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
  361. mutex_unlock(&ifmgd->mtx);
  362. }
  363. void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
  364. {
  365. struct ieee80211_sub_if_data *sdata;
  366. struct ieee80211_if_managed *ifmgd;
  367. sdata = vif_to_sdata(vif);
  368. ifmgd = &sdata->u.mgd;
  369. trace_api_chswitch_done(sdata, success);
  370. if (!success) {
  371. /*
  372. * If the channel switch was not successful, stay
  373. * around on the old channel. We currently lack
  374. * good handling of this situation, possibly we
  375. * should just drop the association.
  376. */
  377. sdata->local->csa_channel = sdata->local->oper_channel;
  378. }
  379. ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
  380. }
  381. EXPORT_SYMBOL(ieee80211_chswitch_done);
  382. static void ieee80211_chswitch_timer(unsigned long data)
  383. {
  384. struct ieee80211_sub_if_data *sdata =
  385. (struct ieee80211_sub_if_data *) data;
  386. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  387. if (sdata->local->quiescing) {
  388. set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
  389. return;
  390. }
  391. ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
  392. }
  393. void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
  394. struct ieee80211_channel_sw_ie *sw_elem,
  395. struct ieee80211_bss *bss,
  396. u64 timestamp)
  397. {
  398. struct cfg80211_bss *cbss =
  399. container_of((void *)bss, struct cfg80211_bss, priv);
  400. struct ieee80211_channel *new_ch;
  401. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  402. int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num,
  403. cbss->channel->band);
  404. ASSERT_MGD_MTX(ifmgd);
  405. if (!ifmgd->associated)
  406. return;
  407. if (sdata->local->scanning)
  408. return;
  409. /* Disregard subsequent beacons if we are already running a timer
  410. processing a CSA */
  411. if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
  412. return;
  413. new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
  414. if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
  415. return;
  416. sdata->local->csa_channel = new_ch;
  417. if (sdata->local->ops->channel_switch) {
  418. /* use driver's channel switch callback */
  419. struct ieee80211_channel_switch ch_switch;
  420. memset(&ch_switch, 0, sizeof(ch_switch));
  421. ch_switch.timestamp = timestamp;
  422. if (sw_elem->mode) {
  423. ch_switch.block_tx = true;
  424. ieee80211_stop_queues_by_reason(&sdata->local->hw,
  425. IEEE80211_QUEUE_STOP_REASON_CSA);
  426. }
  427. ch_switch.channel = new_ch;
  428. ch_switch.count = sw_elem->count;
  429. ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
  430. drv_channel_switch(sdata->local, &ch_switch);
  431. return;
  432. }
  433. /* channel switch handled in software */
  434. if (sw_elem->count <= 1) {
  435. ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
  436. } else {
  437. if (sw_elem->mode)
  438. ieee80211_stop_queues_by_reason(&sdata->local->hw,
  439. IEEE80211_QUEUE_STOP_REASON_CSA);
  440. ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
  441. mod_timer(&ifmgd->chswitch_timer,
  442. jiffies +
  443. msecs_to_jiffies(sw_elem->count *
  444. cbss->beacon_interval));
  445. }
  446. }
  447. static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
  448. u16 capab_info, u8 *pwr_constr_elem,
  449. u8 pwr_constr_elem_len)
  450. {
  451. struct ieee80211_conf *conf = &sdata->local->hw.conf;
  452. if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
  453. return;
  454. /* Power constraint IE length should be 1 octet */
  455. if (pwr_constr_elem_len != 1)
  456. return;
  457. if ((*pwr_constr_elem <= conf->channel->max_power) &&
  458. (*pwr_constr_elem != sdata->local->power_constr_level)) {
  459. sdata->local->power_constr_level = *pwr_constr_elem;
  460. ieee80211_hw_config(sdata->local, 0);
  461. }
  462. }
  463. void ieee80211_enable_dyn_ps(struct ieee80211_vif *vif)
  464. {
  465. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  466. struct ieee80211_local *local = sdata->local;
  467. struct ieee80211_conf *conf = &local->hw.conf;
  468. WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
  469. !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
  470. (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
  471. local->disable_dynamic_ps = false;
  472. conf->dynamic_ps_timeout = local->dynamic_ps_user_timeout;
  473. }
  474. EXPORT_SYMBOL(ieee80211_enable_dyn_ps);
  475. void ieee80211_disable_dyn_ps(struct ieee80211_vif *vif)
  476. {
  477. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  478. struct ieee80211_local *local = sdata->local;
  479. struct ieee80211_conf *conf = &local->hw.conf;
  480. WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
  481. !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
  482. (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
  483. local->disable_dynamic_ps = true;
  484. conf->dynamic_ps_timeout = 0;
  485. del_timer_sync(&local->dynamic_ps_timer);
  486. ieee80211_queue_work(&local->hw,
  487. &local->dynamic_ps_enable_work);
  488. }
  489. EXPORT_SYMBOL(ieee80211_disable_dyn_ps);
  490. /* powersave */
  491. static void ieee80211_enable_ps(struct ieee80211_local *local,
  492. struct ieee80211_sub_if_data *sdata)
  493. {
  494. struct ieee80211_conf *conf = &local->hw.conf;
  495. /*
  496. * If we are scanning right now then the parameters will
  497. * take effect when scan finishes.
  498. */
  499. if (local->scanning)
  500. return;
  501. if (conf->dynamic_ps_timeout > 0 &&
  502. !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
  503. mod_timer(&local->dynamic_ps_timer, jiffies +
  504. msecs_to_jiffies(conf->dynamic_ps_timeout));
  505. } else {
  506. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  507. ieee80211_send_nullfunc(local, sdata, 1);
  508. if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
  509. (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
  510. return;
  511. conf->flags |= IEEE80211_CONF_PS;
  512. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  513. }
  514. }
  515. static void ieee80211_change_ps(struct ieee80211_local *local)
  516. {
  517. struct ieee80211_conf *conf = &local->hw.conf;
  518. if (local->ps_sdata) {
  519. ieee80211_enable_ps(local, local->ps_sdata);
  520. } else if (conf->flags & IEEE80211_CONF_PS) {
  521. conf->flags &= ~IEEE80211_CONF_PS;
  522. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  523. del_timer_sync(&local->dynamic_ps_timer);
  524. cancel_work_sync(&local->dynamic_ps_enable_work);
  525. }
  526. }
  527. static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
  528. {
  529. struct ieee80211_if_managed *mgd = &sdata->u.mgd;
  530. struct sta_info *sta = NULL;
  531. bool authorized = false;
  532. if (!mgd->powersave)
  533. return false;
  534. if (mgd->broken_ap)
  535. return false;
  536. if (!mgd->associated)
  537. return false;
  538. if (!mgd->associated->beacon_ies)
  539. return false;
  540. if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
  541. IEEE80211_STA_CONNECTION_POLL))
  542. return false;
  543. rcu_read_lock();
  544. sta = sta_info_get(sdata, mgd->bssid);
  545. if (sta)
  546. authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
  547. rcu_read_unlock();
  548. return authorized;
  549. }
  550. /* need to hold RTNL or interface lock */
  551. void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
  552. {
  553. struct ieee80211_sub_if_data *sdata, *found = NULL;
  554. int count = 0;
  555. int timeout;
  556. if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
  557. local->ps_sdata = NULL;
  558. return;
  559. }
  560. if (!list_empty(&local->work_list)) {
  561. local->ps_sdata = NULL;
  562. goto change;
  563. }
  564. list_for_each_entry(sdata, &local->interfaces, list) {
  565. if (!ieee80211_sdata_running(sdata))
  566. continue;
  567. if (sdata->vif.type == NL80211_IFTYPE_AP) {
  568. /* If an AP vif is found, then disable PS
  569. * by setting the count to zero thereby setting
  570. * ps_sdata to NULL.
  571. */
  572. count = 0;
  573. break;
  574. }
  575. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  576. continue;
  577. found = sdata;
  578. count++;
  579. }
  580. if (count == 1 && ieee80211_powersave_allowed(found)) {
  581. struct ieee80211_conf *conf = &local->hw.conf;
  582. s32 beaconint_us;
  583. if (latency < 0)
  584. latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
  585. beaconint_us = ieee80211_tu_to_usec(
  586. found->vif.bss_conf.beacon_int);
  587. timeout = local->dynamic_ps_forced_timeout;
  588. if (timeout < 0) {
  589. /*
  590. * Go to full PSM if the user configures a very low
  591. * latency requirement.
  592. * The 2000 second value is there for compatibility
  593. * until the PM_QOS_NETWORK_LATENCY is configured
  594. * with real values.
  595. */
  596. if (latency > (1900 * USEC_PER_MSEC) &&
  597. latency != (2000 * USEC_PER_SEC))
  598. timeout = 0;
  599. else
  600. timeout = 100;
  601. }
  602. local->dynamic_ps_user_timeout = timeout;
  603. if (!local->disable_dynamic_ps)
  604. conf->dynamic_ps_timeout =
  605. local->dynamic_ps_user_timeout;
  606. if (beaconint_us > latency) {
  607. local->ps_sdata = NULL;
  608. } else {
  609. struct ieee80211_bss *bss;
  610. int maxslp = 1;
  611. u8 dtimper;
  612. bss = (void *)found->u.mgd.associated->priv;
  613. dtimper = bss->dtim_period;
  614. /* If the TIM IE is invalid, pretend the value is 1 */
  615. if (!dtimper)
  616. dtimper = 1;
  617. else if (dtimper > 1)
  618. maxslp = min_t(int, dtimper,
  619. latency / beaconint_us);
  620. local->hw.conf.max_sleep_period = maxslp;
  621. local->hw.conf.ps_dtim_period = dtimper;
  622. local->ps_sdata = found;
  623. }
  624. } else {
  625. local->ps_sdata = NULL;
  626. }
  627. change:
  628. ieee80211_change_ps(local);
  629. }
  630. void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
  631. {
  632. struct ieee80211_local *local =
  633. container_of(work, struct ieee80211_local,
  634. dynamic_ps_disable_work);
  635. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  636. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  637. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  638. }
  639. ieee80211_wake_queues_by_reason(&local->hw,
  640. IEEE80211_QUEUE_STOP_REASON_PS);
  641. }
  642. void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
  643. {
  644. struct ieee80211_local *local =
  645. container_of(work, struct ieee80211_local,
  646. dynamic_ps_enable_work);
  647. struct ieee80211_sub_if_data *sdata = local->ps_sdata;
  648. struct ieee80211_if_managed *ifmgd;
  649. unsigned long flags;
  650. int q;
  651. /* can only happen when PS was just disabled anyway */
  652. if (!sdata)
  653. return;
  654. ifmgd = &sdata->u.mgd;
  655. if (local->hw.conf.flags & IEEE80211_CONF_PS)
  656. return;
  657. if (!local->disable_dynamic_ps &&
  658. local->hw.conf.dynamic_ps_timeout > 0) {
  659. /* don't enter PS if TX frames are pending */
  660. if (drv_tx_frames_pending(local)) {
  661. mod_timer(&local->dynamic_ps_timer, jiffies +
  662. msecs_to_jiffies(
  663. local->hw.conf.dynamic_ps_timeout));
  664. return;
  665. }
  666. /*
  667. * transmission can be stopped by others which leads to
  668. * dynamic_ps_timer expiry. Postpone the ps timer if it
  669. * is not the actual idle state.
  670. */
  671. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  672. for (q = 0; q < local->hw.queues; q++) {
  673. if (local->queue_stop_reasons[q]) {
  674. spin_unlock_irqrestore(&local->queue_stop_reason_lock,
  675. flags);
  676. mod_timer(&local->dynamic_ps_timer, jiffies +
  677. msecs_to_jiffies(
  678. local->hw.conf.dynamic_ps_timeout));
  679. return;
  680. }
  681. }
  682. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  683. }
  684. if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
  685. (!(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED))) {
  686. netif_tx_stop_all_queues(sdata->dev);
  687. if (drv_tx_frames_pending(local))
  688. mod_timer(&local->dynamic_ps_timer, jiffies +
  689. msecs_to_jiffies(
  690. local->hw.conf.dynamic_ps_timeout));
  691. else {
  692. ieee80211_send_nullfunc(local, sdata, 1);
  693. /* Flush to get the tx status of nullfunc frame */
  694. drv_flush(local, false);
  695. }
  696. }
  697. if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
  698. (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
  699. (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
  700. ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
  701. local->hw.conf.flags |= IEEE80211_CONF_PS;
  702. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  703. }
  704. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  705. netif_tx_wake_all_queues(sdata->dev);
  706. }
  707. void ieee80211_dynamic_ps_timer(unsigned long data)
  708. {
  709. struct ieee80211_local *local = (void *) data;
  710. if (local->quiescing || local->suspended)
  711. return;
  712. ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
  713. }
  714. /* MLME */
  715. static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
  716. struct ieee80211_sub_if_data *sdata,
  717. u8 *wmm_param, size_t wmm_param_len)
  718. {
  719. struct ieee80211_tx_queue_params params;
  720. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  721. size_t left;
  722. int count;
  723. u8 *pos, uapsd_queues = 0;
  724. if (!local->ops->conf_tx)
  725. return;
  726. if (local->hw.queues < 4)
  727. return;
  728. if (!wmm_param)
  729. return;
  730. if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
  731. return;
  732. if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
  733. uapsd_queues = local->uapsd_queues;
  734. count = wmm_param[6] & 0x0f;
  735. if (count == ifmgd->wmm_last_param_set)
  736. return;
  737. ifmgd->wmm_last_param_set = count;
  738. pos = wmm_param + 8;
  739. left = wmm_param_len - 8;
  740. memset(&params, 0, sizeof(params));
  741. local->wmm_acm = 0;
  742. for (; left >= 4; left -= 4, pos += 4) {
  743. int aci = (pos[0] >> 5) & 0x03;
  744. int acm = (pos[0] >> 4) & 0x01;
  745. bool uapsd = false;
  746. int queue;
  747. switch (aci) {
  748. case 1: /* AC_BK */
  749. queue = 3;
  750. if (acm)
  751. local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
  752. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
  753. uapsd = true;
  754. break;
  755. case 2: /* AC_VI */
  756. queue = 1;
  757. if (acm)
  758. local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
  759. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
  760. uapsd = true;
  761. break;
  762. case 3: /* AC_VO */
  763. queue = 0;
  764. if (acm)
  765. local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
  766. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
  767. uapsd = true;
  768. break;
  769. case 0: /* AC_BE */
  770. default:
  771. queue = 2;
  772. if (acm)
  773. local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
  774. if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
  775. uapsd = true;
  776. break;
  777. }
  778. params.aifs = pos[0] & 0x0f;
  779. params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
  780. params.cw_min = ecw2cw(pos[1] & 0x0f);
  781. params.txop = get_unaligned_le16(pos + 2);
  782. params.uapsd = uapsd;
  783. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  784. wiphy_debug(local->hw.wiphy,
  785. "WMM queue=%d aci=%d acm=%d aifs=%d "
  786. "cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
  787. queue, aci, acm,
  788. params.aifs, params.cw_min, params.cw_max,
  789. params.txop, params.uapsd);
  790. #endif
  791. sdata->tx_conf[queue] = params;
  792. if (drv_conf_tx(local, sdata, queue, &params))
  793. wiphy_debug(local->hw.wiphy,
  794. "failed to set TX queue parameters for queue %d\n",
  795. queue);
  796. }
  797. /* enable WMM or activate new settings */
  798. sdata->vif.bss_conf.qos = true;
  799. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
  800. }
  801. static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
  802. u16 capab, bool erp_valid, u8 erp)
  803. {
  804. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  805. u32 changed = 0;
  806. bool use_protection;
  807. bool use_short_preamble;
  808. bool use_short_slot;
  809. if (erp_valid) {
  810. use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
  811. use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
  812. } else {
  813. use_protection = false;
  814. use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
  815. }
  816. use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
  817. if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
  818. use_short_slot = true;
  819. if (use_protection != bss_conf->use_cts_prot) {
  820. bss_conf->use_cts_prot = use_protection;
  821. changed |= BSS_CHANGED_ERP_CTS_PROT;
  822. }
  823. if (use_short_preamble != bss_conf->use_short_preamble) {
  824. bss_conf->use_short_preamble = use_short_preamble;
  825. changed |= BSS_CHANGED_ERP_PREAMBLE;
  826. }
  827. if (use_short_slot != bss_conf->use_short_slot) {
  828. bss_conf->use_short_slot = use_short_slot;
  829. changed |= BSS_CHANGED_ERP_SLOT;
  830. }
  831. return changed;
  832. }
  833. static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
  834. struct cfg80211_bss *cbss,
  835. u32 bss_info_changed)
  836. {
  837. struct ieee80211_bss *bss = (void *)cbss->priv;
  838. struct ieee80211_local *local = sdata->local;
  839. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  840. bss_info_changed |= BSS_CHANGED_ASSOC;
  841. /* set timing information */
  842. bss_conf->beacon_int = cbss->beacon_interval;
  843. bss_conf->timestamp = cbss->tsf;
  844. bss_info_changed |= BSS_CHANGED_BEACON_INT;
  845. bss_info_changed |= ieee80211_handle_bss_capability(sdata,
  846. cbss->capability, bss->has_erp_value, bss->erp_value);
  847. sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
  848. IEEE80211_BEACON_LOSS_COUNT * bss_conf->beacon_int));
  849. sdata->u.mgd.associated = cbss;
  850. memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
  851. sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
  852. /* just to be sure */
  853. sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
  854. IEEE80211_STA_BEACON_POLL);
  855. ieee80211_led_assoc(local, 1);
  856. if (local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
  857. bss_conf->dtim_period = bss->dtim_period;
  858. else
  859. bss_conf->dtim_period = 0;
  860. bss_conf->assoc = 1;
  861. /*
  862. * For now just always ask the driver to update the basic rateset
  863. * when we have associated, we aren't checking whether it actually
  864. * changed or not.
  865. */
  866. bss_info_changed |= BSS_CHANGED_BASIC_RATES;
  867. /* And the BSSID changed - we're associated now */
  868. bss_info_changed |= BSS_CHANGED_BSSID;
  869. /* Tell the driver to monitor connection quality (if supported) */
  870. if ((local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI) &&
  871. bss_conf->cqm_rssi_thold)
  872. bss_info_changed |= BSS_CHANGED_CQM;
  873. /* Enable ARP filtering */
  874. if (bss_conf->arp_filter_enabled != sdata->arp_filter_state) {
  875. bss_conf->arp_filter_enabled = sdata->arp_filter_state;
  876. bss_info_changed |= BSS_CHANGED_ARP_FILTER;
  877. }
  878. ieee80211_bss_info_change_notify(sdata, bss_info_changed);
  879. mutex_lock(&local->iflist_mtx);
  880. ieee80211_recalc_ps(local, -1);
  881. ieee80211_recalc_smps(local);
  882. mutex_unlock(&local->iflist_mtx);
  883. netif_tx_start_all_queues(sdata->dev);
  884. netif_carrier_on(sdata->dev);
  885. }
  886. static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
  887. bool remove_sta, bool tx)
  888. {
  889. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  890. struct ieee80211_local *local = sdata->local;
  891. struct sta_info *sta;
  892. u32 changed = 0, config_changed = 0;
  893. u8 bssid[ETH_ALEN];
  894. ASSERT_MGD_MTX(ifmgd);
  895. if (WARN_ON(!ifmgd->associated))
  896. return;
  897. memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
  898. ifmgd->associated = NULL;
  899. memset(ifmgd->bssid, 0, ETH_ALEN);
  900. /*
  901. * we need to commit the associated = NULL change because the
  902. * scan code uses that to determine whether this iface should
  903. * go to/wake up from powersave or not -- and could otherwise
  904. * wake the queues erroneously.
  905. */
  906. smp_mb();
  907. /*
  908. * Thus, we can only afterwards stop the queues -- to account
  909. * for the case where another CPU is finishing a scan at this
  910. * time -- we don't want the scan code to enable queues.
  911. */
  912. netif_tx_stop_all_queues(sdata->dev);
  913. netif_carrier_off(sdata->dev);
  914. mutex_lock(&local->sta_mtx);
  915. sta = sta_info_get(sdata, bssid);
  916. if (sta) {
  917. set_sta_flag(sta, WLAN_STA_BLOCK_BA);
  918. ieee80211_sta_tear_down_BA_sessions(sta, tx);
  919. }
  920. mutex_unlock(&local->sta_mtx);
  921. changed |= ieee80211_reset_erp_info(sdata);
  922. ieee80211_led_assoc(local, 0);
  923. changed |= BSS_CHANGED_ASSOC;
  924. sdata->vif.bss_conf.assoc = false;
  925. ieee80211_set_wmm_default(sdata);
  926. /* channel(_type) changes are handled by ieee80211_hw_config */
  927. WARN_ON(!ieee80211_set_channel_type(local, sdata, NL80211_CHAN_NO_HT));
  928. /* on the next assoc, re-program HT parameters */
  929. sdata->ht_opmode_valid = false;
  930. local->power_constr_level = 0;
  931. del_timer_sync(&local->dynamic_ps_timer);
  932. cancel_work_sync(&local->dynamic_ps_enable_work);
  933. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  934. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  935. config_changed |= IEEE80211_CONF_CHANGE_PS;
  936. }
  937. local->ps_sdata = NULL;
  938. ieee80211_hw_config(local, config_changed);
  939. /* Disable ARP filtering */
  940. if (sdata->vif.bss_conf.arp_filter_enabled) {
  941. sdata->vif.bss_conf.arp_filter_enabled = false;
  942. changed |= BSS_CHANGED_ARP_FILTER;
  943. }
  944. /* The BSSID (not really interesting) and HT changed */
  945. changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
  946. ieee80211_bss_info_change_notify(sdata, changed);
  947. /* remove AP and TDLS peers */
  948. if (remove_sta)
  949. sta_info_flush(local, sdata);
  950. del_timer_sync(&sdata->u.mgd.conn_mon_timer);
  951. del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
  952. del_timer_sync(&sdata->u.mgd.timer);
  953. del_timer_sync(&sdata->u.mgd.chswitch_timer);
  954. }
  955. void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
  956. struct ieee80211_hdr *hdr)
  957. {
  958. /*
  959. * We can postpone the mgd.timer whenever receiving unicast frames
  960. * from AP because we know that the connection is working both ways
  961. * at that time. But multicast frames (and hence also beacons) must
  962. * be ignored here, because we need to trigger the timer during
  963. * data idle periods for sending the periodic probe request to the
  964. * AP we're connected to.
  965. */
  966. if (is_multicast_ether_addr(hdr->addr1))
  967. return;
  968. ieee80211_sta_reset_conn_monitor(sdata);
  969. }
  970. static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
  971. {
  972. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  973. if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  974. IEEE80211_STA_CONNECTION_POLL)))
  975. return;
  976. ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
  977. IEEE80211_STA_BEACON_POLL);
  978. mutex_lock(&sdata->local->iflist_mtx);
  979. ieee80211_recalc_ps(sdata->local, -1);
  980. mutex_unlock(&sdata->local->iflist_mtx);
  981. if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
  982. return;
  983. /*
  984. * We've received a probe response, but are not sure whether
  985. * we have or will be receiving any beacons or data, so let's
  986. * schedule the timers again, just in case.
  987. */
  988. ieee80211_sta_reset_beacon_monitor(sdata);
  989. mod_timer(&ifmgd->conn_mon_timer,
  990. round_jiffies_up(jiffies +
  991. IEEE80211_CONNECTION_IDLE_TIME));
  992. }
  993. void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
  994. struct ieee80211_hdr *hdr, bool ack)
  995. {
  996. if (!ieee80211_is_data(hdr->frame_control))
  997. return;
  998. if (ack)
  999. ieee80211_sta_reset_conn_monitor(sdata);
  1000. if (ieee80211_is_nullfunc(hdr->frame_control) &&
  1001. sdata->u.mgd.probe_send_count > 0) {
  1002. if (ack)
  1003. sdata->u.mgd.probe_send_count = 0;
  1004. else
  1005. sdata->u.mgd.nullfunc_failed = true;
  1006. ieee80211_queue_work(&sdata->local->hw, &sdata->work);
  1007. }
  1008. }
  1009. static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
  1010. {
  1011. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1012. const u8 *ssid;
  1013. u8 *dst = ifmgd->associated->bssid;
  1014. u8 unicast_limit = max(1, max_probe_tries - 3);
  1015. /*
  1016. * Try sending broadcast probe requests for the last three
  1017. * probe requests after the first ones failed since some
  1018. * buggy APs only support broadcast probe requests.
  1019. */
  1020. if (ifmgd->probe_send_count >= unicast_limit)
  1021. dst = NULL;
  1022. /*
  1023. * When the hardware reports an accurate Tx ACK status, it's
  1024. * better to send a nullfunc frame instead of a probe request,
  1025. * as it will kick us off the AP quickly if we aren't associated
  1026. * anymore. The timeout will be reset if the frame is ACKed by
  1027. * the AP.
  1028. */
  1029. if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  1030. ifmgd->nullfunc_failed = false;
  1031. ieee80211_send_nullfunc(sdata->local, sdata, 0);
  1032. } else {
  1033. ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
  1034. ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid[1], NULL, 0,
  1035. (u32) -1, true, false);
  1036. }
  1037. ifmgd->probe_send_count++;
  1038. ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
  1039. run_again(ifmgd, ifmgd->probe_timeout);
  1040. }
  1041. static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
  1042. bool beacon)
  1043. {
  1044. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1045. bool already = false;
  1046. if (!ieee80211_sdata_running(sdata))
  1047. return;
  1048. if (sdata->local->scanning)
  1049. return;
  1050. if (sdata->local->tmp_channel)
  1051. return;
  1052. mutex_lock(&ifmgd->mtx);
  1053. if (!ifmgd->associated)
  1054. goto out;
  1055. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1056. if (beacon && net_ratelimit())
  1057. printk(KERN_DEBUG "%s: detected beacon loss from AP "
  1058. "- sending probe request\n", sdata->name);
  1059. #endif
  1060. /*
  1061. * The driver/our work has already reported this event or the
  1062. * connection monitoring has kicked in and we have already sent
  1063. * a probe request. Or maybe the AP died and the driver keeps
  1064. * reporting until we disassociate...
  1065. *
  1066. * In either case we have to ignore the current call to this
  1067. * function (except for setting the correct probe reason bit)
  1068. * because otherwise we would reset the timer every time and
  1069. * never check whether we received a probe response!
  1070. */
  1071. if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  1072. IEEE80211_STA_CONNECTION_POLL))
  1073. already = true;
  1074. if (beacon)
  1075. ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
  1076. else
  1077. ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
  1078. if (already)
  1079. goto out;
  1080. mutex_lock(&sdata->local->iflist_mtx);
  1081. ieee80211_recalc_ps(sdata->local, -1);
  1082. mutex_unlock(&sdata->local->iflist_mtx);
  1083. ifmgd->probe_send_count = 0;
  1084. ieee80211_mgd_probe_ap_send(sdata);
  1085. out:
  1086. mutex_unlock(&ifmgd->mtx);
  1087. }
  1088. struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
  1089. struct ieee80211_vif *vif)
  1090. {
  1091. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1092. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1093. struct sk_buff *skb;
  1094. const u8 *ssid;
  1095. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  1096. return NULL;
  1097. ASSERT_MGD_MTX(ifmgd);
  1098. if (!ifmgd->associated)
  1099. return NULL;
  1100. ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
  1101. skb = ieee80211_build_probe_req(sdata, ifmgd->associated->bssid,
  1102. (u32) -1, ssid + 2, ssid[1],
  1103. NULL, 0, true);
  1104. return skb;
  1105. }
  1106. EXPORT_SYMBOL(ieee80211_ap_probereq_get);
  1107. static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata)
  1108. {
  1109. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1110. struct ieee80211_local *local = sdata->local;
  1111. u8 bssid[ETH_ALEN];
  1112. mutex_lock(&ifmgd->mtx);
  1113. if (!ifmgd->associated) {
  1114. mutex_unlock(&ifmgd->mtx);
  1115. return;
  1116. }
  1117. memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
  1118. printk(KERN_DEBUG "%s: Connection to AP %pM lost.\n",
  1119. sdata->name, bssid);
  1120. ieee80211_set_disassoc(sdata, true, true);
  1121. mutex_unlock(&ifmgd->mtx);
  1122. mutex_lock(&local->mtx);
  1123. ieee80211_recalc_idle(local);
  1124. mutex_unlock(&local->mtx);
  1125. /*
  1126. * must be outside lock due to cfg80211,
  1127. * but that's not a problem.
  1128. */
  1129. ieee80211_send_deauth_disassoc(sdata, bssid,
  1130. IEEE80211_STYPE_DEAUTH,
  1131. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
  1132. NULL, true);
  1133. }
  1134. void ieee80211_beacon_connection_loss_work(struct work_struct *work)
  1135. {
  1136. struct ieee80211_sub_if_data *sdata =
  1137. container_of(work, struct ieee80211_sub_if_data,
  1138. u.mgd.beacon_connection_loss_work);
  1139. if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
  1140. __ieee80211_connection_loss(sdata);
  1141. else
  1142. ieee80211_mgd_probe_ap(sdata, true);
  1143. }
  1144. void ieee80211_beacon_loss(struct ieee80211_vif *vif)
  1145. {
  1146. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1147. struct ieee80211_hw *hw = &sdata->local->hw;
  1148. trace_api_beacon_loss(sdata);
  1149. WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
  1150. ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
  1151. }
  1152. EXPORT_SYMBOL(ieee80211_beacon_loss);
  1153. void ieee80211_connection_loss(struct ieee80211_vif *vif)
  1154. {
  1155. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1156. struct ieee80211_hw *hw = &sdata->local->hw;
  1157. trace_api_connection_loss(sdata);
  1158. WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
  1159. ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
  1160. }
  1161. EXPORT_SYMBOL(ieee80211_connection_loss);
  1162. static enum rx_mgmt_action __must_check
  1163. ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
  1164. struct ieee80211_mgmt *mgmt, size_t len)
  1165. {
  1166. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1167. const u8 *bssid = NULL;
  1168. u16 reason_code;
  1169. if (len < 24 + 2)
  1170. return RX_MGMT_NONE;
  1171. ASSERT_MGD_MTX(ifmgd);
  1172. bssid = ifmgd->associated->bssid;
  1173. reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
  1174. printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
  1175. sdata->name, bssid, reason_code);
  1176. ieee80211_set_disassoc(sdata, true, false);
  1177. mutex_lock(&sdata->local->mtx);
  1178. ieee80211_recalc_idle(sdata->local);
  1179. mutex_unlock(&sdata->local->mtx);
  1180. return RX_MGMT_CFG80211_DEAUTH;
  1181. }
  1182. static enum rx_mgmt_action __must_check
  1183. ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
  1184. struct ieee80211_mgmt *mgmt, size_t len)
  1185. {
  1186. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1187. u16 reason_code;
  1188. if (len < 24 + 2)
  1189. return RX_MGMT_NONE;
  1190. ASSERT_MGD_MTX(ifmgd);
  1191. if (WARN_ON(!ifmgd->associated))
  1192. return RX_MGMT_NONE;
  1193. if (WARN_ON(memcmp(ifmgd->associated->bssid, mgmt->sa, ETH_ALEN)))
  1194. return RX_MGMT_NONE;
  1195. reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
  1196. printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
  1197. sdata->name, mgmt->sa, reason_code);
  1198. ieee80211_set_disassoc(sdata, true, false);
  1199. mutex_lock(&sdata->local->mtx);
  1200. ieee80211_recalc_idle(sdata->local);
  1201. mutex_unlock(&sdata->local->mtx);
  1202. return RX_MGMT_CFG80211_DISASSOC;
  1203. }
  1204. static bool ieee80211_assoc_success(struct ieee80211_work *wk,
  1205. struct ieee80211_mgmt *mgmt, size_t len)
  1206. {
  1207. struct ieee80211_sub_if_data *sdata = wk->sdata;
  1208. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1209. struct ieee80211_local *local = sdata->local;
  1210. struct ieee80211_supported_band *sband;
  1211. struct sta_info *sta;
  1212. struct cfg80211_bss *cbss = wk->assoc.bss;
  1213. u8 *pos;
  1214. u32 rates, basic_rates;
  1215. u16 capab_info, aid;
  1216. struct ieee802_11_elems elems;
  1217. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1218. u32 changed = 0;
  1219. int i, j, err;
  1220. bool have_higher_than_11mbit = false;
  1221. u16 ap_ht_cap_flags;
  1222. int min_rate = INT_MAX, min_rate_index = -1;
  1223. /* AssocResp and ReassocResp have identical structure */
  1224. aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
  1225. capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
  1226. if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
  1227. printk(KERN_DEBUG
  1228. "%s: invalid AID value 0x%x; bits 15:14 not set\n",
  1229. sdata->name, aid);
  1230. aid &= ~(BIT(15) | BIT(14));
  1231. ifmgd->broken_ap = false;
  1232. if (aid == 0 || aid > IEEE80211_MAX_AID) {
  1233. printk(KERN_DEBUG
  1234. "%s: invalid AID value %d (out of range), turn off PS\n",
  1235. sdata->name, aid);
  1236. aid = 0;
  1237. ifmgd->broken_ap = true;
  1238. }
  1239. pos = mgmt->u.assoc_resp.variable;
  1240. ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
  1241. if (!elems.supp_rates) {
  1242. printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
  1243. sdata->name);
  1244. return false;
  1245. }
  1246. ifmgd->aid = aid;
  1247. mutex_lock(&sdata->local->sta_mtx);
  1248. /*
  1249. * station info was already allocated and inserted before
  1250. * the association and should be available to us
  1251. */
  1252. sta = sta_info_get_rx(sdata, cbss->bssid);
  1253. if (WARN_ON(!sta)) {
  1254. mutex_unlock(&sdata->local->sta_mtx);
  1255. return false;
  1256. }
  1257. set_sta_flag(sta, WLAN_STA_AUTH);
  1258. set_sta_flag(sta, WLAN_STA_ASSOC);
  1259. set_sta_flag(sta, WLAN_STA_ASSOC_AP);
  1260. if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
  1261. set_sta_flag(sta, WLAN_STA_AUTHORIZED);
  1262. rates = 0;
  1263. basic_rates = 0;
  1264. sband = local->hw.wiphy->bands[wk->chan->band];
  1265. for (i = 0; i < elems.supp_rates_len; i++) {
  1266. int rate = (elems.supp_rates[i] & 0x7f) * 5;
  1267. bool is_basic = !!(elems.supp_rates[i] & 0x80);
  1268. if (rate > 110)
  1269. have_higher_than_11mbit = true;
  1270. for (j = 0; j < sband->n_bitrates; j++) {
  1271. if (sband->bitrates[j].bitrate == rate) {
  1272. rates |= BIT(j);
  1273. if (is_basic)
  1274. basic_rates |= BIT(j);
  1275. if (rate < min_rate) {
  1276. min_rate = rate;
  1277. min_rate_index = j;
  1278. }
  1279. break;
  1280. }
  1281. }
  1282. }
  1283. for (i = 0; i < elems.ext_supp_rates_len; i++) {
  1284. int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
  1285. bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
  1286. if (rate > 110)
  1287. have_higher_than_11mbit = true;
  1288. for (j = 0; j < sband->n_bitrates; j++) {
  1289. if (sband->bitrates[j].bitrate == rate) {
  1290. rates |= BIT(j);
  1291. if (is_basic)
  1292. basic_rates |= BIT(j);
  1293. if (rate < min_rate) {
  1294. min_rate = rate;
  1295. min_rate_index = j;
  1296. }
  1297. break;
  1298. }
  1299. }
  1300. }
  1301. /*
  1302. * some buggy APs don't advertise basic_rates. use the lowest
  1303. * supported rate instead.
  1304. */
  1305. if (unlikely(!basic_rates) && min_rate_index >= 0) {
  1306. printk(KERN_DEBUG "%s: No basic rates in AssocResp. "
  1307. "Using min supported rate instead.\n", sdata->name);
  1308. basic_rates = BIT(min_rate_index);
  1309. }
  1310. sta->sta.supp_rates[wk->chan->band] = rates;
  1311. sdata->vif.bss_conf.basic_rates = basic_rates;
  1312. /* cf. IEEE 802.11 9.2.12 */
  1313. if (wk->chan->band == IEEE80211_BAND_2GHZ &&
  1314. have_higher_than_11mbit)
  1315. sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
  1316. else
  1317. sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
  1318. if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
  1319. ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
  1320. elems.ht_cap_elem, &sta->sta.ht_cap);
  1321. ap_ht_cap_flags = sta->sta.ht_cap.cap;
  1322. rate_control_rate_init(sta);
  1323. if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
  1324. set_sta_flag(sta, WLAN_STA_MFP);
  1325. if (elems.wmm_param)
  1326. set_sta_flag(sta, WLAN_STA_WME);
  1327. /* sta_info_reinsert will also unlock the mutex lock */
  1328. err = sta_info_reinsert(sta);
  1329. sta = NULL;
  1330. if (err) {
  1331. printk(KERN_DEBUG "%s: failed to insert STA entry for"
  1332. " the AP (error %d)\n", sdata->name, err);
  1333. return false;
  1334. }
  1335. /*
  1336. * Always handle WMM once after association regardless
  1337. * of the first value the AP uses. Setting -1 here has
  1338. * that effect because the AP values is an unsigned
  1339. * 4-bit value.
  1340. */
  1341. ifmgd->wmm_last_param_set = -1;
  1342. if (elems.wmm_param)
  1343. ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
  1344. elems.wmm_param_len);
  1345. else
  1346. ieee80211_set_wmm_default(sdata);
  1347. local->oper_channel = wk->chan;
  1348. if (elems.ht_info_elem && elems.wmm_param &&
  1349. (sdata->local->hw.queues >= 4) &&
  1350. !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
  1351. changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
  1352. cbss->bssid, ap_ht_cap_flags,
  1353. false);
  1354. /* set AID and assoc capability,
  1355. * ieee80211_set_associated() will tell the driver */
  1356. bss_conf->aid = aid;
  1357. bss_conf->assoc_capability = capab_info;
  1358. ieee80211_set_associated(sdata, cbss, changed);
  1359. /*
  1360. * If we're using 4-addr mode, let the AP know that we're
  1361. * doing so, so that it can create the STA VLAN on its side
  1362. */
  1363. if (ifmgd->use_4addr)
  1364. ieee80211_send_4addr_nullfunc(local, sdata);
  1365. /*
  1366. * Start timer to probe the connection to the AP now.
  1367. * Also start the timer that will detect beacon loss.
  1368. */
  1369. ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
  1370. ieee80211_sta_reset_beacon_monitor(sdata);
  1371. return true;
  1372. }
  1373. static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
  1374. struct ieee80211_mgmt *mgmt,
  1375. size_t len,
  1376. struct ieee80211_rx_status *rx_status,
  1377. struct ieee802_11_elems *elems,
  1378. bool beacon)
  1379. {
  1380. struct ieee80211_local *local = sdata->local;
  1381. int freq;
  1382. struct ieee80211_bss *bss;
  1383. struct ieee80211_channel *channel;
  1384. bool need_ps = false;
  1385. if (sdata->u.mgd.associated) {
  1386. bss = (void *)sdata->u.mgd.associated->priv;
  1387. /* not previously set so we may need to recalc */
  1388. need_ps = !bss->dtim_period;
  1389. }
  1390. if (elems->ds_params && elems->ds_params_len == 1)
  1391. freq = ieee80211_channel_to_frequency(elems->ds_params[0],
  1392. rx_status->band);
  1393. else
  1394. freq = rx_status->freq;
  1395. channel = ieee80211_get_channel(local->hw.wiphy, freq);
  1396. if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
  1397. return;
  1398. bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
  1399. channel, beacon);
  1400. if (bss)
  1401. ieee80211_rx_bss_put(local, bss);
  1402. if (!sdata->u.mgd.associated)
  1403. return;
  1404. if (need_ps) {
  1405. mutex_lock(&local->iflist_mtx);
  1406. ieee80211_recalc_ps(local, -1);
  1407. mutex_unlock(&local->iflist_mtx);
  1408. }
  1409. if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
  1410. (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid,
  1411. ETH_ALEN) == 0)) {
  1412. struct ieee80211_channel_sw_ie *sw_elem =
  1413. (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
  1414. ieee80211_sta_process_chanswitch(sdata, sw_elem,
  1415. bss, rx_status->mactime);
  1416. }
  1417. }
  1418. static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
  1419. struct sk_buff *skb)
  1420. {
  1421. struct ieee80211_mgmt *mgmt = (void *)skb->data;
  1422. struct ieee80211_if_managed *ifmgd;
  1423. struct ieee80211_rx_status *rx_status = (void *) skb->cb;
  1424. size_t baselen, len = skb->len;
  1425. struct ieee802_11_elems elems;
  1426. ifmgd = &sdata->u.mgd;
  1427. ASSERT_MGD_MTX(ifmgd);
  1428. if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
  1429. return; /* ignore ProbeResp to foreign address */
  1430. baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
  1431. if (baselen > len)
  1432. return;
  1433. ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
  1434. &elems);
  1435. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
  1436. if (ifmgd->associated &&
  1437. memcmp(mgmt->bssid, ifmgd->associated->bssid, ETH_ALEN) == 0)
  1438. ieee80211_reset_ap_probe(sdata);
  1439. }
  1440. /*
  1441. * This is the canonical list of information elements we care about,
  1442. * the filter code also gives us all changes to the Microsoft OUI
  1443. * (00:50:F2) vendor IE which is used for WMM which we need to track.
  1444. *
  1445. * We implement beacon filtering in software since that means we can
  1446. * avoid processing the frame here and in cfg80211, and userspace
  1447. * will not be able to tell whether the hardware supports it or not.
  1448. *
  1449. * XXX: This list needs to be dynamic -- userspace needs to be able to
  1450. * add items it requires. It also needs to be able to tell us to
  1451. * look out for other vendor IEs.
  1452. */
  1453. static const u64 care_about_ies =
  1454. (1ULL << WLAN_EID_COUNTRY) |
  1455. (1ULL << WLAN_EID_ERP_INFO) |
  1456. (1ULL << WLAN_EID_CHANNEL_SWITCH) |
  1457. (1ULL << WLAN_EID_PWR_CONSTRAINT) |
  1458. (1ULL << WLAN_EID_HT_CAPABILITY) |
  1459. (1ULL << WLAN_EID_HT_INFORMATION);
  1460. static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
  1461. struct ieee80211_mgmt *mgmt,
  1462. size_t len,
  1463. struct ieee80211_rx_status *rx_status)
  1464. {
  1465. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1466. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1467. size_t baselen;
  1468. struct ieee802_11_elems elems;
  1469. struct ieee80211_local *local = sdata->local;
  1470. u32 changed = 0;
  1471. bool erp_valid, directed_tim = false;
  1472. u8 erp_value = 0;
  1473. u32 ncrc;
  1474. u8 *bssid;
  1475. ASSERT_MGD_MTX(ifmgd);
  1476. /* Process beacon from the current BSS */
  1477. baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
  1478. if (baselen > len)
  1479. return;
  1480. if (rx_status->freq != local->hw.conf.channel->center_freq)
  1481. return;
  1482. /*
  1483. * We might have received a number of frames, among them a
  1484. * disassoc frame and a beacon...
  1485. */
  1486. if (!ifmgd->associated)
  1487. return;
  1488. bssid = ifmgd->associated->bssid;
  1489. /*
  1490. * And in theory even frames from a different AP we were just
  1491. * associated to a split-second ago!
  1492. */
  1493. if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
  1494. return;
  1495. /* Track average RSSI from the Beacon frames of the current AP */
  1496. ifmgd->last_beacon_signal = rx_status->signal;
  1497. if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
  1498. ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
  1499. ifmgd->ave_beacon_signal = rx_status->signal * 16;
  1500. ifmgd->last_cqm_event_signal = 0;
  1501. ifmgd->count_beacon_signal = 1;
  1502. ifmgd->last_ave_beacon_signal = 0;
  1503. } else {
  1504. ifmgd->ave_beacon_signal =
  1505. (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
  1506. (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
  1507. ifmgd->ave_beacon_signal) / 16;
  1508. ifmgd->count_beacon_signal++;
  1509. }
  1510. if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
  1511. ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
  1512. int sig = ifmgd->ave_beacon_signal;
  1513. int last_sig = ifmgd->last_ave_beacon_signal;
  1514. /*
  1515. * if signal crosses either of the boundaries, invoke callback
  1516. * with appropriate parameters
  1517. */
  1518. if (sig > ifmgd->rssi_max_thold &&
  1519. (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
  1520. ifmgd->last_ave_beacon_signal = sig;
  1521. drv_rssi_callback(local, RSSI_EVENT_HIGH);
  1522. } else if (sig < ifmgd->rssi_min_thold &&
  1523. (last_sig >= ifmgd->rssi_max_thold ||
  1524. last_sig == 0)) {
  1525. ifmgd->last_ave_beacon_signal = sig;
  1526. drv_rssi_callback(local, RSSI_EVENT_LOW);
  1527. }
  1528. }
  1529. if (bss_conf->cqm_rssi_thold &&
  1530. ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
  1531. !(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
  1532. int sig = ifmgd->ave_beacon_signal / 16;
  1533. int last_event = ifmgd->last_cqm_event_signal;
  1534. int thold = bss_conf->cqm_rssi_thold;
  1535. int hyst = bss_conf->cqm_rssi_hyst;
  1536. if (sig < thold &&
  1537. (last_event == 0 || sig < last_event - hyst)) {
  1538. ifmgd->last_cqm_event_signal = sig;
  1539. ieee80211_cqm_rssi_notify(
  1540. &sdata->vif,
  1541. NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
  1542. GFP_KERNEL);
  1543. } else if (sig > thold &&
  1544. (last_event == 0 || sig > last_event + hyst)) {
  1545. ifmgd->last_cqm_event_signal = sig;
  1546. ieee80211_cqm_rssi_notify(
  1547. &sdata->vif,
  1548. NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
  1549. GFP_KERNEL);
  1550. }
  1551. }
  1552. if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
  1553. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1554. if (net_ratelimit()) {
  1555. printk(KERN_DEBUG "%s: cancelling probereq poll due "
  1556. "to a received beacon\n", sdata->name);
  1557. }
  1558. #endif
  1559. ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
  1560. mutex_lock(&local->iflist_mtx);
  1561. ieee80211_recalc_ps(local, -1);
  1562. mutex_unlock(&local->iflist_mtx);
  1563. }
  1564. /*
  1565. * Push the beacon loss detection into the future since
  1566. * we are processing a beacon from the AP just now.
  1567. */
  1568. ieee80211_sta_reset_beacon_monitor(sdata);
  1569. ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
  1570. ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
  1571. len - baselen, &elems,
  1572. care_about_ies, ncrc);
  1573. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  1574. directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
  1575. ifmgd->aid);
  1576. if (ncrc != ifmgd->beacon_crc || !ifmgd->beacon_crc_valid) {
  1577. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
  1578. true);
  1579. ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
  1580. elems.wmm_param_len);
  1581. }
  1582. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
  1583. if (directed_tim) {
  1584. if (local->hw.conf.dynamic_ps_timeout > 0) {
  1585. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  1586. ieee80211_hw_config(local,
  1587. IEEE80211_CONF_CHANGE_PS);
  1588. ieee80211_send_nullfunc(local, sdata, 0);
  1589. } else {
  1590. local->pspolling = true;
  1591. /*
  1592. * Here is assumed that the driver will be
  1593. * able to send ps-poll frame and receive a
  1594. * response even though power save mode is
  1595. * enabled, but some drivers might require
  1596. * to disable power save here. This needs
  1597. * to be investigated.
  1598. */
  1599. ieee80211_send_pspoll(local, sdata);
  1600. }
  1601. }
  1602. }
  1603. if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
  1604. return;
  1605. ifmgd->beacon_crc = ncrc;
  1606. ifmgd->beacon_crc_valid = true;
  1607. if (elems.erp_info && elems.erp_info_len >= 1) {
  1608. erp_valid = true;
  1609. erp_value = elems.erp_info[0];
  1610. } else {
  1611. erp_valid = false;
  1612. }
  1613. changed |= ieee80211_handle_bss_capability(sdata,
  1614. le16_to_cpu(mgmt->u.beacon.capab_info),
  1615. erp_valid, erp_value);
  1616. if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
  1617. !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
  1618. struct sta_info *sta;
  1619. struct ieee80211_supported_band *sband;
  1620. u16 ap_ht_cap_flags;
  1621. rcu_read_lock();
  1622. sta = sta_info_get(sdata, bssid);
  1623. if (WARN_ON(!sta)) {
  1624. rcu_read_unlock();
  1625. return;
  1626. }
  1627. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  1628. ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
  1629. elems.ht_cap_elem, &sta->sta.ht_cap);
  1630. ap_ht_cap_flags = sta->sta.ht_cap.cap;
  1631. rcu_read_unlock();
  1632. changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
  1633. bssid, ap_ht_cap_flags, true);
  1634. }
  1635. /* Note: country IE parsing is done for us by cfg80211 */
  1636. if (elems.country_elem) {
  1637. /* TODO: IBSS also needs this */
  1638. if (elems.pwr_constr_elem)
  1639. ieee80211_handle_pwr_constr(sdata,
  1640. le16_to_cpu(mgmt->u.probe_resp.capab_info),
  1641. elems.pwr_constr_elem,
  1642. elems.pwr_constr_elem_len);
  1643. }
  1644. ieee80211_bss_info_change_notify(sdata, changed);
  1645. }
  1646. void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
  1647. struct sk_buff *skb)
  1648. {
  1649. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1650. struct ieee80211_rx_status *rx_status;
  1651. struct ieee80211_mgmt *mgmt;
  1652. enum rx_mgmt_action rma = RX_MGMT_NONE;
  1653. u16 fc;
  1654. rx_status = (struct ieee80211_rx_status *) skb->cb;
  1655. mgmt = (struct ieee80211_mgmt *) skb->data;
  1656. fc = le16_to_cpu(mgmt->frame_control);
  1657. mutex_lock(&ifmgd->mtx);
  1658. if (ifmgd->associated &&
  1659. memcmp(ifmgd->associated->bssid, mgmt->bssid, ETH_ALEN) == 0) {
  1660. switch (fc & IEEE80211_FCTL_STYPE) {
  1661. case IEEE80211_STYPE_BEACON:
  1662. ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
  1663. rx_status);
  1664. break;
  1665. case IEEE80211_STYPE_PROBE_RESP:
  1666. ieee80211_rx_mgmt_probe_resp(sdata, skb);
  1667. break;
  1668. case IEEE80211_STYPE_DEAUTH:
  1669. rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
  1670. break;
  1671. case IEEE80211_STYPE_DISASSOC:
  1672. rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
  1673. break;
  1674. case IEEE80211_STYPE_ACTION:
  1675. switch (mgmt->u.action.category) {
  1676. case WLAN_CATEGORY_SPECTRUM_MGMT:
  1677. ieee80211_sta_process_chanswitch(sdata,
  1678. &mgmt->u.action.u.chan_switch.sw_elem,
  1679. (void *)ifmgd->associated->priv,
  1680. rx_status->mactime);
  1681. break;
  1682. }
  1683. }
  1684. mutex_unlock(&ifmgd->mtx);
  1685. switch (rma) {
  1686. case RX_MGMT_NONE:
  1687. /* no action */
  1688. break;
  1689. case RX_MGMT_CFG80211_DEAUTH:
  1690. cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
  1691. break;
  1692. case RX_MGMT_CFG80211_DISASSOC:
  1693. cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
  1694. break;
  1695. default:
  1696. WARN(1, "unexpected: %d", rma);
  1697. }
  1698. return;
  1699. }
  1700. mutex_unlock(&ifmgd->mtx);
  1701. if (skb->len >= 24 + 2 /* mgmt + deauth reason */ &&
  1702. (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_DEAUTH) {
  1703. struct ieee80211_local *local = sdata->local;
  1704. struct ieee80211_work *wk;
  1705. mutex_lock(&local->mtx);
  1706. list_for_each_entry(wk, &local->work_list, list) {
  1707. if (wk->sdata != sdata)
  1708. continue;
  1709. if (wk->type != IEEE80211_WORK_ASSOC &&
  1710. wk->type != IEEE80211_WORK_ASSOC_BEACON_WAIT)
  1711. continue;
  1712. if (memcmp(mgmt->bssid, wk->filter_ta, ETH_ALEN))
  1713. continue;
  1714. if (memcmp(mgmt->sa, wk->filter_ta, ETH_ALEN))
  1715. continue;
  1716. /*
  1717. * Printing the message only here means we can't
  1718. * spuriously print it, but it also means that it
  1719. * won't be printed when the frame comes in before
  1720. * we even tried to associate or in similar cases.
  1721. *
  1722. * Ultimately, I suspect cfg80211 should print the
  1723. * messages instead.
  1724. */
  1725. printk(KERN_DEBUG
  1726. "%s: deauthenticated from %pM (Reason: %u)\n",
  1727. sdata->name, mgmt->bssid,
  1728. le16_to_cpu(mgmt->u.deauth.reason_code));
  1729. list_del_rcu(&wk->list);
  1730. free_work(wk);
  1731. break;
  1732. }
  1733. mutex_unlock(&local->mtx);
  1734. cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
  1735. }
  1736. }
  1737. static void ieee80211_sta_timer(unsigned long data)
  1738. {
  1739. struct ieee80211_sub_if_data *sdata =
  1740. (struct ieee80211_sub_if_data *) data;
  1741. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1742. struct ieee80211_local *local = sdata->local;
  1743. if (local->quiescing) {
  1744. set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
  1745. return;
  1746. }
  1747. ieee80211_queue_work(&local->hw, &sdata->work);
  1748. }
  1749. static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
  1750. u8 *bssid, u8 reason)
  1751. {
  1752. struct ieee80211_local *local = sdata->local;
  1753. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1754. ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
  1755. IEEE80211_STA_BEACON_POLL);
  1756. ieee80211_set_disassoc(sdata, true, true);
  1757. mutex_unlock(&ifmgd->mtx);
  1758. mutex_lock(&local->mtx);
  1759. ieee80211_recalc_idle(local);
  1760. mutex_unlock(&local->mtx);
  1761. /*
  1762. * must be outside lock due to cfg80211,
  1763. * but that's not a problem.
  1764. */
  1765. ieee80211_send_deauth_disassoc(sdata, bssid,
  1766. IEEE80211_STYPE_DEAUTH, reason,
  1767. NULL, true);
  1768. mutex_lock(&ifmgd->mtx);
  1769. }
  1770. void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
  1771. {
  1772. struct ieee80211_local *local = sdata->local;
  1773. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1774. /* then process the rest of the work */
  1775. mutex_lock(&ifmgd->mtx);
  1776. if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
  1777. IEEE80211_STA_CONNECTION_POLL) &&
  1778. ifmgd->associated) {
  1779. u8 bssid[ETH_ALEN];
  1780. int max_tries;
  1781. memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
  1782. if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
  1783. max_tries = max_nullfunc_tries;
  1784. else
  1785. max_tries = max_probe_tries;
  1786. /* ACK received for nullfunc probing frame */
  1787. if (!ifmgd->probe_send_count)
  1788. ieee80211_reset_ap_probe(sdata);
  1789. else if (ifmgd->nullfunc_failed) {
  1790. if (ifmgd->probe_send_count < max_tries) {
  1791. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1792. wiphy_debug(local->hw.wiphy,
  1793. "%s: No ack for nullfunc frame to"
  1794. " AP %pM, try %d/%i\n",
  1795. sdata->name, bssid,
  1796. ifmgd->probe_send_count, max_tries);
  1797. #endif
  1798. ieee80211_mgd_probe_ap_send(sdata);
  1799. } else {
  1800. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1801. wiphy_debug(local->hw.wiphy,
  1802. "%s: No ack for nullfunc frame to"
  1803. " AP %pM, disconnecting.\n",
  1804. sdata->name, bssid);
  1805. #endif
  1806. ieee80211_sta_connection_lost(sdata, bssid,
  1807. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  1808. }
  1809. } else if (time_is_after_jiffies(ifmgd->probe_timeout))
  1810. run_again(ifmgd, ifmgd->probe_timeout);
  1811. else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
  1812. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1813. wiphy_debug(local->hw.wiphy,
  1814. "%s: Failed to send nullfunc to AP %pM"
  1815. " after %dms, disconnecting.\n",
  1816. sdata->name,
  1817. bssid, probe_wait_ms);
  1818. #endif
  1819. ieee80211_sta_connection_lost(sdata, bssid,
  1820. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  1821. } else if (ifmgd->probe_send_count < max_tries) {
  1822. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1823. wiphy_debug(local->hw.wiphy,
  1824. "%s: No probe response from AP %pM"
  1825. " after %dms, try %d/%i\n",
  1826. sdata->name,
  1827. bssid, probe_wait_ms,
  1828. ifmgd->probe_send_count, max_tries);
  1829. #endif
  1830. ieee80211_mgd_probe_ap_send(sdata);
  1831. } else {
  1832. /*
  1833. * We actually lost the connection ... or did we?
  1834. * Let's make sure!
  1835. */
  1836. wiphy_debug(local->hw.wiphy,
  1837. "%s: No probe response from AP %pM"
  1838. " after %dms, disconnecting.\n",
  1839. sdata->name,
  1840. bssid, probe_wait_ms);
  1841. ieee80211_sta_connection_lost(sdata, bssid,
  1842. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
  1843. }
  1844. }
  1845. mutex_unlock(&ifmgd->mtx);
  1846. }
  1847. static void ieee80211_sta_bcn_mon_timer(unsigned long data)
  1848. {
  1849. struct ieee80211_sub_if_data *sdata =
  1850. (struct ieee80211_sub_if_data *) data;
  1851. struct ieee80211_local *local = sdata->local;
  1852. if (local->quiescing)
  1853. return;
  1854. ieee80211_queue_work(&sdata->local->hw,
  1855. &sdata->u.mgd.beacon_connection_loss_work);
  1856. }
  1857. static void ieee80211_sta_conn_mon_timer(unsigned long data)
  1858. {
  1859. struct ieee80211_sub_if_data *sdata =
  1860. (struct ieee80211_sub_if_data *) data;
  1861. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1862. struct ieee80211_local *local = sdata->local;
  1863. if (local->quiescing)
  1864. return;
  1865. ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
  1866. }
  1867. static void ieee80211_sta_monitor_work(struct work_struct *work)
  1868. {
  1869. struct ieee80211_sub_if_data *sdata =
  1870. container_of(work, struct ieee80211_sub_if_data,
  1871. u.mgd.monitor_work);
  1872. ieee80211_mgd_probe_ap(sdata, false);
  1873. }
  1874. static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
  1875. {
  1876. if (sdata->vif.type == NL80211_IFTYPE_STATION) {
  1877. sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
  1878. IEEE80211_STA_CONNECTION_POLL);
  1879. /* let's probe the connection once */
  1880. ieee80211_queue_work(&sdata->local->hw,
  1881. &sdata->u.mgd.monitor_work);
  1882. /* and do all the other regular work too */
  1883. ieee80211_queue_work(&sdata->local->hw, &sdata->work);
  1884. }
  1885. }
  1886. #ifdef CONFIG_PM
  1887. void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
  1888. {
  1889. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1890. /*
  1891. * we need to use atomic bitops for the running bits
  1892. * only because both timers might fire at the same
  1893. * time -- the code here is properly synchronised.
  1894. */
  1895. cancel_work_sync(&ifmgd->request_smps_work);
  1896. cancel_work_sync(&ifmgd->monitor_work);
  1897. cancel_work_sync(&ifmgd->beacon_connection_loss_work);
  1898. if (del_timer_sync(&ifmgd->timer))
  1899. set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
  1900. cancel_work_sync(&ifmgd->chswitch_work);
  1901. if (del_timer_sync(&ifmgd->chswitch_timer))
  1902. set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
  1903. /* these will just be re-established on connection */
  1904. del_timer_sync(&ifmgd->conn_mon_timer);
  1905. del_timer_sync(&ifmgd->bcn_mon_timer);
  1906. }
  1907. void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
  1908. {
  1909. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1910. if (!ifmgd->associated)
  1911. return;
  1912. if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
  1913. sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
  1914. mutex_lock(&ifmgd->mtx);
  1915. if (ifmgd->associated) {
  1916. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1917. wiphy_debug(sdata->local->hw.wiphy,
  1918. "%s: driver requested disconnect after resume.\n",
  1919. sdata->name);
  1920. #endif
  1921. ieee80211_sta_connection_lost(sdata,
  1922. ifmgd->associated->bssid,
  1923. WLAN_REASON_UNSPECIFIED);
  1924. mutex_unlock(&ifmgd->mtx);
  1925. return;
  1926. }
  1927. mutex_unlock(&ifmgd->mtx);
  1928. }
  1929. if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
  1930. add_timer(&ifmgd->timer);
  1931. if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
  1932. add_timer(&ifmgd->chswitch_timer);
  1933. ieee80211_sta_reset_beacon_monitor(sdata);
  1934. ieee80211_restart_sta_timer(sdata);
  1935. ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.monitor_work);
  1936. }
  1937. #endif
  1938. /* interface setup */
  1939. void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
  1940. {
  1941. struct ieee80211_if_managed *ifmgd;
  1942. ifmgd = &sdata->u.mgd;
  1943. INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
  1944. INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
  1945. INIT_WORK(&ifmgd->beacon_connection_loss_work,
  1946. ieee80211_beacon_connection_loss_work);
  1947. INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
  1948. setup_timer(&ifmgd->timer, ieee80211_sta_timer,
  1949. (unsigned long) sdata);
  1950. setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
  1951. (unsigned long) sdata);
  1952. setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
  1953. (unsigned long) sdata);
  1954. setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
  1955. (unsigned long) sdata);
  1956. ifmgd->flags = 0;
  1957. mutex_init(&ifmgd->mtx);
  1958. if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
  1959. ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
  1960. else
  1961. ifmgd->req_smps = IEEE80211_SMPS_OFF;
  1962. }
  1963. /* scan finished notification */
  1964. void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
  1965. {
  1966. struct ieee80211_sub_if_data *sdata = local->scan_sdata;
  1967. /* Restart STA timers */
  1968. rcu_read_lock();
  1969. list_for_each_entry_rcu(sdata, &local->interfaces, list)
  1970. ieee80211_restart_sta_timer(sdata);
  1971. rcu_read_unlock();
  1972. }
  1973. int ieee80211_max_network_latency(struct notifier_block *nb,
  1974. unsigned long data, void *dummy)
  1975. {
  1976. s32 latency_usec = (s32) data;
  1977. struct ieee80211_local *local =
  1978. container_of(nb, struct ieee80211_local,
  1979. network_latency_notifier);
  1980. mutex_lock(&local->iflist_mtx);
  1981. ieee80211_recalc_ps(local, latency_usec);
  1982. mutex_unlock(&local->iflist_mtx);
  1983. return 0;
  1984. }
  1985. /* config hooks */
  1986. static enum work_done_result
  1987. ieee80211_probe_auth_done(struct ieee80211_work *wk,
  1988. struct sk_buff *skb)
  1989. {
  1990. struct ieee80211_local *local = wk->sdata->local;
  1991. if (!skb) {
  1992. cfg80211_send_auth_timeout(wk->sdata->dev, wk->filter_ta);
  1993. goto destroy;
  1994. }
  1995. if (wk->type == IEEE80211_WORK_AUTH) {
  1996. cfg80211_send_rx_auth(wk->sdata->dev, skb->data, skb->len);
  1997. goto destroy;
  1998. }
  1999. mutex_lock(&wk->sdata->u.mgd.mtx);
  2000. ieee80211_rx_mgmt_probe_resp(wk->sdata, skb);
  2001. mutex_unlock(&wk->sdata->u.mgd.mtx);
  2002. wk->type = IEEE80211_WORK_AUTH;
  2003. wk->probe_auth.tries = 0;
  2004. return WORK_DONE_REQUEUE;
  2005. destroy:
  2006. if (wk->probe_auth.synced)
  2007. drv_finish_tx_sync(local, wk->sdata, wk->filter_ta,
  2008. IEEE80211_TX_SYNC_AUTH);
  2009. return WORK_DONE_DESTROY;
  2010. }
  2011. int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
  2012. struct cfg80211_auth_request *req)
  2013. {
  2014. const u8 *ssid;
  2015. struct ieee80211_work *wk;
  2016. u16 auth_alg;
  2017. if (req->local_state_change)
  2018. return 0; /* no need to update mac80211 state */
  2019. switch (req->auth_type) {
  2020. case NL80211_AUTHTYPE_OPEN_SYSTEM:
  2021. auth_alg = WLAN_AUTH_OPEN;
  2022. break;
  2023. case NL80211_AUTHTYPE_SHARED_KEY:
  2024. if (IS_ERR(sdata->local->wep_tx_tfm))
  2025. return -EOPNOTSUPP;
  2026. auth_alg = WLAN_AUTH_SHARED_KEY;
  2027. break;
  2028. case NL80211_AUTHTYPE_FT:
  2029. auth_alg = WLAN_AUTH_FT;
  2030. break;
  2031. case NL80211_AUTHTYPE_NETWORK_EAP:
  2032. auth_alg = WLAN_AUTH_LEAP;
  2033. break;
  2034. default:
  2035. return -EOPNOTSUPP;
  2036. }
  2037. wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
  2038. if (!wk)
  2039. return -ENOMEM;
  2040. memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
  2041. if (req->ie && req->ie_len) {
  2042. memcpy(wk->ie, req->ie, req->ie_len);
  2043. wk->ie_len = req->ie_len;
  2044. }
  2045. if (req->key && req->key_len) {
  2046. wk->probe_auth.key_len = req->key_len;
  2047. wk->probe_auth.key_idx = req->key_idx;
  2048. memcpy(wk->probe_auth.key, req->key, req->key_len);
  2049. }
  2050. ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
  2051. memcpy(wk->probe_auth.ssid, ssid + 2, ssid[1]);
  2052. wk->probe_auth.ssid_len = ssid[1];
  2053. wk->probe_auth.algorithm = auth_alg;
  2054. wk->probe_auth.privacy = req->bss->capability & WLAN_CAPABILITY_PRIVACY;
  2055. /* if we already have a probe, don't probe again */
  2056. if (req->bss->proberesp_ies)
  2057. wk->type = IEEE80211_WORK_AUTH;
  2058. else
  2059. wk->type = IEEE80211_WORK_DIRECT_PROBE;
  2060. wk->chan = req->bss->channel;
  2061. wk->chan_type = NL80211_CHAN_NO_HT;
  2062. wk->sdata = sdata;
  2063. wk->done = ieee80211_probe_auth_done;
  2064. ieee80211_add_work(wk);
  2065. return 0;
  2066. }
  2067. /* create and insert a dummy station entry */
  2068. static int ieee80211_pre_assoc(struct ieee80211_sub_if_data *sdata,
  2069. u8 *bssid) {
  2070. struct sta_info *sta;
  2071. int err;
  2072. sta = sta_info_alloc(sdata, bssid, GFP_KERNEL);
  2073. if (!sta)
  2074. return -ENOMEM;
  2075. sta->dummy = true;
  2076. err = sta_info_insert(sta);
  2077. sta = NULL;
  2078. if (err) {
  2079. printk(KERN_DEBUG "%s: failed to insert Dummy STA entry for"
  2080. " the AP (error %d)\n", sdata->name, err);
  2081. return err;
  2082. }
  2083. return 0;
  2084. }
  2085. static enum work_done_result ieee80211_assoc_done(struct ieee80211_work *wk,
  2086. struct sk_buff *skb)
  2087. {
  2088. struct ieee80211_local *local = wk->sdata->local;
  2089. struct ieee80211_mgmt *mgmt;
  2090. struct ieee80211_rx_status *rx_status;
  2091. struct ieee802_11_elems elems;
  2092. struct cfg80211_bss *cbss = wk->assoc.bss;
  2093. u16 status;
  2094. if (!skb) {
  2095. sta_info_destroy_addr(wk->sdata, cbss->bssid);
  2096. cfg80211_send_assoc_timeout(wk->sdata->dev, wk->filter_ta);
  2097. goto destroy;
  2098. }
  2099. if (wk->type == IEEE80211_WORK_ASSOC_BEACON_WAIT) {
  2100. mutex_lock(&wk->sdata->u.mgd.mtx);
  2101. rx_status = (void *) skb->cb;
  2102. ieee802_11_parse_elems(skb->data + 24 + 12, skb->len - 24 - 12, &elems);
  2103. ieee80211_rx_bss_info(wk->sdata, (void *)skb->data, skb->len, rx_status,
  2104. &elems, true);
  2105. mutex_unlock(&wk->sdata->u.mgd.mtx);
  2106. wk->type = IEEE80211_WORK_ASSOC;
  2107. /* not really done yet */
  2108. return WORK_DONE_REQUEUE;
  2109. }
  2110. mgmt = (void *)skb->data;
  2111. status = le16_to_cpu(mgmt->u.assoc_resp.status_code);
  2112. if (status == WLAN_STATUS_SUCCESS) {
  2113. if (wk->assoc.synced)
  2114. drv_finish_tx_sync(local, wk->sdata, wk->filter_ta,
  2115. IEEE80211_TX_SYNC_ASSOC);
  2116. mutex_lock(&wk->sdata->u.mgd.mtx);
  2117. if (!ieee80211_assoc_success(wk, mgmt, skb->len)) {
  2118. mutex_unlock(&wk->sdata->u.mgd.mtx);
  2119. /* oops -- internal error -- send timeout for now */
  2120. sta_info_destroy_addr(wk->sdata, cbss->bssid);
  2121. cfg80211_send_assoc_timeout(wk->sdata->dev,
  2122. wk->filter_ta);
  2123. return WORK_DONE_DESTROY;
  2124. }
  2125. mutex_unlock(&wk->sdata->u.mgd.mtx);
  2126. } else {
  2127. /* assoc failed - destroy the dummy station entry */
  2128. sta_info_destroy_addr(wk->sdata, cbss->bssid);
  2129. }
  2130. cfg80211_send_rx_assoc(wk->sdata->dev, skb->data, skb->len);
  2131. destroy:
  2132. if (wk->assoc.synced)
  2133. drv_finish_tx_sync(local, wk->sdata, wk->filter_ta,
  2134. IEEE80211_TX_SYNC_ASSOC);
  2135. return WORK_DONE_DESTROY;
  2136. }
  2137. int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
  2138. struct cfg80211_assoc_request *req)
  2139. {
  2140. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2141. struct ieee80211_bss *bss = (void *)req->bss->priv;
  2142. struct ieee80211_work *wk;
  2143. const u8 *ssid;
  2144. int i, err;
  2145. mutex_lock(&ifmgd->mtx);
  2146. if (ifmgd->associated) {
  2147. if (!req->prev_bssid ||
  2148. memcmp(req->prev_bssid, ifmgd->associated->bssid,
  2149. ETH_ALEN)) {
  2150. /*
  2151. * We are already associated and the request was not a
  2152. * reassociation request from the current BSS, so
  2153. * reject it.
  2154. */
  2155. mutex_unlock(&ifmgd->mtx);
  2156. return -EALREADY;
  2157. }
  2158. /* Trying to reassociate - clear previous association state */
  2159. ieee80211_set_disassoc(sdata, true, false);
  2160. }
  2161. mutex_unlock(&ifmgd->mtx);
  2162. wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
  2163. if (!wk)
  2164. return -ENOMEM;
  2165. /*
  2166. * create a dummy station info entry in order
  2167. * to start accepting incoming EAPOL packets from the station
  2168. */
  2169. err = ieee80211_pre_assoc(sdata, req->bss->bssid);
  2170. if (err) {
  2171. kfree(wk);
  2172. return err;
  2173. }
  2174. ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
  2175. ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
  2176. ifmgd->beacon_crc_valid = false;
  2177. for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
  2178. if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
  2179. req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
  2180. req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
  2181. ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
  2182. if (req->ie && req->ie_len) {
  2183. memcpy(wk->ie, req->ie, req->ie_len);
  2184. wk->ie_len = req->ie_len;
  2185. } else
  2186. wk->ie_len = 0;
  2187. wk->assoc.bss = req->bss;
  2188. memcpy(wk->filter_ta, req->bss->bssid, ETH_ALEN);
  2189. /* new association always uses requested smps mode */
  2190. if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
  2191. if (ifmgd->powersave)
  2192. ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
  2193. else
  2194. ifmgd->ap_smps = IEEE80211_SMPS_OFF;
  2195. } else
  2196. ifmgd->ap_smps = ifmgd->req_smps;
  2197. wk->assoc.smps = ifmgd->ap_smps;
  2198. /*
  2199. * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
  2200. * We still associate in non-HT mode (11a/b/g) if any one of these
  2201. * ciphers is configured as pairwise.
  2202. * We can set this to true for non-11n hardware, that'll be checked
  2203. * separately along with the peer capabilities.
  2204. */
  2205. wk->assoc.use_11n = !(ifmgd->flags & IEEE80211_STA_DISABLE_11N);
  2206. wk->assoc.capability = req->bss->capability;
  2207. wk->assoc.wmm_used = bss->wmm_used;
  2208. wk->assoc.supp_rates = bss->supp_rates;
  2209. wk->assoc.supp_rates_len = bss->supp_rates_len;
  2210. wk->assoc.ht_information_ie =
  2211. ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_INFORMATION);
  2212. if (bss->wmm_used && bss->uapsd_supported &&
  2213. (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
  2214. wk->assoc.uapsd_used = true;
  2215. ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
  2216. } else {
  2217. wk->assoc.uapsd_used = false;
  2218. ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
  2219. }
  2220. ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
  2221. memcpy(wk->assoc.ssid, ssid + 2, ssid[1]);
  2222. wk->assoc.ssid_len = ssid[1];
  2223. if (req->prev_bssid)
  2224. memcpy(wk->assoc.prev_bssid, req->prev_bssid, ETH_ALEN);
  2225. wk->chan = req->bss->channel;
  2226. wk->chan_type = NL80211_CHAN_NO_HT;
  2227. wk->sdata = sdata;
  2228. wk->done = ieee80211_assoc_done;
  2229. if (!bss->dtim_period &&
  2230. sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
  2231. wk->type = IEEE80211_WORK_ASSOC_BEACON_WAIT;
  2232. else
  2233. wk->type = IEEE80211_WORK_ASSOC;
  2234. if (req->use_mfp) {
  2235. ifmgd->mfp = IEEE80211_MFP_REQUIRED;
  2236. ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
  2237. } else {
  2238. ifmgd->mfp = IEEE80211_MFP_DISABLED;
  2239. ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
  2240. }
  2241. if (req->crypto.control_port)
  2242. ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
  2243. else
  2244. ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
  2245. sdata->control_port_protocol = req->crypto.control_port_ethertype;
  2246. sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
  2247. ieee80211_add_work(wk);
  2248. return 0;
  2249. }
  2250. int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
  2251. struct cfg80211_deauth_request *req,
  2252. void *cookie)
  2253. {
  2254. struct ieee80211_local *local = sdata->local;
  2255. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2256. struct ieee80211_work *wk;
  2257. u8 bssid[ETH_ALEN];
  2258. bool assoc_bss = false;
  2259. mutex_lock(&ifmgd->mtx);
  2260. memcpy(bssid, req->bss->bssid, ETH_ALEN);
  2261. if (ifmgd->associated == req->bss) {
  2262. ieee80211_set_disassoc(sdata, false, true);
  2263. mutex_unlock(&ifmgd->mtx);
  2264. assoc_bss = true;
  2265. } else {
  2266. bool not_auth_yet = false;
  2267. mutex_unlock(&ifmgd->mtx);
  2268. mutex_lock(&local->mtx);
  2269. list_for_each_entry(wk, &local->work_list, list) {
  2270. if (wk->sdata != sdata)
  2271. continue;
  2272. if (wk->type != IEEE80211_WORK_DIRECT_PROBE &&
  2273. wk->type != IEEE80211_WORK_AUTH &&
  2274. wk->type != IEEE80211_WORK_ASSOC &&
  2275. wk->type != IEEE80211_WORK_ASSOC_BEACON_WAIT)
  2276. continue;
  2277. if (memcmp(req->bss->bssid, wk->filter_ta, ETH_ALEN))
  2278. continue;
  2279. not_auth_yet = wk->type == IEEE80211_WORK_DIRECT_PROBE;
  2280. list_del_rcu(&wk->list);
  2281. free_work(wk);
  2282. break;
  2283. }
  2284. mutex_unlock(&local->mtx);
  2285. /*
  2286. * If somebody requests authentication and we haven't
  2287. * sent out an auth frame yet there's no need to send
  2288. * out a deauth frame either. If the state was PROBE,
  2289. * then this is the case. If it's AUTH we have sent a
  2290. * frame, and if it's IDLE we have completed the auth
  2291. * process already.
  2292. */
  2293. if (not_auth_yet) {
  2294. __cfg80211_auth_canceled(sdata->dev, bssid);
  2295. return 0;
  2296. }
  2297. }
  2298. printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
  2299. sdata->name, bssid, req->reason_code);
  2300. ieee80211_send_deauth_disassoc(sdata, bssid, IEEE80211_STYPE_DEAUTH,
  2301. req->reason_code, cookie,
  2302. !req->local_state_change);
  2303. if (assoc_bss)
  2304. sta_info_flush(sdata->local, sdata);
  2305. mutex_lock(&sdata->local->mtx);
  2306. ieee80211_recalc_idle(sdata->local);
  2307. mutex_unlock(&sdata->local->mtx);
  2308. return 0;
  2309. }
  2310. int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
  2311. struct cfg80211_disassoc_request *req,
  2312. void *cookie)
  2313. {
  2314. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2315. u8 bssid[ETH_ALEN];
  2316. mutex_lock(&ifmgd->mtx);
  2317. /*
  2318. * cfg80211 should catch this ... but it's racy since
  2319. * we can receive a disassoc frame, process it, hand it
  2320. * to cfg80211 while that's in a locked section already
  2321. * trying to tell us that the user wants to disconnect.
  2322. */
  2323. if (ifmgd->associated != req->bss) {
  2324. mutex_unlock(&ifmgd->mtx);
  2325. return -ENOLINK;
  2326. }
  2327. printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
  2328. sdata->name, req->bss->bssid, req->reason_code);
  2329. memcpy(bssid, req->bss->bssid, ETH_ALEN);
  2330. ieee80211_set_disassoc(sdata, false, true);
  2331. mutex_unlock(&ifmgd->mtx);
  2332. ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
  2333. IEEE80211_STYPE_DISASSOC, req->reason_code,
  2334. cookie, !req->local_state_change);
  2335. sta_info_flush(sdata->local, sdata);
  2336. mutex_lock(&sdata->local->mtx);
  2337. ieee80211_recalc_idle(sdata->local);
  2338. mutex_unlock(&sdata->local->mtx);
  2339. return 0;
  2340. }
  2341. void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
  2342. enum nl80211_cqm_rssi_threshold_event rssi_event,
  2343. gfp_t gfp)
  2344. {
  2345. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  2346. trace_api_cqm_rssi_notify(sdata, rssi_event);
  2347. cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
  2348. }
  2349. EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
  2350. unsigned char ieee80211_get_operstate(struct ieee80211_vif *vif)
  2351. {
  2352. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  2353. return sdata->dev->operstate;
  2354. }
  2355. EXPORT_SYMBOL(ieee80211_get_operstate);