mlme.c 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  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_params.h>
  20. #include <linux/crc32.h>
  21. #include <net/mac80211.h>
  22. #include <asm/unaligned.h>
  23. #include "ieee80211_i.h"
  24. #include "driver-ops.h"
  25. #include "rate.h"
  26. #include "led.h"
  27. #define IEEE80211_ASSOC_SCANS_MAX_TRIES 2
  28. #define IEEE80211_AUTH_TIMEOUT (HZ / 5)
  29. #define IEEE80211_AUTH_MAX_TRIES 3
  30. #define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
  31. #define IEEE80211_ASSOC_MAX_TRIES 3
  32. #define IEEE80211_MONITORING_INTERVAL (2 * HZ)
  33. #define IEEE80211_PROBE_WAIT (HZ / 20)
  34. #define IEEE80211_PROBE_IDLE_TIME (60 * HZ)
  35. #define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
  36. #define TMR_RUNNING_TIMER 0
  37. #define TMR_RUNNING_CHANSW 1
  38. /* utils */
  39. static int ecw2cw(int ecw)
  40. {
  41. return (1 << ecw) - 1;
  42. }
  43. static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie)
  44. {
  45. u8 *end, *pos;
  46. pos = bss->cbss.information_elements;
  47. if (pos == NULL)
  48. return NULL;
  49. end = pos + bss->cbss.len_information_elements;
  50. while (pos + 1 < end) {
  51. if (pos + 2 + pos[1] > end)
  52. break;
  53. if (pos[0] == ie)
  54. return pos;
  55. pos += 2 + pos[1];
  56. }
  57. return NULL;
  58. }
  59. static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
  60. struct ieee80211_supported_band *sband,
  61. u32 *rates)
  62. {
  63. int i, j, count;
  64. *rates = 0;
  65. count = 0;
  66. for (i = 0; i < bss->supp_rates_len; i++) {
  67. int rate = (bss->supp_rates[i] & 0x7F) * 5;
  68. for (j = 0; j < sband->n_bitrates; j++)
  69. if (sband->bitrates[j].bitrate == rate) {
  70. *rates |= BIT(j);
  71. count++;
  72. break;
  73. }
  74. }
  75. return count;
  76. }
  77. /*
  78. * ieee80211_enable_ht should be called only after the operating band
  79. * has been determined as ht configuration depends on the hw's
  80. * HT abilities for a specific band.
  81. */
  82. static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
  83. struct ieee80211_ht_info *hti,
  84. u16 ap_ht_cap_flags)
  85. {
  86. struct ieee80211_local *local = sdata->local;
  87. struct ieee80211_supported_band *sband;
  88. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  89. struct sta_info *sta;
  90. u32 changed = 0;
  91. u16 ht_opmode;
  92. bool enable_ht = true, ht_changed;
  93. enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
  94. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  95. /* HT is not supported */
  96. if (!sband->ht_cap.ht_supported)
  97. enable_ht = false;
  98. /* check that channel matches the right operating channel */
  99. if (local->hw.conf.channel->center_freq !=
  100. ieee80211_channel_to_frequency(hti->control_chan))
  101. enable_ht = false;
  102. if (enable_ht) {
  103. channel_type = NL80211_CHAN_HT20;
  104. if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
  105. (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
  106. (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
  107. switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
  108. case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
  109. if (!(local->hw.conf.channel->flags &
  110. IEEE80211_CHAN_NO_HT40PLUS))
  111. channel_type = NL80211_CHAN_HT40PLUS;
  112. break;
  113. case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
  114. if (!(local->hw.conf.channel->flags &
  115. IEEE80211_CHAN_NO_HT40MINUS))
  116. channel_type = NL80211_CHAN_HT40MINUS;
  117. break;
  118. }
  119. }
  120. }
  121. ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
  122. channel_type != local->hw.conf.channel_type;
  123. local->oper_channel_type = channel_type;
  124. if (ht_changed) {
  125. /* channel_type change automatically detected */
  126. ieee80211_hw_config(local, 0);
  127. rcu_read_lock();
  128. sta = sta_info_get(local, ifmgd->bssid);
  129. if (sta)
  130. rate_control_rate_update(local, sband, sta,
  131. IEEE80211_RC_HT_CHANGED);
  132. rcu_read_unlock();
  133. }
  134. /* disable HT */
  135. if (!enable_ht)
  136. return 0;
  137. ht_opmode = le16_to_cpu(hti->operation_mode);
  138. /* if bss configuration changed store the new one */
  139. if (!sdata->ht_opmode_valid ||
  140. sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
  141. changed |= BSS_CHANGED_HT;
  142. sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
  143. sdata->ht_opmode_valid = true;
  144. }
  145. return changed;
  146. }
  147. /* frame sending functions */
  148. static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
  149. {
  150. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  151. struct ieee80211_local *local = sdata->local;
  152. struct sk_buff *skb;
  153. struct ieee80211_mgmt *mgmt;
  154. u8 *pos, *ies, *ht_ie;
  155. int i, len, count, rates_len, supp_rates_len;
  156. u16 capab;
  157. struct ieee80211_bss *bss;
  158. int wmm = 0;
  159. struct ieee80211_supported_band *sband;
  160. u32 rates = 0;
  161. skb = dev_alloc_skb(local->hw.extra_tx_headroom +
  162. sizeof(*mgmt) + 200 + ifmgd->extra_ie_len +
  163. ifmgd->ssid_len);
  164. if (!skb) {
  165. printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
  166. "frame\n", sdata->dev->name);
  167. return;
  168. }
  169. skb_reserve(skb, local->hw.extra_tx_headroom);
  170. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  171. capab = ifmgd->capab;
  172. if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
  173. if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
  174. capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
  175. if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
  176. capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
  177. }
  178. bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
  179. local->hw.conf.channel->center_freq,
  180. ifmgd->ssid, ifmgd->ssid_len);
  181. if (bss) {
  182. if (bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
  183. capab |= WLAN_CAPABILITY_PRIVACY;
  184. if (bss->wmm_used)
  185. wmm = 1;
  186. /* get all rates supported by the device and the AP as
  187. * some APs don't like getting a superset of their rates
  188. * in the association request (e.g. D-Link DAP 1353 in
  189. * b-only mode) */
  190. rates_len = ieee80211_compatible_rates(bss, sband, &rates);
  191. if ((bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
  192. (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
  193. capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
  194. ieee80211_rx_bss_put(local, bss);
  195. } else {
  196. rates = ~0;
  197. rates_len = sband->n_bitrates;
  198. }
  199. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  200. memset(mgmt, 0, 24);
  201. memcpy(mgmt->da, ifmgd->bssid, ETH_ALEN);
  202. memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
  203. memcpy(mgmt->bssid, ifmgd->bssid, ETH_ALEN);
  204. if (ifmgd->flags & IEEE80211_STA_PREV_BSSID_SET) {
  205. skb_put(skb, 10);
  206. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  207. IEEE80211_STYPE_REASSOC_REQ);
  208. mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
  209. mgmt->u.reassoc_req.listen_interval =
  210. cpu_to_le16(local->hw.conf.listen_interval);
  211. memcpy(mgmt->u.reassoc_req.current_ap, ifmgd->prev_bssid,
  212. ETH_ALEN);
  213. } else {
  214. skb_put(skb, 4);
  215. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  216. IEEE80211_STYPE_ASSOC_REQ);
  217. mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
  218. mgmt->u.assoc_req.listen_interval =
  219. cpu_to_le16(local->hw.conf.listen_interval);
  220. }
  221. /* SSID */
  222. ies = pos = skb_put(skb, 2 + ifmgd->ssid_len);
  223. *pos++ = WLAN_EID_SSID;
  224. *pos++ = ifmgd->ssid_len;
  225. memcpy(pos, ifmgd->ssid, ifmgd->ssid_len);
  226. /* add all rates which were marked to be used above */
  227. supp_rates_len = rates_len;
  228. if (supp_rates_len > 8)
  229. supp_rates_len = 8;
  230. len = sband->n_bitrates;
  231. pos = skb_put(skb, supp_rates_len + 2);
  232. *pos++ = WLAN_EID_SUPP_RATES;
  233. *pos++ = supp_rates_len;
  234. count = 0;
  235. for (i = 0; i < sband->n_bitrates; i++) {
  236. if (BIT(i) & rates) {
  237. int rate = sband->bitrates[i].bitrate;
  238. *pos++ = (u8) (rate / 5);
  239. if (++count == 8)
  240. break;
  241. }
  242. }
  243. if (rates_len > count) {
  244. pos = skb_put(skb, rates_len - count + 2);
  245. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  246. *pos++ = rates_len - count;
  247. for (i++; i < sband->n_bitrates; i++) {
  248. if (BIT(i) & rates) {
  249. int rate = sband->bitrates[i].bitrate;
  250. *pos++ = (u8) (rate / 5);
  251. }
  252. }
  253. }
  254. if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
  255. /* 1. power capabilities */
  256. pos = skb_put(skb, 4);
  257. *pos++ = WLAN_EID_PWR_CAPABILITY;
  258. *pos++ = 2;
  259. *pos++ = 0; /* min tx power */
  260. *pos++ = local->hw.conf.channel->max_power; /* max tx power */
  261. /* 2. supported channels */
  262. /* TODO: get this in reg domain format */
  263. pos = skb_put(skb, 2 * sband->n_channels + 2);
  264. *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
  265. *pos++ = 2 * sband->n_channels;
  266. for (i = 0; i < sband->n_channels; i++) {
  267. *pos++ = ieee80211_frequency_to_channel(
  268. sband->channels[i].center_freq);
  269. *pos++ = 1; /* one channel in the subband*/
  270. }
  271. }
  272. if (ifmgd->extra_ie) {
  273. pos = skb_put(skb, ifmgd->extra_ie_len);
  274. memcpy(pos, ifmgd->extra_ie, ifmgd->extra_ie_len);
  275. }
  276. if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
  277. pos = skb_put(skb, 9);
  278. *pos++ = WLAN_EID_VENDOR_SPECIFIC;
  279. *pos++ = 7; /* len */
  280. *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
  281. *pos++ = 0x50;
  282. *pos++ = 0xf2;
  283. *pos++ = 2; /* WME */
  284. *pos++ = 0; /* WME info */
  285. *pos++ = 1; /* WME ver */
  286. *pos++ = 0;
  287. }
  288. /* wmm support is a must to HT */
  289. /*
  290. * IEEE802.11n does not allow TKIP/WEP as pairwise
  291. * ciphers in HT mode. We still associate in non-ht
  292. * mode (11a/b/g) if any one of these ciphers is
  293. * configured as pairwise.
  294. */
  295. if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
  296. sband->ht_cap.ht_supported &&
  297. (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) &&
  298. ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
  299. (!(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))) {
  300. struct ieee80211_ht_info *ht_info =
  301. (struct ieee80211_ht_info *)(ht_ie + 2);
  302. u16 cap = sband->ht_cap.cap;
  303. __le16 tmp;
  304. u32 flags = local->hw.conf.channel->flags;
  305. switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
  306. case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
  307. if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
  308. cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  309. cap &= ~IEEE80211_HT_CAP_SGI_40;
  310. }
  311. break;
  312. case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
  313. if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
  314. cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
  315. cap &= ~IEEE80211_HT_CAP_SGI_40;
  316. }
  317. break;
  318. }
  319. tmp = cpu_to_le16(cap);
  320. pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
  321. *pos++ = WLAN_EID_HT_CAPABILITY;
  322. *pos++ = sizeof(struct ieee80211_ht_cap);
  323. memset(pos, 0, sizeof(struct ieee80211_ht_cap));
  324. memcpy(pos, &tmp, sizeof(u16));
  325. pos += sizeof(u16);
  326. /* TODO: needs a define here for << 2 */
  327. *pos++ = sband->ht_cap.ampdu_factor |
  328. (sband->ht_cap.ampdu_density << 2);
  329. memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
  330. }
  331. kfree(ifmgd->assocreq_ies);
  332. ifmgd->assocreq_ies_len = (skb->data + skb->len) - ies;
  333. ifmgd->assocreq_ies = kmalloc(ifmgd->assocreq_ies_len, GFP_KERNEL);
  334. if (ifmgd->assocreq_ies)
  335. memcpy(ifmgd->assocreq_ies, ies, ifmgd->assocreq_ies_len);
  336. ieee80211_tx_skb(sdata, skb, 0);
  337. }
  338. static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
  339. u16 stype, u16 reason)
  340. {
  341. struct ieee80211_local *local = sdata->local;
  342. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  343. struct sk_buff *skb;
  344. struct ieee80211_mgmt *mgmt;
  345. skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
  346. if (!skb) {
  347. printk(KERN_DEBUG "%s: failed to allocate buffer for "
  348. "deauth/disassoc frame\n", sdata->dev->name);
  349. return;
  350. }
  351. skb_reserve(skb, local->hw.extra_tx_headroom);
  352. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
  353. memset(mgmt, 0, 24);
  354. memcpy(mgmt->da, ifmgd->bssid, ETH_ALEN);
  355. memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
  356. memcpy(mgmt->bssid, ifmgd->bssid, ETH_ALEN);
  357. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
  358. skb_put(skb, 2);
  359. /* u.deauth.reason_code == u.disassoc.reason_code */
  360. mgmt->u.deauth.reason_code = cpu_to_le16(reason);
  361. if (stype == IEEE80211_STYPE_DEAUTH)
  362. cfg80211_send_deauth(sdata->dev, (u8 *) mgmt, skb->len);
  363. else
  364. cfg80211_send_disassoc(sdata->dev, (u8 *) mgmt, skb->len);
  365. ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
  366. }
  367. void ieee80211_send_pspoll(struct ieee80211_local *local,
  368. struct ieee80211_sub_if_data *sdata)
  369. {
  370. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  371. struct ieee80211_pspoll *pspoll;
  372. struct sk_buff *skb;
  373. u16 fc;
  374. skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
  375. if (!skb) {
  376. printk(KERN_DEBUG "%s: failed to allocate buffer for "
  377. "pspoll frame\n", sdata->dev->name);
  378. return;
  379. }
  380. skb_reserve(skb, local->hw.extra_tx_headroom);
  381. pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
  382. memset(pspoll, 0, sizeof(*pspoll));
  383. fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
  384. pspoll->frame_control = cpu_to_le16(fc);
  385. pspoll->aid = cpu_to_le16(ifmgd->aid);
  386. /* aid in PS-Poll has its two MSBs each set to 1 */
  387. pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
  388. memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
  389. memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
  390. ieee80211_tx_skb(sdata, skb, 0);
  391. }
  392. void ieee80211_send_nullfunc(struct ieee80211_local *local,
  393. struct ieee80211_sub_if_data *sdata,
  394. int powersave)
  395. {
  396. struct sk_buff *skb;
  397. struct ieee80211_hdr *nullfunc;
  398. __le16 fc;
  399. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  400. return;
  401. skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
  402. if (!skb) {
  403. printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
  404. "frame\n", sdata->dev->name);
  405. return;
  406. }
  407. skb_reserve(skb, local->hw.extra_tx_headroom);
  408. nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
  409. memset(nullfunc, 0, 24);
  410. fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
  411. IEEE80211_FCTL_TODS);
  412. if (powersave)
  413. fc |= cpu_to_le16(IEEE80211_FCTL_PM);
  414. nullfunc->frame_control = fc;
  415. memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
  416. memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
  417. memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
  418. ieee80211_tx_skb(sdata, skb, 0);
  419. }
  420. /* spectrum management related things */
  421. static void ieee80211_chswitch_work(struct work_struct *work)
  422. {
  423. struct ieee80211_sub_if_data *sdata =
  424. container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
  425. struct ieee80211_bss *bss;
  426. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  427. if (!netif_running(sdata->dev))
  428. return;
  429. bss = ieee80211_rx_bss_get(sdata->local, ifmgd->bssid,
  430. sdata->local->hw.conf.channel->center_freq,
  431. ifmgd->ssid, ifmgd->ssid_len);
  432. if (!bss)
  433. goto exit;
  434. sdata->local->oper_channel = sdata->local->csa_channel;
  435. /* XXX: shouldn't really modify cfg80211-owned data! */
  436. if (!ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL))
  437. bss->cbss.channel = sdata->local->oper_channel;
  438. ieee80211_rx_bss_put(sdata->local, bss);
  439. exit:
  440. ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
  441. ieee80211_wake_queues_by_reason(&sdata->local->hw,
  442. IEEE80211_QUEUE_STOP_REASON_CSA);
  443. }
  444. static void ieee80211_chswitch_timer(unsigned long data)
  445. {
  446. struct ieee80211_sub_if_data *sdata =
  447. (struct ieee80211_sub_if_data *) data;
  448. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  449. if (sdata->local->quiescing) {
  450. set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
  451. return;
  452. }
  453. queue_work(sdata->local->hw.workqueue, &ifmgd->chswitch_work);
  454. }
  455. void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
  456. struct ieee80211_channel_sw_ie *sw_elem,
  457. struct ieee80211_bss *bss)
  458. {
  459. struct ieee80211_channel *new_ch;
  460. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  461. int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
  462. if (ifmgd->state != IEEE80211_STA_MLME_ASSOCIATED)
  463. return;
  464. if (sdata->local->sw_scanning || sdata->local->hw_scanning)
  465. return;
  466. /* Disregard subsequent beacons if we are already running a timer
  467. processing a CSA */
  468. if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
  469. return;
  470. new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
  471. if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
  472. return;
  473. sdata->local->csa_channel = new_ch;
  474. if (sw_elem->count <= 1) {
  475. queue_work(sdata->local->hw.workqueue, &ifmgd->chswitch_work);
  476. } else {
  477. ieee80211_stop_queues_by_reason(&sdata->local->hw,
  478. IEEE80211_QUEUE_STOP_REASON_CSA);
  479. ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
  480. mod_timer(&ifmgd->chswitch_timer,
  481. jiffies +
  482. msecs_to_jiffies(sw_elem->count *
  483. bss->cbss.beacon_interval));
  484. }
  485. }
  486. static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
  487. u16 capab_info, u8 *pwr_constr_elem,
  488. u8 pwr_constr_elem_len)
  489. {
  490. struct ieee80211_conf *conf = &sdata->local->hw.conf;
  491. if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
  492. return;
  493. /* Power constraint IE length should be 1 octet */
  494. if (pwr_constr_elem_len != 1)
  495. return;
  496. if ((*pwr_constr_elem <= conf->channel->max_power) &&
  497. (*pwr_constr_elem != sdata->local->power_constr_level)) {
  498. sdata->local->power_constr_level = *pwr_constr_elem;
  499. ieee80211_hw_config(sdata->local, 0);
  500. }
  501. }
  502. /* powersave */
  503. static void ieee80211_enable_ps(struct ieee80211_local *local,
  504. struct ieee80211_sub_if_data *sdata)
  505. {
  506. struct ieee80211_conf *conf = &local->hw.conf;
  507. /*
  508. * If we are scanning right now then the parameters will
  509. * take effect when scan finishes.
  510. */
  511. if (local->hw_scanning || local->sw_scanning)
  512. return;
  513. if (conf->dynamic_ps_timeout > 0 &&
  514. !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
  515. mod_timer(&local->dynamic_ps_timer, jiffies +
  516. msecs_to_jiffies(conf->dynamic_ps_timeout));
  517. } else {
  518. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  519. ieee80211_send_nullfunc(local, sdata, 1);
  520. conf->flags |= IEEE80211_CONF_PS;
  521. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  522. }
  523. }
  524. static void ieee80211_change_ps(struct ieee80211_local *local)
  525. {
  526. struct ieee80211_conf *conf = &local->hw.conf;
  527. if (local->ps_sdata) {
  528. if (!(local->ps_sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED))
  529. return;
  530. ieee80211_enable_ps(local, local->ps_sdata);
  531. } else if (conf->flags & IEEE80211_CONF_PS) {
  532. conf->flags &= ~IEEE80211_CONF_PS;
  533. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  534. del_timer_sync(&local->dynamic_ps_timer);
  535. cancel_work_sync(&local->dynamic_ps_enable_work);
  536. }
  537. }
  538. /* need to hold RTNL or interface lock */
  539. void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
  540. {
  541. struct ieee80211_sub_if_data *sdata, *found = NULL;
  542. int count = 0;
  543. if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
  544. local->ps_sdata = NULL;
  545. return;
  546. }
  547. list_for_each_entry(sdata, &local->interfaces, list) {
  548. if (!netif_running(sdata->dev))
  549. continue;
  550. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  551. continue;
  552. found = sdata;
  553. count++;
  554. }
  555. if (count == 1 && found->u.mgd.powersave) {
  556. s32 beaconint_us;
  557. if (latency < 0)
  558. latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
  559. beaconint_us = ieee80211_tu_to_usec(
  560. found->vif.bss_conf.beacon_int);
  561. if (beaconint_us > latency) {
  562. local->ps_sdata = NULL;
  563. } else {
  564. u8 dtimper = found->vif.bss_conf.dtim_period;
  565. int maxslp = 1;
  566. if (dtimper > 1)
  567. maxslp = min_t(int, dtimper,
  568. latency / beaconint_us);
  569. local->hw.conf.max_sleep_period = maxslp;
  570. local->ps_sdata = found;
  571. }
  572. } else {
  573. local->ps_sdata = NULL;
  574. }
  575. ieee80211_change_ps(local);
  576. }
  577. void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
  578. {
  579. struct ieee80211_local *local =
  580. container_of(work, struct ieee80211_local,
  581. dynamic_ps_disable_work);
  582. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  583. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  584. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  585. }
  586. ieee80211_wake_queues_by_reason(&local->hw,
  587. IEEE80211_QUEUE_STOP_REASON_PS);
  588. }
  589. void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
  590. {
  591. struct ieee80211_local *local =
  592. container_of(work, struct ieee80211_local,
  593. dynamic_ps_enable_work);
  594. struct ieee80211_sub_if_data *sdata = local->ps_sdata;
  595. /* can only happen when PS was just disabled anyway */
  596. if (!sdata)
  597. return;
  598. if (local->hw.conf.flags & IEEE80211_CONF_PS)
  599. return;
  600. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  601. ieee80211_send_nullfunc(local, sdata, 1);
  602. local->hw.conf.flags |= IEEE80211_CONF_PS;
  603. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  604. }
  605. void ieee80211_dynamic_ps_timer(unsigned long data)
  606. {
  607. struct ieee80211_local *local = (void *) data;
  608. if (local->quiescing)
  609. return;
  610. queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
  611. }
  612. /* MLME */
  613. static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
  614. struct ieee80211_if_managed *ifmgd,
  615. u8 *wmm_param, size_t wmm_param_len)
  616. {
  617. struct ieee80211_tx_queue_params params;
  618. size_t left;
  619. int count;
  620. u8 *pos;
  621. if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
  622. return;
  623. if (!wmm_param)
  624. return;
  625. if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
  626. return;
  627. count = wmm_param[6] & 0x0f;
  628. if (count == ifmgd->wmm_last_param_set)
  629. return;
  630. ifmgd->wmm_last_param_set = count;
  631. pos = wmm_param + 8;
  632. left = wmm_param_len - 8;
  633. memset(&params, 0, sizeof(params));
  634. local->wmm_acm = 0;
  635. for (; left >= 4; left -= 4, pos += 4) {
  636. int aci = (pos[0] >> 5) & 0x03;
  637. int acm = (pos[0] >> 4) & 0x01;
  638. int queue;
  639. switch (aci) {
  640. case 1: /* AC_BK */
  641. queue = 3;
  642. if (acm)
  643. local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
  644. break;
  645. case 2: /* AC_VI */
  646. queue = 1;
  647. if (acm)
  648. local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
  649. break;
  650. case 3: /* AC_VO */
  651. queue = 0;
  652. if (acm)
  653. local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
  654. break;
  655. case 0: /* AC_BE */
  656. default:
  657. queue = 2;
  658. if (acm)
  659. local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
  660. break;
  661. }
  662. params.aifs = pos[0] & 0x0f;
  663. params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
  664. params.cw_min = ecw2cw(pos[1] & 0x0f);
  665. params.txop = get_unaligned_le16(pos + 2);
  666. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  667. printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
  668. "cWmin=%d cWmax=%d txop=%d\n",
  669. local->mdev->name, queue, aci, acm, params.aifs, params.cw_min,
  670. params.cw_max, params.txop);
  671. #endif
  672. if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
  673. printk(KERN_DEBUG "%s: failed to set TX queue "
  674. "parameters for queue %d\n", local->mdev->name,
  675. queue);
  676. }
  677. }
  678. static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
  679. u16 capab, bool erp_valid, u8 erp)
  680. {
  681. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  682. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  683. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  684. #endif
  685. u32 changed = 0;
  686. bool use_protection;
  687. bool use_short_preamble;
  688. bool use_short_slot;
  689. if (erp_valid) {
  690. use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
  691. use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
  692. } else {
  693. use_protection = false;
  694. use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
  695. }
  696. use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
  697. if (use_protection != bss_conf->use_cts_prot) {
  698. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  699. if (net_ratelimit()) {
  700. printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
  701. sdata->dev->name,
  702. use_protection ? "enabled" : "disabled",
  703. ifmgd->bssid);
  704. }
  705. #endif
  706. bss_conf->use_cts_prot = use_protection;
  707. changed |= BSS_CHANGED_ERP_CTS_PROT;
  708. }
  709. if (use_short_preamble != bss_conf->use_short_preamble) {
  710. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  711. if (net_ratelimit()) {
  712. printk(KERN_DEBUG "%s: switched to %s barker preamble"
  713. " (BSSID=%pM)\n",
  714. sdata->dev->name,
  715. use_short_preamble ? "short" : "long",
  716. ifmgd->bssid);
  717. }
  718. #endif
  719. bss_conf->use_short_preamble = use_short_preamble;
  720. changed |= BSS_CHANGED_ERP_PREAMBLE;
  721. }
  722. if (use_short_slot != bss_conf->use_short_slot) {
  723. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  724. if (net_ratelimit()) {
  725. printk(KERN_DEBUG "%s: switched to %s slot time"
  726. " (BSSID=%pM)\n",
  727. sdata->dev->name,
  728. use_short_slot ? "short" : "long",
  729. ifmgd->bssid);
  730. }
  731. #endif
  732. bss_conf->use_short_slot = use_short_slot;
  733. changed |= BSS_CHANGED_ERP_SLOT;
  734. }
  735. return changed;
  736. }
  737. static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata)
  738. {
  739. union iwreq_data wrqu;
  740. memset(&wrqu, 0, sizeof(wrqu));
  741. if (sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED)
  742. memcpy(wrqu.ap_addr.sa_data, sdata->u.mgd.bssid, ETH_ALEN);
  743. wrqu.ap_addr.sa_family = ARPHRD_ETHER;
  744. wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
  745. }
  746. static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata)
  747. {
  748. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  749. char *buf;
  750. size_t len;
  751. int i;
  752. union iwreq_data wrqu;
  753. if (!ifmgd->assocreq_ies && !ifmgd->assocresp_ies)
  754. return;
  755. buf = kmalloc(50 + 2 * (ifmgd->assocreq_ies_len +
  756. ifmgd->assocresp_ies_len), GFP_KERNEL);
  757. if (!buf)
  758. return;
  759. len = sprintf(buf, "ASSOCINFO(");
  760. if (ifmgd->assocreq_ies) {
  761. len += sprintf(buf + len, "ReqIEs=");
  762. for (i = 0; i < ifmgd->assocreq_ies_len; i++) {
  763. len += sprintf(buf + len, "%02x",
  764. ifmgd->assocreq_ies[i]);
  765. }
  766. }
  767. if (ifmgd->assocresp_ies) {
  768. if (ifmgd->assocreq_ies)
  769. len += sprintf(buf + len, " ");
  770. len += sprintf(buf + len, "RespIEs=");
  771. for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
  772. len += sprintf(buf + len, "%02x",
  773. ifmgd->assocresp_ies[i]);
  774. }
  775. }
  776. len += sprintf(buf + len, ")");
  777. if (len > IW_CUSTOM_MAX) {
  778. len = sprintf(buf, "ASSOCRESPIE=");
  779. for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
  780. len += sprintf(buf + len, "%02x",
  781. ifmgd->assocresp_ies[i]);
  782. }
  783. }
  784. if (len <= IW_CUSTOM_MAX) {
  785. memset(&wrqu, 0, sizeof(wrqu));
  786. wrqu.data.length = len;
  787. wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
  788. }
  789. kfree(buf);
  790. }
  791. static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
  792. u32 bss_info_changed)
  793. {
  794. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  795. struct ieee80211_local *local = sdata->local;
  796. struct ieee80211_conf *conf = &local_to_hw(local)->conf;
  797. struct ieee80211_bss *bss;
  798. bss_info_changed |= BSS_CHANGED_ASSOC;
  799. ifmgd->flags |= IEEE80211_STA_ASSOCIATED;
  800. bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
  801. conf->channel->center_freq,
  802. ifmgd->ssid, ifmgd->ssid_len);
  803. if (bss) {
  804. /* set timing information */
  805. sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
  806. sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
  807. sdata->vif.bss_conf.dtim_period = bss->dtim_period;
  808. bss_info_changed |= BSS_CHANGED_BEACON_INT;
  809. bss_info_changed |= ieee80211_handle_bss_capability(sdata,
  810. bss->cbss.capability, bss->has_erp_value, bss->erp_value);
  811. cfg80211_hold_bss(&bss->cbss);
  812. ieee80211_rx_bss_put(local, bss);
  813. }
  814. ifmgd->flags |= IEEE80211_STA_PREV_BSSID_SET;
  815. memcpy(ifmgd->prev_bssid, sdata->u.mgd.bssid, ETH_ALEN);
  816. ieee80211_sta_send_associnfo(sdata);
  817. ifmgd->last_probe = jiffies;
  818. ieee80211_led_assoc(local, 1);
  819. sdata->vif.bss_conf.assoc = 1;
  820. /*
  821. * For now just always ask the driver to update the basic rateset
  822. * when we have associated, we aren't checking whether it actually
  823. * changed or not.
  824. */
  825. bss_info_changed |= BSS_CHANGED_BASIC_RATES;
  826. /* And the BSSID changed - we're associated now */
  827. bss_info_changed |= BSS_CHANGED_BSSID;
  828. ieee80211_bss_info_change_notify(sdata, bss_info_changed);
  829. /* will be same as sdata */
  830. if (local->ps_sdata) {
  831. mutex_lock(&local->iflist_mtx);
  832. ieee80211_recalc_ps(local, -1);
  833. mutex_unlock(&local->iflist_mtx);
  834. }
  835. netif_tx_start_all_queues(sdata->dev);
  836. netif_carrier_on(sdata->dev);
  837. ieee80211_sta_send_apinfo(sdata);
  838. }
  839. static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata)
  840. {
  841. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  842. struct ieee80211_local *local = sdata->local;
  843. ifmgd->direct_probe_tries++;
  844. if (ifmgd->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
  845. printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
  846. sdata->dev->name, ifmgd->bssid);
  847. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  848. ieee80211_recalc_idle(local);
  849. cfg80211_send_auth_timeout(sdata->dev, ifmgd->bssid);
  850. /*
  851. * Most likely AP is not in the range so remove the
  852. * bss information associated to the AP
  853. */
  854. ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
  855. sdata->local->hw.conf.channel->center_freq,
  856. ifmgd->ssid, ifmgd->ssid_len);
  857. /*
  858. * We might have a pending scan which had no chance to run yet
  859. * due to state == IEEE80211_STA_MLME_DIRECT_PROBE.
  860. * Hence, queue the STAs work again
  861. */
  862. queue_work(local->hw.workqueue, &ifmgd->work);
  863. return;
  864. }
  865. printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
  866. sdata->dev->name, ifmgd->bssid,
  867. ifmgd->direct_probe_tries);
  868. ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
  869. /* Direct probe is sent to broadcast address as some APs
  870. * will not answer to direct packet in unassociated state.
  871. */
  872. ieee80211_send_probe_req(sdata, NULL,
  873. ifmgd->ssid, ifmgd->ssid_len, NULL, 0);
  874. mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
  875. }
  876. static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata)
  877. {
  878. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  879. struct ieee80211_local *local = sdata->local;
  880. u8 *ies;
  881. size_t ies_len;
  882. ifmgd->auth_tries++;
  883. if (ifmgd->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
  884. printk(KERN_DEBUG "%s: authentication with AP %pM"
  885. " timed out\n",
  886. sdata->dev->name, ifmgd->bssid);
  887. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  888. ieee80211_recalc_idle(local);
  889. cfg80211_send_auth_timeout(sdata->dev, ifmgd->bssid);
  890. ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
  891. sdata->local->hw.conf.channel->center_freq,
  892. ifmgd->ssid, ifmgd->ssid_len);
  893. /*
  894. * We might have a pending scan which had no chance to run yet
  895. * due to state == IEEE80211_STA_MLME_AUTHENTICATE.
  896. * Hence, queue the STAs work again
  897. */
  898. queue_work(local->hw.workqueue, &ifmgd->work);
  899. return;
  900. }
  901. ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
  902. printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
  903. sdata->dev->name, ifmgd->bssid);
  904. if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
  905. ies = ifmgd->sme_auth_ie;
  906. ies_len = ifmgd->sme_auth_ie_len;
  907. } else {
  908. ies = NULL;
  909. ies_len = 0;
  910. }
  911. ieee80211_send_auth(sdata, 1, ifmgd->auth_alg, ies, ies_len,
  912. ifmgd->bssid, 0);
  913. ifmgd->auth_transaction = 2;
  914. mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
  915. }
  916. /*
  917. * The disassoc 'reason' argument can be either our own reason
  918. * if self disconnected or a reason code from the AP.
  919. */
  920. static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
  921. bool deauth, bool self_disconnected,
  922. u16 reason)
  923. {
  924. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  925. struct ieee80211_local *local = sdata->local;
  926. struct ieee80211_conf *conf = &local_to_hw(local)->conf;
  927. struct ieee80211_bss *bss;
  928. struct sta_info *sta;
  929. u32 changed = 0, config_changed = 0;
  930. rcu_read_lock();
  931. sta = sta_info_get(local, ifmgd->bssid);
  932. if (!sta) {
  933. rcu_read_unlock();
  934. return;
  935. }
  936. if (deauth) {
  937. ifmgd->direct_probe_tries = 0;
  938. ifmgd->auth_tries = 0;
  939. }
  940. ifmgd->assoc_scan_tries = 0;
  941. ifmgd->assoc_tries = 0;
  942. netif_tx_stop_all_queues(sdata->dev);
  943. netif_carrier_off(sdata->dev);
  944. ieee80211_sta_tear_down_BA_sessions(sta);
  945. bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
  946. conf->channel->center_freq,
  947. ifmgd->ssid, ifmgd->ssid_len);
  948. if (bss) {
  949. cfg80211_unhold_bss(&bss->cbss);
  950. ieee80211_rx_bss_put(local, bss);
  951. }
  952. if (self_disconnected) {
  953. if (deauth)
  954. ieee80211_send_deauth_disassoc(sdata,
  955. IEEE80211_STYPE_DEAUTH, reason);
  956. else
  957. ieee80211_send_deauth_disassoc(sdata,
  958. IEEE80211_STYPE_DISASSOC, reason);
  959. }
  960. ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
  961. changed |= ieee80211_reset_erp_info(sdata);
  962. ieee80211_led_assoc(local, 0);
  963. changed |= BSS_CHANGED_ASSOC;
  964. sdata->vif.bss_conf.assoc = false;
  965. ieee80211_sta_send_apinfo(sdata);
  966. if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT) {
  967. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  968. ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
  969. sdata->local->hw.conf.channel->center_freq,
  970. ifmgd->ssid, ifmgd->ssid_len);
  971. }
  972. rcu_read_unlock();
  973. ieee80211_set_wmm_default(sdata);
  974. ieee80211_recalc_idle(local);
  975. /* channel(_type) changes are handled by ieee80211_hw_config */
  976. local->oper_channel_type = NL80211_CHAN_NO_HT;
  977. /* on the next assoc, re-program HT parameters */
  978. sdata->ht_opmode_valid = false;
  979. local->power_constr_level = 0;
  980. del_timer_sync(&local->dynamic_ps_timer);
  981. cancel_work_sync(&local->dynamic_ps_enable_work);
  982. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  983. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  984. config_changed |= IEEE80211_CONF_CHANGE_PS;
  985. }
  986. ieee80211_hw_config(local, config_changed);
  987. /* And the BSSID changed -- not very interesting here */
  988. changed |= BSS_CHANGED_BSSID;
  989. ieee80211_bss_info_change_notify(sdata, changed);
  990. rcu_read_lock();
  991. sta = sta_info_get(local, ifmgd->bssid);
  992. if (!sta) {
  993. rcu_read_unlock();
  994. return;
  995. }
  996. sta_info_unlink(&sta);
  997. rcu_read_unlock();
  998. sta_info_destroy(sta);
  999. }
  1000. static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
  1001. {
  1002. if (!sdata || !sdata->default_key ||
  1003. sdata->default_key->conf.alg != ALG_WEP)
  1004. return 0;
  1005. return 1;
  1006. }
  1007. static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata)
  1008. {
  1009. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1010. struct ieee80211_local *local = sdata->local;
  1011. struct ieee80211_bss *bss;
  1012. int bss_privacy;
  1013. int wep_privacy;
  1014. int privacy_invoked;
  1015. if (!ifmgd || (ifmgd->flags & IEEE80211_STA_EXT_SME))
  1016. return 0;
  1017. bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
  1018. local->hw.conf.channel->center_freq,
  1019. ifmgd->ssid, ifmgd->ssid_len);
  1020. if (!bss)
  1021. return 0;
  1022. bss_privacy = !!(bss->cbss.capability & WLAN_CAPABILITY_PRIVACY);
  1023. wep_privacy = !!ieee80211_sta_wep_configured(sdata);
  1024. privacy_invoked = !!(ifmgd->flags & IEEE80211_STA_PRIVACY_INVOKED);
  1025. ieee80211_rx_bss_put(local, bss);
  1026. if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
  1027. return 0;
  1028. return 1;
  1029. }
  1030. static void ieee80211_associate(struct ieee80211_sub_if_data *sdata)
  1031. {
  1032. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1033. struct ieee80211_local *local = sdata->local;
  1034. ifmgd->assoc_tries++;
  1035. if (ifmgd->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
  1036. printk(KERN_DEBUG "%s: association with AP %pM"
  1037. " timed out\n",
  1038. sdata->dev->name, ifmgd->bssid);
  1039. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  1040. ieee80211_recalc_idle(local);
  1041. cfg80211_send_assoc_timeout(sdata->dev, ifmgd->bssid);
  1042. ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
  1043. sdata->local->hw.conf.channel->center_freq,
  1044. ifmgd->ssid, ifmgd->ssid_len);
  1045. /*
  1046. * We might have a pending scan which had no chance to run yet
  1047. * due to state == IEEE80211_STA_MLME_ASSOCIATE.
  1048. * Hence, queue the STAs work again
  1049. */
  1050. queue_work(local->hw.workqueue, &ifmgd->work);
  1051. return;
  1052. }
  1053. ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
  1054. printk(KERN_DEBUG "%s: associate with AP %pM\n",
  1055. sdata->dev->name, ifmgd->bssid);
  1056. if (ieee80211_privacy_mismatch(sdata)) {
  1057. printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
  1058. "mixed-cell disabled - abort association\n", sdata->dev->name);
  1059. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  1060. ieee80211_recalc_idle(local);
  1061. return;
  1062. }
  1063. ieee80211_send_assoc(sdata);
  1064. mod_timer(&ifmgd->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
  1065. }
  1066. void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
  1067. struct ieee80211_hdr *hdr)
  1068. {
  1069. /*
  1070. * We can postpone the mgd.timer whenever receiving unicast frames
  1071. * from AP because we know that the connection is working both ways
  1072. * at that time. But multicast frames (and hence also beacons) must
  1073. * be ignored here, because we need to trigger the timer during
  1074. * data idle periods for sending the periodical probe request to
  1075. * the AP.
  1076. */
  1077. if (!is_multicast_ether_addr(hdr->addr1))
  1078. mod_timer(&sdata->u.mgd.timer,
  1079. jiffies + IEEE80211_MONITORING_INTERVAL);
  1080. }
  1081. void ieee80211_beacon_loss_work(struct work_struct *work)
  1082. {
  1083. struct ieee80211_sub_if_data *sdata =
  1084. container_of(work, struct ieee80211_sub_if_data,
  1085. u.mgd.beacon_loss_work);
  1086. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1087. /*
  1088. * The driver has already reported this event and we have
  1089. * already sent a probe request. Maybe the AP died and the
  1090. * driver keeps reporting until we disassociate... We have
  1091. * to ignore that because otherwise we would continually
  1092. * reset the timer and never check whether we received a
  1093. * probe response!
  1094. */
  1095. if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL)
  1096. return;
  1097. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1098. if (net_ratelimit()) {
  1099. printk(KERN_DEBUG "%s: driver reports beacon loss from AP %pM "
  1100. "- sending probe request\n", sdata->dev->name,
  1101. sdata->u.mgd.bssid);
  1102. }
  1103. #endif
  1104. ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL;
  1105. ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid,
  1106. ifmgd->ssid_len, NULL, 0);
  1107. mod_timer(&ifmgd->timer, jiffies + IEEE80211_PROBE_WAIT);
  1108. }
  1109. void ieee80211_beacon_loss(struct ieee80211_vif *vif)
  1110. {
  1111. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1112. queue_work(sdata->local->hw.workqueue,
  1113. &sdata->u.mgd.beacon_loss_work);
  1114. }
  1115. EXPORT_SYMBOL(ieee80211_beacon_loss);
  1116. static void ieee80211_associated(struct ieee80211_sub_if_data *sdata)
  1117. {
  1118. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1119. struct ieee80211_local *local = sdata->local;
  1120. struct sta_info *sta;
  1121. bool disassoc = false;
  1122. /* TODO: start monitoring current AP signal quality and number of
  1123. * missed beacons. Scan other channels every now and then and search
  1124. * for better APs. */
  1125. /* TODO: remove expired BSSes */
  1126. ifmgd->state = IEEE80211_STA_MLME_ASSOCIATED;
  1127. rcu_read_lock();
  1128. sta = sta_info_get(local, ifmgd->bssid);
  1129. if (!sta) {
  1130. printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
  1131. sdata->dev->name, ifmgd->bssid);
  1132. disassoc = true;
  1133. goto unlock;
  1134. }
  1135. if ((ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) &&
  1136. time_after(jiffies, sta->last_rx + IEEE80211_PROBE_WAIT)) {
  1137. printk(KERN_DEBUG "%s: no probe response from AP %pM "
  1138. "- disassociating\n",
  1139. sdata->dev->name, ifmgd->bssid);
  1140. disassoc = true;
  1141. ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
  1142. goto unlock;
  1143. }
  1144. /*
  1145. * Beacon filtering is only enabled with power save and then the
  1146. * stack should not check for beacon loss.
  1147. */
  1148. if (!((local->hw.flags & IEEE80211_HW_BEACON_FILTER) &&
  1149. (local->hw.conf.flags & IEEE80211_CONF_PS)) &&
  1150. time_after(jiffies,
  1151. ifmgd->last_beacon + IEEE80211_MONITORING_INTERVAL)) {
  1152. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1153. if (net_ratelimit()) {
  1154. printk(KERN_DEBUG "%s: beacon loss from AP %pM "
  1155. "- sending probe request\n",
  1156. sdata->dev->name, ifmgd->bssid);
  1157. }
  1158. #endif
  1159. ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL;
  1160. ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid,
  1161. ifmgd->ssid_len, NULL, 0);
  1162. mod_timer(&ifmgd->timer, jiffies + IEEE80211_PROBE_WAIT);
  1163. goto unlock;
  1164. }
  1165. if (time_after(jiffies, sta->last_rx + IEEE80211_PROBE_IDLE_TIME)) {
  1166. ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL;
  1167. ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid,
  1168. ifmgd->ssid_len, NULL, 0);
  1169. }
  1170. if (!disassoc)
  1171. mod_timer(&ifmgd->timer,
  1172. jiffies + IEEE80211_MONITORING_INTERVAL);
  1173. unlock:
  1174. rcu_read_unlock();
  1175. if (disassoc)
  1176. ieee80211_set_disassoc(sdata, true, true,
  1177. WLAN_REASON_PREV_AUTH_NOT_VALID);
  1178. }
  1179. static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata)
  1180. {
  1181. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1182. printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
  1183. ifmgd->flags |= IEEE80211_STA_AUTHENTICATED;
  1184. if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
  1185. /* Wait for SME to request association */
  1186. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  1187. ieee80211_recalc_idle(sdata->local);
  1188. } else
  1189. ieee80211_associate(sdata);
  1190. }
  1191. static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
  1192. struct ieee80211_mgmt *mgmt,
  1193. size_t len)
  1194. {
  1195. u8 *pos;
  1196. struct ieee802_11_elems elems;
  1197. pos = mgmt->u.auth.variable;
  1198. ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
  1199. if (!elems.challenge)
  1200. return;
  1201. ieee80211_send_auth(sdata, 3, sdata->u.mgd.auth_alg,
  1202. elems.challenge - 2, elems.challenge_len + 2,
  1203. sdata->u.mgd.bssid, 1);
  1204. sdata->u.mgd.auth_transaction = 4;
  1205. }
  1206. static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
  1207. struct ieee80211_mgmt *mgmt,
  1208. size_t len)
  1209. {
  1210. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1211. u16 auth_alg, auth_transaction, status_code;
  1212. if (ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE)
  1213. return;
  1214. if (len < 24 + 6)
  1215. return;
  1216. if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
  1217. return;
  1218. if (memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
  1219. return;
  1220. auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
  1221. auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
  1222. status_code = le16_to_cpu(mgmt->u.auth.status_code);
  1223. if (auth_alg != ifmgd->auth_alg ||
  1224. auth_transaction != ifmgd->auth_transaction)
  1225. return;
  1226. if (status_code != WLAN_STATUS_SUCCESS) {
  1227. if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
  1228. u8 algs[3];
  1229. const int num_algs = ARRAY_SIZE(algs);
  1230. int i, pos;
  1231. algs[0] = algs[1] = algs[2] = 0xff;
  1232. if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
  1233. algs[0] = WLAN_AUTH_OPEN;
  1234. if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
  1235. algs[1] = WLAN_AUTH_SHARED_KEY;
  1236. if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
  1237. algs[2] = WLAN_AUTH_LEAP;
  1238. if (ifmgd->auth_alg == WLAN_AUTH_OPEN)
  1239. pos = 0;
  1240. else if (ifmgd->auth_alg == WLAN_AUTH_SHARED_KEY)
  1241. pos = 1;
  1242. else
  1243. pos = 2;
  1244. for (i = 0; i < num_algs; i++) {
  1245. pos++;
  1246. if (pos >= num_algs)
  1247. pos = 0;
  1248. if (algs[pos] == ifmgd->auth_alg ||
  1249. algs[pos] == 0xff)
  1250. continue;
  1251. if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
  1252. !ieee80211_sta_wep_configured(sdata))
  1253. continue;
  1254. ifmgd->auth_alg = algs[pos];
  1255. break;
  1256. }
  1257. }
  1258. return;
  1259. }
  1260. switch (ifmgd->auth_alg) {
  1261. case WLAN_AUTH_OPEN:
  1262. case WLAN_AUTH_LEAP:
  1263. case WLAN_AUTH_FT:
  1264. ieee80211_auth_completed(sdata);
  1265. cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
  1266. break;
  1267. case WLAN_AUTH_SHARED_KEY:
  1268. if (ifmgd->auth_transaction == 4) {
  1269. ieee80211_auth_completed(sdata);
  1270. cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
  1271. } else
  1272. ieee80211_auth_challenge(sdata, mgmt, len);
  1273. break;
  1274. }
  1275. }
  1276. static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
  1277. struct ieee80211_mgmt *mgmt,
  1278. size_t len)
  1279. {
  1280. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1281. u16 reason_code;
  1282. if (len < 24 + 2)
  1283. return;
  1284. if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
  1285. return;
  1286. reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
  1287. if (ifmgd->flags & IEEE80211_STA_AUTHENTICATED)
  1288. printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
  1289. sdata->dev->name, reason_code);
  1290. if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
  1291. (ifmgd->state == IEEE80211_STA_MLME_AUTHENTICATE ||
  1292. ifmgd->state == IEEE80211_STA_MLME_ASSOCIATE ||
  1293. ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)) {
  1294. ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
  1295. mod_timer(&ifmgd->timer, jiffies +
  1296. IEEE80211_RETRY_AUTH_INTERVAL);
  1297. }
  1298. ieee80211_set_disassoc(sdata, true, false, 0);
  1299. ifmgd->flags &= ~IEEE80211_STA_AUTHENTICATED;
  1300. cfg80211_send_deauth(sdata->dev, (u8 *) mgmt, len);
  1301. }
  1302. static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
  1303. struct ieee80211_mgmt *mgmt,
  1304. size_t len)
  1305. {
  1306. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1307. u16 reason_code;
  1308. if (len < 24 + 2)
  1309. return;
  1310. if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
  1311. return;
  1312. reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
  1313. if (ifmgd->flags & IEEE80211_STA_ASSOCIATED)
  1314. printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
  1315. sdata->dev->name, reason_code);
  1316. if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
  1317. ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED) {
  1318. ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
  1319. mod_timer(&ifmgd->timer, jiffies +
  1320. IEEE80211_RETRY_AUTH_INTERVAL);
  1321. }
  1322. ieee80211_set_disassoc(sdata, false, false, reason_code);
  1323. cfg80211_send_disassoc(sdata->dev, (u8 *) mgmt, len);
  1324. }
  1325. static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
  1326. struct ieee80211_mgmt *mgmt,
  1327. size_t len,
  1328. int reassoc)
  1329. {
  1330. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1331. struct ieee80211_local *local = sdata->local;
  1332. struct ieee80211_supported_band *sband;
  1333. struct sta_info *sta;
  1334. u32 rates, basic_rates;
  1335. u16 capab_info, status_code, aid;
  1336. struct ieee802_11_elems elems;
  1337. struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
  1338. u8 *pos;
  1339. u32 changed = 0;
  1340. int i, j;
  1341. bool have_higher_than_11mbit = false, newsta = false;
  1342. u16 ap_ht_cap_flags;
  1343. /* AssocResp and ReassocResp have identical structure, so process both
  1344. * of them in this function. */
  1345. if (ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
  1346. return;
  1347. if (len < 24 + 6)
  1348. return;
  1349. if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
  1350. return;
  1351. capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
  1352. status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
  1353. aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
  1354. printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
  1355. "status=%d aid=%d)\n",
  1356. sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
  1357. capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
  1358. pos = mgmt->u.assoc_resp.variable;
  1359. ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
  1360. if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
  1361. elems.timeout_int && elems.timeout_int_len == 5 &&
  1362. elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
  1363. u32 tu, ms;
  1364. tu = get_unaligned_le32(elems.timeout_int + 1);
  1365. ms = tu * 1024 / 1000;
  1366. printk(KERN_DEBUG "%s: AP rejected association temporarily; "
  1367. "comeback duration %u TU (%u ms)\n",
  1368. sdata->dev->name, tu, ms);
  1369. if (ms > IEEE80211_ASSOC_TIMEOUT)
  1370. mod_timer(&ifmgd->timer,
  1371. jiffies + msecs_to_jiffies(ms));
  1372. return;
  1373. }
  1374. if (status_code != WLAN_STATUS_SUCCESS) {
  1375. printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
  1376. sdata->dev->name, status_code);
  1377. /* if this was a reassociation, ensure we try a "full"
  1378. * association next time. This works around some broken APs
  1379. * which do not correctly reject reassociation requests. */
  1380. ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
  1381. cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, len);
  1382. if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
  1383. /* Wait for SME to decide what to do next */
  1384. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  1385. ieee80211_recalc_idle(local);
  1386. }
  1387. return;
  1388. }
  1389. if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
  1390. printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
  1391. "set\n", sdata->dev->name, aid);
  1392. aid &= ~(BIT(15) | BIT(14));
  1393. if (!elems.supp_rates) {
  1394. printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
  1395. sdata->dev->name);
  1396. return;
  1397. }
  1398. printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
  1399. ifmgd->aid = aid;
  1400. ifmgd->ap_capab = capab_info;
  1401. kfree(ifmgd->assocresp_ies);
  1402. ifmgd->assocresp_ies_len = len - (pos - (u8 *) mgmt);
  1403. ifmgd->assocresp_ies = kmalloc(ifmgd->assocresp_ies_len, GFP_KERNEL);
  1404. if (ifmgd->assocresp_ies)
  1405. memcpy(ifmgd->assocresp_ies, pos, ifmgd->assocresp_ies_len);
  1406. rcu_read_lock();
  1407. /* Add STA entry for the AP */
  1408. sta = sta_info_get(local, ifmgd->bssid);
  1409. if (!sta) {
  1410. newsta = true;
  1411. sta = sta_info_alloc(sdata, ifmgd->bssid, GFP_ATOMIC);
  1412. if (!sta) {
  1413. printk(KERN_DEBUG "%s: failed to alloc STA entry for"
  1414. " the AP\n", sdata->dev->name);
  1415. rcu_read_unlock();
  1416. return;
  1417. }
  1418. /* update new sta with its last rx activity */
  1419. sta->last_rx = jiffies;
  1420. }
  1421. /*
  1422. * FIXME: Do we really need to update the sta_info's information here?
  1423. * We already know about the AP (we found it in our list) so it
  1424. * should already be filled with the right info, no?
  1425. * As is stands, all this is racy because typically we assume
  1426. * the information that is filled in here (except flags) doesn't
  1427. * change while a STA structure is alive. As such, it should move
  1428. * to between the sta_info_alloc() and sta_info_insert() above.
  1429. */
  1430. set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP);
  1431. if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
  1432. set_sta_flags(sta, WLAN_STA_AUTHORIZED);
  1433. rates = 0;
  1434. basic_rates = 0;
  1435. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  1436. for (i = 0; i < elems.supp_rates_len; i++) {
  1437. int rate = (elems.supp_rates[i] & 0x7f) * 5;
  1438. bool is_basic = !!(elems.supp_rates[i] & 0x80);
  1439. if (rate > 110)
  1440. have_higher_than_11mbit = true;
  1441. for (j = 0; j < sband->n_bitrates; j++) {
  1442. if (sband->bitrates[j].bitrate == rate) {
  1443. rates |= BIT(j);
  1444. if (is_basic)
  1445. basic_rates |= BIT(j);
  1446. break;
  1447. }
  1448. }
  1449. }
  1450. for (i = 0; i < elems.ext_supp_rates_len; i++) {
  1451. int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
  1452. bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
  1453. if (rate > 110)
  1454. have_higher_than_11mbit = true;
  1455. for (j = 0; j < sband->n_bitrates; j++) {
  1456. if (sband->bitrates[j].bitrate == rate) {
  1457. rates |= BIT(j);
  1458. if (is_basic)
  1459. basic_rates |= BIT(j);
  1460. break;
  1461. }
  1462. }
  1463. }
  1464. sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
  1465. sdata->vif.bss_conf.basic_rates = basic_rates;
  1466. /* cf. IEEE 802.11 9.2.12 */
  1467. if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
  1468. have_higher_than_11mbit)
  1469. sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
  1470. else
  1471. sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
  1472. /* If TKIP/WEP is used, no need to parse AP's HT capabilities */
  1473. if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
  1474. ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
  1475. elems.ht_cap_elem, &sta->sta.ht_cap);
  1476. ap_ht_cap_flags = sta->sta.ht_cap.cap;
  1477. rate_control_rate_init(sta);
  1478. if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
  1479. set_sta_flags(sta, WLAN_STA_MFP);
  1480. if (elems.wmm_param)
  1481. set_sta_flags(sta, WLAN_STA_WME);
  1482. if (newsta) {
  1483. int err = sta_info_insert(sta);
  1484. if (err) {
  1485. printk(KERN_DEBUG "%s: failed to insert STA entry for"
  1486. " the AP (error %d)\n", sdata->dev->name, err);
  1487. rcu_read_unlock();
  1488. return;
  1489. }
  1490. }
  1491. rcu_read_unlock();
  1492. if (elems.wmm_param)
  1493. ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
  1494. elems.wmm_param_len);
  1495. else
  1496. ieee80211_set_wmm_default(sdata);
  1497. if (elems.ht_info_elem && elems.wmm_param &&
  1498. (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
  1499. !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
  1500. changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
  1501. ap_ht_cap_flags);
  1502. /* set AID and assoc capability,
  1503. * ieee80211_set_associated() will tell the driver */
  1504. bss_conf->aid = aid;
  1505. bss_conf->assoc_capability = capab_info;
  1506. ieee80211_set_associated(sdata, changed);
  1507. /*
  1508. * initialise the time of last beacon to be the association time,
  1509. * otherwise beacon loss check will trigger immediately
  1510. */
  1511. ifmgd->last_beacon = jiffies;
  1512. ieee80211_associated(sdata);
  1513. cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, len);
  1514. }
  1515. static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
  1516. struct ieee80211_mgmt *mgmt,
  1517. size_t len,
  1518. struct ieee80211_rx_status *rx_status,
  1519. struct ieee802_11_elems *elems,
  1520. bool beacon)
  1521. {
  1522. struct ieee80211_local *local = sdata->local;
  1523. int freq;
  1524. struct ieee80211_bss *bss;
  1525. struct ieee80211_channel *channel;
  1526. if (elems->ds_params && elems->ds_params_len == 1)
  1527. freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
  1528. else
  1529. freq = rx_status->freq;
  1530. channel = ieee80211_get_channel(local->hw.wiphy, freq);
  1531. if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
  1532. return;
  1533. bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
  1534. channel, beacon);
  1535. if (!bss)
  1536. return;
  1537. if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
  1538. (memcmp(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN) == 0)) {
  1539. struct ieee80211_channel_sw_ie *sw_elem =
  1540. (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
  1541. ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
  1542. }
  1543. ieee80211_rx_bss_put(local, bss);
  1544. }
  1545. static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
  1546. struct ieee80211_mgmt *mgmt,
  1547. size_t len,
  1548. struct ieee80211_rx_status *rx_status)
  1549. {
  1550. struct ieee80211_if_managed *ifmgd;
  1551. size_t baselen;
  1552. struct ieee802_11_elems elems;
  1553. ifmgd = &sdata->u.mgd;
  1554. if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
  1555. return; /* ignore ProbeResp to foreign address */
  1556. baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
  1557. if (baselen > len)
  1558. return;
  1559. ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
  1560. &elems);
  1561. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
  1562. /* direct probe may be part of the association flow */
  1563. if (ifmgd->state == IEEE80211_STA_MLME_DIRECT_PROBE) {
  1564. printk(KERN_DEBUG "%s direct probe responded\n",
  1565. sdata->dev->name);
  1566. ieee80211_authenticate(sdata);
  1567. }
  1568. if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL)
  1569. ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
  1570. }
  1571. /*
  1572. * This is the canonical list of information elements we care about,
  1573. * the filter code also gives us all changes to the Microsoft OUI
  1574. * (00:50:F2) vendor IE which is used for WMM which we need to track.
  1575. *
  1576. * We implement beacon filtering in software since that means we can
  1577. * avoid processing the frame here and in cfg80211, and userspace
  1578. * will not be able to tell whether the hardware supports it or not.
  1579. *
  1580. * XXX: This list needs to be dynamic -- userspace needs to be able to
  1581. * add items it requires. It also needs to be able to tell us to
  1582. * look out for other vendor IEs.
  1583. */
  1584. static const u64 care_about_ies =
  1585. (1ULL << WLAN_EID_COUNTRY) |
  1586. (1ULL << WLAN_EID_ERP_INFO) |
  1587. (1ULL << WLAN_EID_CHANNEL_SWITCH) |
  1588. (1ULL << WLAN_EID_PWR_CONSTRAINT) |
  1589. (1ULL << WLAN_EID_HT_CAPABILITY) |
  1590. (1ULL << WLAN_EID_HT_INFORMATION);
  1591. static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
  1592. struct ieee80211_mgmt *mgmt,
  1593. size_t len,
  1594. struct ieee80211_rx_status *rx_status)
  1595. {
  1596. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1597. size_t baselen;
  1598. struct ieee802_11_elems elems;
  1599. struct ieee80211_local *local = sdata->local;
  1600. u32 changed = 0;
  1601. bool erp_valid, directed_tim = false;
  1602. u8 erp_value = 0;
  1603. u32 ncrc;
  1604. /* Process beacon from the current BSS */
  1605. baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
  1606. if (baselen > len)
  1607. return;
  1608. if (rx_status->freq != local->hw.conf.channel->center_freq)
  1609. return;
  1610. if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED) ||
  1611. memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
  1612. return;
  1613. if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) {
  1614. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1615. if (net_ratelimit()) {
  1616. printk(KERN_DEBUG "%s: cancelling probereq poll due "
  1617. "to a received beacon\n", sdata->dev->name);
  1618. }
  1619. #endif
  1620. ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
  1621. }
  1622. ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
  1623. ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
  1624. len - baselen, &elems,
  1625. care_about_ies, ncrc);
  1626. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
  1627. directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
  1628. ifmgd->aid);
  1629. if (ncrc != ifmgd->beacon_crc) {
  1630. ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
  1631. true);
  1632. ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
  1633. elems.wmm_param_len);
  1634. }
  1635. if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
  1636. if (directed_tim) {
  1637. if (local->hw.conf.dynamic_ps_timeout > 0) {
  1638. local->hw.conf.flags &= ~IEEE80211_CONF_PS;
  1639. ieee80211_hw_config(local,
  1640. IEEE80211_CONF_CHANGE_PS);
  1641. ieee80211_send_nullfunc(local, sdata, 0);
  1642. } else {
  1643. local->pspolling = true;
  1644. /*
  1645. * Here is assumed that the driver will be
  1646. * able to send ps-poll frame and receive a
  1647. * response even though power save mode is
  1648. * enabled, but some drivers might require
  1649. * to disable power save here. This needs
  1650. * to be investigated.
  1651. */
  1652. ieee80211_send_pspoll(local, sdata);
  1653. }
  1654. }
  1655. }
  1656. if (ncrc == ifmgd->beacon_crc)
  1657. return;
  1658. ifmgd->beacon_crc = ncrc;
  1659. if (elems.erp_info && elems.erp_info_len >= 1) {
  1660. erp_valid = true;
  1661. erp_value = elems.erp_info[0];
  1662. } else {
  1663. erp_valid = false;
  1664. }
  1665. changed |= ieee80211_handle_bss_capability(sdata,
  1666. le16_to_cpu(mgmt->u.beacon.capab_info),
  1667. erp_valid, erp_value);
  1668. if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
  1669. !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED)) {
  1670. struct sta_info *sta;
  1671. struct ieee80211_supported_band *sband;
  1672. u16 ap_ht_cap_flags;
  1673. rcu_read_lock();
  1674. sta = sta_info_get(local, ifmgd->bssid);
  1675. if (!sta) {
  1676. rcu_read_unlock();
  1677. return;
  1678. }
  1679. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  1680. ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
  1681. elems.ht_cap_elem, &sta->sta.ht_cap);
  1682. ap_ht_cap_flags = sta->sta.ht_cap.cap;
  1683. rcu_read_unlock();
  1684. changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
  1685. ap_ht_cap_flags);
  1686. }
  1687. if (elems.country_elem) {
  1688. /* Note we are only reviewing this on beacons
  1689. * for the BSSID we are associated to */
  1690. regulatory_hint_11d(local->hw.wiphy,
  1691. elems.country_elem, elems.country_elem_len);
  1692. /* TODO: IBSS also needs this */
  1693. if (elems.pwr_constr_elem)
  1694. ieee80211_handle_pwr_constr(sdata,
  1695. le16_to_cpu(mgmt->u.probe_resp.capab_info),
  1696. elems.pwr_constr_elem,
  1697. elems.pwr_constr_elem_len);
  1698. }
  1699. ieee80211_bss_info_change_notify(sdata, changed);
  1700. }
  1701. ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
  1702. struct sk_buff *skb,
  1703. struct ieee80211_rx_status *rx_status)
  1704. {
  1705. struct ieee80211_local *local = sdata->local;
  1706. struct ieee80211_mgmt *mgmt;
  1707. u16 fc;
  1708. if (skb->len < 24)
  1709. return RX_DROP_MONITOR;
  1710. mgmt = (struct ieee80211_mgmt *) skb->data;
  1711. fc = le16_to_cpu(mgmt->frame_control);
  1712. switch (fc & IEEE80211_FCTL_STYPE) {
  1713. case IEEE80211_STYPE_PROBE_REQ:
  1714. case IEEE80211_STYPE_PROBE_RESP:
  1715. case IEEE80211_STYPE_BEACON:
  1716. memcpy(skb->cb, rx_status, sizeof(*rx_status));
  1717. case IEEE80211_STYPE_AUTH:
  1718. case IEEE80211_STYPE_ASSOC_RESP:
  1719. case IEEE80211_STYPE_REASSOC_RESP:
  1720. case IEEE80211_STYPE_DEAUTH:
  1721. case IEEE80211_STYPE_DISASSOC:
  1722. skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
  1723. queue_work(local->hw.workqueue, &sdata->u.mgd.work);
  1724. return RX_QUEUED;
  1725. }
  1726. return RX_DROP_MONITOR;
  1727. }
  1728. static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
  1729. struct sk_buff *skb)
  1730. {
  1731. struct ieee80211_rx_status *rx_status;
  1732. struct ieee80211_mgmt *mgmt;
  1733. u16 fc;
  1734. rx_status = (struct ieee80211_rx_status *) skb->cb;
  1735. mgmt = (struct ieee80211_mgmt *) skb->data;
  1736. fc = le16_to_cpu(mgmt->frame_control);
  1737. switch (fc & IEEE80211_FCTL_STYPE) {
  1738. case IEEE80211_STYPE_PROBE_RESP:
  1739. ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
  1740. rx_status);
  1741. break;
  1742. case IEEE80211_STYPE_BEACON:
  1743. ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
  1744. rx_status);
  1745. break;
  1746. case IEEE80211_STYPE_AUTH:
  1747. ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
  1748. break;
  1749. case IEEE80211_STYPE_ASSOC_RESP:
  1750. ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 0);
  1751. break;
  1752. case IEEE80211_STYPE_REASSOC_RESP:
  1753. ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 1);
  1754. break;
  1755. case IEEE80211_STYPE_DEAUTH:
  1756. ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
  1757. break;
  1758. case IEEE80211_STYPE_DISASSOC:
  1759. ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
  1760. break;
  1761. }
  1762. kfree_skb(skb);
  1763. }
  1764. static void ieee80211_sta_timer(unsigned long data)
  1765. {
  1766. struct ieee80211_sub_if_data *sdata =
  1767. (struct ieee80211_sub_if_data *) data;
  1768. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1769. struct ieee80211_local *local = sdata->local;
  1770. if (local->quiescing) {
  1771. set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
  1772. return;
  1773. }
  1774. set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
  1775. queue_work(local->hw.workqueue, &ifmgd->work);
  1776. }
  1777. static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata)
  1778. {
  1779. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1780. struct ieee80211_local *local = sdata->local;
  1781. /* Reset own TSF to allow time synchronization work. */
  1782. drv_reset_tsf(local);
  1783. ifmgd->wmm_last_param_set = -1; /* allow any WMM update */
  1784. if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
  1785. ifmgd->auth_alg = WLAN_AUTH_OPEN;
  1786. else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
  1787. ifmgd->auth_alg = WLAN_AUTH_SHARED_KEY;
  1788. else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
  1789. ifmgd->auth_alg = WLAN_AUTH_LEAP;
  1790. else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_FT)
  1791. ifmgd->auth_alg = WLAN_AUTH_FT;
  1792. else
  1793. ifmgd->auth_alg = WLAN_AUTH_OPEN;
  1794. ifmgd->auth_transaction = -1;
  1795. ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
  1796. ifmgd->assoc_scan_tries = 0;
  1797. ifmgd->direct_probe_tries = 0;
  1798. ifmgd->auth_tries = 0;
  1799. ifmgd->assoc_tries = 0;
  1800. netif_tx_stop_all_queues(sdata->dev);
  1801. netif_carrier_off(sdata->dev);
  1802. }
  1803. static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata)
  1804. {
  1805. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1806. struct ieee80211_local *local = sdata->local;
  1807. struct ieee80211_bss *bss;
  1808. u8 *bssid = ifmgd->bssid, *ssid = ifmgd->ssid;
  1809. u8 ssid_len = ifmgd->ssid_len;
  1810. u16 capa_mask = WLAN_CAPABILITY_ESS;
  1811. u16 capa_val = WLAN_CAPABILITY_ESS;
  1812. struct ieee80211_channel *chan = local->oper_channel;
  1813. if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
  1814. ifmgd->flags & (IEEE80211_STA_AUTO_SSID_SEL |
  1815. IEEE80211_STA_AUTO_BSSID_SEL |
  1816. IEEE80211_STA_AUTO_CHANNEL_SEL)) {
  1817. capa_mask |= WLAN_CAPABILITY_PRIVACY;
  1818. if (sdata->default_key)
  1819. capa_val |= WLAN_CAPABILITY_PRIVACY;
  1820. }
  1821. if (ifmgd->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
  1822. chan = NULL;
  1823. if (ifmgd->flags & IEEE80211_STA_AUTO_BSSID_SEL)
  1824. bssid = NULL;
  1825. if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL) {
  1826. ssid = NULL;
  1827. ssid_len = 0;
  1828. }
  1829. bss = (void *)cfg80211_get_bss(local->hw.wiphy, chan,
  1830. bssid, ssid, ssid_len,
  1831. capa_mask, capa_val);
  1832. if (bss) {
  1833. ieee80211_set_freq(sdata, bss->cbss.channel->center_freq);
  1834. if (!(ifmgd->flags & IEEE80211_STA_SSID_SET))
  1835. ieee80211_sta_set_ssid(sdata, bss->ssid,
  1836. bss->ssid_len);
  1837. ieee80211_sta_set_bssid(sdata, bss->cbss.bssid);
  1838. ieee80211_sta_def_wmm_params(sdata, bss->supp_rates_len,
  1839. bss->supp_rates);
  1840. if (sdata->u.mgd.mfp == IEEE80211_MFP_REQUIRED)
  1841. sdata->u.mgd.flags |= IEEE80211_STA_MFP_ENABLED;
  1842. else
  1843. sdata->u.mgd.flags &= ~IEEE80211_STA_MFP_ENABLED;
  1844. /* Send out direct probe if no probe resp was received or
  1845. * the one we have is outdated
  1846. */
  1847. if (!bss->last_probe_resp ||
  1848. time_after(jiffies, bss->last_probe_resp
  1849. + IEEE80211_SCAN_RESULT_EXPIRE))
  1850. ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
  1851. else
  1852. ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
  1853. ieee80211_rx_bss_put(local, bss);
  1854. ieee80211_sta_reset_auth(sdata);
  1855. return 0;
  1856. } else {
  1857. if (ifmgd->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
  1858. ifmgd->assoc_scan_tries++;
  1859. ieee80211_request_internal_scan(sdata, ifmgd->ssid,
  1860. ssid_len);
  1861. ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
  1862. set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
  1863. } else {
  1864. ifmgd->assoc_scan_tries = 0;
  1865. ifmgd->state = IEEE80211_STA_MLME_DISABLED;
  1866. ieee80211_recalc_idle(local);
  1867. }
  1868. }
  1869. return -1;
  1870. }
  1871. static void ieee80211_sta_work(struct work_struct *work)
  1872. {
  1873. struct ieee80211_sub_if_data *sdata =
  1874. container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
  1875. struct ieee80211_local *local = sdata->local;
  1876. struct ieee80211_if_managed *ifmgd;
  1877. struct sk_buff *skb;
  1878. if (!netif_running(sdata->dev))
  1879. return;
  1880. if (local->sw_scanning || local->hw_scanning)
  1881. return;
  1882. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  1883. return;
  1884. /*
  1885. * Nothing should have been stuffed into the workqueue during
  1886. * the suspend->resume cycle. If this WARN is seen then there
  1887. * is a bug with either the driver suspend or something in
  1888. * mac80211 stuffing into the workqueue which we haven't yet
  1889. * cleared during mac80211's suspend cycle.
  1890. */
  1891. if (WARN_ON(local->suspended))
  1892. return;
  1893. ifmgd = &sdata->u.mgd;
  1894. while ((skb = skb_dequeue(&ifmgd->skb_queue)))
  1895. ieee80211_sta_rx_queued_mgmt(sdata, skb);
  1896. if (ifmgd->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
  1897. ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE &&
  1898. ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE &&
  1899. test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request)) {
  1900. queue_delayed_work(local->hw.workqueue, &local->scan_work,
  1901. round_jiffies_relative(0));
  1902. return;
  1903. }
  1904. if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request)) {
  1905. if (ieee80211_sta_config_auth(sdata))
  1906. return;
  1907. clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
  1908. } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request))
  1909. return;
  1910. ieee80211_recalc_idle(local);
  1911. switch (ifmgd->state) {
  1912. case IEEE80211_STA_MLME_DISABLED:
  1913. break;
  1914. case IEEE80211_STA_MLME_DIRECT_PROBE:
  1915. ieee80211_direct_probe(sdata);
  1916. break;
  1917. case IEEE80211_STA_MLME_AUTHENTICATE:
  1918. ieee80211_authenticate(sdata);
  1919. break;
  1920. case IEEE80211_STA_MLME_ASSOCIATE:
  1921. ieee80211_associate(sdata);
  1922. break;
  1923. case IEEE80211_STA_MLME_ASSOCIATED:
  1924. ieee80211_associated(sdata);
  1925. break;
  1926. default:
  1927. WARN_ON(1);
  1928. break;
  1929. }
  1930. if (ieee80211_privacy_mismatch(sdata)) {
  1931. printk(KERN_DEBUG "%s: privacy configuration mismatch and "
  1932. "mixed-cell disabled - disassociate\n", sdata->dev->name);
  1933. ieee80211_set_disassoc(sdata, false, true,
  1934. WLAN_REASON_UNSPECIFIED);
  1935. }
  1936. }
  1937. static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
  1938. {
  1939. if (sdata->vif.type == NL80211_IFTYPE_STATION) {
  1940. /*
  1941. * Need to update last_beacon to avoid beacon loss
  1942. * test to trigger.
  1943. */
  1944. sdata->u.mgd.last_beacon = jiffies;
  1945. queue_work(sdata->local->hw.workqueue,
  1946. &sdata->u.mgd.work);
  1947. }
  1948. }
  1949. #ifdef CONFIG_PM
  1950. void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
  1951. {
  1952. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1953. /*
  1954. * we need to use atomic bitops for the running bits
  1955. * only because both timers might fire at the same
  1956. * time -- the code here is properly synchronised.
  1957. */
  1958. cancel_work_sync(&ifmgd->work);
  1959. cancel_work_sync(&ifmgd->beacon_loss_work);
  1960. if (del_timer_sync(&ifmgd->timer))
  1961. set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
  1962. cancel_work_sync(&ifmgd->chswitch_work);
  1963. if (del_timer_sync(&ifmgd->chswitch_timer))
  1964. set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
  1965. }
  1966. void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
  1967. {
  1968. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1969. if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
  1970. add_timer(&ifmgd->timer);
  1971. if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
  1972. add_timer(&ifmgd->chswitch_timer);
  1973. }
  1974. #endif
  1975. /* interface setup */
  1976. void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
  1977. {
  1978. struct ieee80211_if_managed *ifmgd;
  1979. u32 hw_flags;
  1980. ifmgd = &sdata->u.mgd;
  1981. INIT_WORK(&ifmgd->work, ieee80211_sta_work);
  1982. INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
  1983. INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
  1984. setup_timer(&ifmgd->timer, ieee80211_sta_timer,
  1985. (unsigned long) sdata);
  1986. setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
  1987. (unsigned long) sdata);
  1988. skb_queue_head_init(&ifmgd->skb_queue);
  1989. ifmgd->capab = WLAN_CAPABILITY_ESS;
  1990. ifmgd->auth_algs = IEEE80211_AUTH_ALG_OPEN |
  1991. IEEE80211_AUTH_ALG_SHARED_KEY;
  1992. ifmgd->flags |= IEEE80211_STA_CREATE_IBSS |
  1993. IEEE80211_STA_AUTO_BSSID_SEL |
  1994. IEEE80211_STA_AUTO_CHANNEL_SEL;
  1995. if (sdata->local->hw.queues >= 4)
  1996. ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
  1997. hw_flags = sdata->local->hw.flags;
  1998. if (hw_flags & IEEE80211_HW_SUPPORTS_PS) {
  1999. ifmgd->powersave = CONFIG_MAC80211_DEFAULT_PS_VALUE;
  2000. sdata->local->hw.conf.dynamic_ps_timeout = 500;
  2001. }
  2002. }
  2003. /* configuration hooks */
  2004. void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata)
  2005. {
  2006. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2007. struct ieee80211_local *local = sdata->local;
  2008. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  2009. return;
  2010. if ((ifmgd->flags & (IEEE80211_STA_BSSID_SET |
  2011. IEEE80211_STA_AUTO_BSSID_SEL)) &&
  2012. (ifmgd->flags & (IEEE80211_STA_SSID_SET |
  2013. IEEE80211_STA_AUTO_SSID_SEL))) {
  2014. if (ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)
  2015. ieee80211_set_disassoc(sdata, true, true,
  2016. WLAN_REASON_DEAUTH_LEAVING);
  2017. if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) ||
  2018. ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
  2019. set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
  2020. else if (ifmgd->flags & IEEE80211_STA_EXT_SME)
  2021. set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
  2022. queue_work(local->hw.workqueue, &ifmgd->work);
  2023. }
  2024. }
  2025. int ieee80211_sta_commit(struct ieee80211_sub_if_data *sdata)
  2026. {
  2027. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2028. if (ifmgd->ssid_len)
  2029. ifmgd->flags |= IEEE80211_STA_SSID_SET;
  2030. else
  2031. ifmgd->flags &= ~IEEE80211_STA_SSID_SET;
  2032. return 0;
  2033. }
  2034. int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
  2035. {
  2036. struct ieee80211_if_managed *ifmgd;
  2037. if (len > IEEE80211_MAX_SSID_LEN)
  2038. return -EINVAL;
  2039. ifmgd = &sdata->u.mgd;
  2040. if (ifmgd->ssid_len != len || memcmp(ifmgd->ssid, ssid, len) != 0) {
  2041. /*
  2042. * Do not use reassociation if SSID is changed (different ESS).
  2043. */
  2044. ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
  2045. memset(ifmgd->ssid, 0, sizeof(ifmgd->ssid));
  2046. memcpy(ifmgd->ssid, ssid, len);
  2047. ifmgd->ssid_len = len;
  2048. }
  2049. return ieee80211_sta_commit(sdata);
  2050. }
  2051. int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
  2052. {
  2053. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2054. memcpy(ssid, ifmgd->ssid, ifmgd->ssid_len);
  2055. *len = ifmgd->ssid_len;
  2056. return 0;
  2057. }
  2058. int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
  2059. {
  2060. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2061. if (is_valid_ether_addr(bssid)) {
  2062. memcpy(ifmgd->bssid, bssid, ETH_ALEN);
  2063. ifmgd->flags |= IEEE80211_STA_BSSID_SET;
  2064. } else {
  2065. memset(ifmgd->bssid, 0, ETH_ALEN);
  2066. ifmgd->flags &= ~IEEE80211_STA_BSSID_SET;
  2067. }
  2068. return ieee80211_sta_commit(sdata);
  2069. }
  2070. int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata,
  2071. const char *ie, size_t len)
  2072. {
  2073. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2074. if (len == 0 && ifmgd->extra_ie_len == 0)
  2075. return -EALREADY;
  2076. if (len == ifmgd->extra_ie_len && ifmgd->extra_ie &&
  2077. memcmp(ifmgd->extra_ie, ie, len) == 0)
  2078. return -EALREADY;
  2079. kfree(ifmgd->extra_ie);
  2080. if (len == 0) {
  2081. ifmgd->extra_ie = NULL;
  2082. ifmgd->extra_ie_len = 0;
  2083. return 0;
  2084. }
  2085. ifmgd->extra_ie = kmalloc(len, GFP_KERNEL);
  2086. if (!ifmgd->extra_ie) {
  2087. ifmgd->extra_ie_len = 0;
  2088. return -ENOMEM;
  2089. }
  2090. memcpy(ifmgd->extra_ie, ie, len);
  2091. ifmgd->extra_ie_len = len;
  2092. return 0;
  2093. }
  2094. int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
  2095. {
  2096. printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
  2097. sdata->dev->name, reason);
  2098. ieee80211_set_disassoc(sdata, true, true, reason);
  2099. return 0;
  2100. }
  2101. int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
  2102. {
  2103. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  2104. printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
  2105. sdata->dev->name, reason);
  2106. if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED))
  2107. return -ENOLINK;
  2108. ieee80211_set_disassoc(sdata, false, true, reason);
  2109. return 0;
  2110. }
  2111. /* scan finished notification */
  2112. void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
  2113. {
  2114. struct ieee80211_sub_if_data *sdata = local->scan_sdata;
  2115. /* Restart STA timers */
  2116. rcu_read_lock();
  2117. list_for_each_entry_rcu(sdata, &local->interfaces, list)
  2118. ieee80211_restart_sta_timer(sdata);
  2119. rcu_read_unlock();
  2120. }
  2121. int ieee80211_max_network_latency(struct notifier_block *nb,
  2122. unsigned long data, void *dummy)
  2123. {
  2124. s32 latency_usec = (s32) data;
  2125. struct ieee80211_local *local =
  2126. container_of(nb, struct ieee80211_local,
  2127. network_latency_notifier);
  2128. mutex_lock(&local->iflist_mtx);
  2129. ieee80211_recalc_ps(local, latency_usec);
  2130. mutex_unlock(&local->iflist_mtx);
  2131. return 0;
  2132. }