util.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. /*
  2. * Copyright 2002-2005, Instant802 Networks, Inc.
  3. * Copyright 2005-2006, Devicescape Software, Inc.
  4. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  5. * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * utilities for mac80211
  12. */
  13. #include <net/mac80211.h>
  14. #include <linux/netdevice.h>
  15. #include <linux/export.h>
  16. #include <linux/types.h>
  17. #include <linux/slab.h>
  18. #include <linux/skbuff.h>
  19. #include <linux/etherdevice.h>
  20. #include <linux/if_arp.h>
  21. #include <linux/bitmap.h>
  22. #include <linux/crc32.h>
  23. #include <net/net_namespace.h>
  24. #include <net/cfg80211.h>
  25. #include <net/rtnetlink.h>
  26. #include "ieee80211_i.h"
  27. #include "driver-ops.h"
  28. #include "rate.h"
  29. #include "mesh.h"
  30. #include "wme.h"
  31. #include "led.h"
  32. #include "wep.h"
  33. /* privid for wiphys to determine whether they belong to us or not */
  34. void *mac80211_wiphy_privid = &mac80211_wiphy_privid;
  35. struct ieee80211_hw *wiphy_to_ieee80211_hw(struct wiphy *wiphy)
  36. {
  37. struct ieee80211_local *local;
  38. BUG_ON(!wiphy);
  39. local = wiphy_priv(wiphy);
  40. return &local->hw;
  41. }
  42. EXPORT_SYMBOL(wiphy_to_ieee80211_hw);
  43. u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
  44. enum nl80211_iftype type)
  45. {
  46. __le16 fc = hdr->frame_control;
  47. /* drop ACK/CTS frames and incorrect hdr len (ctrl) */
  48. if (len < 16)
  49. return NULL;
  50. if (ieee80211_is_data(fc)) {
  51. if (len < 24) /* drop incorrect hdr len (data) */
  52. return NULL;
  53. if (ieee80211_has_a4(fc))
  54. return NULL;
  55. if (ieee80211_has_tods(fc))
  56. return hdr->addr1;
  57. if (ieee80211_has_fromds(fc))
  58. return hdr->addr2;
  59. return hdr->addr3;
  60. }
  61. if (ieee80211_is_mgmt(fc)) {
  62. if (len < 24) /* drop incorrect hdr len (mgmt) */
  63. return NULL;
  64. return hdr->addr3;
  65. }
  66. if (ieee80211_is_ctl(fc)) {
  67. if(ieee80211_is_pspoll(fc))
  68. return hdr->addr1;
  69. if (ieee80211_is_back_req(fc)) {
  70. switch (type) {
  71. case NL80211_IFTYPE_STATION:
  72. return hdr->addr2;
  73. case NL80211_IFTYPE_AP:
  74. case NL80211_IFTYPE_AP_VLAN:
  75. return hdr->addr1;
  76. default:
  77. break; /* fall through to the return */
  78. }
  79. }
  80. }
  81. return NULL;
  82. }
  83. void ieee80211_tx_set_protected(struct ieee80211_tx_data *tx)
  84. {
  85. struct sk_buff *skb;
  86. struct ieee80211_hdr *hdr;
  87. skb_queue_walk(&tx->skbs, skb) {
  88. hdr = (struct ieee80211_hdr *) skb->data;
  89. hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
  90. }
  91. }
  92. int ieee80211_frame_duration(enum ieee80211_band band, size_t len,
  93. int rate, int erp, int short_preamble)
  94. {
  95. int dur;
  96. /* calculate duration (in microseconds, rounded up to next higher
  97. * integer if it includes a fractional microsecond) to send frame of
  98. * len bytes (does not include FCS) at the given rate. Duration will
  99. * also include SIFS.
  100. *
  101. * rate is in 100 kbps, so divident is multiplied by 10 in the
  102. * DIV_ROUND_UP() operations.
  103. */
  104. if (band == IEEE80211_BAND_5GHZ || erp) {
  105. /*
  106. * OFDM:
  107. *
  108. * N_DBPS = DATARATE x 4
  109. * N_SYM = Ceiling((16+8xLENGTH+6) / N_DBPS)
  110. * (16 = SIGNAL time, 6 = tail bits)
  111. * TXTIME = T_PREAMBLE + T_SIGNAL + T_SYM x N_SYM + Signal Ext
  112. *
  113. * T_SYM = 4 usec
  114. * 802.11a - 17.5.2: aSIFSTime = 16 usec
  115. * 802.11g - 19.8.4: aSIFSTime = 10 usec +
  116. * signal ext = 6 usec
  117. */
  118. dur = 16; /* SIFS + signal ext */
  119. dur += 16; /* 17.3.2.3: T_PREAMBLE = 16 usec */
  120. dur += 4; /* 17.3.2.3: T_SIGNAL = 4 usec */
  121. dur += 4 * DIV_ROUND_UP((16 + 8 * (len + 4) + 6) * 10,
  122. 4 * rate); /* T_SYM x N_SYM */
  123. } else {
  124. /*
  125. * 802.11b or 802.11g with 802.11b compatibility:
  126. * 18.3.4: TXTIME = PreambleLength + PLCPHeaderTime +
  127. * Ceiling(((LENGTH+PBCC)x8)/DATARATE). PBCC=0.
  128. *
  129. * 802.11 (DS): 15.3.3, 802.11b: 18.3.4
  130. * aSIFSTime = 10 usec
  131. * aPreambleLength = 144 usec or 72 usec with short preamble
  132. * aPLCPHeaderLength = 48 usec or 24 usec with short preamble
  133. */
  134. dur = 10; /* aSIFSTime = 10 usec */
  135. dur += short_preamble ? (72 + 24) : (144 + 48);
  136. dur += DIV_ROUND_UP(8 * (len + 4) * 10, rate);
  137. }
  138. return dur;
  139. }
  140. /* Exported duration function for driver use */
  141. __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
  142. struct ieee80211_vif *vif,
  143. enum ieee80211_band band,
  144. size_t frame_len,
  145. struct ieee80211_rate *rate)
  146. {
  147. struct ieee80211_sub_if_data *sdata;
  148. u16 dur;
  149. int erp;
  150. bool short_preamble = false;
  151. erp = 0;
  152. if (vif) {
  153. sdata = vif_to_sdata(vif);
  154. short_preamble = sdata->vif.bss_conf.use_short_preamble;
  155. if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
  156. erp = rate->flags & IEEE80211_RATE_ERP_G;
  157. }
  158. dur = ieee80211_frame_duration(band, frame_len, rate->bitrate, erp,
  159. short_preamble);
  160. return cpu_to_le16(dur);
  161. }
  162. EXPORT_SYMBOL(ieee80211_generic_frame_duration);
  163. __le16 ieee80211_rts_duration(struct ieee80211_hw *hw,
  164. struct ieee80211_vif *vif, size_t frame_len,
  165. const struct ieee80211_tx_info *frame_txctl)
  166. {
  167. struct ieee80211_local *local = hw_to_local(hw);
  168. struct ieee80211_rate *rate;
  169. struct ieee80211_sub_if_data *sdata;
  170. bool short_preamble;
  171. int erp;
  172. u16 dur;
  173. struct ieee80211_supported_band *sband;
  174. sband = local->hw.wiphy->bands[frame_txctl->band];
  175. short_preamble = false;
  176. rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
  177. erp = 0;
  178. if (vif) {
  179. sdata = vif_to_sdata(vif);
  180. short_preamble = sdata->vif.bss_conf.use_short_preamble;
  181. if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
  182. erp = rate->flags & IEEE80211_RATE_ERP_G;
  183. }
  184. /* CTS duration */
  185. dur = ieee80211_frame_duration(sband->band, 10, rate->bitrate,
  186. erp, short_preamble);
  187. /* Data frame duration */
  188. dur += ieee80211_frame_duration(sband->band, frame_len, rate->bitrate,
  189. erp, short_preamble);
  190. /* ACK duration */
  191. dur += ieee80211_frame_duration(sband->band, 10, rate->bitrate,
  192. erp, short_preamble);
  193. return cpu_to_le16(dur);
  194. }
  195. EXPORT_SYMBOL(ieee80211_rts_duration);
  196. __le16 ieee80211_ctstoself_duration(struct ieee80211_hw *hw,
  197. struct ieee80211_vif *vif,
  198. size_t frame_len,
  199. const struct ieee80211_tx_info *frame_txctl)
  200. {
  201. struct ieee80211_local *local = hw_to_local(hw);
  202. struct ieee80211_rate *rate;
  203. struct ieee80211_sub_if_data *sdata;
  204. bool short_preamble;
  205. int erp;
  206. u16 dur;
  207. struct ieee80211_supported_band *sband;
  208. sband = local->hw.wiphy->bands[frame_txctl->band];
  209. short_preamble = false;
  210. rate = &sband->bitrates[frame_txctl->control.rts_cts_rate_idx];
  211. erp = 0;
  212. if (vif) {
  213. sdata = vif_to_sdata(vif);
  214. short_preamble = sdata->vif.bss_conf.use_short_preamble;
  215. if (sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
  216. erp = rate->flags & IEEE80211_RATE_ERP_G;
  217. }
  218. /* Data frame duration */
  219. dur = ieee80211_frame_duration(sband->band, frame_len, rate->bitrate,
  220. erp, short_preamble);
  221. if (!(frame_txctl->flags & IEEE80211_TX_CTL_NO_ACK)) {
  222. /* ACK duration */
  223. dur += ieee80211_frame_duration(sband->band, 10, rate->bitrate,
  224. erp, short_preamble);
  225. }
  226. return cpu_to_le16(dur);
  227. }
  228. EXPORT_SYMBOL(ieee80211_ctstoself_duration);
  229. void ieee80211_propagate_queue_wake(struct ieee80211_local *local, int queue)
  230. {
  231. struct ieee80211_sub_if_data *sdata;
  232. int n_acs = IEEE80211_NUM_ACS;
  233. if (local->hw.queues < IEEE80211_NUM_ACS)
  234. n_acs = 1;
  235. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  236. int ac;
  237. if (test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))
  238. continue;
  239. if (sdata->vif.cab_queue != IEEE80211_INVAL_HW_QUEUE &&
  240. local->queue_stop_reasons[sdata->vif.cab_queue] != 0)
  241. continue;
  242. for (ac = 0; ac < n_acs; ac++) {
  243. int ac_queue = sdata->vif.hw_queue[ac];
  244. if (ac_queue == queue ||
  245. (sdata->vif.cab_queue == queue &&
  246. local->queue_stop_reasons[ac_queue] == 0 &&
  247. skb_queue_empty(&local->pending[ac_queue])))
  248. netif_wake_subqueue(sdata->dev, ac);
  249. }
  250. }
  251. }
  252. static void __ieee80211_wake_queue(struct ieee80211_hw *hw, int queue,
  253. enum queue_stop_reason reason)
  254. {
  255. struct ieee80211_local *local = hw_to_local(hw);
  256. trace_wake_queue(local, queue, reason);
  257. if (WARN_ON(queue >= hw->queues))
  258. return;
  259. if (!test_bit(reason, &local->queue_stop_reasons[queue]))
  260. return;
  261. __clear_bit(reason, &local->queue_stop_reasons[queue]);
  262. if (local->queue_stop_reasons[queue] != 0)
  263. /* someone still has this queue stopped */
  264. return;
  265. if (skb_queue_empty(&local->pending[queue])) {
  266. rcu_read_lock();
  267. ieee80211_propagate_queue_wake(local, queue);
  268. rcu_read_unlock();
  269. } else
  270. tasklet_schedule(&local->tx_pending_tasklet);
  271. }
  272. void ieee80211_wake_queue_by_reason(struct ieee80211_hw *hw, int queue,
  273. enum queue_stop_reason reason)
  274. {
  275. struct ieee80211_local *local = hw_to_local(hw);
  276. unsigned long flags;
  277. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  278. __ieee80211_wake_queue(hw, queue, reason);
  279. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  280. }
  281. void ieee80211_wake_queue(struct ieee80211_hw *hw, int queue)
  282. {
  283. ieee80211_wake_queue_by_reason(hw, queue,
  284. IEEE80211_QUEUE_STOP_REASON_DRIVER);
  285. }
  286. EXPORT_SYMBOL(ieee80211_wake_queue);
  287. static void __ieee80211_stop_queue(struct ieee80211_hw *hw, int queue,
  288. enum queue_stop_reason reason)
  289. {
  290. struct ieee80211_local *local = hw_to_local(hw);
  291. struct ieee80211_sub_if_data *sdata;
  292. int n_acs = IEEE80211_NUM_ACS;
  293. trace_stop_queue(local, queue, reason);
  294. if (WARN_ON(queue >= hw->queues))
  295. return;
  296. if (test_bit(reason, &local->queue_stop_reasons[queue]))
  297. return;
  298. __set_bit(reason, &local->queue_stop_reasons[queue]);
  299. if (local->hw.queues < IEEE80211_NUM_ACS)
  300. n_acs = 1;
  301. rcu_read_lock();
  302. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  303. int ac;
  304. for (ac = 0; ac < n_acs; ac++) {
  305. if (sdata->vif.hw_queue[ac] == queue ||
  306. sdata->vif.cab_queue == queue)
  307. netif_stop_subqueue(sdata->dev, ac);
  308. }
  309. }
  310. rcu_read_unlock();
  311. }
  312. void ieee80211_stop_queue_by_reason(struct ieee80211_hw *hw, int queue,
  313. enum queue_stop_reason reason)
  314. {
  315. struct ieee80211_local *local = hw_to_local(hw);
  316. unsigned long flags;
  317. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  318. __ieee80211_stop_queue(hw, queue, reason);
  319. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  320. }
  321. void ieee80211_stop_queue(struct ieee80211_hw *hw, int queue)
  322. {
  323. ieee80211_stop_queue_by_reason(hw, queue,
  324. IEEE80211_QUEUE_STOP_REASON_DRIVER);
  325. }
  326. EXPORT_SYMBOL(ieee80211_stop_queue);
  327. void ieee80211_add_pending_skb(struct ieee80211_local *local,
  328. struct sk_buff *skb)
  329. {
  330. struct ieee80211_hw *hw = &local->hw;
  331. unsigned long flags;
  332. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  333. int queue = info->hw_queue;
  334. if (WARN_ON(!info->control.vif)) {
  335. kfree_skb(skb);
  336. return;
  337. }
  338. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  339. __ieee80211_stop_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
  340. __skb_queue_tail(&local->pending[queue], skb);
  341. __ieee80211_wake_queue(hw, queue, IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
  342. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  343. }
  344. void ieee80211_add_pending_skbs_fn(struct ieee80211_local *local,
  345. struct sk_buff_head *skbs,
  346. void (*fn)(void *data), void *data)
  347. {
  348. struct ieee80211_hw *hw = &local->hw;
  349. struct sk_buff *skb;
  350. unsigned long flags;
  351. int queue, i;
  352. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  353. while ((skb = skb_dequeue(skbs))) {
  354. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  355. if (WARN_ON(!info->control.vif)) {
  356. kfree_skb(skb);
  357. continue;
  358. }
  359. queue = info->hw_queue;
  360. __ieee80211_stop_queue(hw, queue,
  361. IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
  362. __skb_queue_tail(&local->pending[queue], skb);
  363. }
  364. if (fn)
  365. fn(data);
  366. for (i = 0; i < hw->queues; i++)
  367. __ieee80211_wake_queue(hw, i,
  368. IEEE80211_QUEUE_STOP_REASON_SKB_ADD);
  369. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  370. }
  371. void ieee80211_stop_queues_by_reason(struct ieee80211_hw *hw,
  372. enum queue_stop_reason reason)
  373. {
  374. struct ieee80211_local *local = hw_to_local(hw);
  375. unsigned long flags;
  376. int i;
  377. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  378. for (i = 0; i < hw->queues; i++)
  379. __ieee80211_stop_queue(hw, i, reason);
  380. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  381. }
  382. void ieee80211_stop_queues(struct ieee80211_hw *hw)
  383. {
  384. ieee80211_stop_queues_by_reason(hw,
  385. IEEE80211_QUEUE_STOP_REASON_DRIVER);
  386. }
  387. EXPORT_SYMBOL(ieee80211_stop_queues);
  388. int ieee80211_queue_stopped(struct ieee80211_hw *hw, int queue)
  389. {
  390. struct ieee80211_local *local = hw_to_local(hw);
  391. unsigned long flags;
  392. int ret;
  393. if (WARN_ON(queue >= hw->queues))
  394. return true;
  395. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  396. ret = !!local->queue_stop_reasons[queue];
  397. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  398. return ret;
  399. }
  400. EXPORT_SYMBOL(ieee80211_queue_stopped);
  401. void ieee80211_wake_queues_by_reason(struct ieee80211_hw *hw,
  402. enum queue_stop_reason reason)
  403. {
  404. struct ieee80211_local *local = hw_to_local(hw);
  405. unsigned long flags;
  406. int i;
  407. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  408. for (i = 0; i < hw->queues; i++)
  409. __ieee80211_wake_queue(hw, i, reason);
  410. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  411. }
  412. void ieee80211_wake_queues(struct ieee80211_hw *hw)
  413. {
  414. ieee80211_wake_queues_by_reason(hw, IEEE80211_QUEUE_STOP_REASON_DRIVER);
  415. }
  416. EXPORT_SYMBOL(ieee80211_wake_queues);
  417. void ieee80211_iterate_active_interfaces(
  418. struct ieee80211_hw *hw,
  419. void (*iterator)(void *data, u8 *mac,
  420. struct ieee80211_vif *vif),
  421. void *data)
  422. {
  423. struct ieee80211_local *local = hw_to_local(hw);
  424. struct ieee80211_sub_if_data *sdata;
  425. mutex_lock(&local->iflist_mtx);
  426. list_for_each_entry(sdata, &local->interfaces, list) {
  427. switch (sdata->vif.type) {
  428. case NL80211_IFTYPE_MONITOR:
  429. case NL80211_IFTYPE_AP_VLAN:
  430. continue;
  431. default:
  432. break;
  433. }
  434. if (ieee80211_sdata_running(sdata))
  435. iterator(data, sdata->vif.addr,
  436. &sdata->vif);
  437. }
  438. sdata = rcu_dereference_protected(local->monitor_sdata,
  439. lockdep_is_held(&local->iflist_mtx));
  440. if (sdata)
  441. iterator(data, sdata->vif.addr, &sdata->vif);
  442. mutex_unlock(&local->iflist_mtx);
  443. }
  444. EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces);
  445. void ieee80211_iterate_active_interfaces_atomic(
  446. struct ieee80211_hw *hw,
  447. void (*iterator)(void *data, u8 *mac,
  448. struct ieee80211_vif *vif),
  449. void *data)
  450. {
  451. struct ieee80211_local *local = hw_to_local(hw);
  452. struct ieee80211_sub_if_data *sdata;
  453. rcu_read_lock();
  454. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  455. switch (sdata->vif.type) {
  456. case NL80211_IFTYPE_MONITOR:
  457. case NL80211_IFTYPE_AP_VLAN:
  458. continue;
  459. default:
  460. break;
  461. }
  462. if (ieee80211_sdata_running(sdata))
  463. iterator(data, sdata->vif.addr,
  464. &sdata->vif);
  465. }
  466. sdata = rcu_dereference(local->monitor_sdata);
  467. if (sdata)
  468. iterator(data, sdata->vif.addr, &sdata->vif);
  469. rcu_read_unlock();
  470. }
  471. EXPORT_SYMBOL_GPL(ieee80211_iterate_active_interfaces_atomic);
  472. /*
  473. * Nothing should have been stuffed into the workqueue during
  474. * the suspend->resume cycle. If this WARN is seen then there
  475. * is a bug with either the driver suspend or something in
  476. * mac80211 stuffing into the workqueue which we haven't yet
  477. * cleared during mac80211's suspend cycle.
  478. */
  479. static bool ieee80211_can_queue_work(struct ieee80211_local *local)
  480. {
  481. if (WARN(local->suspended && !local->resuming,
  482. "queueing ieee80211 work while going to suspend\n"))
  483. return false;
  484. return true;
  485. }
  486. void ieee80211_queue_work(struct ieee80211_hw *hw, struct work_struct *work)
  487. {
  488. struct ieee80211_local *local = hw_to_local(hw);
  489. if (!ieee80211_can_queue_work(local))
  490. return;
  491. queue_work(local->workqueue, work);
  492. }
  493. EXPORT_SYMBOL(ieee80211_queue_work);
  494. void ieee80211_queue_delayed_work(struct ieee80211_hw *hw,
  495. struct delayed_work *dwork,
  496. unsigned long delay)
  497. {
  498. struct ieee80211_local *local = hw_to_local(hw);
  499. if (!ieee80211_can_queue_work(local))
  500. return;
  501. queue_delayed_work(local->workqueue, dwork, delay);
  502. }
  503. EXPORT_SYMBOL(ieee80211_queue_delayed_work);
  504. u32 ieee802_11_parse_elems_crc(u8 *start, size_t len,
  505. struct ieee802_11_elems *elems,
  506. u64 filter, u32 crc)
  507. {
  508. size_t left = len;
  509. u8 *pos = start;
  510. bool calc_crc = filter != 0;
  511. DECLARE_BITMAP(seen_elems, 256);
  512. bitmap_zero(seen_elems, 256);
  513. memset(elems, 0, sizeof(*elems));
  514. elems->ie_start = start;
  515. elems->total_len = len;
  516. while (left >= 2) {
  517. u8 id, elen;
  518. bool elem_parse_failed;
  519. id = *pos++;
  520. elen = *pos++;
  521. left -= 2;
  522. if (elen > left) {
  523. elems->parse_error = true;
  524. break;
  525. }
  526. if (id != WLAN_EID_VENDOR_SPECIFIC &&
  527. id != WLAN_EID_QUIET &&
  528. test_bit(id, seen_elems)) {
  529. elems->parse_error = true;
  530. left -= elen;
  531. pos += elen;
  532. continue;
  533. }
  534. if (calc_crc && id < 64 && (filter & (1ULL << id)))
  535. crc = crc32_be(crc, pos - 2, elen + 2);
  536. elem_parse_failed = false;
  537. switch (id) {
  538. case WLAN_EID_SSID:
  539. elems->ssid = pos;
  540. elems->ssid_len = elen;
  541. break;
  542. case WLAN_EID_SUPP_RATES:
  543. elems->supp_rates = pos;
  544. elems->supp_rates_len = elen;
  545. break;
  546. case WLAN_EID_FH_PARAMS:
  547. elems->fh_params = pos;
  548. elems->fh_params_len = elen;
  549. break;
  550. case WLAN_EID_DS_PARAMS:
  551. elems->ds_params = pos;
  552. elems->ds_params_len = elen;
  553. break;
  554. case WLAN_EID_CF_PARAMS:
  555. elems->cf_params = pos;
  556. elems->cf_params_len = elen;
  557. break;
  558. case WLAN_EID_TIM:
  559. if (elen >= sizeof(struct ieee80211_tim_ie)) {
  560. elems->tim = (void *)pos;
  561. elems->tim_len = elen;
  562. } else
  563. elem_parse_failed = true;
  564. break;
  565. case WLAN_EID_IBSS_PARAMS:
  566. elems->ibss_params = pos;
  567. elems->ibss_params_len = elen;
  568. break;
  569. case WLAN_EID_CHALLENGE:
  570. elems->challenge = pos;
  571. elems->challenge_len = elen;
  572. break;
  573. case WLAN_EID_VENDOR_SPECIFIC:
  574. if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 &&
  575. pos[2] == 0xf2) {
  576. /* Microsoft OUI (00:50:F2) */
  577. if (calc_crc)
  578. crc = crc32_be(crc, pos - 2, elen + 2);
  579. if (pos[3] == 1) {
  580. /* OUI Type 1 - WPA IE */
  581. elems->wpa = pos;
  582. elems->wpa_len = elen;
  583. } else if (elen >= 5 && pos[3] == 2) {
  584. /* OUI Type 2 - WMM IE */
  585. if (pos[4] == 0) {
  586. elems->wmm_info = pos;
  587. elems->wmm_info_len = elen;
  588. } else if (pos[4] == 1) {
  589. elems->wmm_param = pos;
  590. elems->wmm_param_len = elen;
  591. }
  592. }
  593. }
  594. break;
  595. case WLAN_EID_RSN:
  596. elems->rsn = pos;
  597. elems->rsn_len = elen;
  598. break;
  599. case WLAN_EID_ERP_INFO:
  600. elems->erp_info = pos;
  601. elems->erp_info_len = elen;
  602. break;
  603. case WLAN_EID_EXT_SUPP_RATES:
  604. elems->ext_supp_rates = pos;
  605. elems->ext_supp_rates_len = elen;
  606. break;
  607. case WLAN_EID_HT_CAPABILITY:
  608. if (elen >= sizeof(struct ieee80211_ht_cap))
  609. elems->ht_cap_elem = (void *)pos;
  610. else
  611. elem_parse_failed = true;
  612. break;
  613. case WLAN_EID_HT_OPERATION:
  614. if (elen >= sizeof(struct ieee80211_ht_operation))
  615. elems->ht_operation = (void *)pos;
  616. else
  617. elem_parse_failed = true;
  618. break;
  619. case WLAN_EID_MESH_ID:
  620. elems->mesh_id = pos;
  621. elems->mesh_id_len = elen;
  622. break;
  623. case WLAN_EID_MESH_CONFIG:
  624. if (elen >= sizeof(struct ieee80211_meshconf_ie))
  625. elems->mesh_config = (void *)pos;
  626. else
  627. elem_parse_failed = true;
  628. break;
  629. case WLAN_EID_PEER_MGMT:
  630. elems->peering = pos;
  631. elems->peering_len = elen;
  632. break;
  633. case WLAN_EID_PREQ:
  634. elems->preq = pos;
  635. elems->preq_len = elen;
  636. break;
  637. case WLAN_EID_PREP:
  638. elems->prep = pos;
  639. elems->prep_len = elen;
  640. break;
  641. case WLAN_EID_PERR:
  642. elems->perr = pos;
  643. elems->perr_len = elen;
  644. break;
  645. case WLAN_EID_RANN:
  646. if (elen >= sizeof(struct ieee80211_rann_ie))
  647. elems->rann = (void *)pos;
  648. else
  649. elem_parse_failed = true;
  650. break;
  651. case WLAN_EID_CHANNEL_SWITCH:
  652. elems->ch_switch_elem = pos;
  653. elems->ch_switch_elem_len = elen;
  654. break;
  655. case WLAN_EID_QUIET:
  656. if (!elems->quiet_elem) {
  657. elems->quiet_elem = pos;
  658. elems->quiet_elem_len = elen;
  659. }
  660. elems->num_of_quiet_elem++;
  661. break;
  662. case WLAN_EID_COUNTRY:
  663. elems->country_elem = pos;
  664. elems->country_elem_len = elen;
  665. break;
  666. case WLAN_EID_PWR_CONSTRAINT:
  667. elems->pwr_constr_elem = pos;
  668. elems->pwr_constr_elem_len = elen;
  669. break;
  670. case WLAN_EID_TIMEOUT_INTERVAL:
  671. elems->timeout_int = pos;
  672. elems->timeout_int_len = elen;
  673. break;
  674. default:
  675. break;
  676. }
  677. if (elem_parse_failed)
  678. elems->parse_error = true;
  679. else
  680. set_bit(id, seen_elems);
  681. left -= elen;
  682. pos += elen;
  683. }
  684. if (left != 0)
  685. elems->parse_error = true;
  686. return crc;
  687. }
  688. void ieee802_11_parse_elems(u8 *start, size_t len,
  689. struct ieee802_11_elems *elems)
  690. {
  691. ieee802_11_parse_elems_crc(start, len, elems, 0, 0);
  692. }
  693. void ieee80211_set_wmm_default(struct ieee80211_sub_if_data *sdata,
  694. bool bss_notify)
  695. {
  696. struct ieee80211_local *local = sdata->local;
  697. struct ieee80211_tx_queue_params qparam;
  698. int ac;
  699. bool use_11b, enable_qos;
  700. int aCWmin, aCWmax;
  701. if (!local->ops->conf_tx)
  702. return;
  703. if (local->hw.queues < IEEE80211_NUM_ACS)
  704. return;
  705. memset(&qparam, 0, sizeof(qparam));
  706. use_11b = (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) &&
  707. !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE);
  708. /*
  709. * By default disable QoS in STA mode for old access points, which do
  710. * not support 802.11e. New APs will provide proper queue parameters,
  711. * that we will configure later.
  712. */
  713. enable_qos = (sdata->vif.type != NL80211_IFTYPE_STATION);
  714. for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
  715. /* Set defaults according to 802.11-2007 Table 7-37 */
  716. aCWmax = 1023;
  717. if (use_11b)
  718. aCWmin = 31;
  719. else
  720. aCWmin = 15;
  721. if (enable_qos) {
  722. switch (ac) {
  723. case IEEE80211_AC_BK:
  724. qparam.cw_max = aCWmax;
  725. qparam.cw_min = aCWmin;
  726. qparam.txop = 0;
  727. qparam.aifs = 7;
  728. break;
  729. /* never happens but let's not leave undefined */
  730. default:
  731. case IEEE80211_AC_BE:
  732. qparam.cw_max = aCWmax;
  733. qparam.cw_min = aCWmin;
  734. qparam.txop = 0;
  735. qparam.aifs = 3;
  736. break;
  737. case IEEE80211_AC_VI:
  738. qparam.cw_max = aCWmin;
  739. qparam.cw_min = (aCWmin + 1) / 2 - 1;
  740. if (use_11b)
  741. qparam.txop = 6016/32;
  742. else
  743. qparam.txop = 3008/32;
  744. qparam.aifs = 2;
  745. break;
  746. case IEEE80211_AC_VO:
  747. qparam.cw_max = (aCWmin + 1) / 2 - 1;
  748. qparam.cw_min = (aCWmin + 1) / 4 - 1;
  749. if (use_11b)
  750. qparam.txop = 3264/32;
  751. else
  752. qparam.txop = 1504/32;
  753. qparam.aifs = 2;
  754. break;
  755. }
  756. } else {
  757. /* Confiure old 802.11b/g medium access rules. */
  758. qparam.cw_max = aCWmax;
  759. qparam.cw_min = aCWmin;
  760. qparam.txop = 0;
  761. qparam.aifs = 2;
  762. }
  763. qparam.uapsd = false;
  764. sdata->tx_conf[ac] = qparam;
  765. drv_conf_tx(local, sdata, ac, &qparam);
  766. }
  767. if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
  768. sdata->vif.bss_conf.qos = enable_qos;
  769. if (bss_notify)
  770. ieee80211_bss_info_change_notify(sdata,
  771. BSS_CHANGED_QOS);
  772. }
  773. }
  774. void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
  775. const size_t supp_rates_len,
  776. const u8 *supp_rates)
  777. {
  778. struct ieee80211_local *local = sdata->local;
  779. int i, have_higher_than_11mbit = 0;
  780. /* cf. IEEE 802.11 9.2.12 */
  781. for (i = 0; i < supp_rates_len; i++)
  782. if ((supp_rates[i] & 0x7f) * 5 > 110)
  783. have_higher_than_11mbit = 1;
  784. if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
  785. have_higher_than_11mbit)
  786. sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
  787. else
  788. sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
  789. ieee80211_set_wmm_default(sdata, true);
  790. }
  791. u32 ieee80211_mandatory_rates(struct ieee80211_local *local,
  792. enum ieee80211_band band)
  793. {
  794. struct ieee80211_supported_band *sband;
  795. struct ieee80211_rate *bitrates;
  796. u32 mandatory_rates;
  797. enum ieee80211_rate_flags mandatory_flag;
  798. int i;
  799. sband = local->hw.wiphy->bands[band];
  800. if (WARN_ON(!sband))
  801. return 1;
  802. if (band == IEEE80211_BAND_2GHZ)
  803. mandatory_flag = IEEE80211_RATE_MANDATORY_B;
  804. else
  805. mandatory_flag = IEEE80211_RATE_MANDATORY_A;
  806. bitrates = sband->bitrates;
  807. mandatory_rates = 0;
  808. for (i = 0; i < sband->n_bitrates; i++)
  809. if (bitrates[i].flags & mandatory_flag)
  810. mandatory_rates |= BIT(i);
  811. return mandatory_rates;
  812. }
  813. void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
  814. u16 transaction, u16 auth_alg,
  815. u8 *extra, size_t extra_len, const u8 *da,
  816. const u8 *bssid, const u8 *key, u8 key_len, u8 key_idx)
  817. {
  818. struct ieee80211_local *local = sdata->local;
  819. struct sk_buff *skb;
  820. struct ieee80211_mgmt *mgmt;
  821. int err;
  822. skb = dev_alloc_skb(local->hw.extra_tx_headroom +
  823. sizeof(*mgmt) + 6 + extra_len);
  824. if (!skb)
  825. return;
  826. skb_reserve(skb, local->hw.extra_tx_headroom);
  827. mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
  828. memset(mgmt, 0, 24 + 6);
  829. mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  830. IEEE80211_STYPE_AUTH);
  831. memcpy(mgmt->da, da, ETH_ALEN);
  832. memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
  833. memcpy(mgmt->bssid, bssid, ETH_ALEN);
  834. mgmt->u.auth.auth_alg = cpu_to_le16(auth_alg);
  835. mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
  836. mgmt->u.auth.status_code = cpu_to_le16(0);
  837. if (extra)
  838. memcpy(skb_put(skb, extra_len), extra, extra_len);
  839. if (auth_alg == WLAN_AUTH_SHARED_KEY && transaction == 3) {
  840. mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
  841. err = ieee80211_wep_encrypt(local, skb, key, key_len, key_idx);
  842. WARN_ON(err);
  843. }
  844. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  845. ieee80211_tx_skb(sdata, skb);
  846. }
  847. int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
  848. const u8 *ie, size_t ie_len,
  849. enum ieee80211_band band, u32 rate_mask,
  850. u8 channel)
  851. {
  852. struct ieee80211_supported_band *sband;
  853. u8 *pos;
  854. size_t offset = 0, noffset;
  855. int supp_rates_len, i;
  856. u8 rates[32];
  857. int num_rates;
  858. int ext_rates_len;
  859. sband = local->hw.wiphy->bands[band];
  860. if (WARN_ON_ONCE(!sband))
  861. return 0;
  862. pos = buffer;
  863. num_rates = 0;
  864. for (i = 0; i < sband->n_bitrates; i++) {
  865. if ((BIT(i) & rate_mask) == 0)
  866. continue; /* skip rate */
  867. rates[num_rates++] = (u8) (sband->bitrates[i].bitrate / 5);
  868. }
  869. supp_rates_len = min_t(int, num_rates, 8);
  870. *pos++ = WLAN_EID_SUPP_RATES;
  871. *pos++ = supp_rates_len;
  872. memcpy(pos, rates, supp_rates_len);
  873. pos += supp_rates_len;
  874. /* insert "request information" if in custom IEs */
  875. if (ie && ie_len) {
  876. static const u8 before_extrates[] = {
  877. WLAN_EID_SSID,
  878. WLAN_EID_SUPP_RATES,
  879. WLAN_EID_REQUEST,
  880. };
  881. noffset = ieee80211_ie_split(ie, ie_len,
  882. before_extrates,
  883. ARRAY_SIZE(before_extrates),
  884. offset);
  885. memcpy(pos, ie + offset, noffset - offset);
  886. pos += noffset - offset;
  887. offset = noffset;
  888. }
  889. ext_rates_len = num_rates - supp_rates_len;
  890. if (ext_rates_len > 0) {
  891. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  892. *pos++ = ext_rates_len;
  893. memcpy(pos, rates + supp_rates_len, ext_rates_len);
  894. pos += ext_rates_len;
  895. }
  896. if (channel && sband->band == IEEE80211_BAND_2GHZ) {
  897. *pos++ = WLAN_EID_DS_PARAMS;
  898. *pos++ = 1;
  899. *pos++ = channel;
  900. }
  901. /* insert custom IEs that go before HT */
  902. if (ie && ie_len) {
  903. static const u8 before_ht[] = {
  904. WLAN_EID_SSID,
  905. WLAN_EID_SUPP_RATES,
  906. WLAN_EID_REQUEST,
  907. WLAN_EID_EXT_SUPP_RATES,
  908. WLAN_EID_DS_PARAMS,
  909. WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
  910. };
  911. noffset = ieee80211_ie_split(ie, ie_len,
  912. before_ht, ARRAY_SIZE(before_ht),
  913. offset);
  914. memcpy(pos, ie + offset, noffset - offset);
  915. pos += noffset - offset;
  916. offset = noffset;
  917. }
  918. if (sband->ht_cap.ht_supported)
  919. pos = ieee80211_ie_build_ht_cap(pos, &sband->ht_cap,
  920. sband->ht_cap.cap);
  921. /*
  922. * If adding more here, adjust code in main.c
  923. * that calculates local->scan_ies_len.
  924. */
  925. /* add any remaining custom IEs */
  926. if (ie && ie_len) {
  927. noffset = ie_len;
  928. memcpy(pos, ie + offset, noffset - offset);
  929. pos += noffset - offset;
  930. }
  931. if (sband->vht_cap.vht_supported)
  932. pos = ieee80211_ie_build_vht_cap(pos, &sband->vht_cap,
  933. sband->vht_cap.cap);
  934. return pos - buffer;
  935. }
  936. struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
  937. u8 *dst, u32 ratemask,
  938. const u8 *ssid, size_t ssid_len,
  939. const u8 *ie, size_t ie_len,
  940. bool directed)
  941. {
  942. struct ieee80211_local *local = sdata->local;
  943. struct sk_buff *skb;
  944. struct ieee80211_mgmt *mgmt;
  945. size_t buf_len;
  946. u8 *buf;
  947. u8 chan;
  948. /* FIXME: come up with a proper value */
  949. buf = kmalloc(200 + ie_len, GFP_KERNEL);
  950. if (!buf)
  951. return NULL;
  952. /*
  953. * Do not send DS Channel parameter for directed probe requests
  954. * in order to maximize the chance that we get a response. Some
  955. * badly-behaved APs don't respond when this parameter is included.
  956. */
  957. if (directed)
  958. chan = 0;
  959. else
  960. chan = ieee80211_frequency_to_channel(
  961. local->hw.conf.channel->center_freq);
  962. buf_len = ieee80211_build_preq_ies(local, buf, ie, ie_len,
  963. local->hw.conf.channel->band,
  964. ratemask, chan);
  965. skb = ieee80211_probereq_get(&local->hw, &sdata->vif,
  966. ssid, ssid_len,
  967. buf, buf_len);
  968. if (!skb)
  969. goto out;
  970. if (dst) {
  971. mgmt = (struct ieee80211_mgmt *) skb->data;
  972. memcpy(mgmt->da, dst, ETH_ALEN);
  973. memcpy(mgmt->bssid, dst, ETH_ALEN);
  974. }
  975. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  976. out:
  977. kfree(buf);
  978. return skb;
  979. }
  980. void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
  981. const u8 *ssid, size_t ssid_len,
  982. const u8 *ie, size_t ie_len,
  983. u32 ratemask, bool directed, bool no_cck)
  984. {
  985. struct sk_buff *skb;
  986. skb = ieee80211_build_probe_req(sdata, dst, ratemask, ssid, ssid_len,
  987. ie, ie_len, directed);
  988. if (skb) {
  989. if (no_cck)
  990. IEEE80211_SKB_CB(skb)->flags |=
  991. IEEE80211_TX_CTL_NO_CCK_RATE;
  992. ieee80211_tx_skb(sdata, skb);
  993. }
  994. }
  995. u32 ieee80211_sta_get_rates(struct ieee80211_local *local,
  996. struct ieee802_11_elems *elems,
  997. enum ieee80211_band band, u32 *basic_rates)
  998. {
  999. struct ieee80211_supported_band *sband;
  1000. struct ieee80211_rate *bitrates;
  1001. size_t num_rates;
  1002. u32 supp_rates;
  1003. int i, j;
  1004. sband = local->hw.wiphy->bands[band];
  1005. if (WARN_ON(!sband))
  1006. return 1;
  1007. bitrates = sband->bitrates;
  1008. num_rates = sband->n_bitrates;
  1009. supp_rates = 0;
  1010. for (i = 0; i < elems->supp_rates_len +
  1011. elems->ext_supp_rates_len; i++) {
  1012. u8 rate = 0;
  1013. int own_rate;
  1014. bool is_basic;
  1015. if (i < elems->supp_rates_len)
  1016. rate = elems->supp_rates[i];
  1017. else if (elems->ext_supp_rates)
  1018. rate = elems->ext_supp_rates
  1019. [i - elems->supp_rates_len];
  1020. own_rate = 5 * (rate & 0x7f);
  1021. is_basic = !!(rate & 0x80);
  1022. if (is_basic && (rate & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
  1023. continue;
  1024. for (j = 0; j < num_rates; j++) {
  1025. if (bitrates[j].bitrate == own_rate) {
  1026. supp_rates |= BIT(j);
  1027. if (basic_rates && is_basic)
  1028. *basic_rates |= BIT(j);
  1029. }
  1030. }
  1031. }
  1032. return supp_rates;
  1033. }
  1034. void ieee80211_stop_device(struct ieee80211_local *local)
  1035. {
  1036. ieee80211_led_radio(local, false);
  1037. ieee80211_mod_tpt_led_trig(local, 0, IEEE80211_TPT_LEDTRIG_FL_RADIO);
  1038. cancel_work_sync(&local->reconfig_filter);
  1039. flush_workqueue(local->workqueue);
  1040. drv_stop(local);
  1041. }
  1042. int ieee80211_reconfig(struct ieee80211_local *local)
  1043. {
  1044. struct ieee80211_hw *hw = &local->hw;
  1045. struct ieee80211_sub_if_data *sdata;
  1046. struct sta_info *sta;
  1047. int res, i;
  1048. #ifdef CONFIG_PM
  1049. if (local->suspended)
  1050. local->resuming = true;
  1051. if (local->wowlan) {
  1052. local->wowlan = false;
  1053. res = drv_resume(local);
  1054. if (res < 0) {
  1055. local->resuming = false;
  1056. return res;
  1057. }
  1058. if (res == 0)
  1059. goto wake_up;
  1060. WARN_ON(res > 1);
  1061. /*
  1062. * res is 1, which means the driver requested
  1063. * to go through a regular reset on wakeup.
  1064. */
  1065. }
  1066. #endif
  1067. /* everything else happens only if HW was up & running */
  1068. if (!local->open_count)
  1069. goto wake_up;
  1070. /*
  1071. * Upon resume hardware can sometimes be goofy due to
  1072. * various platform / driver / bus issues, so restarting
  1073. * the device may at times not work immediately. Propagate
  1074. * the error.
  1075. */
  1076. res = drv_start(local);
  1077. if (res) {
  1078. WARN(local->suspended, "Hardware became unavailable "
  1079. "upon resume. This could be a software issue "
  1080. "prior to suspend or a hardware issue.\n");
  1081. return res;
  1082. }
  1083. /* setup fragmentation threshold */
  1084. drv_set_frag_threshold(local, hw->wiphy->frag_threshold);
  1085. /* setup RTS threshold */
  1086. drv_set_rts_threshold(local, hw->wiphy->rts_threshold);
  1087. /* reset coverage class */
  1088. drv_set_coverage_class(local, hw->wiphy->coverage_class);
  1089. ieee80211_led_radio(local, true);
  1090. ieee80211_mod_tpt_led_trig(local,
  1091. IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
  1092. /* add interfaces */
  1093. sdata = rtnl_dereference(local->monitor_sdata);
  1094. if (sdata) {
  1095. res = drv_add_interface(local, sdata);
  1096. if (WARN_ON(res)) {
  1097. rcu_assign_pointer(local->monitor_sdata, NULL);
  1098. synchronize_net();
  1099. kfree(sdata);
  1100. }
  1101. }
  1102. list_for_each_entry(sdata, &local->interfaces, list) {
  1103. if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
  1104. sdata->vif.type != NL80211_IFTYPE_MONITOR &&
  1105. ieee80211_sdata_running(sdata))
  1106. res = drv_add_interface(local, sdata);
  1107. }
  1108. /* add STAs back */
  1109. mutex_lock(&local->sta_mtx);
  1110. list_for_each_entry(sta, &local->sta_list, list) {
  1111. enum ieee80211_sta_state state;
  1112. if (!sta->uploaded)
  1113. continue;
  1114. /* AP-mode stations will be added later */
  1115. if (sta->sdata->vif.type == NL80211_IFTYPE_AP)
  1116. continue;
  1117. for (state = IEEE80211_STA_NOTEXIST;
  1118. state < sta->sta_state; state++)
  1119. WARN_ON(drv_sta_state(local, sta->sdata, sta, state,
  1120. state + 1));
  1121. }
  1122. mutex_unlock(&local->sta_mtx);
  1123. /* reconfigure tx conf */
  1124. if (hw->queues >= IEEE80211_NUM_ACS) {
  1125. list_for_each_entry(sdata, &local->interfaces, list) {
  1126. if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  1127. sdata->vif.type == NL80211_IFTYPE_MONITOR ||
  1128. !ieee80211_sdata_running(sdata))
  1129. continue;
  1130. for (i = 0; i < IEEE80211_NUM_ACS; i++)
  1131. drv_conf_tx(local, sdata, i,
  1132. &sdata->tx_conf[i]);
  1133. }
  1134. }
  1135. /* reconfigure hardware */
  1136. ieee80211_hw_config(local, ~0);
  1137. ieee80211_configure_filter(local);
  1138. /* Finally also reconfigure all the BSS information */
  1139. list_for_each_entry(sdata, &local->interfaces, list) {
  1140. u32 changed;
  1141. if (!ieee80211_sdata_running(sdata))
  1142. continue;
  1143. /* common change flags for all interface types */
  1144. changed = BSS_CHANGED_ERP_CTS_PROT |
  1145. BSS_CHANGED_ERP_PREAMBLE |
  1146. BSS_CHANGED_ERP_SLOT |
  1147. BSS_CHANGED_HT |
  1148. BSS_CHANGED_BASIC_RATES |
  1149. BSS_CHANGED_BEACON_INT |
  1150. BSS_CHANGED_BSSID |
  1151. BSS_CHANGED_CQM |
  1152. BSS_CHANGED_QOS |
  1153. BSS_CHANGED_IDLE;
  1154. switch (sdata->vif.type) {
  1155. case NL80211_IFTYPE_STATION:
  1156. changed |= BSS_CHANGED_ASSOC |
  1157. BSS_CHANGED_ARP_FILTER;
  1158. mutex_lock(&sdata->u.mgd.mtx);
  1159. ieee80211_bss_info_change_notify(sdata, changed);
  1160. mutex_unlock(&sdata->u.mgd.mtx);
  1161. break;
  1162. case NL80211_IFTYPE_ADHOC:
  1163. changed |= BSS_CHANGED_IBSS;
  1164. /* fall through */
  1165. case NL80211_IFTYPE_AP:
  1166. changed |= BSS_CHANGED_SSID;
  1167. if (sdata->vif.type == NL80211_IFTYPE_AP)
  1168. changed |= BSS_CHANGED_AP_PROBE_RESP;
  1169. /* fall through */
  1170. case NL80211_IFTYPE_MESH_POINT:
  1171. changed |= BSS_CHANGED_BEACON |
  1172. BSS_CHANGED_BEACON_ENABLED;
  1173. ieee80211_bss_info_change_notify(sdata, changed);
  1174. break;
  1175. case NL80211_IFTYPE_WDS:
  1176. break;
  1177. case NL80211_IFTYPE_AP_VLAN:
  1178. case NL80211_IFTYPE_MONITOR:
  1179. /* ignore virtual */
  1180. break;
  1181. case NL80211_IFTYPE_UNSPECIFIED:
  1182. case NUM_NL80211_IFTYPES:
  1183. case NL80211_IFTYPE_P2P_CLIENT:
  1184. case NL80211_IFTYPE_P2P_GO:
  1185. WARN_ON(1);
  1186. break;
  1187. }
  1188. }
  1189. ieee80211_recalc_ps(local, -1);
  1190. /*
  1191. * The sta might be in psm against the ap (e.g. because
  1192. * this was the state before a hw restart), so we
  1193. * explicitly send a null packet in order to make sure
  1194. * it'll sync against the ap (and get out of psm).
  1195. */
  1196. if (!(local->hw.conf.flags & IEEE80211_CONF_PS)) {
  1197. list_for_each_entry(sdata, &local->interfaces, list) {
  1198. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  1199. continue;
  1200. ieee80211_send_nullfunc(local, sdata, 0);
  1201. }
  1202. }
  1203. /* APs are now beaconing, add back stations */
  1204. mutex_lock(&local->sta_mtx);
  1205. list_for_each_entry(sta, &local->sta_list, list) {
  1206. enum ieee80211_sta_state state;
  1207. if (!sta->uploaded)
  1208. continue;
  1209. if (sta->sdata->vif.type != NL80211_IFTYPE_AP)
  1210. continue;
  1211. for (state = IEEE80211_STA_NOTEXIST;
  1212. state < sta->sta_state; state++)
  1213. WARN_ON(drv_sta_state(local, sta->sdata, sta, state,
  1214. state + 1));
  1215. }
  1216. mutex_unlock(&local->sta_mtx);
  1217. /* add back keys */
  1218. list_for_each_entry(sdata, &local->interfaces, list)
  1219. if (ieee80211_sdata_running(sdata))
  1220. ieee80211_enable_keys(sdata);
  1221. wake_up:
  1222. local->in_reconfig = false;
  1223. barrier();
  1224. /*
  1225. * Clear the WLAN_STA_BLOCK_BA flag so new aggregation
  1226. * sessions can be established after a resume.
  1227. *
  1228. * Also tear down aggregation sessions since reconfiguring
  1229. * them in a hardware restart scenario is not easily done
  1230. * right now, and the hardware will have lost information
  1231. * about the sessions, but we and the AP still think they
  1232. * are active. This is really a workaround though.
  1233. */
  1234. if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
  1235. mutex_lock(&local->sta_mtx);
  1236. list_for_each_entry(sta, &local->sta_list, list) {
  1237. ieee80211_sta_tear_down_BA_sessions(sta, true);
  1238. clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
  1239. }
  1240. mutex_unlock(&local->sta_mtx);
  1241. }
  1242. ieee80211_wake_queues_by_reason(hw,
  1243. IEEE80211_QUEUE_STOP_REASON_SUSPEND);
  1244. /*
  1245. * If this is for hw restart things are still running.
  1246. * We may want to change that later, however.
  1247. */
  1248. if (!local->suspended)
  1249. return 0;
  1250. #ifdef CONFIG_PM
  1251. /* first set suspended false, then resuming */
  1252. local->suspended = false;
  1253. mb();
  1254. local->resuming = false;
  1255. list_for_each_entry(sdata, &local->interfaces, list) {
  1256. switch(sdata->vif.type) {
  1257. case NL80211_IFTYPE_STATION:
  1258. ieee80211_sta_restart(sdata);
  1259. break;
  1260. case NL80211_IFTYPE_ADHOC:
  1261. ieee80211_ibss_restart(sdata);
  1262. break;
  1263. case NL80211_IFTYPE_MESH_POINT:
  1264. ieee80211_mesh_restart(sdata);
  1265. break;
  1266. default:
  1267. break;
  1268. }
  1269. }
  1270. mod_timer(&local->sta_cleanup, jiffies + 1);
  1271. mutex_lock(&local->sta_mtx);
  1272. list_for_each_entry(sta, &local->sta_list, list)
  1273. mesh_plink_restart(sta);
  1274. mutex_unlock(&local->sta_mtx);
  1275. #else
  1276. WARN_ON(1);
  1277. #endif
  1278. return 0;
  1279. }
  1280. void ieee80211_resume_disconnect(struct ieee80211_vif *vif)
  1281. {
  1282. struct ieee80211_sub_if_data *sdata;
  1283. struct ieee80211_local *local;
  1284. struct ieee80211_key *key;
  1285. if (WARN_ON(!vif))
  1286. return;
  1287. sdata = vif_to_sdata(vif);
  1288. local = sdata->local;
  1289. if (WARN_ON(!local->resuming))
  1290. return;
  1291. if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
  1292. return;
  1293. sdata->flags |= IEEE80211_SDATA_DISCONNECT_RESUME;
  1294. mutex_lock(&local->key_mtx);
  1295. list_for_each_entry(key, &sdata->key_list, list)
  1296. key->flags |= KEY_FLAG_TAINTED;
  1297. mutex_unlock(&local->key_mtx);
  1298. }
  1299. EXPORT_SYMBOL_GPL(ieee80211_resume_disconnect);
  1300. static int check_mgd_smps(struct ieee80211_if_managed *ifmgd,
  1301. enum ieee80211_smps_mode *smps_mode)
  1302. {
  1303. if (ifmgd->associated) {
  1304. *smps_mode = ifmgd->ap_smps;
  1305. if (*smps_mode == IEEE80211_SMPS_AUTOMATIC) {
  1306. if (ifmgd->powersave)
  1307. *smps_mode = IEEE80211_SMPS_DYNAMIC;
  1308. else
  1309. *smps_mode = IEEE80211_SMPS_OFF;
  1310. }
  1311. return 1;
  1312. }
  1313. return 0;
  1314. }
  1315. /* must hold iflist_mtx */
  1316. void ieee80211_recalc_smps(struct ieee80211_local *local)
  1317. {
  1318. struct ieee80211_sub_if_data *sdata;
  1319. enum ieee80211_smps_mode smps_mode = IEEE80211_SMPS_OFF;
  1320. int count = 0;
  1321. lockdep_assert_held(&local->iflist_mtx);
  1322. /*
  1323. * This function could be improved to handle multiple
  1324. * interfaces better, but right now it makes any
  1325. * non-station interfaces force SM PS to be turned
  1326. * off. If there are multiple station interfaces it
  1327. * could also use the best possible mode, e.g. if
  1328. * one is in static and the other in dynamic then
  1329. * dynamic is ok.
  1330. */
  1331. list_for_each_entry(sdata, &local->interfaces, list) {
  1332. if (!ieee80211_sdata_running(sdata))
  1333. continue;
  1334. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  1335. goto set;
  1336. count += check_mgd_smps(&sdata->u.mgd, &smps_mode);
  1337. if (count > 1) {
  1338. smps_mode = IEEE80211_SMPS_OFF;
  1339. break;
  1340. }
  1341. }
  1342. if (smps_mode == local->smps_mode)
  1343. return;
  1344. set:
  1345. local->smps_mode = smps_mode;
  1346. /* changed flag is auto-detected for this */
  1347. ieee80211_hw_config(local, 0);
  1348. }
  1349. static bool ieee80211_id_in_list(const u8 *ids, int n_ids, u8 id)
  1350. {
  1351. int i;
  1352. for (i = 0; i < n_ids; i++)
  1353. if (ids[i] == id)
  1354. return true;
  1355. return false;
  1356. }
  1357. /**
  1358. * ieee80211_ie_split - split an IE buffer according to ordering
  1359. *
  1360. * @ies: the IE buffer
  1361. * @ielen: the length of the IE buffer
  1362. * @ids: an array with element IDs that are allowed before
  1363. * the split
  1364. * @n_ids: the size of the element ID array
  1365. * @offset: offset where to start splitting in the buffer
  1366. *
  1367. * This function splits an IE buffer by updating the @offset
  1368. * variable to point to the location where the buffer should be
  1369. * split.
  1370. *
  1371. * It assumes that the given IE buffer is well-formed, this
  1372. * has to be guaranteed by the caller!
  1373. *
  1374. * It also assumes that the IEs in the buffer are ordered
  1375. * correctly, if not the result of using this function will not
  1376. * be ordered correctly either, i.e. it does no reordering.
  1377. *
  1378. * The function returns the offset where the next part of the
  1379. * buffer starts, which may be @ielen if the entire (remainder)
  1380. * of the buffer should be used.
  1381. */
  1382. size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
  1383. const u8 *ids, int n_ids, size_t offset)
  1384. {
  1385. size_t pos = offset;
  1386. while (pos < ielen && ieee80211_id_in_list(ids, n_ids, ies[pos]))
  1387. pos += 2 + ies[pos + 1];
  1388. return pos;
  1389. }
  1390. size_t ieee80211_ie_split_vendor(const u8 *ies, size_t ielen, size_t offset)
  1391. {
  1392. size_t pos = offset;
  1393. while (pos < ielen && ies[pos] != WLAN_EID_VENDOR_SPECIFIC)
  1394. pos += 2 + ies[pos + 1];
  1395. return pos;
  1396. }
  1397. static void _ieee80211_enable_rssi_reports(struct ieee80211_sub_if_data *sdata,
  1398. int rssi_min_thold,
  1399. int rssi_max_thold)
  1400. {
  1401. trace_api_enable_rssi_reports(sdata, rssi_min_thold, rssi_max_thold);
  1402. if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
  1403. return;
  1404. /*
  1405. * Scale up threshold values before storing it, as the RSSI averaging
  1406. * algorithm uses a scaled up value as well. Change this scaling
  1407. * factor if the RSSI averaging algorithm changes.
  1408. */
  1409. sdata->u.mgd.rssi_min_thold = rssi_min_thold*16;
  1410. sdata->u.mgd.rssi_max_thold = rssi_max_thold*16;
  1411. }
  1412. void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
  1413. int rssi_min_thold,
  1414. int rssi_max_thold)
  1415. {
  1416. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1417. WARN_ON(rssi_min_thold == rssi_max_thold ||
  1418. rssi_min_thold > rssi_max_thold);
  1419. _ieee80211_enable_rssi_reports(sdata, rssi_min_thold,
  1420. rssi_max_thold);
  1421. }
  1422. EXPORT_SYMBOL(ieee80211_enable_rssi_reports);
  1423. void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif)
  1424. {
  1425. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1426. _ieee80211_enable_rssi_reports(sdata, 0, 0);
  1427. }
  1428. EXPORT_SYMBOL(ieee80211_disable_rssi_reports);
  1429. u8 *ieee80211_ie_build_ht_cap(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
  1430. u16 cap)
  1431. {
  1432. __le16 tmp;
  1433. *pos++ = WLAN_EID_HT_CAPABILITY;
  1434. *pos++ = sizeof(struct ieee80211_ht_cap);
  1435. memset(pos, 0, sizeof(struct ieee80211_ht_cap));
  1436. /* capability flags */
  1437. tmp = cpu_to_le16(cap);
  1438. memcpy(pos, &tmp, sizeof(u16));
  1439. pos += sizeof(u16);
  1440. /* AMPDU parameters */
  1441. *pos++ = ht_cap->ampdu_factor |
  1442. (ht_cap->ampdu_density <<
  1443. IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
  1444. /* MCS set */
  1445. memcpy(pos, &ht_cap->mcs, sizeof(ht_cap->mcs));
  1446. pos += sizeof(ht_cap->mcs);
  1447. /* extended capabilities */
  1448. pos += sizeof(__le16);
  1449. /* BF capabilities */
  1450. pos += sizeof(__le32);
  1451. /* antenna selection */
  1452. pos += sizeof(u8);
  1453. return pos;
  1454. }
  1455. u8 *ieee80211_ie_build_vht_cap(u8 *pos, struct ieee80211_sta_vht_cap *vht_cap,
  1456. u32 cap)
  1457. {
  1458. __le32 tmp;
  1459. *pos++ = WLAN_EID_VHT_CAPABILITY;
  1460. *pos++ = sizeof(struct ieee80211_vht_capabilities);
  1461. memset(pos, 0, sizeof(struct ieee80211_vht_capabilities));
  1462. /* capability flags */
  1463. tmp = cpu_to_le32(cap);
  1464. memcpy(pos, &tmp, sizeof(u32));
  1465. pos += sizeof(u32);
  1466. /* VHT MCS set */
  1467. memcpy(pos, &vht_cap->vht_mcs, sizeof(vht_cap->vht_mcs));
  1468. pos += sizeof(vht_cap->vht_mcs);
  1469. return pos;
  1470. }
  1471. u8 *ieee80211_ie_build_ht_oper(u8 *pos, struct ieee80211_sta_ht_cap *ht_cap,
  1472. struct ieee80211_channel *channel,
  1473. enum nl80211_channel_type channel_type,
  1474. u16 prot_mode)
  1475. {
  1476. struct ieee80211_ht_operation *ht_oper;
  1477. /* Build HT Information */
  1478. *pos++ = WLAN_EID_HT_OPERATION;
  1479. *pos++ = sizeof(struct ieee80211_ht_operation);
  1480. ht_oper = (struct ieee80211_ht_operation *)pos;
  1481. ht_oper->primary_chan =
  1482. ieee80211_frequency_to_channel(channel->center_freq);
  1483. switch (channel_type) {
  1484. case NL80211_CHAN_HT40MINUS:
  1485. ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
  1486. break;
  1487. case NL80211_CHAN_HT40PLUS:
  1488. ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
  1489. break;
  1490. case NL80211_CHAN_HT20:
  1491. default:
  1492. ht_oper->ht_param = IEEE80211_HT_PARAM_CHA_SEC_NONE;
  1493. break;
  1494. }
  1495. if (ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
  1496. channel_type != NL80211_CHAN_NO_HT &&
  1497. channel_type != NL80211_CHAN_HT20)
  1498. ht_oper->ht_param |= IEEE80211_HT_PARAM_CHAN_WIDTH_ANY;
  1499. ht_oper->operation_mode = cpu_to_le16(prot_mode);
  1500. ht_oper->stbc_param = 0x0000;
  1501. /* It seems that Basic MCS set and Supported MCS set
  1502. are identical for the first 10 bytes */
  1503. memset(&ht_oper->basic_set, 0, 16);
  1504. memcpy(&ht_oper->basic_set, &ht_cap->mcs, 10);
  1505. return pos + sizeof(struct ieee80211_ht_operation);
  1506. }
  1507. enum nl80211_channel_type
  1508. ieee80211_ht_oper_to_channel_type(struct ieee80211_ht_operation *ht_oper)
  1509. {
  1510. enum nl80211_channel_type channel_type;
  1511. if (!ht_oper)
  1512. return NL80211_CHAN_NO_HT;
  1513. switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
  1514. case IEEE80211_HT_PARAM_CHA_SEC_NONE:
  1515. channel_type = NL80211_CHAN_HT20;
  1516. break;
  1517. case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
  1518. channel_type = NL80211_CHAN_HT40PLUS;
  1519. break;
  1520. case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
  1521. channel_type = NL80211_CHAN_HT40MINUS;
  1522. break;
  1523. default:
  1524. channel_type = NL80211_CHAN_NO_HT;
  1525. }
  1526. return channel_type;
  1527. }
  1528. int ieee80211_add_srates_ie(struct ieee80211_sub_if_data *sdata,
  1529. struct sk_buff *skb, bool need_basic)
  1530. {
  1531. struct ieee80211_local *local = sdata->local;
  1532. struct ieee80211_supported_band *sband;
  1533. int rate;
  1534. u8 i, rates, *pos;
  1535. u32 basic_rates = sdata->vif.bss_conf.basic_rates;
  1536. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  1537. rates = sband->n_bitrates;
  1538. if (rates > 8)
  1539. rates = 8;
  1540. if (skb_tailroom(skb) < rates + 2)
  1541. return -ENOMEM;
  1542. pos = skb_put(skb, rates + 2);
  1543. *pos++ = WLAN_EID_SUPP_RATES;
  1544. *pos++ = rates;
  1545. for (i = 0; i < rates; i++) {
  1546. u8 basic = 0;
  1547. if (need_basic && basic_rates & BIT(i))
  1548. basic = 0x80;
  1549. rate = sband->bitrates[i].bitrate;
  1550. *pos++ = basic | (u8) (rate / 5);
  1551. }
  1552. return 0;
  1553. }
  1554. int ieee80211_add_ext_srates_ie(struct ieee80211_sub_if_data *sdata,
  1555. struct sk_buff *skb, bool need_basic)
  1556. {
  1557. struct ieee80211_local *local = sdata->local;
  1558. struct ieee80211_supported_band *sband;
  1559. int rate;
  1560. u8 i, exrates, *pos;
  1561. u32 basic_rates = sdata->vif.bss_conf.basic_rates;
  1562. sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
  1563. exrates = sband->n_bitrates;
  1564. if (exrates > 8)
  1565. exrates -= 8;
  1566. else
  1567. exrates = 0;
  1568. if (skb_tailroom(skb) < exrates + 2)
  1569. return -ENOMEM;
  1570. if (exrates) {
  1571. pos = skb_put(skb, exrates + 2);
  1572. *pos++ = WLAN_EID_EXT_SUPP_RATES;
  1573. *pos++ = exrates;
  1574. for (i = 8; i < sband->n_bitrates; i++) {
  1575. u8 basic = 0;
  1576. if (need_basic && basic_rates & BIT(i))
  1577. basic = 0x80;
  1578. rate = sband->bitrates[i].bitrate;
  1579. *pos++ = basic | (u8) (rate / 5);
  1580. }
  1581. }
  1582. return 0;
  1583. }
  1584. int ieee80211_ave_rssi(struct ieee80211_vif *vif)
  1585. {
  1586. struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
  1587. struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
  1588. if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION)) {
  1589. /* non-managed type inferfaces */
  1590. return 0;
  1591. }
  1592. return ifmgd->ave_beacon_signal;
  1593. }
  1594. EXPORT_SYMBOL_GPL(ieee80211_ave_rssi);