tx.c 61 KB

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