tx.c 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  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. *
  12. * Transmit and frame generation functions.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/slab.h>
  16. #include <linux/skbuff.h>
  17. #include <linux/etherdevice.h>
  18. #include <linux/bitmap.h>
  19. #include <linux/rcupdate.h>
  20. #include <net/net_namespace.h>
  21. #include <net/ieee80211_radiotap.h>
  22. #include <net/cfg80211.h>
  23. #include <net/mac80211.h>
  24. #include <asm/unaligned.h>
  25. #include "ieee80211_i.h"
  26. #include "driver-ops.h"
  27. #include "led.h"
  28. #include "mesh.h"
  29. #include "wep.h"
  30. #include "wpa.h"
  31. #include "wme.h"
  32. #include "rate.h"
  33. #define IEEE80211_TX_OK 0
  34. #define IEEE80211_TX_AGAIN 1
  35. #define IEEE80211_TX_PENDING 2
  36. /* misc utils */
  37. static __le16 ieee80211_duration(struct ieee80211_tx_data *tx, int group_addr,
  38. int next_frag_len)
  39. {
  40. int rate, mrate, erp, dur, i;
  41. struct ieee80211_rate *txrate;
  42. struct ieee80211_local *local = tx->local;
  43. struct ieee80211_supported_band *sband;
  44. struct ieee80211_hdr *hdr;
  45. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  46. /* assume HW handles this */
  47. if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
  48. return 0;
  49. /* uh huh? */
  50. if (WARN_ON_ONCE(info->control.rates[0].idx < 0))
  51. return 0;
  52. sband = local->hw.wiphy->bands[tx->channel->band];
  53. txrate = &sband->bitrates[info->control.rates[0].idx];
  54. erp = txrate->flags & IEEE80211_RATE_ERP_G;
  55. /*
  56. * data and mgmt (except PS Poll):
  57. * - during CFP: 32768
  58. * - during contention period:
  59. * if addr1 is group address: 0
  60. * if more fragments = 0 and addr1 is individual address: time to
  61. * transmit one ACK plus SIFS
  62. * if more fragments = 1 and addr1 is individual address: time to
  63. * transmit next fragment plus 2 x ACK plus 3 x SIFS
  64. *
  65. * IEEE 802.11, 9.6:
  66. * - control response frame (CTS or ACK) shall be transmitted using the
  67. * same rate as the immediately previous frame in the frame exchange
  68. * sequence, if this rate belongs to the PHY mandatory rates, or else
  69. * at the highest possible rate belonging to the PHY rates in the
  70. * BSSBasicRateSet
  71. */
  72. hdr = (struct ieee80211_hdr *)tx->skb->data;
  73. if (ieee80211_is_ctl(hdr->frame_control)) {
  74. /* TODO: These control frames are not currently sent by
  75. * mac80211, but should they be implemented, this function
  76. * needs to be updated to support duration field calculation.
  77. *
  78. * RTS: time needed to transmit pending data/mgmt frame plus
  79. * one CTS frame plus one ACK frame plus 3 x SIFS
  80. * CTS: duration of immediately previous RTS minus time
  81. * required to transmit CTS and its SIFS
  82. * ACK: 0 if immediately previous directed data/mgmt had
  83. * more=0, with more=1 duration in ACK frame is duration
  84. * from previous frame minus time needed to transmit ACK
  85. * and its SIFS
  86. * PS Poll: BIT(15) | BIT(14) | aid
  87. */
  88. return 0;
  89. }
  90. /* data/mgmt */
  91. if (0 /* FIX: data/mgmt during CFP */)
  92. return cpu_to_le16(32768);
  93. if (group_addr) /* Group address as the destination - no ACK */
  94. return 0;
  95. /* Individual destination address:
  96. * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
  97. * CTS and ACK frames shall be transmitted using the highest rate in
  98. * basic rate set that is less than or equal to the rate of the
  99. * immediately previous frame and that is using the same modulation
  100. * (CCK or OFDM). If no basic rate set matches with these requirements,
  101. * the highest mandatory rate of the PHY that is less than or equal to
  102. * the rate of the previous frame is used.
  103. * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
  104. */
  105. rate = -1;
  106. /* use lowest available if everything fails */
  107. mrate = sband->bitrates[0].bitrate;
  108. for (i = 0; i < sband->n_bitrates; i++) {
  109. struct ieee80211_rate *r = &sband->bitrates[i];
  110. if (r->bitrate > txrate->bitrate)
  111. break;
  112. if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
  113. rate = r->bitrate;
  114. switch (sband->band) {
  115. case IEEE80211_BAND_2GHZ: {
  116. u32 flag;
  117. if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
  118. flag = IEEE80211_RATE_MANDATORY_G;
  119. else
  120. flag = IEEE80211_RATE_MANDATORY_B;
  121. if (r->flags & flag)
  122. mrate = r->bitrate;
  123. break;
  124. }
  125. case IEEE80211_BAND_5GHZ:
  126. if (r->flags & IEEE80211_RATE_MANDATORY_A)
  127. mrate = r->bitrate;
  128. break;
  129. case IEEE80211_NUM_BANDS:
  130. WARN_ON(1);
  131. break;
  132. }
  133. }
  134. if (rate == -1) {
  135. /* No matching basic rate found; use highest suitable mandatory
  136. * PHY rate */
  137. rate = mrate;
  138. }
  139. /* Time needed to transmit ACK
  140. * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
  141. * to closest integer */
  142. dur = ieee80211_frame_duration(local, 10, rate, erp,
  143. tx->sdata->vif.bss_conf.use_short_preamble);
  144. if (next_frag_len) {
  145. /* Frame is fragmented: duration increases with time needed to
  146. * transmit next fragment plus ACK and 2 x SIFS. */
  147. dur *= 2; /* ACK + SIFS */
  148. /* next fragment */
  149. dur += ieee80211_frame_duration(local, next_frag_len,
  150. txrate->bitrate, erp,
  151. tx->sdata->vif.bss_conf.use_short_preamble);
  152. }
  153. return cpu_to_le16(dur);
  154. }
  155. static int inline is_ieee80211_device(struct ieee80211_local *local,
  156. struct net_device *dev)
  157. {
  158. return local == wdev_priv(dev->ieee80211_ptr);
  159. }
  160. /* tx handlers */
  161. static ieee80211_tx_result debug_noinline
  162. ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
  163. {
  164. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
  165. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  166. u32 sta_flags;
  167. if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
  168. return TX_CONTINUE;
  169. if (unlikely(test_bit(SCAN_OFF_CHANNEL, &tx->local->scanning)) &&
  170. !ieee80211_is_probe_req(hdr->frame_control) &&
  171. !ieee80211_is_nullfunc(hdr->frame_control))
  172. /*
  173. * When software scanning only nullfunc frames (to notify
  174. * the sleep state to the AP) and probe requests (for the
  175. * active scan) are allowed, all other frames should not be
  176. * sent and we should not get here, but if we do
  177. * nonetheless, drop them to avoid sending them
  178. * off-channel. See the link below and
  179. * ieee80211_start_scan() for more.
  180. *
  181. * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
  182. */
  183. return TX_DROP;
  184. if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
  185. return TX_CONTINUE;
  186. if (tx->flags & IEEE80211_TX_PS_BUFFERED)
  187. return TX_CONTINUE;
  188. sta_flags = tx->sta ? get_sta_flags(tx->sta) : 0;
  189. if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
  190. if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
  191. tx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
  192. ieee80211_is_data(hdr->frame_control))) {
  193. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  194. printk(KERN_DEBUG "%s: dropped data frame to not "
  195. "associated station %pM\n",
  196. tx->dev->name, hdr->addr1);
  197. #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
  198. I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
  199. return TX_DROP;
  200. }
  201. } else {
  202. if (unlikely(ieee80211_is_data(hdr->frame_control) &&
  203. tx->local->num_sta == 0 &&
  204. tx->sdata->vif.type != NL80211_IFTYPE_ADHOC)) {
  205. /*
  206. * No associated STAs - no need to send multicast
  207. * frames.
  208. */
  209. return TX_DROP;
  210. }
  211. return TX_CONTINUE;
  212. }
  213. return TX_CONTINUE;
  214. }
  215. /* This function is called whenever the AP is about to exceed the maximum limit
  216. * of buffered frames for power saving STAs. This situation should not really
  217. * happen often during normal operation, so dropping the oldest buffered packet
  218. * from each queue should be OK to make some room for new frames. */
  219. static void purge_old_ps_buffers(struct ieee80211_local *local)
  220. {
  221. int total = 0, purged = 0;
  222. struct sk_buff *skb;
  223. struct ieee80211_sub_if_data *sdata;
  224. struct sta_info *sta;
  225. /*
  226. * virtual interfaces are protected by RCU
  227. */
  228. rcu_read_lock();
  229. list_for_each_entry_rcu(sdata, &local->interfaces, list) {
  230. struct ieee80211_if_ap *ap;
  231. if (sdata->vif.type != NL80211_IFTYPE_AP)
  232. continue;
  233. ap = &sdata->u.ap;
  234. skb = skb_dequeue(&ap->ps_bc_buf);
  235. if (skb) {
  236. purged++;
  237. dev_kfree_skb(skb);
  238. }
  239. total += skb_queue_len(&ap->ps_bc_buf);
  240. }
  241. list_for_each_entry_rcu(sta, &local->sta_list, list) {
  242. skb = skb_dequeue(&sta->ps_tx_buf);
  243. if (skb) {
  244. purged++;
  245. dev_kfree_skb(skb);
  246. }
  247. total += skb_queue_len(&sta->ps_tx_buf);
  248. }
  249. rcu_read_unlock();
  250. local->total_ps_buffered = total;
  251. #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
  252. printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
  253. wiphy_name(local->hw.wiphy), purged);
  254. #endif
  255. }
  256. static ieee80211_tx_result
  257. ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
  258. {
  259. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  260. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
  261. /*
  262. * broadcast/multicast frame
  263. *
  264. * If any of the associated stations is in power save mode,
  265. * the frame is buffered to be sent after DTIM beacon frame.
  266. * This is done either by the hardware or us.
  267. */
  268. /* powersaving STAs only in AP/VLAN mode */
  269. if (!tx->sdata->bss)
  270. return TX_CONTINUE;
  271. /* no buffering for ordered frames */
  272. if (ieee80211_has_order(hdr->frame_control))
  273. return TX_CONTINUE;
  274. /* no stations in PS mode */
  275. if (!atomic_read(&tx->sdata->bss->num_sta_ps))
  276. return TX_CONTINUE;
  277. /* buffered in hardware */
  278. if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING)) {
  279. info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
  280. return TX_CONTINUE;
  281. }
  282. /* buffered in mac80211 */
  283. if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
  284. purge_old_ps_buffers(tx->local);
  285. if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >= AP_MAX_BC_BUFFER) {
  286. #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
  287. if (net_ratelimit())
  288. printk(KERN_DEBUG "%s: BC TX buffer full - dropping the oldest frame\n",
  289. tx->dev->name);
  290. #endif
  291. dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
  292. } else
  293. tx->local->total_ps_buffered++;
  294. skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
  295. return TX_QUEUED;
  296. }
  297. static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
  298. struct sk_buff *skb)
  299. {
  300. if (!ieee80211_is_mgmt(fc))
  301. return 0;
  302. if (sta == NULL || !test_sta_flags(sta, WLAN_STA_MFP))
  303. return 0;
  304. if (!ieee80211_is_robust_mgmt_frame((struct ieee80211_hdr *)
  305. skb->data))
  306. return 0;
  307. return 1;
  308. }
  309. static ieee80211_tx_result
  310. ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
  311. {
  312. struct sta_info *sta = tx->sta;
  313. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  314. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
  315. u32 staflags;
  316. if (unlikely(!sta || ieee80211_is_probe_resp(hdr->frame_control)
  317. || ieee80211_is_auth(hdr->frame_control)
  318. || ieee80211_is_assoc_resp(hdr->frame_control)
  319. || ieee80211_is_reassoc_resp(hdr->frame_control)))
  320. return TX_CONTINUE;
  321. staflags = get_sta_flags(sta);
  322. if (unlikely((staflags & WLAN_STA_PS) &&
  323. !(info->flags & IEEE80211_TX_CTL_PSPOLL_RESPONSE))) {
  324. #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
  325. printk(KERN_DEBUG "STA %pM aid %d: PS buffer (entries "
  326. "before %d)\n",
  327. sta->sta.addr, sta->sta.aid,
  328. skb_queue_len(&sta->ps_tx_buf));
  329. #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
  330. if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
  331. purge_old_ps_buffers(tx->local);
  332. if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
  333. struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
  334. #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
  335. if (net_ratelimit()) {
  336. printk(KERN_DEBUG "%s: STA %pM TX "
  337. "buffer full - dropping oldest frame\n",
  338. tx->dev->name, sta->sta.addr);
  339. }
  340. #endif
  341. dev_kfree_skb(old);
  342. } else
  343. tx->local->total_ps_buffered++;
  344. /* Queue frame to be sent after STA sends an PS Poll frame */
  345. if (skb_queue_empty(&sta->ps_tx_buf))
  346. sta_info_set_tim_bit(sta);
  347. info->control.jiffies = jiffies;
  348. info->control.vif = &tx->sdata->vif;
  349. info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
  350. skb_queue_tail(&sta->ps_tx_buf, tx->skb);
  351. return TX_QUEUED;
  352. }
  353. #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
  354. else if (unlikely(test_sta_flags(sta, WLAN_STA_PS))) {
  355. printk(KERN_DEBUG "%s: STA %pM in PS mode, but pspoll "
  356. "set -> send frame\n", tx->dev->name,
  357. sta->sta.addr);
  358. }
  359. #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
  360. return TX_CONTINUE;
  361. }
  362. static ieee80211_tx_result debug_noinline
  363. ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
  364. {
  365. if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
  366. return TX_CONTINUE;
  367. if (tx->flags & IEEE80211_TX_UNICAST)
  368. return ieee80211_tx_h_unicast_ps_buf(tx);
  369. else
  370. return ieee80211_tx_h_multicast_ps_buf(tx);
  371. }
  372. static ieee80211_tx_result debug_noinline
  373. ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
  374. {
  375. struct ieee80211_key *key = NULL;
  376. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  377. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
  378. if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
  379. tx->key = NULL;
  380. else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
  381. tx->key = key;
  382. else if (ieee80211_is_mgmt(hdr->frame_control) &&
  383. (key = rcu_dereference(tx->sdata->default_mgmt_key)))
  384. tx->key = key;
  385. else if ((key = rcu_dereference(tx->sdata->default_key)))
  386. tx->key = key;
  387. else if (tx->sdata->drop_unencrypted &&
  388. (tx->skb->protocol != cpu_to_be16(ETH_P_PAE)) &&
  389. !(info->flags & IEEE80211_TX_CTL_INJECTED) &&
  390. (!ieee80211_is_robust_mgmt_frame(hdr) ||
  391. (ieee80211_is_action(hdr->frame_control) &&
  392. tx->sta && test_sta_flags(tx->sta, WLAN_STA_MFP)))) {
  393. I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
  394. return TX_DROP;
  395. } else
  396. tx->key = NULL;
  397. if (tx->key) {
  398. tx->key->tx_rx_count++;
  399. /* TODO: add threshold stuff again */
  400. switch (tx->key->conf.alg) {
  401. case ALG_WEP:
  402. if (ieee80211_is_auth(hdr->frame_control))
  403. break;
  404. case ALG_TKIP:
  405. if (!ieee80211_is_data_present(hdr->frame_control))
  406. tx->key = NULL;
  407. break;
  408. case ALG_CCMP:
  409. if (!ieee80211_is_data_present(hdr->frame_control) &&
  410. !ieee80211_use_mfp(hdr->frame_control, tx->sta,
  411. tx->skb))
  412. tx->key = NULL;
  413. break;
  414. case ALG_AES_CMAC:
  415. if (!ieee80211_is_mgmt(hdr->frame_control))
  416. tx->key = NULL;
  417. break;
  418. }
  419. }
  420. if (!tx->key || !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
  421. info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  422. return TX_CONTINUE;
  423. }
  424. static ieee80211_tx_result debug_noinline
  425. ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
  426. {
  427. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  428. struct ieee80211_hdr *hdr = (void *)tx->skb->data;
  429. struct ieee80211_supported_band *sband;
  430. struct ieee80211_rate *rate;
  431. int i, len;
  432. bool inval = false, rts = false, short_preamble = false;
  433. struct ieee80211_tx_rate_control txrc;
  434. u32 sta_flags;
  435. memset(&txrc, 0, sizeof(txrc));
  436. sband = tx->local->hw.wiphy->bands[tx->channel->band];
  437. len = min_t(int, tx->skb->len + FCS_LEN,
  438. tx->local->hw.wiphy->frag_threshold);
  439. /* set up the tx rate control struct we give the RC algo */
  440. txrc.hw = local_to_hw(tx->local);
  441. txrc.sband = sband;
  442. txrc.bss_conf = &tx->sdata->vif.bss_conf;
  443. txrc.skb = tx->skb;
  444. txrc.reported_rate.idx = -1;
  445. txrc.max_rate_idx = tx->sdata->max_ratectrl_rateidx;
  446. /* set up RTS protection if desired */
  447. if (len > tx->local->hw.wiphy->rts_threshold) {
  448. txrc.rts = rts = true;
  449. }
  450. /*
  451. * Use short preamble if the BSS can handle it, but not for
  452. * management frames unless we know the receiver can handle
  453. * that -- the management frame might be to a station that
  454. * just wants a probe response.
  455. */
  456. if (tx->sdata->vif.bss_conf.use_short_preamble &&
  457. (ieee80211_is_data(hdr->frame_control) ||
  458. (tx->sta && test_sta_flags(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
  459. txrc.short_preamble = short_preamble = true;
  460. sta_flags = tx->sta ? get_sta_flags(tx->sta) : 0;
  461. /*
  462. * Lets not bother rate control if we're associated and cannot
  463. * talk to the sta. This should not happen.
  464. */
  465. if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) &&
  466. (sta_flags & WLAN_STA_ASSOC) &&
  467. !rate_usable_index_exists(sband, &tx->sta->sta),
  468. "%s: Dropped data frame as no usable bitrate found while "
  469. "scanning and associated. Target station: "
  470. "%pM on %d GHz band\n",
  471. tx->dev->name, hdr->addr1,
  472. tx->channel->band ? 5 : 2))
  473. return TX_DROP;
  474. /*
  475. * If we're associated with the sta at this point we know we can at
  476. * least send the frame at the lowest bit rate.
  477. */
  478. rate_control_get_rate(tx->sdata, tx->sta, &txrc);
  479. if (unlikely(info->control.rates[0].idx < 0))
  480. return TX_DROP;
  481. if (txrc.reported_rate.idx < 0)
  482. txrc.reported_rate = info->control.rates[0];
  483. if (tx->sta)
  484. tx->sta->last_tx_rate = txrc.reported_rate;
  485. if (unlikely(!info->control.rates[0].count))
  486. info->control.rates[0].count = 1;
  487. if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
  488. (info->flags & IEEE80211_TX_CTL_NO_ACK)))
  489. info->control.rates[0].count = 1;
  490. if (is_multicast_ether_addr(hdr->addr1)) {
  491. /*
  492. * XXX: verify the rate is in the basic rateset
  493. */
  494. return TX_CONTINUE;
  495. }
  496. /*
  497. * set up the RTS/CTS rate as the fastest basic rate
  498. * that is not faster than the data rate
  499. *
  500. * XXX: Should this check all retry rates?
  501. */
  502. if (!(info->control.rates[0].flags & IEEE80211_TX_RC_MCS)) {
  503. s8 baserate = 0;
  504. rate = &sband->bitrates[info->control.rates[0].idx];
  505. for (i = 0; i < sband->n_bitrates; i++) {
  506. /* must be a basic rate */
  507. if (!(tx->sdata->vif.bss_conf.basic_rates & BIT(i)))
  508. continue;
  509. /* must not be faster than the data rate */
  510. if (sband->bitrates[i].bitrate > rate->bitrate)
  511. continue;
  512. /* maximum */
  513. if (sband->bitrates[baserate].bitrate <
  514. sband->bitrates[i].bitrate)
  515. baserate = i;
  516. }
  517. info->control.rts_cts_rate_idx = baserate;
  518. }
  519. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  520. /*
  521. * make sure there's no valid rate following
  522. * an invalid one, just in case drivers don't
  523. * take the API seriously to stop at -1.
  524. */
  525. if (inval) {
  526. info->control.rates[i].idx = -1;
  527. continue;
  528. }
  529. if (info->control.rates[i].idx < 0) {
  530. inval = true;
  531. continue;
  532. }
  533. /*
  534. * For now assume MCS is already set up correctly, this
  535. * needs to be fixed.
  536. */
  537. if (info->control.rates[i].flags & IEEE80211_TX_RC_MCS) {
  538. WARN_ON(info->control.rates[i].idx > 76);
  539. continue;
  540. }
  541. /* set up RTS protection if desired */
  542. if (rts)
  543. info->control.rates[i].flags |=
  544. IEEE80211_TX_RC_USE_RTS_CTS;
  545. /* RC is busted */
  546. if (WARN_ON_ONCE(info->control.rates[i].idx >=
  547. sband->n_bitrates)) {
  548. info->control.rates[i].idx = -1;
  549. continue;
  550. }
  551. rate = &sband->bitrates[info->control.rates[i].idx];
  552. /* set up short preamble */
  553. if (short_preamble &&
  554. rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
  555. info->control.rates[i].flags |=
  556. IEEE80211_TX_RC_USE_SHORT_PREAMBLE;
  557. /* set up G protection */
  558. if (!rts && tx->sdata->vif.bss_conf.use_cts_prot &&
  559. rate->flags & IEEE80211_RATE_ERP_G)
  560. info->control.rates[i].flags |=
  561. IEEE80211_TX_RC_USE_CTS_PROTECT;
  562. }
  563. return TX_CONTINUE;
  564. }
  565. static ieee80211_tx_result debug_noinline
  566. ieee80211_tx_h_misc(struct ieee80211_tx_data *tx)
  567. {
  568. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  569. if (tx->sta)
  570. info->control.sta = &tx->sta->sta;
  571. return TX_CONTINUE;
  572. }
  573. static ieee80211_tx_result debug_noinline
  574. ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
  575. {
  576. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
  577. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
  578. u16 *seq;
  579. u8 *qc;
  580. int tid;
  581. /*
  582. * Packet injection may want to control the sequence
  583. * number, if we have no matching interface then we
  584. * neither assign one ourselves nor ask the driver to.
  585. */
  586. if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
  587. return TX_CONTINUE;
  588. if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
  589. return TX_CONTINUE;
  590. if (ieee80211_hdrlen(hdr->frame_control) < 24)
  591. return TX_CONTINUE;
  592. /*
  593. * Anything but QoS data that has a sequence number field
  594. * (is long enough) gets a sequence number from the global
  595. * counter.
  596. */
  597. if (!ieee80211_is_data_qos(hdr->frame_control)) {
  598. /* driver should assign sequence number */
  599. info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
  600. /* for pure STA mode without beacons, we can do it */
  601. hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
  602. tx->sdata->sequence_number += 0x10;
  603. return TX_CONTINUE;
  604. }
  605. /*
  606. * This should be true for injected/management frames only, for
  607. * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
  608. * above since they are not QoS-data frames.
  609. */
  610. if (!tx->sta)
  611. return TX_CONTINUE;
  612. /* include per-STA, per-TID sequence counter */
  613. qc = ieee80211_get_qos_ctl(hdr);
  614. tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
  615. seq = &tx->sta->tid_seq[tid];
  616. hdr->seq_ctrl = cpu_to_le16(*seq);
  617. /* Increase the sequence number. */
  618. *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
  619. return TX_CONTINUE;
  620. }
  621. static int ieee80211_fragment(struct ieee80211_local *local,
  622. struct sk_buff *skb, int hdrlen,
  623. int frag_threshold)
  624. {
  625. struct sk_buff *tail = skb, *tmp;
  626. int per_fragm = frag_threshold - hdrlen - FCS_LEN;
  627. int pos = hdrlen + per_fragm;
  628. int rem = skb->len - hdrlen - per_fragm;
  629. if (WARN_ON(rem < 0))
  630. return -EINVAL;
  631. while (rem) {
  632. int fraglen = per_fragm;
  633. if (fraglen > rem)
  634. fraglen = rem;
  635. rem -= fraglen;
  636. tmp = dev_alloc_skb(local->tx_headroom +
  637. frag_threshold +
  638. IEEE80211_ENCRYPT_HEADROOM +
  639. IEEE80211_ENCRYPT_TAILROOM);
  640. if (!tmp)
  641. return -ENOMEM;
  642. tail->next = tmp;
  643. tail = tmp;
  644. skb_reserve(tmp, local->tx_headroom +
  645. IEEE80211_ENCRYPT_HEADROOM);
  646. /* copy control information */
  647. memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
  648. skb_copy_queue_mapping(tmp, skb);
  649. tmp->priority = skb->priority;
  650. tmp->dev = skb->dev;
  651. /* copy header and data */
  652. memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
  653. memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
  654. pos += fraglen;
  655. }
  656. skb->len = hdrlen + per_fragm;
  657. return 0;
  658. }
  659. static ieee80211_tx_result debug_noinline
  660. ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
  661. {
  662. struct sk_buff *skb = tx->skb;
  663. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  664. struct ieee80211_hdr *hdr = (void *)skb->data;
  665. int frag_threshold = tx->local->hw.wiphy->frag_threshold;
  666. int hdrlen;
  667. int fragnum;
  668. if (!(tx->flags & IEEE80211_TX_FRAGMENTED))
  669. return TX_CONTINUE;
  670. /*
  671. * Warn when submitting a fragmented A-MPDU frame and drop it.
  672. * This scenario is handled in ieee80211_tx_prepare but extra
  673. * caution taken here as fragmented ampdu may cause Tx stop.
  674. */
  675. if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
  676. return TX_DROP;
  677. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  678. /* internal error, why is TX_FRAGMENTED set? */
  679. if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
  680. return TX_DROP;
  681. /*
  682. * Now fragment the frame. This will allocate all the fragments and
  683. * chain them (using skb as the first fragment) to skb->next.
  684. * During transmission, we will remove the successfully transmitted
  685. * fragments from this list. When the low-level driver rejects one
  686. * of the fragments then we will simply pretend to accept the skb
  687. * but store it away as pending.
  688. */
  689. if (ieee80211_fragment(tx->local, skb, hdrlen, frag_threshold))
  690. return TX_DROP;
  691. /* update duration/seq/flags of fragments */
  692. fragnum = 0;
  693. do {
  694. int next_len;
  695. const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
  696. hdr = (void *)skb->data;
  697. info = IEEE80211_SKB_CB(skb);
  698. if (skb->next) {
  699. hdr->frame_control |= morefrags;
  700. next_len = skb->next->len;
  701. /*
  702. * No multi-rate retries for fragmented frames, that
  703. * would completely throw off the NAV at other STAs.
  704. */
  705. info->control.rates[1].idx = -1;
  706. info->control.rates[2].idx = -1;
  707. info->control.rates[3].idx = -1;
  708. info->control.rates[4].idx = -1;
  709. BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 5);
  710. info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
  711. } else {
  712. hdr->frame_control &= ~morefrags;
  713. next_len = 0;
  714. }
  715. hdr->duration_id = ieee80211_duration(tx, 0, next_len);
  716. hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
  717. fragnum++;
  718. } while ((skb = skb->next));
  719. return TX_CONTINUE;
  720. }
  721. static ieee80211_tx_result debug_noinline
  722. ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
  723. {
  724. struct sk_buff *skb = tx->skb;
  725. if (!tx->sta)
  726. return TX_CONTINUE;
  727. tx->sta->tx_packets++;
  728. do {
  729. tx->sta->tx_fragments++;
  730. tx->sta->tx_bytes += skb->len;
  731. } while ((skb = skb->next));
  732. return TX_CONTINUE;
  733. }
  734. static ieee80211_tx_result debug_noinline
  735. ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
  736. {
  737. if (!tx->key)
  738. return TX_CONTINUE;
  739. switch (tx->key->conf.alg) {
  740. case ALG_WEP:
  741. return ieee80211_crypto_wep_encrypt(tx);
  742. case ALG_TKIP:
  743. return ieee80211_crypto_tkip_encrypt(tx);
  744. case ALG_CCMP:
  745. return ieee80211_crypto_ccmp_encrypt(tx);
  746. case ALG_AES_CMAC:
  747. return ieee80211_crypto_aes_cmac_encrypt(tx);
  748. }
  749. /* not reached */
  750. WARN_ON(1);
  751. return TX_DROP;
  752. }
  753. static ieee80211_tx_result debug_noinline
  754. ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
  755. {
  756. struct sk_buff *skb = tx->skb;
  757. struct ieee80211_hdr *hdr;
  758. int next_len;
  759. bool group_addr;
  760. do {
  761. hdr = (void *) skb->data;
  762. if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
  763. break; /* must not overwrite AID */
  764. next_len = skb->next ? skb->next->len : 0;
  765. group_addr = is_multicast_ether_addr(hdr->addr1);
  766. hdr->duration_id =
  767. ieee80211_duration(tx, group_addr, next_len);
  768. } while ((skb = skb->next));
  769. return TX_CONTINUE;
  770. }
  771. /* actual transmit path */
  772. /*
  773. * deal with packet injection down monitor interface
  774. * with Radiotap Header -- only called for monitor mode interface
  775. */
  776. static bool __ieee80211_parse_tx_radiotap(struct ieee80211_tx_data *tx,
  777. struct sk_buff *skb)
  778. {
  779. /*
  780. * this is the moment to interpret and discard the radiotap header that
  781. * must be at the start of the packet injected in Monitor mode
  782. *
  783. * Need to take some care with endian-ness since radiotap
  784. * args are little-endian
  785. */
  786. struct ieee80211_radiotap_iterator iterator;
  787. struct ieee80211_radiotap_header *rthdr =
  788. (struct ieee80211_radiotap_header *) skb->data;
  789. struct ieee80211_supported_band *sband;
  790. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  791. int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
  792. sband = tx->local->hw.wiphy->bands[tx->channel->band];
  793. info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  794. tx->flags &= ~IEEE80211_TX_FRAGMENTED;
  795. /*
  796. * for every radiotap entry that is present
  797. * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
  798. * entries present, or -EINVAL on error)
  799. */
  800. while (!ret) {
  801. ret = ieee80211_radiotap_iterator_next(&iterator);
  802. if (ret)
  803. continue;
  804. /* see if this argument is something we can use */
  805. switch (iterator.this_arg_index) {
  806. /*
  807. * You must take care when dereferencing iterator.this_arg
  808. * for multibyte types... the pointer is not aligned. Use
  809. * get_unaligned((type *)iterator.this_arg) to dereference
  810. * iterator.this_arg for type "type" safely on all arches.
  811. */
  812. case IEEE80211_RADIOTAP_FLAGS:
  813. if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
  814. /*
  815. * this indicates that the skb we have been
  816. * handed has the 32-bit FCS CRC at the end...
  817. * we should react to that by snipping it off
  818. * because it will be recomputed and added
  819. * on transmission
  820. */
  821. if (skb->len < (iterator.max_length + FCS_LEN))
  822. return false;
  823. skb_trim(skb, skb->len - FCS_LEN);
  824. }
  825. if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
  826. info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
  827. if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
  828. tx->flags |= IEEE80211_TX_FRAGMENTED;
  829. break;
  830. /*
  831. * Please update the file
  832. * Documentation/networking/mac80211-injection.txt
  833. * when parsing new fields here.
  834. */
  835. default:
  836. break;
  837. }
  838. }
  839. if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
  840. return false;
  841. /*
  842. * remove the radiotap header
  843. * iterator->max_length was sanity-checked against
  844. * skb->len by iterator init
  845. */
  846. skb_pull(skb, iterator.max_length);
  847. return true;
  848. }
  849. /*
  850. * initialises @tx
  851. */
  852. static ieee80211_tx_result
  853. ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
  854. struct ieee80211_tx_data *tx,
  855. struct sk_buff *skb)
  856. {
  857. struct ieee80211_local *local = sdata->local;
  858. struct ieee80211_hdr *hdr;
  859. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  860. int hdrlen, tid;
  861. u8 *qc, *state;
  862. bool queued = false;
  863. memset(tx, 0, sizeof(*tx));
  864. tx->skb = skb;
  865. tx->dev = sdata->dev; /* use original interface */
  866. tx->local = local;
  867. tx->sdata = sdata;
  868. tx->channel = local->hw.conf.channel;
  869. /*
  870. * Set this flag (used below to indicate "automatic fragmentation"),
  871. * it will be cleared/left by radiotap as desired.
  872. */
  873. tx->flags |= IEEE80211_TX_FRAGMENTED;
  874. /* process and remove the injection radiotap header */
  875. if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED)) {
  876. if (!__ieee80211_parse_tx_radiotap(tx, skb))
  877. return TX_DROP;
  878. /*
  879. * __ieee80211_parse_tx_radiotap has now removed
  880. * the radiotap header that was present and pre-filled
  881. * 'tx' with tx control information.
  882. */
  883. }
  884. /*
  885. * If this flag is set to true anywhere, and we get here,
  886. * we are doing the needed processing, so remove the flag
  887. * now.
  888. */
  889. info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
  890. hdr = (struct ieee80211_hdr *) skb->data;
  891. tx->sta = sta_info_get(local, hdr->addr1);
  892. if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
  893. (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION)) {
  894. unsigned long flags;
  895. struct tid_ampdu_tx *tid_tx;
  896. qc = ieee80211_get_qos_ctl(hdr);
  897. tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
  898. spin_lock_irqsave(&tx->sta->lock, flags);
  899. /*
  900. * XXX: This spinlock could be fairly expensive, but see the
  901. * comment in agg-tx.c:ieee80211_agg_tx_operational().
  902. * One way to solve this would be to do something RCU-like
  903. * for managing the tid_tx struct and using atomic bitops
  904. * for the actual state -- by introducing an actual
  905. * 'operational' bit that would be possible. It would
  906. * require changing ieee80211_agg_tx_operational() to
  907. * set that bit, and changing the way tid_tx is managed
  908. * everywhere, including races between that bit and
  909. * tid_tx going away (tid_tx being added can be easily
  910. * committed to memory before the 'operational' bit).
  911. */
  912. tid_tx = tx->sta->ampdu_mlme.tid_tx[tid];
  913. state = &tx->sta->ampdu_mlme.tid_state_tx[tid];
  914. if (*state == HT_AGG_STATE_OPERATIONAL) {
  915. info->flags |= IEEE80211_TX_CTL_AMPDU;
  916. } else if (*state != HT_AGG_STATE_IDLE) {
  917. /* in progress */
  918. queued = true;
  919. info->control.vif = &sdata->vif;
  920. info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
  921. __skb_queue_tail(&tid_tx->pending, skb);
  922. }
  923. spin_unlock_irqrestore(&tx->sta->lock, flags);
  924. if (unlikely(queued))
  925. return TX_QUEUED;
  926. }
  927. if (is_multicast_ether_addr(hdr->addr1)) {
  928. tx->flags &= ~IEEE80211_TX_UNICAST;
  929. info->flags |= IEEE80211_TX_CTL_NO_ACK;
  930. } else {
  931. tx->flags |= IEEE80211_TX_UNICAST;
  932. if (unlikely(local->wifi_wme_noack_test))
  933. info->flags |= IEEE80211_TX_CTL_NO_ACK;
  934. else
  935. info->flags &= ~IEEE80211_TX_CTL_NO_ACK;
  936. }
  937. if (tx->flags & IEEE80211_TX_FRAGMENTED) {
  938. if ((tx->flags & IEEE80211_TX_UNICAST) &&
  939. skb->len + FCS_LEN > local->hw.wiphy->frag_threshold &&
  940. !(info->flags & IEEE80211_TX_CTL_AMPDU))
  941. tx->flags |= IEEE80211_TX_FRAGMENTED;
  942. else
  943. tx->flags &= ~IEEE80211_TX_FRAGMENTED;
  944. }
  945. if (!tx->sta)
  946. info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
  947. else if (test_and_clear_sta_flags(tx->sta, WLAN_STA_CLEAR_PS_FILT))
  948. info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
  949. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  950. if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
  951. u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
  952. tx->ethertype = (pos[0] << 8) | pos[1];
  953. }
  954. info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
  955. return TX_CONTINUE;
  956. }
  957. static int __ieee80211_tx(struct ieee80211_local *local,
  958. struct sk_buff **skbp,
  959. struct sta_info *sta,
  960. bool txpending)
  961. {
  962. struct sk_buff *skb = *skbp, *next;
  963. struct ieee80211_tx_info *info;
  964. struct ieee80211_sub_if_data *sdata;
  965. unsigned long flags;
  966. int ret, len;
  967. bool fragm = false;
  968. while (skb) {
  969. int q = skb_get_queue_mapping(skb);
  970. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  971. ret = IEEE80211_TX_OK;
  972. if (local->queue_stop_reasons[q] ||
  973. (!txpending && !skb_queue_empty(&local->pending[q])))
  974. ret = IEEE80211_TX_PENDING;
  975. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  976. if (ret != IEEE80211_TX_OK)
  977. return ret;
  978. info = IEEE80211_SKB_CB(skb);
  979. if (fragm)
  980. info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
  981. IEEE80211_TX_CTL_FIRST_FRAGMENT);
  982. next = skb->next;
  983. len = skb->len;
  984. if (next)
  985. info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
  986. sdata = vif_to_sdata(info->control.vif);
  987. switch (sdata->vif.type) {
  988. case NL80211_IFTYPE_MONITOR:
  989. info->control.vif = NULL;
  990. break;
  991. case NL80211_IFTYPE_AP_VLAN:
  992. info->control.vif = &container_of(sdata->bss,
  993. struct ieee80211_sub_if_data, u.ap)->vif;
  994. break;
  995. default:
  996. /* keep */
  997. break;
  998. }
  999. ret = drv_tx(local, skb);
  1000. if (WARN_ON(ret != NETDEV_TX_OK && skb->len != len)) {
  1001. dev_kfree_skb(skb);
  1002. ret = NETDEV_TX_OK;
  1003. }
  1004. if (ret != NETDEV_TX_OK) {
  1005. info->control.vif = &sdata->vif;
  1006. return IEEE80211_TX_AGAIN;
  1007. }
  1008. *skbp = skb = next;
  1009. ieee80211_led_tx(local, 1);
  1010. fragm = true;
  1011. }
  1012. return IEEE80211_TX_OK;
  1013. }
  1014. /*
  1015. * Invoke TX handlers, return 0 on success and non-zero if the
  1016. * frame was dropped or queued.
  1017. */
  1018. static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
  1019. {
  1020. struct sk_buff *skb = tx->skb;
  1021. ieee80211_tx_result res = TX_DROP;
  1022. #define CALL_TXH(txh) \
  1023. res = txh(tx); \
  1024. if (res != TX_CONTINUE) \
  1025. goto txh_done;
  1026. CALL_TXH(ieee80211_tx_h_check_assoc)
  1027. CALL_TXH(ieee80211_tx_h_ps_buf)
  1028. CALL_TXH(ieee80211_tx_h_select_key)
  1029. CALL_TXH(ieee80211_tx_h_michael_mic_add)
  1030. CALL_TXH(ieee80211_tx_h_rate_ctrl)
  1031. CALL_TXH(ieee80211_tx_h_misc)
  1032. CALL_TXH(ieee80211_tx_h_sequence)
  1033. CALL_TXH(ieee80211_tx_h_fragment)
  1034. /* handlers after fragment must be aware of tx info fragmentation! */
  1035. CALL_TXH(ieee80211_tx_h_stats)
  1036. CALL_TXH(ieee80211_tx_h_encrypt)
  1037. CALL_TXH(ieee80211_tx_h_calculate_duration)
  1038. #undef CALL_TXH
  1039. txh_done:
  1040. if (unlikely(res == TX_DROP)) {
  1041. I802_DEBUG_INC(tx->local->tx_handlers_drop);
  1042. while (skb) {
  1043. struct sk_buff *next;
  1044. next = skb->next;
  1045. dev_kfree_skb(skb);
  1046. skb = next;
  1047. }
  1048. return -1;
  1049. } else if (unlikely(res == TX_QUEUED)) {
  1050. I802_DEBUG_INC(tx->local->tx_handlers_queued);
  1051. return -1;
  1052. }
  1053. return 0;
  1054. }
  1055. static void ieee80211_tx(struct ieee80211_sub_if_data *sdata,
  1056. struct sk_buff *skb, bool txpending)
  1057. {
  1058. struct ieee80211_local *local = sdata->local;
  1059. struct ieee80211_tx_data tx;
  1060. ieee80211_tx_result res_prepare;
  1061. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1062. struct sk_buff *next;
  1063. unsigned long flags;
  1064. int ret, retries;
  1065. u16 queue;
  1066. queue = skb_get_queue_mapping(skb);
  1067. if (unlikely(skb->len < 10)) {
  1068. dev_kfree_skb(skb);
  1069. return;
  1070. }
  1071. rcu_read_lock();
  1072. /* initialises tx */
  1073. res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
  1074. if (unlikely(res_prepare == TX_DROP)) {
  1075. dev_kfree_skb(skb);
  1076. rcu_read_unlock();
  1077. return;
  1078. } else if (unlikely(res_prepare == TX_QUEUED)) {
  1079. rcu_read_unlock();
  1080. return;
  1081. }
  1082. tx.channel = local->hw.conf.channel;
  1083. info->band = tx.channel->band;
  1084. if (invoke_tx_handlers(&tx))
  1085. goto out;
  1086. retries = 0;
  1087. retry:
  1088. ret = __ieee80211_tx(local, &tx.skb, tx.sta, txpending);
  1089. switch (ret) {
  1090. case IEEE80211_TX_OK:
  1091. break;
  1092. case IEEE80211_TX_AGAIN:
  1093. /*
  1094. * Since there are no fragmented frames on A-MPDU
  1095. * queues, there's no reason for a driver to reject
  1096. * a frame there, warn and drop it.
  1097. */
  1098. if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
  1099. goto drop;
  1100. /* fall through */
  1101. case IEEE80211_TX_PENDING:
  1102. skb = tx.skb;
  1103. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  1104. if (local->queue_stop_reasons[queue] ||
  1105. !skb_queue_empty(&local->pending[queue])) {
  1106. /*
  1107. * if queue is stopped, queue up frames for later
  1108. * transmission from the tasklet
  1109. */
  1110. do {
  1111. next = skb->next;
  1112. skb->next = NULL;
  1113. if (unlikely(txpending))
  1114. __skb_queue_head(&local->pending[queue],
  1115. skb);
  1116. else
  1117. __skb_queue_tail(&local->pending[queue],
  1118. skb);
  1119. } while ((skb = next));
  1120. spin_unlock_irqrestore(&local->queue_stop_reason_lock,
  1121. flags);
  1122. } else {
  1123. /*
  1124. * otherwise retry, but this is a race condition or
  1125. * a driver bug (which we warn about if it persists)
  1126. */
  1127. spin_unlock_irqrestore(&local->queue_stop_reason_lock,
  1128. flags);
  1129. retries++;
  1130. if (WARN(retries > 10, "tx refused but queue active\n"))
  1131. goto drop;
  1132. goto retry;
  1133. }
  1134. }
  1135. out:
  1136. rcu_read_unlock();
  1137. return;
  1138. drop:
  1139. rcu_read_unlock();
  1140. skb = tx.skb;
  1141. while (skb) {
  1142. next = skb->next;
  1143. dev_kfree_skb(skb);
  1144. skb = next;
  1145. }
  1146. }
  1147. /* device xmit handlers */
  1148. static int ieee80211_skb_resize(struct ieee80211_local *local,
  1149. struct sk_buff *skb,
  1150. int head_need, bool may_encrypt)
  1151. {
  1152. int tail_need = 0;
  1153. /*
  1154. * This could be optimised, devices that do full hardware
  1155. * crypto (including TKIP MMIC) need no tailroom... But we
  1156. * have no drivers for such devices currently.
  1157. */
  1158. if (may_encrypt) {
  1159. tail_need = IEEE80211_ENCRYPT_TAILROOM;
  1160. tail_need -= skb_tailroom(skb);
  1161. tail_need = max_t(int, tail_need, 0);
  1162. }
  1163. if (head_need || tail_need) {
  1164. /* Sorry. Can't account for this any more */
  1165. skb_orphan(skb);
  1166. }
  1167. if (skb_header_cloned(skb))
  1168. I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
  1169. else
  1170. I802_DEBUG_INC(local->tx_expand_skb_head);
  1171. if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
  1172. printk(KERN_DEBUG "%s: failed to reallocate TX buffer\n",
  1173. wiphy_name(local->hw.wiphy));
  1174. return -ENOMEM;
  1175. }
  1176. /* update truesize too */
  1177. skb->truesize += head_need + tail_need;
  1178. return 0;
  1179. }
  1180. static void ieee80211_xmit(struct ieee80211_sub_if_data *sdata,
  1181. struct sk_buff *skb)
  1182. {
  1183. struct ieee80211_local *local = sdata->local;
  1184. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1185. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  1186. struct ieee80211_sub_if_data *tmp_sdata;
  1187. int headroom;
  1188. bool may_encrypt;
  1189. dev_hold(sdata->dev);
  1190. if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
  1191. local->hw.conf.dynamic_ps_timeout > 0 &&
  1192. !(local->scanning) && local->ps_sdata) {
  1193. if (local->hw.conf.flags & IEEE80211_CONF_PS) {
  1194. ieee80211_stop_queues_by_reason(&local->hw,
  1195. IEEE80211_QUEUE_STOP_REASON_PS);
  1196. ieee80211_queue_work(&local->hw,
  1197. &local->dynamic_ps_disable_work);
  1198. }
  1199. mod_timer(&local->dynamic_ps_timer, jiffies +
  1200. msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
  1201. }
  1202. info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
  1203. if (unlikely(sdata->vif.type == NL80211_IFTYPE_MONITOR)) {
  1204. int hdrlen;
  1205. u16 len_rthdr;
  1206. info->flags |= IEEE80211_TX_CTL_INJECTED;
  1207. len_rthdr = ieee80211_get_radiotap_len(skb->data);
  1208. hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
  1209. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  1210. /* check the header is complete in the frame */
  1211. if (likely(skb->len >= len_rthdr + hdrlen)) {
  1212. /*
  1213. * We process outgoing injected frames that have a
  1214. * local address we handle as though they are our
  1215. * own frames.
  1216. * This code here isn't entirely correct, the local
  1217. * MAC address is not necessarily enough to find
  1218. * the interface to use; for that proper VLAN/WDS
  1219. * support we will need a different mechanism.
  1220. */
  1221. rcu_read_lock();
  1222. list_for_each_entry_rcu(tmp_sdata, &local->interfaces,
  1223. list) {
  1224. if (!netif_running(tmp_sdata->dev))
  1225. continue;
  1226. if (tmp_sdata->vif.type != NL80211_IFTYPE_AP)
  1227. continue;
  1228. if (compare_ether_addr(tmp_sdata->dev->dev_addr,
  1229. hdr->addr2)) {
  1230. dev_hold(tmp_sdata->dev);
  1231. dev_put(sdata->dev);
  1232. sdata = tmp_sdata;
  1233. break;
  1234. }
  1235. }
  1236. rcu_read_unlock();
  1237. }
  1238. }
  1239. may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
  1240. headroom = local->tx_headroom;
  1241. if (may_encrypt)
  1242. headroom += IEEE80211_ENCRYPT_HEADROOM;
  1243. headroom -= skb_headroom(skb);
  1244. headroom = max_t(int, 0, headroom);
  1245. if (ieee80211_skb_resize(local, skb, headroom, may_encrypt)) {
  1246. dev_kfree_skb(skb);
  1247. dev_put(sdata->dev);
  1248. return;
  1249. }
  1250. info->control.vif = &sdata->vif;
  1251. if (ieee80211_vif_is_mesh(&sdata->vif) &&
  1252. ieee80211_is_data(hdr->frame_control) &&
  1253. !is_multicast_ether_addr(hdr->addr1))
  1254. if (mesh_nexthop_lookup(skb, sdata)) {
  1255. /* skb queued: don't free */
  1256. dev_put(sdata->dev);
  1257. return;
  1258. }
  1259. ieee80211_select_queue(local, skb);
  1260. ieee80211_tx(sdata, skb, false);
  1261. dev_put(sdata->dev);
  1262. }
  1263. netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
  1264. struct net_device *dev)
  1265. {
  1266. struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
  1267. struct ieee80211_channel *chan = local->hw.conf.channel;
  1268. struct ieee80211_radiotap_header *prthdr =
  1269. (struct ieee80211_radiotap_header *)skb->data;
  1270. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1271. u16 len_rthdr;
  1272. /*
  1273. * Frame injection is not allowed if beaconing is not allowed
  1274. * or if we need radar detection. Beaconing is usually not allowed when
  1275. * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
  1276. * Passive scan is also used in world regulatory domains where
  1277. * your country is not known and as such it should be treated as
  1278. * NO TX unless the channel is explicitly allowed in which case
  1279. * your current regulatory domain would not have the passive scan
  1280. * flag.
  1281. *
  1282. * Since AP mode uses monitor interfaces to inject/TX management
  1283. * frames we can make AP mode the exception to this rule once it
  1284. * supports radar detection as its implementation can deal with
  1285. * radar detection by itself. We can do that later by adding a
  1286. * monitor flag interfaces used for AP support.
  1287. */
  1288. if ((chan->flags & (IEEE80211_CHAN_NO_IBSS | IEEE80211_CHAN_RADAR |
  1289. IEEE80211_CHAN_PASSIVE_SCAN)))
  1290. goto fail;
  1291. /* check for not even having the fixed radiotap header part */
  1292. if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
  1293. goto fail; /* too short to be possibly valid */
  1294. /* is it a header version we can trust to find length from? */
  1295. if (unlikely(prthdr->it_version))
  1296. goto fail; /* only version 0 is supported */
  1297. /* then there must be a radiotap header with a length we can use */
  1298. len_rthdr = ieee80211_get_radiotap_len(skb->data);
  1299. /* does the skb contain enough to deliver on the alleged length? */
  1300. if (unlikely(skb->len < len_rthdr))
  1301. goto fail; /* skb too short for claimed rt header extent */
  1302. /*
  1303. * fix up the pointers accounting for the radiotap
  1304. * header still being in there. We are being given
  1305. * a precooked IEEE80211 header so no need for
  1306. * normal processing
  1307. */
  1308. skb_set_mac_header(skb, len_rthdr);
  1309. /*
  1310. * these are just fixed to the end of the rt area since we
  1311. * don't have any better information and at this point, nobody cares
  1312. */
  1313. skb_set_network_header(skb, len_rthdr);
  1314. skb_set_transport_header(skb, len_rthdr);
  1315. memset(info, 0, sizeof(*info));
  1316. /* pass the radiotap header up to xmit */
  1317. ieee80211_xmit(IEEE80211_DEV_TO_SUB_IF(dev), skb);
  1318. return NETDEV_TX_OK;
  1319. fail:
  1320. dev_kfree_skb(skb);
  1321. return NETDEV_TX_OK; /* meaning, we dealt with the skb */
  1322. }
  1323. /**
  1324. * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
  1325. * subinterfaces (wlan#, WDS, and VLAN interfaces)
  1326. * @skb: packet to be sent
  1327. * @dev: incoming interface
  1328. *
  1329. * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
  1330. * not be freed, and caller is responsible for either retrying later or freeing
  1331. * skb).
  1332. *
  1333. * This function takes in an Ethernet header and encapsulates it with suitable
  1334. * IEEE 802.11 header based on which interface the packet is coming in. The
  1335. * encapsulated packet will then be passed to master interface, wlan#.11, for
  1336. * transmission (through low-level driver).
  1337. */
  1338. netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
  1339. struct net_device *dev)
  1340. {
  1341. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1342. struct ieee80211_local *local = sdata->local;
  1343. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1344. int ret = NETDEV_TX_BUSY, head_need;
  1345. u16 ethertype, hdrlen, meshhdrlen = 0;
  1346. __le16 fc;
  1347. struct ieee80211_hdr hdr;
  1348. struct ieee80211s_hdr mesh_hdr;
  1349. const u8 *encaps_data;
  1350. int encaps_len, skip_header_bytes;
  1351. int nh_pos, h_pos;
  1352. struct sta_info *sta;
  1353. u32 sta_flags = 0;
  1354. if (unlikely(skb->len < ETH_HLEN)) {
  1355. ret = NETDEV_TX_OK;
  1356. goto fail;
  1357. }
  1358. nh_pos = skb_network_header(skb) - skb->data;
  1359. h_pos = skb_transport_header(skb) - skb->data;
  1360. /* convert Ethernet header to proper 802.11 header (based on
  1361. * operation mode) */
  1362. ethertype = (skb->data[12] << 8) | skb->data[13];
  1363. fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
  1364. switch (sdata->vif.type) {
  1365. case NL80211_IFTYPE_AP:
  1366. case NL80211_IFTYPE_AP_VLAN:
  1367. fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
  1368. /* DA BSSID SA */
  1369. memcpy(hdr.addr1, skb->data, ETH_ALEN);
  1370. memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
  1371. memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
  1372. hdrlen = 24;
  1373. break;
  1374. case NL80211_IFTYPE_WDS:
  1375. fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
  1376. /* RA TA DA SA */
  1377. memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
  1378. memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
  1379. memcpy(hdr.addr3, skb->data, ETH_ALEN);
  1380. memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
  1381. hdrlen = 30;
  1382. break;
  1383. #ifdef CONFIG_MAC80211_MESH
  1384. case NL80211_IFTYPE_MESH_POINT:
  1385. if (!sdata->u.mesh.mshcfg.dot11MeshTTL) {
  1386. /* Do not send frames with mesh_ttl == 0 */
  1387. sdata->u.mesh.mshstats.dropped_frames_ttl++;
  1388. ret = NETDEV_TX_OK;
  1389. goto fail;
  1390. }
  1391. if (compare_ether_addr(dev->dev_addr,
  1392. skb->data + ETH_ALEN) == 0) {
  1393. hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
  1394. skb->data, skb->data + ETH_ALEN);
  1395. meshhdrlen = ieee80211_new_mesh_header(&mesh_hdr,
  1396. sdata, NULL, NULL, NULL);
  1397. } else {
  1398. /* packet from other interface */
  1399. struct mesh_path *mppath;
  1400. int is_mesh_mcast = 1;
  1401. char *mesh_da;
  1402. rcu_read_lock();
  1403. if (is_multicast_ether_addr(skb->data))
  1404. /* DA TA mSA AE:SA */
  1405. mesh_da = skb->data;
  1406. else {
  1407. mppath = mpp_path_lookup(skb->data, sdata);
  1408. if (mppath) {
  1409. /* RA TA mDA mSA AE:DA SA */
  1410. mesh_da = mppath->mpp;
  1411. is_mesh_mcast = 0;
  1412. } else
  1413. /* DA TA mSA AE:SA */
  1414. mesh_da = dev->broadcast;
  1415. }
  1416. hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
  1417. mesh_da, dev->dev_addr);
  1418. rcu_read_unlock();
  1419. if (is_mesh_mcast)
  1420. meshhdrlen =
  1421. ieee80211_new_mesh_header(&mesh_hdr,
  1422. sdata,
  1423. skb->data + ETH_ALEN,
  1424. NULL,
  1425. NULL);
  1426. else
  1427. meshhdrlen =
  1428. ieee80211_new_mesh_header(&mesh_hdr,
  1429. sdata,
  1430. NULL,
  1431. skb->data,
  1432. skb->data + ETH_ALEN);
  1433. }
  1434. break;
  1435. #endif
  1436. case NL80211_IFTYPE_STATION:
  1437. fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
  1438. /* BSSID SA DA */
  1439. memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
  1440. memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
  1441. memcpy(hdr.addr3, skb->data, ETH_ALEN);
  1442. hdrlen = 24;
  1443. break;
  1444. case NL80211_IFTYPE_ADHOC:
  1445. /* DA SA BSSID */
  1446. memcpy(hdr.addr1, skb->data, ETH_ALEN);
  1447. memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
  1448. memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
  1449. hdrlen = 24;
  1450. break;
  1451. default:
  1452. ret = NETDEV_TX_OK;
  1453. goto fail;
  1454. }
  1455. /*
  1456. * There's no need to try to look up the destination
  1457. * if it is a multicast address (which can only happen
  1458. * in AP mode)
  1459. */
  1460. if (!is_multicast_ether_addr(hdr.addr1)) {
  1461. rcu_read_lock();
  1462. sta = sta_info_get(local, hdr.addr1);
  1463. if (sta)
  1464. sta_flags = get_sta_flags(sta);
  1465. rcu_read_unlock();
  1466. }
  1467. /* receiver and we are QoS enabled, use a QoS type frame */
  1468. if ((sta_flags & WLAN_STA_WME) && local->hw.queues >= 4) {
  1469. fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
  1470. hdrlen += 2;
  1471. }
  1472. /*
  1473. * Drop unicast frames to unauthorised stations unless they are
  1474. * EAPOL frames from the local station.
  1475. */
  1476. if (!ieee80211_vif_is_mesh(&sdata->vif) &&
  1477. unlikely(!is_multicast_ether_addr(hdr.addr1) &&
  1478. !(sta_flags & WLAN_STA_AUTHORIZED) &&
  1479. !(ethertype == ETH_P_PAE &&
  1480. compare_ether_addr(dev->dev_addr,
  1481. skb->data + ETH_ALEN) == 0))) {
  1482. #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
  1483. if (net_ratelimit())
  1484. printk(KERN_DEBUG "%s: dropped frame to %pM"
  1485. " (unauthorized port)\n", dev->name,
  1486. hdr.addr1);
  1487. #endif
  1488. I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
  1489. ret = NETDEV_TX_OK;
  1490. goto fail;
  1491. }
  1492. hdr.frame_control = fc;
  1493. hdr.duration_id = 0;
  1494. hdr.seq_ctrl = 0;
  1495. skip_header_bytes = ETH_HLEN;
  1496. if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
  1497. encaps_data = bridge_tunnel_header;
  1498. encaps_len = sizeof(bridge_tunnel_header);
  1499. skip_header_bytes -= 2;
  1500. } else if (ethertype >= 0x600) {
  1501. encaps_data = rfc1042_header;
  1502. encaps_len = sizeof(rfc1042_header);
  1503. skip_header_bytes -= 2;
  1504. } else {
  1505. encaps_data = NULL;
  1506. encaps_len = 0;
  1507. }
  1508. skb_pull(skb, skip_header_bytes);
  1509. nh_pos -= skip_header_bytes;
  1510. h_pos -= skip_header_bytes;
  1511. head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
  1512. /*
  1513. * So we need to modify the skb header and hence need a copy of
  1514. * that. The head_need variable above doesn't, so far, include
  1515. * the needed header space that we don't need right away. If we
  1516. * can, then we don't reallocate right now but only after the
  1517. * frame arrives at the master device (if it does...)
  1518. *
  1519. * If we cannot, however, then we will reallocate to include all
  1520. * the ever needed space. Also, if we need to reallocate it anyway,
  1521. * make it big enough for everything we may ever need.
  1522. */
  1523. if (head_need > 0 || skb_cloned(skb)) {
  1524. head_need += IEEE80211_ENCRYPT_HEADROOM;
  1525. head_need += local->tx_headroom;
  1526. head_need = max_t(int, 0, head_need);
  1527. if (ieee80211_skb_resize(local, skb, head_need, true))
  1528. goto fail;
  1529. }
  1530. if (encaps_data) {
  1531. memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
  1532. nh_pos += encaps_len;
  1533. h_pos += encaps_len;
  1534. }
  1535. if (meshhdrlen > 0) {
  1536. memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
  1537. nh_pos += meshhdrlen;
  1538. h_pos += meshhdrlen;
  1539. }
  1540. if (ieee80211_is_data_qos(fc)) {
  1541. __le16 *qos_control;
  1542. qos_control = (__le16*) skb_push(skb, 2);
  1543. memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
  1544. /*
  1545. * Maybe we could actually set some fields here, for now just
  1546. * initialise to zero to indicate no special operation.
  1547. */
  1548. *qos_control = 0;
  1549. } else
  1550. memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
  1551. nh_pos += hdrlen;
  1552. h_pos += hdrlen;
  1553. dev->stats.tx_packets++;
  1554. dev->stats.tx_bytes += skb->len;
  1555. /* Update skb pointers to various headers since this modified frame
  1556. * is going to go through Linux networking code that may potentially
  1557. * need things like pointer to IP header. */
  1558. skb_set_mac_header(skb, 0);
  1559. skb_set_network_header(skb, nh_pos);
  1560. skb_set_transport_header(skb, h_pos);
  1561. memset(info, 0, sizeof(*info));
  1562. dev->trans_start = jiffies;
  1563. ieee80211_xmit(sdata, skb);
  1564. return NETDEV_TX_OK;
  1565. fail:
  1566. if (ret == NETDEV_TX_OK)
  1567. dev_kfree_skb(skb);
  1568. return ret;
  1569. }
  1570. /*
  1571. * ieee80211_clear_tx_pending may not be called in a context where
  1572. * it is possible that it packets could come in again.
  1573. */
  1574. void ieee80211_clear_tx_pending(struct ieee80211_local *local)
  1575. {
  1576. int i;
  1577. for (i = 0; i < local->hw.queues; i++)
  1578. skb_queue_purge(&local->pending[i]);
  1579. }
  1580. static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
  1581. struct sk_buff *skb)
  1582. {
  1583. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1584. struct ieee80211_sub_if_data *sdata;
  1585. struct sta_info *sta;
  1586. struct ieee80211_hdr *hdr;
  1587. int ret;
  1588. bool result = true;
  1589. sdata = vif_to_sdata(info->control.vif);
  1590. if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
  1591. ieee80211_tx(sdata, skb, true);
  1592. } else {
  1593. hdr = (struct ieee80211_hdr *)skb->data;
  1594. sta = sta_info_get(local, hdr->addr1);
  1595. ret = __ieee80211_tx(local, &skb, sta, true);
  1596. if (ret != IEEE80211_TX_OK)
  1597. result = false;
  1598. }
  1599. return result;
  1600. }
  1601. /*
  1602. * Transmit all pending packets. Called from tasklet.
  1603. */
  1604. void ieee80211_tx_pending(unsigned long data)
  1605. {
  1606. struct ieee80211_local *local = (struct ieee80211_local *)data;
  1607. unsigned long flags;
  1608. int i;
  1609. bool txok;
  1610. rcu_read_lock();
  1611. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  1612. for (i = 0; i < local->hw.queues; i++) {
  1613. /*
  1614. * If queue is stopped by something other than due to pending
  1615. * frames, or we have no pending frames, proceed to next queue.
  1616. */
  1617. if (local->queue_stop_reasons[i] ||
  1618. skb_queue_empty(&local->pending[i]))
  1619. continue;
  1620. while (!skb_queue_empty(&local->pending[i])) {
  1621. struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
  1622. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1623. struct ieee80211_sub_if_data *sdata;
  1624. if (WARN_ON(!info->control.vif)) {
  1625. kfree_skb(skb);
  1626. continue;
  1627. }
  1628. sdata = vif_to_sdata(info->control.vif);
  1629. dev_hold(sdata->dev);
  1630. spin_unlock_irqrestore(&local->queue_stop_reason_lock,
  1631. flags);
  1632. txok = ieee80211_tx_pending_skb(local, skb);
  1633. dev_put(sdata->dev);
  1634. if (!txok)
  1635. __skb_queue_head(&local->pending[i], skb);
  1636. spin_lock_irqsave(&local->queue_stop_reason_lock,
  1637. flags);
  1638. if (!txok)
  1639. break;
  1640. }
  1641. }
  1642. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  1643. rcu_read_unlock();
  1644. }
  1645. /* functions for drivers to get certain frames */
  1646. static void ieee80211_beacon_add_tim(struct ieee80211_if_ap *bss,
  1647. struct sk_buff *skb,
  1648. struct beacon_data *beacon)
  1649. {
  1650. u8 *pos, *tim;
  1651. int aid0 = 0;
  1652. int i, have_bits = 0, n1, n2;
  1653. /* Generate bitmap for TIM only if there are any STAs in power save
  1654. * mode. */
  1655. if (atomic_read(&bss->num_sta_ps) > 0)
  1656. /* in the hope that this is faster than
  1657. * checking byte-for-byte */
  1658. have_bits = !bitmap_empty((unsigned long*)bss->tim,
  1659. IEEE80211_MAX_AID+1);
  1660. if (bss->dtim_count == 0)
  1661. bss->dtim_count = beacon->dtim_period - 1;
  1662. else
  1663. bss->dtim_count--;
  1664. tim = pos = (u8 *) skb_put(skb, 6);
  1665. *pos++ = WLAN_EID_TIM;
  1666. *pos++ = 4;
  1667. *pos++ = bss->dtim_count;
  1668. *pos++ = beacon->dtim_period;
  1669. if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
  1670. aid0 = 1;
  1671. if (have_bits) {
  1672. /* Find largest even number N1 so that bits numbered 1 through
  1673. * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
  1674. * (N2 + 1) x 8 through 2007 are 0. */
  1675. n1 = 0;
  1676. for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
  1677. if (bss->tim[i]) {
  1678. n1 = i & 0xfe;
  1679. break;
  1680. }
  1681. }
  1682. n2 = n1;
  1683. for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
  1684. if (bss->tim[i]) {
  1685. n2 = i;
  1686. break;
  1687. }
  1688. }
  1689. /* Bitmap control */
  1690. *pos++ = n1 | aid0;
  1691. /* Part Virt Bitmap */
  1692. memcpy(pos, bss->tim + n1, n2 - n1 + 1);
  1693. tim[1] = n2 - n1 + 4;
  1694. skb_put(skb, n2 - n1);
  1695. } else {
  1696. *pos++ = aid0; /* Bitmap control */
  1697. *pos++ = 0; /* Part Virt Bitmap */
  1698. }
  1699. }
  1700. struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
  1701. struct ieee80211_vif *vif)
  1702. {
  1703. struct ieee80211_local *local = hw_to_local(hw);
  1704. struct sk_buff *skb = NULL;
  1705. struct ieee80211_tx_info *info;
  1706. struct ieee80211_sub_if_data *sdata = NULL;
  1707. struct ieee80211_if_ap *ap = NULL;
  1708. struct beacon_data *beacon;
  1709. struct ieee80211_supported_band *sband;
  1710. enum ieee80211_band band = local->hw.conf.channel->band;
  1711. sband = local->hw.wiphy->bands[band];
  1712. rcu_read_lock();
  1713. sdata = vif_to_sdata(vif);
  1714. if (sdata->vif.type == NL80211_IFTYPE_AP) {
  1715. ap = &sdata->u.ap;
  1716. beacon = rcu_dereference(ap->beacon);
  1717. if (ap && beacon) {
  1718. /*
  1719. * headroom, head length,
  1720. * tail length and maximum TIM length
  1721. */
  1722. skb = dev_alloc_skb(local->tx_headroom +
  1723. beacon->head_len +
  1724. beacon->tail_len + 256);
  1725. if (!skb)
  1726. goto out;
  1727. skb_reserve(skb, local->tx_headroom);
  1728. memcpy(skb_put(skb, beacon->head_len), beacon->head,
  1729. beacon->head_len);
  1730. /*
  1731. * Not very nice, but we want to allow the driver to call
  1732. * ieee80211_beacon_get() as a response to the set_tim()
  1733. * callback. That, however, is already invoked under the
  1734. * sta_lock to guarantee consistent and race-free update
  1735. * of the tim bitmap in mac80211 and the driver.
  1736. */
  1737. if (local->tim_in_locked_section) {
  1738. ieee80211_beacon_add_tim(ap, skb, beacon);
  1739. } else {
  1740. unsigned long flags;
  1741. spin_lock_irqsave(&local->sta_lock, flags);
  1742. ieee80211_beacon_add_tim(ap, skb, beacon);
  1743. spin_unlock_irqrestore(&local->sta_lock, flags);
  1744. }
  1745. if (beacon->tail)
  1746. memcpy(skb_put(skb, beacon->tail_len),
  1747. beacon->tail, beacon->tail_len);
  1748. } else
  1749. goto out;
  1750. } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
  1751. struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
  1752. struct ieee80211_hdr *hdr;
  1753. struct sk_buff *presp = rcu_dereference(ifibss->presp);
  1754. if (!presp)
  1755. goto out;
  1756. skb = skb_copy(presp, GFP_ATOMIC);
  1757. if (!skb)
  1758. goto out;
  1759. hdr = (struct ieee80211_hdr *) skb->data;
  1760. hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  1761. IEEE80211_STYPE_BEACON);
  1762. } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
  1763. struct ieee80211_mgmt *mgmt;
  1764. u8 *pos;
  1765. /* headroom, head length, tail length and maximum TIM length */
  1766. skb = dev_alloc_skb(local->tx_headroom + 400);
  1767. if (!skb)
  1768. goto out;
  1769. skb_reserve(skb, local->hw.extra_tx_headroom);
  1770. mgmt = (struct ieee80211_mgmt *)
  1771. skb_put(skb, 24 + sizeof(mgmt->u.beacon));
  1772. memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
  1773. mgmt->frame_control =
  1774. cpu_to_le16(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
  1775. memset(mgmt->da, 0xff, ETH_ALEN);
  1776. memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
  1777. /* BSSID is left zeroed, wildcard value */
  1778. mgmt->u.beacon.beacon_int =
  1779. cpu_to_le16(sdata->vif.bss_conf.beacon_int);
  1780. mgmt->u.beacon.capab_info = 0x0; /* 0x0 for MPs */
  1781. pos = skb_put(skb, 2);
  1782. *pos++ = WLAN_EID_SSID;
  1783. *pos++ = 0x0;
  1784. mesh_mgmt_ies_add(skb, sdata);
  1785. } else {
  1786. WARN_ON(1);
  1787. goto out;
  1788. }
  1789. info = IEEE80211_SKB_CB(skb);
  1790. info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  1791. info->band = band;
  1792. /*
  1793. * XXX: For now, always use the lowest rate
  1794. */
  1795. info->control.rates[0].idx = 0;
  1796. info->control.rates[0].count = 1;
  1797. info->control.rates[1].idx = -1;
  1798. info->control.rates[2].idx = -1;
  1799. info->control.rates[3].idx = -1;
  1800. info->control.rates[4].idx = -1;
  1801. BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 5);
  1802. info->control.vif = vif;
  1803. info->flags |= IEEE80211_TX_CTL_NO_ACK;
  1804. info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
  1805. info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
  1806. out:
  1807. rcu_read_unlock();
  1808. return skb;
  1809. }
  1810. EXPORT_SYMBOL(ieee80211_beacon_get);
  1811. void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1812. const void *frame, size_t frame_len,
  1813. const struct ieee80211_tx_info *frame_txctl,
  1814. struct ieee80211_rts *rts)
  1815. {
  1816. const struct ieee80211_hdr *hdr = frame;
  1817. rts->frame_control =
  1818. cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
  1819. rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
  1820. frame_txctl);
  1821. memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
  1822. memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
  1823. }
  1824. EXPORT_SYMBOL(ieee80211_rts_get);
  1825. void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
  1826. const void *frame, size_t frame_len,
  1827. const struct ieee80211_tx_info *frame_txctl,
  1828. struct ieee80211_cts *cts)
  1829. {
  1830. const struct ieee80211_hdr *hdr = frame;
  1831. cts->frame_control =
  1832. cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
  1833. cts->duration = ieee80211_ctstoself_duration(hw, vif,
  1834. frame_len, frame_txctl);
  1835. memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
  1836. }
  1837. EXPORT_SYMBOL(ieee80211_ctstoself_get);
  1838. struct sk_buff *
  1839. ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
  1840. struct ieee80211_vif *vif)
  1841. {
  1842. struct ieee80211_local *local = hw_to_local(hw);
  1843. struct sk_buff *skb = NULL;
  1844. struct sta_info *sta;
  1845. struct ieee80211_tx_data tx;
  1846. struct ieee80211_sub_if_data *sdata;
  1847. struct ieee80211_if_ap *bss = NULL;
  1848. struct beacon_data *beacon;
  1849. struct ieee80211_tx_info *info;
  1850. sdata = vif_to_sdata(vif);
  1851. bss = &sdata->u.ap;
  1852. rcu_read_lock();
  1853. beacon = rcu_dereference(bss->beacon);
  1854. if (sdata->vif.type != NL80211_IFTYPE_AP || !beacon || !beacon->head)
  1855. goto out;
  1856. if (bss->dtim_count != 0)
  1857. goto out; /* send buffered bc/mc only after DTIM beacon */
  1858. while (1) {
  1859. skb = skb_dequeue(&bss->ps_bc_buf);
  1860. if (!skb)
  1861. goto out;
  1862. local->total_ps_buffered--;
  1863. if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
  1864. struct ieee80211_hdr *hdr =
  1865. (struct ieee80211_hdr *) skb->data;
  1866. /* more buffered multicast/broadcast frames ==> set
  1867. * MoreData flag in IEEE 802.11 header to inform PS
  1868. * STAs */
  1869. hdr->frame_control |=
  1870. cpu_to_le16(IEEE80211_FCTL_MOREDATA);
  1871. }
  1872. if (!ieee80211_tx_prepare(sdata, &tx, skb))
  1873. break;
  1874. dev_kfree_skb_any(skb);
  1875. }
  1876. info = IEEE80211_SKB_CB(skb);
  1877. sta = tx.sta;
  1878. tx.flags |= IEEE80211_TX_PS_BUFFERED;
  1879. tx.channel = local->hw.conf.channel;
  1880. info->band = tx.channel->band;
  1881. if (invoke_tx_handlers(&tx))
  1882. skb = NULL;
  1883. out:
  1884. rcu_read_unlock();
  1885. return skb;
  1886. }
  1887. EXPORT_SYMBOL(ieee80211_get_buffered_bc);
  1888. void ieee80211_tx_skb(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
  1889. int encrypt)
  1890. {
  1891. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1892. skb_set_mac_header(skb, 0);
  1893. skb_set_network_header(skb, 0);
  1894. skb_set_transport_header(skb, 0);
  1895. if (!encrypt)
  1896. info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
  1897. /*
  1898. * The other path calling ieee80211_xmit is from the tasklet,
  1899. * and while we can handle concurrent transmissions locking
  1900. * requirements are that we do not come into tx with bhs on.
  1901. */
  1902. local_bh_disable();
  1903. ieee80211_xmit(sdata, skb);
  1904. local_bh_enable();
  1905. }