blob: 4c25fd5d76a7dbb70b5990eb1a6ecadf7e948174 [file] [log] [blame]
Johannes Berge2ebc742007-07-27 15:43:22 +02001/*
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
15#include <linux/kernel.h>
16#include <linux/slab.h>
17#include <linux/skbuff.h>
18#include <linux/etherdevice.h>
19#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040020#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070021#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020022#include <net/ieee80211_radiotap.h>
23#include <net/cfg80211.h>
24#include <net/mac80211.h>
25#include <asm/unaligned.h>
26
27#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040028#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010029#include "mesh.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020030#include "wep.h"
31#include "wpa.h"
32#include "wme.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040033#include "rate.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020034
35#define IEEE80211_TX_OK 0
36#define IEEE80211_TX_AGAIN 1
37#define IEEE80211_TX_FRAG_AGAIN 2
38
39/* misc utils */
40
41static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
42 struct ieee80211_hdr *hdr)
43{
44 /* Set the sequence number for this frame. */
45 hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
46
47 /* Increase the sequence number. */
48 sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
49}
50
51#ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
52static void ieee80211_dump_frame(const char *ifname, const char *title,
53 const struct sk_buff *skb)
54{
55 const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
56 u16 fc;
57 int hdrlen;
Joe Perches0795af52007-10-03 17:59:30 -070058 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +020059
60 printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
61 if (skb->len < 4) {
62 printk("\n");
63 return;
64 }
65
66 fc = le16_to_cpu(hdr->frame_control);
67 hdrlen = ieee80211_get_hdrlen(fc);
68 if (hdrlen > skb->len)
69 hdrlen = skb->len;
70 if (hdrlen >= 4)
71 printk(" FC=0x%04x DUR=0x%04x",
72 fc, le16_to_cpu(hdr->duration_id));
73 if (hdrlen >= 10)
Joe Perches0795af52007-10-03 17:59:30 -070074 printk(" A1=%s", print_mac(mac, hdr->addr1));
Johannes Berge2ebc742007-07-27 15:43:22 +020075 if (hdrlen >= 16)
Joe Perches0795af52007-10-03 17:59:30 -070076 printk(" A2=%s", print_mac(mac, hdr->addr2));
Johannes Berge2ebc742007-07-27 15:43:22 +020077 if (hdrlen >= 24)
Joe Perches0795af52007-10-03 17:59:30 -070078 printk(" A3=%s", print_mac(mac, hdr->addr3));
Johannes Berge2ebc742007-07-27 15:43:22 +020079 if (hdrlen >= 30)
Joe Perches0795af52007-10-03 17:59:30 -070080 printk(" A4=%s", print_mac(mac, hdr->addr4));
Johannes Berge2ebc742007-07-27 15:43:22 +020081 printk("\n");
82}
83#else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
84static inline void ieee80211_dump_frame(const char *ifname, const char *title,
85 struct sk_buff *skb)
86{
87}
88#endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
89
Johannes Berg5cf121c2008-02-25 16:27:43 +010090static u16 ieee80211_duration(struct ieee80211_tx_data *tx, int group_addr,
Johannes Berge2ebc742007-07-27 15:43:22 +020091 int next_frag_len)
92{
93 int rate, mrate, erp, dur, i;
Johannes Berg5cf121c2008-02-25 16:27:43 +010094 struct ieee80211_rate *txrate = tx->rate;
Johannes Berge2ebc742007-07-27 15:43:22 +020095 struct ieee80211_local *local = tx->local;
Johannes Berg8318d782008-01-24 19:38:38 +010096 struct ieee80211_supported_band *sband;
Johannes Berge2ebc742007-07-27 15:43:22 +020097
Johannes Berg8318d782008-01-24 19:38:38 +010098 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
99
100 erp = 0;
101 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
102 erp = txrate->flags & IEEE80211_RATE_ERP_G;
Johannes Berge2ebc742007-07-27 15:43:22 +0200103
104 /*
105 * data and mgmt (except PS Poll):
106 * - during CFP: 32768
107 * - during contention period:
108 * if addr1 is group address: 0
109 * if more fragments = 0 and addr1 is individual address: time to
110 * transmit one ACK plus SIFS
111 * if more fragments = 1 and addr1 is individual address: time to
112 * transmit next fragment plus 2 x ACK plus 3 x SIFS
113 *
114 * IEEE 802.11, 9.6:
115 * - control response frame (CTS or ACK) shall be transmitted using the
116 * same rate as the immediately previous frame in the frame exchange
117 * sequence, if this rate belongs to the PHY mandatory rates, or else
118 * at the highest possible rate belonging to the PHY rates in the
119 * BSSBasicRateSet
120 */
121
122 if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) {
123 /* TODO: These control frames are not currently sent by
124 * 80211.o, but should they be implemented, this function
125 * needs to be updated to support duration field calculation.
126 *
127 * RTS: time needed to transmit pending data/mgmt frame plus
128 * one CTS frame plus one ACK frame plus 3 x SIFS
129 * CTS: duration of immediately previous RTS minus time
130 * required to transmit CTS and its SIFS
131 * ACK: 0 if immediately previous directed data/mgmt had
132 * more=0, with more=1 duration in ACK frame is duration
133 * from previous frame minus time needed to transmit ACK
134 * and its SIFS
135 * PS Poll: BIT(15) | BIT(14) | aid
136 */
137 return 0;
138 }
139
140 /* data/mgmt */
141 if (0 /* FIX: data/mgmt during CFP */)
142 return 32768;
143
144 if (group_addr) /* Group address as the destination - no ACK */
145 return 0;
146
147 /* Individual destination address:
148 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
149 * CTS and ACK frames shall be transmitted using the highest rate in
150 * basic rate set that is less than or equal to the rate of the
151 * immediately previous frame and that is using the same modulation
152 * (CCK or OFDM). If no basic rate set matches with these requirements,
153 * the highest mandatory rate of the PHY that is less than or equal to
154 * the rate of the previous frame is used.
155 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
156 */
157 rate = -1;
Johannes Berg8318d782008-01-24 19:38:38 +0100158 /* use lowest available if everything fails */
159 mrate = sband->bitrates[0].bitrate;
160 for (i = 0; i < sband->n_bitrates; i++) {
161 struct ieee80211_rate *r = &sband->bitrates[i];
162
163 if (r->bitrate > txrate->bitrate)
Johannes Berge2ebc742007-07-27 15:43:22 +0200164 break;
165
Johannes Berg8318d782008-01-24 19:38:38 +0100166 if (tx->sdata->basic_rates & BIT(i))
167 rate = r->bitrate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200168
Johannes Berg8318d782008-01-24 19:38:38 +0100169 switch (sband->band) {
170 case IEEE80211_BAND_2GHZ: {
171 u32 flag;
172 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
173 flag = IEEE80211_RATE_MANDATORY_G;
174 else
175 flag = IEEE80211_RATE_MANDATORY_B;
176 if (r->flags & flag)
177 mrate = r->bitrate;
178 break;
179 }
180 case IEEE80211_BAND_5GHZ:
181 if (r->flags & IEEE80211_RATE_MANDATORY_A)
182 mrate = r->bitrate;
183 break;
184 case IEEE80211_NUM_BANDS:
185 WARN_ON(1);
186 break;
187 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200188 }
189 if (rate == -1) {
190 /* No matching basic rate found; use highest suitable mandatory
191 * PHY rate */
192 rate = mrate;
193 }
194
195 /* Time needed to transmit ACK
196 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
197 * to closest integer */
198
199 dur = ieee80211_frame_duration(local, 10, rate, erp,
Johannes Berg471b3ef2007-12-28 14:32:58 +0100200 tx->sdata->bss_conf.use_short_preamble);
Johannes Berge2ebc742007-07-27 15:43:22 +0200201
202 if (next_frag_len) {
203 /* Frame is fragmented: duration increases with time needed to
204 * transmit next fragment plus ACK and 2 x SIFS. */
205 dur *= 2; /* ACK + SIFS */
206 /* next fragment */
207 dur += ieee80211_frame_duration(local, next_frag_len,
Johannes Berg8318d782008-01-24 19:38:38 +0100208 txrate->bitrate, erp,
Johannes Berg471b3ef2007-12-28 14:32:58 +0100209 tx->sdata->bss_conf.use_short_preamble);
Johannes Berge2ebc742007-07-27 15:43:22 +0200210 }
211
212 return dur;
213}
214
215static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
216 int queue)
217{
218 return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
219}
220
221static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
222 int queue)
223{
224 return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
225}
226
227static int inline is_ieee80211_device(struct net_device *dev,
228 struct net_device *master)
229{
230 return (wdev_priv(dev->ieee80211_ptr) ==
231 wdev_priv(master->ieee80211_ptr));
232}
233
234/* tx handlers */
235
Johannes Berg9ae54c82008-01-31 19:48:20 +0100236static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100237ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200238{
239#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
240 struct sk_buff *skb = tx->skb;
241 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
242#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
243 u32 sta_flags;
244
Johannes Berg5cf121c2008-02-25 16:27:43 +0100245 if (unlikely(tx->flags & IEEE80211_TX_INJECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100246 return TX_CONTINUE;
Johannes Berg58d41852007-09-26 17:53:18 +0200247
Zhu Yiece8edd2007-11-22 10:53:21 +0800248 if (unlikely(tx->local->sta_sw_scanning) &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200249 ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
250 (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100251 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200252
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100253 if (tx->sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT)
254 return TX_CONTINUE;
255
Johannes Berg5cf121c2008-02-25 16:27:43 +0100256 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100257 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200258
Johannes Berg07346f812008-05-03 01:02:02 +0200259 sta_flags = tx->sta ? get_sta_flags(tx->sta) : 0;
Johannes Berge2ebc742007-07-27 15:43:22 +0200260
Johannes Berg5cf121c2008-02-25 16:27:43 +0100261 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200262 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100263 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200264 (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
265#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700266 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200267 printk(KERN_DEBUG "%s: dropped data frame to not "
Joe Perches0795af52007-10-03 17:59:30 -0700268 "associated station %s\n",
269 tx->dev->name, print_mac(mac, hdr->addr1));
Johannes Berge2ebc742007-07-27 15:43:22 +0200270#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
271 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100272 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200273 }
274 } else {
275 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
276 tx->local->num_sta == 0 &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100277 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200278 /*
279 * No associated STAs - no need to send multicast
280 * frames.
281 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100282 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200283 }
Johannes Berg9ae54c82008-01-31 19:48:20 +0100284 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200285 }
286
Johannes Berg9ae54c82008-01-31 19:48:20 +0100287 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200288}
289
Johannes Berg9ae54c82008-01-31 19:48:20 +0100290static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100291ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200292{
293 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
294
295 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
296 ieee80211_include_sequence(tx->sdata, hdr);
297
Johannes Berg9ae54c82008-01-31 19:48:20 +0100298 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200299}
300
301/* This function is called whenever the AP is about to exceed the maximum limit
302 * of buffered frames for power saving STAs. This situation should not really
303 * happen often during normal operation, so dropping the oldest buffered packet
304 * from each queue should be OK to make some room for new frames. */
305static void purge_old_ps_buffers(struct ieee80211_local *local)
306{
307 int total = 0, purged = 0;
308 struct sk_buff *skb;
309 struct ieee80211_sub_if_data *sdata;
310 struct sta_info *sta;
311
Johannes Berg79010422007-09-18 17:29:21 -0400312 /*
313 * virtual interfaces are protected by RCU
314 */
315 rcu_read_lock();
316
317 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200318 struct ieee80211_if_ap *ap;
319 if (sdata->dev == local->mdev ||
Johannes Berg51fb61e2007-12-19 01:31:27 +0100320 sdata->vif.type != IEEE80211_IF_TYPE_AP)
Johannes Berge2ebc742007-07-27 15:43:22 +0200321 continue;
322 ap = &sdata->u.ap;
323 skb = skb_dequeue(&ap->ps_bc_buf);
324 if (skb) {
325 purged++;
326 dev_kfree_skb(skb);
327 }
328 total += skb_queue_len(&ap->ps_bc_buf);
329 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200330
Johannes Bergd0709a62008-02-25 16:27:46 +0100331 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200332 skb = skb_dequeue(&sta->ps_tx_buf);
333 if (skb) {
334 purged++;
335 dev_kfree_skb(skb);
336 }
337 total += skb_queue_len(&sta->ps_tx_buf);
338 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100339
340 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +0200341
342 local->total_ps_buffered = total;
343 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400344 wiphy_name(local->hw.wiphy), purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200345}
346
Johannes Berg9ae54c82008-01-31 19:48:20 +0100347static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100348ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200349{
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100350 /*
351 * broadcast/multicast frame
352 *
353 * If any of the associated stations is in power save mode,
354 * the frame is buffered to be sent after DTIM beacon frame.
355 * This is done either by the hardware or us.
356 */
357
358 /* not AP/IBSS or ordered frame */
359 if (!tx->sdata->bss || (tx->fc & IEEE80211_FCTL_ORDER))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100360 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100361
362 /* no stations in PS mode */
363 if (!atomic_read(&tx->sdata->bss->num_sta_ps))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100364 return TX_CONTINUE;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100365
366 /* buffered in mac80211 */
367 if (tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200368 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
369 purge_old_ps_buffers(tx->local);
370 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
371 AP_MAX_BC_BUFFER) {
372 if (net_ratelimit()) {
373 printk(KERN_DEBUG "%s: BC TX buffer full - "
374 "dropping the oldest frame\n",
375 tx->dev->name);
376 }
377 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
378 } else
379 tx->local->total_ps_buffered++;
380 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100381 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200382 }
383
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100384 /* buffered in hardware */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100385 tx->control->flags |= IEEE80211_TXCTL_SEND_AFTER_DTIM;
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100386
Johannes Berg9ae54c82008-01-31 19:48:20 +0100387 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200388}
389
Johannes Berg9ae54c82008-01-31 19:48:20 +0100390static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100391ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200392{
393 struct sta_info *sta = tx->sta;
Johannes Berg07346f812008-05-03 01:02:02 +0200394 u32 staflags;
Joe Perches0795af52007-10-03 17:59:30 -0700395 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200396
397 if (unlikely(!sta ||
398 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
399 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100400 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200401
Johannes Berg07346f812008-05-03 01:02:02 +0200402 staflags = get_sta_flags(sta);
403
404 if (unlikely((staflags & WLAN_STA_PS) &&
405 !(staflags & WLAN_STA_PSPOLL))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200406 struct ieee80211_tx_packet_data *pkt_data;
407#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700408 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
Johannes Berge2ebc742007-07-27 15:43:22 +0200409 "before %d)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700410 print_mac(mac, sta->addr), sta->aid,
Johannes Berge2ebc742007-07-27 15:43:22 +0200411 skb_queue_len(&sta->ps_tx_buf));
412#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berge2ebc742007-07-27 15:43:22 +0200413 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
414 purge_old_ps_buffers(tx->local);
415 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
416 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
417 if (net_ratelimit()) {
Joe Perches0795af52007-10-03 17:59:30 -0700418 printk(KERN_DEBUG "%s: STA %s TX "
Johannes Berge2ebc742007-07-27 15:43:22 +0200419 "buffer full - dropping oldest frame\n",
Joe Perches0795af52007-10-03 17:59:30 -0700420 tx->dev->name, print_mac(mac, sta->addr));
Johannes Berge2ebc742007-07-27 15:43:22 +0200421 }
422 dev_kfree_skb(old);
423 } else
424 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100425
Johannes Berge2ebc742007-07-27 15:43:22 +0200426 /* Queue frame to be sent after STA sends an PS Poll frame */
Johannes Berg004c8722008-02-20 11:21:35 +0100427 if (skb_queue_empty(&sta->ps_tx_buf))
428 sta_info_set_tim_bit(sta);
429
Johannes Berge2ebc742007-07-27 15:43:22 +0200430 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
431 pkt_data->jiffies = jiffies;
432 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100433 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200434 }
435#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg07346f812008-05-03 01:02:02 +0200436 else if (unlikely(test_sta_flags(sta, WLAN_STA_PS))) {
Joe Perches0795af52007-10-03 17:59:30 -0700437 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
Johannes Berge2ebc742007-07-27 15:43:22 +0200438 "set -> send frame\n", tx->dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700439 print_mac(mac, sta->addr));
Johannes Berge2ebc742007-07-27 15:43:22 +0200440 }
441#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg07346f812008-05-03 01:02:02 +0200442 clear_sta_flags(sta, WLAN_STA_PSPOLL);
Johannes Berge2ebc742007-07-27 15:43:22 +0200443
Johannes Berg9ae54c82008-01-31 19:48:20 +0100444 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200445}
446
Johannes Berg9ae54c82008-01-31 19:48:20 +0100447static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100448ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200449{
Johannes Berg5cf121c2008-02-25 16:27:43 +0100450 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100451 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200452
Johannes Berg5cf121c2008-02-25 16:27:43 +0100453 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200454 return ieee80211_tx_h_unicast_ps_buf(tx);
455 else
456 return ieee80211_tx_h_multicast_ps_buf(tx);
457}
458
Johannes Berg9ae54c82008-01-31 19:48:20 +0100459static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100460ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200461{
Johannes Bergd4e46a32007-09-14 11:10:24 -0400462 struct ieee80211_key *key;
Johannes Berg176e4f82007-12-18 15:27:47 +0100463 u16 fc = tx->fc;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400464
Johannes Berg5cf121c2008-02-25 16:27:43 +0100465 if (unlikely(tx->control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
Johannes Berge2ebc742007-07-27 15:43:22 +0200466 tx->key = NULL;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400467 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
468 tx->key = key;
469 else if ((key = rcu_dereference(tx->sdata->default_key)))
470 tx->key = key;
Johannes Berge2ebc742007-07-27 15:43:22 +0200471 else if (tx->sdata->drop_unencrypted &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100472 !(tx->control->flags & IEEE80211_TXCTL_EAPOL_FRAME) &&
473 !(tx->flags & IEEE80211_TX_INJECTED)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200474 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100475 return TX_DROP;
Johannes Berg176e4f82007-12-18 15:27:47 +0100476 } else
Johannes Berge2ebc742007-07-27 15:43:22 +0200477 tx->key = NULL;
478
479 if (tx->key) {
Johannes Berg176e4f82007-12-18 15:27:47 +0100480 u16 ftype, stype;
481
Johannes Berge2ebc742007-07-27 15:43:22 +0200482 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400483 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100484
485 switch (tx->key->conf.alg) {
486 case ALG_WEP:
487 ftype = fc & IEEE80211_FCTL_FTYPE;
488 stype = fc & IEEE80211_FCTL_STYPE;
489
490 if (ftype == IEEE80211_FTYPE_MGMT &&
491 stype == IEEE80211_STYPE_AUTH)
492 break;
493 case ALG_TKIP:
494 case ALG_CCMP:
495 if (!WLAN_FC_DATA_PRESENT(fc))
496 tx->key = NULL;
497 break;
498 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200499 }
500
Johannes Berg176e4f82007-12-18 15:27:47 +0100501 if (!tx->key || !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg5cf121c2008-02-25 16:27:43 +0100502 tx->control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Johannes Berg176e4f82007-12-18 15:27:47 +0100503
Johannes Berg9ae54c82008-01-31 19:48:20 +0100504 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200505}
506
Johannes Berg9ae54c82008-01-31 19:48:20 +0100507static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100508ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200509{
510 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
511 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
512 struct sk_buff **frags, *first, *frag;
513 int i;
514 u16 seq;
515 u8 *pos;
516 int frag_threshold = tx->local->fragmentation_threshold;
517
Johannes Berg5cf121c2008-02-25 16:27:43 +0100518 if (!(tx->flags & IEEE80211_TX_FRAGMENTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100519 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200520
521 first = tx->skb;
522
523 hdrlen = ieee80211_get_hdrlen(tx->fc);
524 payload_len = first->len - hdrlen;
525 per_fragm = frag_threshold - hdrlen - FCS_LEN;
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700526 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
Johannes Berge2ebc742007-07-27 15:43:22 +0200527
528 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
529 if (!frags)
530 goto fail;
531
532 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
533 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
534 pos = first->data + hdrlen + per_fragm;
535 left = payload_len - per_fragm;
536 for (i = 0; i < num_fragm - 1; i++) {
537 struct ieee80211_hdr *fhdr;
538 size_t copylen;
539
540 if (left <= 0)
541 goto fail;
542
543 /* reserve enough extra head and tail room for possible
544 * encryption */
545 frag = frags[i] =
546 dev_alloc_skb(tx->local->tx_headroom +
547 frag_threshold +
548 IEEE80211_ENCRYPT_HEADROOM +
549 IEEE80211_ENCRYPT_TAILROOM);
550 if (!frag)
551 goto fail;
552 /* Make sure that all fragments use the same priority so
553 * that they end up using the same TX queue */
554 frag->priority = first->priority;
555 skb_reserve(frag, tx->local->tx_headroom +
556 IEEE80211_ENCRYPT_HEADROOM);
557 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
558 memcpy(fhdr, first->data, hdrlen);
559 if (i == num_fragm - 2)
560 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
561 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
562 copylen = left > per_fragm ? per_fragm : left;
563 memcpy(skb_put(frag, copylen), pos, copylen);
564
565 pos += copylen;
566 left -= copylen;
567 }
568 skb_trim(first, hdrlen + per_fragm);
569
Johannes Berg5cf121c2008-02-25 16:27:43 +0100570 tx->num_extra_frag = num_fragm - 1;
571 tx->extra_frag = frags;
Johannes Berge2ebc742007-07-27 15:43:22 +0200572
Johannes Berg9ae54c82008-01-31 19:48:20 +0100573 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200574
575 fail:
576 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
577 if (frags) {
578 for (i = 0; i < num_fragm - 1; i++)
579 if (frags[i])
580 dev_kfree_skb(frags[i]);
581 kfree(frags);
582 }
583 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100584 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200585}
586
Johannes Berg9ae54c82008-01-31 19:48:20 +0100587static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100588ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200589{
Johannes Berg6a22a592007-09-26 15:19:41 +0200590 if (!tx->key)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100591 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200592
Johannes Berg6a22a592007-09-26 15:19:41 +0200593 switch (tx->key->conf.alg) {
594 case ALG_WEP:
595 return ieee80211_crypto_wep_encrypt(tx);
596 case ALG_TKIP:
597 return ieee80211_crypto_tkip_encrypt(tx);
598 case ALG_CCMP:
599 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berge2ebc742007-07-27 15:43:22 +0200600 }
601
Johannes Berg6a22a592007-09-26 15:19:41 +0200602 /* not reached */
603 WARN_ON(1);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100604 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200605}
606
Johannes Berg9ae54c82008-01-31 19:48:20 +0100607static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100608ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200609{
Mattias Nissler1abbe492007-12-20 13:50:07 +0100610 struct rate_selection rsel;
Johannes Berg8318d782008-01-24 19:38:38 +0100611 struct ieee80211_supported_band *sband;
612
613 sband = tx->local->hw.wiphy->bands[tx->local->hw.conf.channel->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200614
Johannes Berg5cf121c2008-02-25 16:27:43 +0100615 if (likely(!tx->rate)) {
Johannes Berg8318d782008-01-24 19:38:38 +0100616 rate_control_get_rate(tx->dev, sband, tx->skb, &rsel);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100617 tx->rate = rsel.rate;
Johannes Berg8318d782008-01-24 19:38:38 +0100618 if (unlikely(rsel.probe)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100619 tx->control->flags |=
Johannes Berg58d41852007-09-26 17:53:18 +0200620 IEEE80211_TXCTL_RATE_CTRL_PROBE;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100621 tx->flags |= IEEE80211_TX_PROBE_LAST_FRAG;
622 tx->control->alt_retry_rate = tx->rate;
623 tx->rate = rsel.probe;
Johannes Berg58d41852007-09-26 17:53:18 +0200624 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100625 tx->control->alt_retry_rate = NULL;
Johannes Berg58d41852007-09-26 17:53:18 +0200626
Johannes Berg5cf121c2008-02-25 16:27:43 +0100627 if (!tx->rate)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100628 return TX_DROP;
Johannes Berg58d41852007-09-26 17:53:18 +0200629 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100630 tx->control->alt_retry_rate = NULL;
Johannes Berg58d41852007-09-26 17:53:18 +0200631
Johannes Berg8318d782008-01-24 19:38:38 +0100632 if (tx->sdata->bss_conf.use_cts_prot &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100633 (tx->flags & IEEE80211_TX_FRAGMENTED) && rsel.nonerp) {
634 tx->last_frag_rate = tx->rate;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100635 if (rsel.probe)
Johannes Berg5cf121c2008-02-25 16:27:43 +0100636 tx->flags &= ~IEEE80211_TX_PROBE_LAST_FRAG;
Jiri Slabybadffb72007-08-28 17:01:54 -0400637 else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100638 tx->flags |= IEEE80211_TX_PROBE_LAST_FRAG;
639 tx->rate = rsel.nonerp;
640 tx->control->tx_rate = rsel.nonerp;
641 tx->control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200642 } else {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100643 tx->last_frag_rate = tx->rate;
644 tx->control->tx_rate = tx->rate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200645 }
Johannes Berg5cf121c2008-02-25 16:27:43 +0100646 tx->control->tx_rate = tx->rate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200647
Johannes Berg9ae54c82008-01-31 19:48:20 +0100648 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200649}
650
Johannes Berg9ae54c82008-01-31 19:48:20 +0100651static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100652ieee80211_tx_h_misc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200653{
654 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200655 u16 fc = le16_to_cpu(hdr->frame_control);
Johannes Berge2ebc742007-07-27 15:43:22 +0200656 u16 dur;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100657 struct ieee80211_tx_control *control = tx->control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200658
Johannes Berg58d41852007-09-26 17:53:18 +0200659 if (!control->retry_limit) {
660 if (!is_multicast_ether_addr(hdr->addr1)) {
661 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
662 && tx->local->rts_threshold <
663 IEEE80211_MAX_RTS_THRESHOLD) {
664 control->flags |=
665 IEEE80211_TXCTL_USE_RTS_CTS;
666 control->flags |=
667 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
668 control->retry_limit =
669 tx->local->long_retry_limit;
670 } else {
671 control->retry_limit =
672 tx->local->short_retry_limit;
673 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200674 } else {
Johannes Berg58d41852007-09-26 17:53:18 +0200675 control->retry_limit = 1;
Johannes Berge2ebc742007-07-27 15:43:22 +0200676 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200677 }
678
Johannes Berg5cf121c2008-02-25 16:27:43 +0100679 if (tx->flags & IEEE80211_TX_FRAGMENTED) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200680 /* Do not use multiple retry rates when sending fragmented
681 * frames.
682 * TODO: The last fragment could still use multiple retry
683 * rates. */
Johannes Berg8318d782008-01-24 19:38:38 +0100684 control->alt_retry_rate = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +0200685 }
686
687 /* Use CTS protection for unicast frames sent using extended rates if
688 * there are associated non-ERP stations and RTS/CTS is not configured
689 * for the frame. */
Johannes Berg8318d782008-01-24 19:38:38 +0100690 if ((tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100691 (tx->rate->flags & IEEE80211_RATE_ERP_G) &&
692 (tx->flags & IEEE80211_TX_UNICAST) &&
Johannes Berg471b3ef2007-12-28 14:32:58 +0100693 tx->sdata->bss_conf.use_cts_prot &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200694 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
695 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
696
Daniel Drake7e9ed182007-07-27 15:43:24 +0200697 /* Transmit data frames using short preambles if the driver supports
698 * short preambles at the selected rate and short preambles are
699 * available on the network at the current point in time. */
700 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100701 (tx->rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
Johannes Berg471b3ef2007-12-28 14:32:58 +0100702 tx->sdata->bss_conf.use_short_preamble &&
Johannes Berg07346f812008-05-03 01:02:02 +0200703 (!tx->sta || test_sta_flags(tx->sta, WLAN_STA_SHORT_PREAMBLE))) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100704 tx->control->flags |= IEEE80211_TXCTL_SHORT_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200705 }
706
Johannes Berge2ebc742007-07-27 15:43:22 +0200707 /* Setup duration field for the first fragment of the frame. Duration
708 * for remaining fragments will be updated when they are being sent
709 * to low-level driver in ieee80211_tx(). */
710 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
Johannes Berg5cf121c2008-02-25 16:27:43 +0100711 (tx->flags & IEEE80211_TX_FRAGMENTED) ?
712 tx->extra_frag[0]->len : 0);
Johannes Berge2ebc742007-07-27 15:43:22 +0200713 hdr->duration_id = cpu_to_le16(dur);
714
715 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
716 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
Johannes Berg8318d782008-01-24 19:38:38 +0100717 struct ieee80211_supported_band *sband;
718 struct ieee80211_rate *rate, *baserate;
719 int idx;
720
721 sband = tx->local->hw.wiphy->bands[
722 tx->local->hw.conf.channel->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200723
724 /* Do not use multiple retry rates when using RTS/CTS */
Johannes Berg8318d782008-01-24 19:38:38 +0100725 control->alt_retry_rate = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +0200726
727 /* Use min(data rate, max base rate) as CTS/RTS rate */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100728 rate = tx->rate;
Johannes Berg8318d782008-01-24 19:38:38 +0100729 baserate = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +0200730
Johannes Berg8318d782008-01-24 19:38:38 +0100731 for (idx = 0; idx < sband->n_bitrates; idx++) {
732 if (sband->bitrates[idx].bitrate > rate->bitrate)
733 continue;
734 if (tx->sdata->basic_rates & BIT(idx) &&
735 (!baserate ||
736 (baserate->bitrate < sband->bitrates[idx].bitrate)))
737 baserate = &sband->bitrates[idx];
738 }
739
740 if (baserate)
741 control->rts_cts_rate = baserate;
742 else
743 control->rts_cts_rate = &sband->bitrates[0];
Johannes Berge2ebc742007-07-27 15:43:22 +0200744 }
745
746 if (tx->sta) {
Chrfff77102008-04-01 21:45:18 +0200747 control->aid = tx->sta->aid;
Johannes Berge2ebc742007-07-27 15:43:22 +0200748 tx->sta->tx_packets++;
749 tx->sta->tx_fragments++;
750 tx->sta->tx_bytes += tx->skb->len;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100751 if (tx->extra_frag) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200752 int i;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100753 tx->sta->tx_fragments += tx->num_extra_frag;
754 for (i = 0; i < tx->num_extra_frag; i++) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200755 tx->sta->tx_bytes +=
Johannes Berg5cf121c2008-02-25 16:27:43 +0100756 tx->extra_frag[i]->len;
Johannes Berge2ebc742007-07-27 15:43:22 +0200757 }
758 }
759 }
760
Johannes Berg9ae54c82008-01-31 19:48:20 +0100761 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200762}
763
Johannes Berg9ae54c82008-01-31 19:48:20 +0100764static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100765ieee80211_tx_h_load_stats(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200766{
767 struct ieee80211_local *local = tx->local;
Johannes Berge2ebc742007-07-27 15:43:22 +0200768 struct sk_buff *skb = tx->skb;
769 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
770 u32 load = 0, hdrtime;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100771 struct ieee80211_rate *rate = tx->rate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200772
773 /* TODO: this could be part of tx_status handling, so that the number
774 * of retries would be known; TX rate should in that case be stored
775 * somewhere with the packet */
776
777 /* Estimate total channel use caused by this frame */
778
779 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
780 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
781
Johannes Berg5cf121c2008-02-25 16:27:43 +0100782 if (tx->channel->band == IEEE80211_BAND_5GHZ ||
783 (tx->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg8318d782008-01-24 19:38:38 +0100784 rate->flags & IEEE80211_RATE_ERP_G))
Johannes Berge2ebc742007-07-27 15:43:22 +0200785 hdrtime = CHAN_UTIL_HDR_SHORT;
786 else
787 hdrtime = CHAN_UTIL_HDR_LONG;
788
789 load = hdrtime;
790 if (!is_multicast_ether_addr(hdr->addr1))
791 load += hdrtime;
792
Johannes Berg5cf121c2008-02-25 16:27:43 +0100793 if (tx->control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
Johannes Berge2ebc742007-07-27 15:43:22 +0200794 load += 2 * hdrtime;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100795 else if (tx->control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
Johannes Berge2ebc742007-07-27 15:43:22 +0200796 load += hdrtime;
797
Johannes Berg8318d782008-01-24 19:38:38 +0100798 /* TODO: optimise again */
799 load += skb->len * CHAN_UTIL_RATE_LCM / rate->bitrate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200800
Johannes Berg5cf121c2008-02-25 16:27:43 +0100801 if (tx->extra_frag) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200802 int i;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100803 for (i = 0; i < tx->num_extra_frag; i++) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200804 load += 2 * hdrtime;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100805 load += tx->extra_frag[i]->len *
806 tx->rate->bitrate;
Johannes Berge2ebc742007-07-27 15:43:22 +0200807 }
808 }
809
810 /* Divide channel_use by 8 to avoid wrapping around the counter */
811 load >>= CHAN_UTIL_SHIFT;
812 local->channel_use_raw += load;
813 if (tx->sta)
814 tx->sta->channel_use_raw += load;
815 tx->sdata->channel_use_raw += load;
816
Johannes Berg9ae54c82008-01-31 19:48:20 +0100817 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200818}
819
Johannes Berge2ebc742007-07-27 15:43:22 +0200820
Johannes Berg5cf121c2008-02-25 16:27:43 +0100821typedef ieee80211_tx_result (*ieee80211_tx_handler)(struct ieee80211_tx_data *);
Johannes Berg58905292008-01-31 19:48:25 +0100822static ieee80211_tx_handler ieee80211_tx_handlers[] =
Johannes Berge2ebc742007-07-27 15:43:22 +0200823{
824 ieee80211_tx_h_check_assoc,
825 ieee80211_tx_h_sequence,
826 ieee80211_tx_h_ps_buf,
827 ieee80211_tx_h_select_key,
828 ieee80211_tx_h_michael_mic_add,
829 ieee80211_tx_h_fragment,
Johannes Berg6a22a592007-09-26 15:19:41 +0200830 ieee80211_tx_h_encrypt,
Johannes Berge2ebc742007-07-27 15:43:22 +0200831 ieee80211_tx_h_rate_ctrl,
832 ieee80211_tx_h_misc,
833 ieee80211_tx_h_load_stats,
834 NULL
835};
836
837/* actual transmit path */
838
839/*
840 * deal with packet injection down monitor interface
841 * with Radiotap Header -- only called for monitor mode interface
842 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100843static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100844__ieee80211_parse_tx_radiotap(struct ieee80211_tx_data *tx,
Johannes Berg58d41852007-09-26 17:53:18 +0200845 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +0200846{
847 /*
848 * this is the moment to interpret and discard the radiotap header that
849 * must be at the start of the packet injected in Monitor mode
850 *
851 * Need to take some care with endian-ness since radiotap
852 * args are little-endian
853 */
854
855 struct ieee80211_radiotap_iterator iterator;
856 struct ieee80211_radiotap_header *rthdr =
857 (struct ieee80211_radiotap_header *) skb->data;
Johannes Berg8318d782008-01-24 19:38:38 +0100858 struct ieee80211_supported_band *sband;
Johannes Berge2ebc742007-07-27 15:43:22 +0200859 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100860 struct ieee80211_tx_control *control = tx->control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200861
Johannes Berg8318d782008-01-24 19:38:38 +0100862 sband = tx->local->hw.wiphy->bands[tx->local->hw.conf.channel->band];
863
Johannes Berg58d41852007-09-26 17:53:18 +0200864 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100865 tx->flags |= IEEE80211_TX_INJECTED;
866 tx->flags &= ~IEEE80211_TX_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200867
868 /*
869 * for every radiotap entry that is present
870 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
871 * entries present, or -EINVAL on error)
872 */
873
874 while (!ret) {
875 int i, target_rate;
876
877 ret = ieee80211_radiotap_iterator_next(&iterator);
878
879 if (ret)
880 continue;
881
882 /* see if this argument is something we can use */
883 switch (iterator.this_arg_index) {
884 /*
885 * You must take care when dereferencing iterator.this_arg
886 * for multibyte types... the pointer is not aligned. Use
887 * get_unaligned((type *)iterator.this_arg) to dereference
888 * iterator.this_arg for type "type" safely on all arches.
889 */
890 case IEEE80211_RADIOTAP_RATE:
891 /*
892 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
893 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
894 */
895 target_rate = (*iterator.this_arg) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +0100896 for (i = 0; i < sband->n_bitrates; i++) {
897 struct ieee80211_rate *r;
Johannes Berge2ebc742007-07-27 15:43:22 +0200898
Johannes Berg8318d782008-01-24 19:38:38 +0100899 r = &sband->bitrates[i];
900
901 if (r->bitrate == target_rate) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100902 tx->rate = r;
Johannes Berg58d41852007-09-26 17:53:18 +0200903 break;
904 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200905 }
906 break;
907
908 case IEEE80211_RADIOTAP_ANTENNA:
909 /*
910 * radiotap uses 0 for 1st ant, mac80211 is 1 for
911 * 1st ant
912 */
913 control->antenna_sel_tx = (*iterator.this_arg) + 1;
914 break;
915
Johannes Berg8318d782008-01-24 19:38:38 +0100916#if 0
Johannes Berge2ebc742007-07-27 15:43:22 +0200917 case IEEE80211_RADIOTAP_DBM_TX_POWER:
918 control->power_level = *iterator.this_arg;
919 break;
Johannes Berg8318d782008-01-24 19:38:38 +0100920#endif
Johannes Berge2ebc742007-07-27 15:43:22 +0200921
922 case IEEE80211_RADIOTAP_FLAGS:
923 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
924 /*
925 * this indicates that the skb we have been
926 * handed has the 32-bit FCS CRC at the end...
927 * we should react to that by snipping it off
928 * because it will be recomputed and added
929 * on transmission
930 */
931 if (skb->len < (iterator.max_length + FCS_LEN))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100932 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200933
934 skb_trim(skb, skb->len - FCS_LEN);
935 }
Johannes Berg58d41852007-09-26 17:53:18 +0200936 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
937 control->flags &=
938 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
939 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
Johannes Berg5cf121c2008-02-25 16:27:43 +0100940 tx->flags |= IEEE80211_TX_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200941 break;
942
Johannes Berg58d41852007-09-26 17:53:18 +0200943 /*
944 * Please update the file
945 * Documentation/networking/mac80211-injection.txt
946 * when parsing new fields here.
947 */
948
Johannes Berge2ebc742007-07-27 15:43:22 +0200949 default:
950 break;
951 }
952 }
953
954 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100955 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200956
957 /*
958 * remove the radiotap header
959 * iterator->max_length was sanity-checked against
960 * skb->len by iterator init
961 */
962 skb_pull(skb, iterator.max_length);
963
Johannes Berg9ae54c82008-01-31 19:48:20 +0100964 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200965}
966
Johannes Berg58d41852007-09-26 17:53:18 +0200967/*
968 * initialises @tx
969 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100970static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100971__ieee80211_tx_prepare(struct ieee80211_tx_data *tx,
Johannes Berge2ebc742007-07-27 15:43:22 +0200972 struct sk_buff *skb,
973 struct net_device *dev,
974 struct ieee80211_tx_control *control)
975{
976 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg58d41852007-09-26 17:53:18 +0200977 struct ieee80211_hdr *hdr;
Johannes Berge2ebc742007-07-27 15:43:22 +0200978 struct ieee80211_sub_if_data *sdata;
Johannes Berge2ebc742007-07-27 15:43:22 +0200979
980 int hdrlen;
981
982 memset(tx, 0, sizeof(*tx));
983 tx->skb = skb;
984 tx->dev = dev; /* use original interface */
985 tx->local = local;
986 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100987 tx->control = control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200988 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200989 * Set this flag (used below to indicate "automatic fragmentation"),
990 * it will be cleared/left by radiotap as desired.
Johannes Berge2ebc742007-07-27 15:43:22 +0200991 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100992 tx->flags |= IEEE80211_TX_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200993
994 /* process and remove the injection radiotap header */
995 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100996 if (unlikely(sdata->vif.type == IEEE80211_IF_TYPE_MNTR)) {
Johannes Berg9ae54c82008-01-31 19:48:20 +0100997 if (__ieee80211_parse_tx_radiotap(tx, skb) == TX_DROP)
998 return TX_DROP;
Johannes Berg58d41852007-09-26 17:53:18 +0200999
Johannes Berge2ebc742007-07-27 15:43:22 +02001000 /*
Johannes Berg58d41852007-09-26 17:53:18 +02001001 * __ieee80211_parse_tx_radiotap has now removed
1002 * the radiotap header that was present and pre-filled
1003 * 'tx' with tx control information.
Johannes Berge2ebc742007-07-27 15:43:22 +02001004 */
Johannes Berge2ebc742007-07-27 15:43:22 +02001005 }
1006
Johannes Berg58d41852007-09-26 17:53:18 +02001007 hdr = (struct ieee80211_hdr *) skb->data;
1008
warmcat24338792007-09-14 11:10:25 -04001009 tx->sta = sta_info_get(local, hdr->addr1);
1010 tx->fc = le16_to_cpu(hdr->frame_control);
Johannes Berg58d41852007-09-26 17:53:18 +02001011
Jiri Slabybadffb72007-08-28 17:01:54 -04001012 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001013 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +02001014 control->flags |= IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -04001015 } else {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001016 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +02001017 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -04001018 }
Johannes Berg58d41852007-09-26 17:53:18 +02001019
Johannes Berg5cf121c2008-02-25 16:27:43 +01001020 if (tx->flags & IEEE80211_TX_FRAGMENTED) {
1021 if ((tx->flags & IEEE80211_TX_UNICAST) &&
Johannes Berg58d41852007-09-26 17:53:18 +02001022 skb->len + FCS_LEN > local->fragmentation_threshold &&
1023 !local->ops->set_frag_threshold)
Johannes Berg5cf121c2008-02-25 16:27:43 +01001024 tx->flags |= IEEE80211_TX_FRAGMENTED;
Johannes Berg58d41852007-09-26 17:53:18 +02001025 else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001026 tx->flags &= ~IEEE80211_TX_FRAGMENTED;
Johannes Berg58d41852007-09-26 17:53:18 +02001027 }
1028
Johannes Berge2ebc742007-07-27 15:43:22 +02001029 if (!tx->sta)
Johannes Bergd46e1442008-02-20 23:59:33 +01001030 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
Johannes Berg07346f812008-05-03 01:02:02 +02001031 else if (test_and_clear_sta_flags(tx->sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Bergd46e1442008-02-20 23:59:33 +01001032 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
Johannes Berg58d41852007-09-26 17:53:18 +02001033
Johannes Berge2ebc742007-07-27 15:43:22 +02001034 hdrlen = ieee80211_get_hdrlen(tx->fc);
1035 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
1036 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
1037 tx->ethertype = (pos[0] << 8) | pos[1];
1038 }
1039 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1040
Johannes Berg9ae54c82008-01-31 19:48:20 +01001041 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001042}
1043
Johannes Berg32bfd352007-12-19 01:31:26 +01001044/*
Johannes Berg58d41852007-09-26 17:53:18 +02001045 * NB: @tx is uninitialised when passed in here
1046 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001047static int ieee80211_tx_prepare(struct ieee80211_tx_data *tx,
Johannes Berg58d41852007-09-26 17:53:18 +02001048 struct sk_buff *skb,
1049 struct net_device *mdev,
1050 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001051{
1052 struct ieee80211_tx_packet_data *pkt_data;
1053 struct net_device *dev;
1054
1055 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001056 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001057 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1058 dev_put(dev);
1059 dev = NULL;
1060 }
1061 if (unlikely(!dev))
1062 return -ENODEV;
Johannes Berg58d41852007-09-26 17:53:18 +02001063 /* initialises tx with control */
Johannes Berge2ebc742007-07-27 15:43:22 +02001064 __ieee80211_tx_prepare(tx, skb, dev, control);
Johannes Berg32bfd352007-12-19 01:31:26 +01001065 dev_put(dev);
Johannes Berge2ebc742007-07-27 15:43:22 +02001066 return 0;
1067}
1068
1069static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001070 struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +02001071{
Johannes Berg5cf121c2008-02-25 16:27:43 +01001072 struct ieee80211_tx_control *control = tx->control;
Johannes Berge2ebc742007-07-27 15:43:22 +02001073 int ret, i;
1074
1075 if (!ieee80211_qdisc_installed(local->mdev) &&
1076 __ieee80211_queue_stopped(local, 0)) {
1077 netif_stop_queue(local->mdev);
1078 return IEEE80211_TX_AGAIN;
1079 }
1080 if (skb) {
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001081 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1082 "TX to low-level driver", skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001083 ret = local->ops->tx(local_to_hw(local), skb, control);
1084 if (ret)
1085 return IEEE80211_TX_AGAIN;
1086 local->mdev->trans_start = jiffies;
1087 ieee80211_led_tx(local, 1);
1088 }
Johannes Berg5cf121c2008-02-25 16:27:43 +01001089 if (tx->extra_frag) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001090 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1091 IEEE80211_TXCTL_USE_CTS_PROTECT |
Johannes Bergd46e1442008-02-20 23:59:33 +01001092 IEEE80211_TXCTL_CLEAR_PS_FILT |
Johannes Berge2ebc742007-07-27 15:43:22 +02001093 IEEE80211_TXCTL_FIRST_FRAGMENT);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001094 for (i = 0; i < tx->num_extra_frag; i++) {
1095 if (!tx->extra_frag[i])
Johannes Berge2ebc742007-07-27 15:43:22 +02001096 continue;
1097 if (__ieee80211_queue_stopped(local, control->queue))
1098 return IEEE80211_TX_FRAG_AGAIN;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001099 if (i == tx->num_extra_frag) {
1100 control->tx_rate = tx->last_frag_rate;
Johannes Berg8318d782008-01-24 19:38:38 +01001101
Johannes Berg5cf121c2008-02-25 16:27:43 +01001102 if (tx->flags & IEEE80211_TX_PROBE_LAST_FRAG)
Johannes Berge2ebc742007-07-27 15:43:22 +02001103 control->flags |=
1104 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1105 else
1106 control->flags &=
1107 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1108 }
1109
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001110 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
Johannes Berge2ebc742007-07-27 15:43:22 +02001111 "TX to low-level driver",
Johannes Berg5cf121c2008-02-25 16:27:43 +01001112 tx->extra_frag[i]);
Johannes Berge2ebc742007-07-27 15:43:22 +02001113 ret = local->ops->tx(local_to_hw(local),
Johannes Berg5cf121c2008-02-25 16:27:43 +01001114 tx->extra_frag[i],
Johannes Berge2ebc742007-07-27 15:43:22 +02001115 control);
1116 if (ret)
1117 return IEEE80211_TX_FRAG_AGAIN;
1118 local->mdev->trans_start = jiffies;
1119 ieee80211_led_tx(local, 1);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001120 tx->extra_frag[i] = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001121 }
Johannes Berg5cf121c2008-02-25 16:27:43 +01001122 kfree(tx->extra_frag);
1123 tx->extra_frag = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02001124 }
1125 return IEEE80211_TX_OK;
1126}
1127
1128static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
Johannes Bergf9d540e2007-09-28 14:02:09 +02001129 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001130{
1131 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1132 struct sta_info *sta;
1133 ieee80211_tx_handler *handler;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001134 struct ieee80211_tx_data tx;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001135 ieee80211_tx_result res = TX_DROP, res_prepare;
Johannes Berge2ebc742007-07-27 15:43:22 +02001136 int ret, i;
1137
1138 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1139
1140 if (unlikely(skb->len < 10)) {
1141 dev_kfree_skb(skb);
1142 return 0;
1143 }
1144
Johannes Bergd0709a62008-02-25 16:27:46 +01001145 rcu_read_lock();
1146
Johannes Berg58d41852007-09-26 17:53:18 +02001147 /* initialises tx */
Johannes Berge2ebc742007-07-27 15:43:22 +02001148 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1149
Johannes Berg9ae54c82008-01-31 19:48:20 +01001150 if (res_prepare == TX_DROP) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001151 dev_kfree_skb(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001152 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001153 return 0;
1154 }
1155
1156 sta = tx.sta;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001157 tx.channel = local->hw.conf.channel;
Johannes Berge2ebc742007-07-27 15:43:22 +02001158
Johannes Berg58905292008-01-31 19:48:25 +01001159 for (handler = ieee80211_tx_handlers; *handler != NULL;
Johannes Berg58d41852007-09-26 17:53:18 +02001160 handler++) {
1161 res = (*handler)(&tx);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001162 if (res != TX_CONTINUE)
Johannes Berg58d41852007-09-26 17:53:18 +02001163 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02001164 }
1165
1166 skb = tx.skb; /* handlers are allowed to change skb */
1167
Johannes Berg9ae54c82008-01-31 19:48:20 +01001168 if (unlikely(res == TX_DROP)) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001169 I802_DEBUG_INC(local->tx_handlers_drop);
1170 goto drop;
1171 }
1172
Johannes Berg9ae54c82008-01-31 19:48:20 +01001173 if (unlikely(res == TX_QUEUED)) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001174 I802_DEBUG_INC(local->tx_handlers_queued);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001175 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001176 return 0;
1177 }
1178
Johannes Berg5cf121c2008-02-25 16:27:43 +01001179 if (tx.extra_frag) {
1180 for (i = 0; i < tx.num_extra_frag; i++) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001181 int next_len, dur;
1182 struct ieee80211_hdr *hdr =
1183 (struct ieee80211_hdr *)
Johannes Berg5cf121c2008-02-25 16:27:43 +01001184 tx.extra_frag[i]->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001185
Johannes Berg5cf121c2008-02-25 16:27:43 +01001186 if (i + 1 < tx.num_extra_frag) {
1187 next_len = tx.extra_frag[i + 1]->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001188 } else {
1189 next_len = 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001190 tx.rate = tx.last_frag_rate;
Johannes Berge2ebc742007-07-27 15:43:22 +02001191 }
1192 dur = ieee80211_duration(&tx, 0, next_len);
1193 hdr->duration_id = cpu_to_le16(dur);
1194 }
1195 }
1196
1197retry:
1198 ret = __ieee80211_tx(local, skb, &tx);
1199 if (ret) {
1200 struct ieee80211_tx_stored_packet *store =
1201 &local->pending_packet[control->queue];
1202
1203 if (ret == IEEE80211_TX_FRAG_AGAIN)
1204 skb = NULL;
1205 set_bit(IEEE80211_LINK_STATE_PENDING,
1206 &local->state[control->queue]);
1207 smp_mb();
1208 /* When the driver gets out of buffers during sending of
1209 * fragments and calls ieee80211_stop_queue, there is
1210 * a small window between IEEE80211_LINK_STATE_XOFF and
1211 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1212 * gets available in that window (i.e. driver calls
1213 * ieee80211_wake_queue), we would end up with ieee80211_tx
1214 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1215 * continuing transmitting here when that situation is
1216 * possible to have happened. */
1217 if (!__ieee80211_queue_stopped(local, control->queue)) {
1218 clear_bit(IEEE80211_LINK_STATE_PENDING,
1219 &local->state[control->queue]);
1220 goto retry;
1221 }
1222 memcpy(&store->control, control,
1223 sizeof(struct ieee80211_tx_control));
1224 store->skb = skb;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001225 store->extra_frag = tx.extra_frag;
1226 store->num_extra_frag = tx.num_extra_frag;
1227 store->last_frag_rate = tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001228 store->last_frag_rate_ctrl_probe =
Johannes Berg5cf121c2008-02-25 16:27:43 +01001229 !!(tx.flags & IEEE80211_TX_PROBE_LAST_FRAG);
Johannes Berge2ebc742007-07-27 15:43:22 +02001230 }
Johannes Bergd4e46a32007-09-14 11:10:24 -04001231 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001232 return 0;
1233
1234 drop:
1235 if (skb)
1236 dev_kfree_skb(skb);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001237 for (i = 0; i < tx.num_extra_frag; i++)
1238 if (tx.extra_frag[i])
1239 dev_kfree_skb(tx.extra_frag[i]);
1240 kfree(tx.extra_frag);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001241 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001242 return 0;
1243}
1244
1245/* device xmit handlers */
1246
1247int ieee80211_master_start_xmit(struct sk_buff *skb,
1248 struct net_device *dev)
1249{
1250 struct ieee80211_tx_control control;
1251 struct ieee80211_tx_packet_data *pkt_data;
1252 struct net_device *odev = NULL;
1253 struct ieee80211_sub_if_data *osdata;
1254 int headroom;
1255 int ret;
1256
1257 /*
1258 * copy control out of the skb so other people can use skb->cb
1259 */
1260 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1261 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1262
1263 if (pkt_data->ifindex)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001264 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001265 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1266 dev_put(odev);
1267 odev = NULL;
1268 }
1269 if (unlikely(!odev)) {
1270#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1271 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1272 "originating device\n", dev->name);
1273#endif
1274 dev_kfree_skb(skb);
1275 return 0;
1276 }
1277 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1278
1279 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1280 if (skb_headroom(skb) < headroom) {
1281 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1282 dev_kfree_skb(skb);
1283 dev_put(odev);
1284 return 0;
1285 }
1286 }
1287
Johannes Berg32bfd352007-12-19 01:31:26 +01001288 control.vif = &osdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +01001289 control.type = osdata->vif.type;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001290 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
Johannes Berge2ebc742007-07-27 15:43:22 +02001291 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001292 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
Johannes Berge2ebc742007-07-27 15:43:22 +02001293 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001294 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
Johannes Berge2ebc742007-07-27 15:43:22 +02001295 control.flags |= IEEE80211_TXCTL_REQUEUE;
Johannes Berg678f5f712007-12-19 01:31:23 +01001296 if (pkt_data->flags & IEEE80211_TXPD_EAPOL_FRAME)
1297 control.flags |= IEEE80211_TXCTL_EAPOL_FRAME;
Ron Rindjunsky9e723492008-01-28 14:07:18 +02001298 if (pkt_data->flags & IEEE80211_TXPD_AMPDU)
1299 control.flags |= IEEE80211_TXCTL_AMPDU;
Johannes Berge2ebc742007-07-27 15:43:22 +02001300 control.queue = pkt_data->queue;
1301
Johannes Bergf9d540e2007-09-28 14:02:09 +02001302 ret = ieee80211_tx(odev, skb, &control);
Johannes Berge2ebc742007-07-27 15:43:22 +02001303 dev_put(odev);
1304
1305 return ret;
1306}
1307
1308int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1309 struct net_device *dev)
1310{
1311 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1312 struct ieee80211_tx_packet_data *pkt_data;
1313 struct ieee80211_radiotap_header *prthdr =
1314 (struct ieee80211_radiotap_header *)skb->data;
Andy Green9b8a74e2007-07-27 15:43:24 +02001315 u16 len_rthdr;
Johannes Berge2ebc742007-07-27 15:43:22 +02001316
Andy Green9b8a74e2007-07-27 15:43:24 +02001317 /* check for not even having the fixed radiotap header part */
1318 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1319 goto fail; /* too short to be possibly valid */
1320
1321 /* is it a header version we can trust to find length from? */
1322 if (unlikely(prthdr->it_version))
1323 goto fail; /* only version 0 is supported */
1324
1325 /* then there must be a radiotap header with a length we can use */
1326 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1327
1328 /* does the skb contain enough to deliver on the alleged length? */
1329 if (unlikely(skb->len < len_rthdr))
1330 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001331
1332 skb->dev = local->mdev;
1333
1334 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1335 memset(pkt_data, 0, sizeof(*pkt_data));
Andy Green9b8a74e2007-07-27 15:43:24 +02001336 /* needed because we set skb device to master */
Johannes Berge2ebc742007-07-27 15:43:22 +02001337 pkt_data->ifindex = dev->ifindex;
Andy Green9b8a74e2007-07-27 15:43:24 +02001338
Jiri Slabye8bf9642007-08-28 17:01:54 -04001339 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
Ivo van Doornb0a67172008-05-13 15:03:02 +02001340 /* Interfaces should always request a status report */
1341 pkt_data->flags |= IEEE80211_TXPD_REQ_TX_STATUS;
Johannes Berge2ebc742007-07-27 15:43:22 +02001342
Johannes Berge2ebc742007-07-27 15:43:22 +02001343 /*
1344 * fix up the pointers accounting for the radiotap
1345 * header still being in there. We are being given
1346 * a precooked IEEE80211 header so no need for
1347 * normal processing
1348 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001349 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001350 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001351 * these are just fixed to the end of the rt area since we
1352 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001353 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001354 skb_set_network_header(skb, len_rthdr);
1355 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001356
Andy Green9b8a74e2007-07-27 15:43:24 +02001357 /* pass the radiotap header up to the next stage intact */
1358 dev_queue_xmit(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001359 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001360
1361fail:
1362 dev_kfree_skb(skb);
1363 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001364}
1365
1366/**
1367 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1368 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1369 * @skb: packet to be sent
1370 * @dev: incoming interface
1371 *
1372 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1373 * not be freed, and caller is responsible for either retrying later or freeing
1374 * skb).
1375 *
1376 * This function takes in an Ethernet header and encapsulates it with suitable
1377 * IEEE 802.11 header based on which interface the packet is coming in. The
1378 * encapsulated packet will then be passed to master interface, wlan#.11, for
1379 * transmission (through low-level driver).
1380 */
1381int ieee80211_subif_start_xmit(struct sk_buff *skb,
1382 struct net_device *dev)
1383{
1384 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1385 struct ieee80211_tx_packet_data *pkt_data;
1386 struct ieee80211_sub_if_data *sdata;
1387 int ret = 1, head_need;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001388 u16 ethertype, hdrlen, meshhdrlen = 0, fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02001389 struct ieee80211_hdr hdr;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001390 struct ieee80211s_hdr mesh_hdr;
Johannes Berge2ebc742007-07-27 15:43:22 +02001391 const u8 *encaps_data;
1392 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001393 int nh_pos, h_pos;
Johannes Berge2ebc742007-07-27 15:43:22 +02001394 struct sta_info *sta;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001395 u32 sta_flags = 0;
Johannes Berge2ebc742007-07-27 15:43:22 +02001396
1397 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1398 if (unlikely(skb->len < ETH_HLEN)) {
1399 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1400 dev->name, skb->len);
1401 ret = 0;
1402 goto fail;
1403 }
1404
1405 nh_pos = skb_network_header(skb) - skb->data;
1406 h_pos = skb_transport_header(skb) - skb->data;
1407
1408 /* convert Ethernet header to proper 802.11 header (based on
1409 * operation mode) */
1410 ethertype = (skb->data[12] << 8) | skb->data[13];
Johannes Berge2ebc742007-07-27 15:43:22 +02001411 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1412
Johannes Berg51fb61e2007-12-19 01:31:27 +01001413 switch (sdata->vif.type) {
Johannes Bergcf966832007-08-28 17:01:54 -04001414 case IEEE80211_IF_TYPE_AP:
1415 case IEEE80211_IF_TYPE_VLAN:
Johannes Berge2ebc742007-07-27 15:43:22 +02001416 fc |= IEEE80211_FCTL_FROMDS;
1417 /* DA BSSID SA */
1418 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1419 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1420 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1421 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001422 break;
1423 case IEEE80211_IF_TYPE_WDS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001424 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1425 /* RA TA DA SA */
1426 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1427 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1428 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1429 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1430 hdrlen = 30;
Johannes Bergcf966832007-08-28 17:01:54 -04001431 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001432#ifdef CONFIG_MAC80211_MESH
1433 case IEEE80211_IF_TYPE_MESH_POINT:
1434 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1435 /* RA TA DA SA */
1436 if (is_multicast_ether_addr(skb->data))
1437 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1438 else if (mesh_nexthop_lookup(hdr.addr1, skb, dev))
1439 return 0;
1440 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1441 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1442 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1443 if (skb->pkt_type == PACKET_OTHERHOST) {
1444 /* Forwarded frame, keep mesh ttl and seqnum */
1445 struct ieee80211s_hdr *prev_meshhdr;
1446 prev_meshhdr = ((struct ieee80211s_hdr *)skb->cb);
1447 meshhdrlen = ieee80211_get_mesh_hdrlen(prev_meshhdr);
1448 memcpy(&mesh_hdr, prev_meshhdr, meshhdrlen);
1449 sdata->u.sta.mshstats.fwded_frames++;
1450 } else {
1451 if (!sdata->u.sta.mshcfg.dot11MeshTTL) {
1452 /* Do not send frames with mesh_ttl == 0 */
1453 sdata->u.sta.mshstats.dropped_frames_ttl++;
1454 ret = 0;
1455 goto fail;
1456 }
1457 meshhdrlen = ieee80211_new_mesh_header(&mesh_hdr,
Johannes Berg902acc72008-02-23 15:17:19 +01001458 sdata);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001459 }
1460 hdrlen = 30;
1461 break;
1462#endif
Johannes Bergcf966832007-08-28 17:01:54 -04001463 case IEEE80211_IF_TYPE_STA:
Johannes Berge2ebc742007-07-27 15:43:22 +02001464 fc |= IEEE80211_FCTL_TODS;
1465 /* BSSID SA DA */
1466 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1467 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1468 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1469 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001470 break;
1471 case IEEE80211_IF_TYPE_IBSS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001472 /* DA SA BSSID */
1473 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1474 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1475 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1476 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001477 break;
1478 default:
Johannes Berge2ebc742007-07-27 15:43:22 +02001479 ret = 0;
1480 goto fail;
1481 }
1482
Johannes Berg7d185b82008-01-28 17:11:43 +01001483 /*
1484 * There's no need to try to look up the destination
1485 * if it is a multicast address (which can only happen
1486 * in AP mode)
1487 */
1488 if (!is_multicast_ether_addr(hdr.addr1)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001489 rcu_read_lock();
Johannes Berg7d185b82008-01-28 17:11:43 +01001490 sta = sta_info_get(local, hdr.addr1);
Johannes Bergd0709a62008-02-25 16:27:46 +01001491 if (sta)
Johannes Berg07346f812008-05-03 01:02:02 +02001492 sta_flags = get_sta_flags(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001493 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001494 }
1495
Johannes Berg3434fbd2008-05-03 00:59:37 +02001496 /* receiver and we are QoS enabled, use a QoS type frame */
1497 if (sta_flags & WLAN_STA_WME && local->hw.queues >= 4) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001498 fc |= IEEE80211_STYPE_QOS_DATA;
1499 hdrlen += 2;
1500 }
1501
1502 /*
Johannes Berg238814f2008-01-28 17:19:37 +01001503 * Drop unicast frames to unauthorised stations unless they are
1504 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001505 */
Johannes Berg238814f2008-01-28 17:19:37 +01001506 if (unlikely(!is_multicast_ether_addr(hdr.addr1) &&
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001507 !(sta_flags & WLAN_STA_AUTHORIZED) &&
1508 !(ethertype == ETH_P_PAE &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001509 compare_ether_addr(dev->dev_addr,
1510 skb->data + ETH_ALEN) == 0))) {
1511#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1512 DECLARE_MAC_BUF(mac);
1513
1514 if (net_ratelimit())
1515 printk(KERN_DEBUG "%s: dropped frame to %s"
1516 " (unauthorized port)\n", dev->name,
1517 print_mac(mac, hdr.addr1));
1518#endif
1519
1520 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
1521
1522 ret = 0;
1523 goto fail;
1524 }
1525
Johannes Berge2ebc742007-07-27 15:43:22 +02001526 hdr.frame_control = cpu_to_le16(fc);
1527 hdr.duration_id = 0;
1528 hdr.seq_ctrl = 0;
1529
1530 skip_header_bytes = ETH_HLEN;
1531 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1532 encaps_data = bridge_tunnel_header;
1533 encaps_len = sizeof(bridge_tunnel_header);
1534 skip_header_bytes -= 2;
1535 } else if (ethertype >= 0x600) {
1536 encaps_data = rfc1042_header;
1537 encaps_len = sizeof(rfc1042_header);
1538 skip_header_bytes -= 2;
1539 } else {
1540 encaps_data = NULL;
1541 encaps_len = 0;
1542 }
1543
1544 skb_pull(skb, skip_header_bytes);
1545 nh_pos -= skip_header_bytes;
1546 h_pos -= skip_header_bytes;
1547
1548 /* TODO: implement support for fragments so that there is no need to
1549 * reallocate and copy payload; it might be enough to support one
1550 * extra fragment that would be copied in the beginning of the frame
1551 * data.. anyway, it would be nice to include this into skb structure
1552 * somehow
1553 *
1554 * There are few options for this:
1555 * use skb->cb as an extra space for 802.11 header
1556 * allocate new buffer if not enough headroom
1557 * make sure that there is enough headroom in every skb by increasing
1558 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1559 * alloc_skb() (net/core/skbuff.c)
1560 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001561 head_need = hdrlen + encaps_len + meshhdrlen + local->tx_headroom;
Johannes Berge2ebc742007-07-27 15:43:22 +02001562 head_need -= skb_headroom(skb);
1563
1564 /* We are going to modify skb data, so make a copy of it if happens to
1565 * be cloned. This could happen, e.g., with Linux bridge code passing
1566 * us broadcast frames. */
1567
1568 if (head_need > 0 || skb_cloned(skb)) {
1569#if 0
1570 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1571 "of headroom\n", dev->name, head_need);
1572#endif
1573
1574 if (skb_cloned(skb))
1575 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1576 else
1577 I802_DEBUG_INC(local->tx_expand_skb_head);
1578 /* Since we have to reallocate the buffer, make sure that there
1579 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1580 * before payload and 12 after). */
1581 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1582 12, GFP_ATOMIC)) {
1583 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1584 "\n", dev->name);
1585 goto fail;
1586 }
1587 }
1588
1589 if (encaps_data) {
1590 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1591 nh_pos += encaps_len;
1592 h_pos += encaps_len;
1593 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04001594
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001595 if (meshhdrlen > 0) {
1596 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
1597 nh_pos += meshhdrlen;
1598 h_pos += meshhdrlen;
1599 }
1600
Johannes Bergc29b9b92007-09-14 11:10:24 -04001601 if (fc & IEEE80211_STYPE_QOS_DATA) {
1602 __le16 *qos_control;
1603
1604 qos_control = (__le16*) skb_push(skb, 2);
1605 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1606 /*
1607 * Maybe we could actually set some fields here, for now just
1608 * initialise to zero to indicate no special operation.
1609 */
1610 *qos_control = 0;
1611 } else
1612 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1613
Johannes Berge2ebc742007-07-27 15:43:22 +02001614 nh_pos += hdrlen;
1615 h_pos += hdrlen;
1616
1617 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1618 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1619 pkt_data->ifindex = dev->ifindex;
Johannes Berg678f5f712007-12-19 01:31:23 +01001620 if (ethertype == ETH_P_PAE)
1621 pkt_data->flags |= IEEE80211_TXPD_EAPOL_FRAME;
Johannes Berge2ebc742007-07-27 15:43:22 +02001622
Ivo van Doornb0a67172008-05-13 15:03:02 +02001623 /* Interfaces should always request a status report */
1624 pkt_data->flags |= IEEE80211_TXPD_REQ_TX_STATUS;
1625
Johannes Berge2ebc742007-07-27 15:43:22 +02001626 skb->dev = local->mdev;
Stephen Hemminger68aae112007-08-24 11:29:34 -07001627 dev->stats.tx_packets++;
1628 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001629
1630 /* Update skb pointers to various headers since this modified frame
1631 * is going to go through Linux networking code that may potentially
1632 * need things like pointer to IP header. */
1633 skb_set_mac_header(skb, 0);
1634 skb_set_network_header(skb, nh_pos);
1635 skb_set_transport_header(skb, h_pos);
1636
1637 dev->trans_start = jiffies;
1638 dev_queue_xmit(skb);
1639
1640 return 0;
1641
1642 fail:
1643 if (!ret)
1644 dev_kfree_skb(skb);
1645
1646 return ret;
1647}
1648
Johannes Berge2ebc742007-07-27 15:43:22 +02001649/* helper functions for pending packets for when queues are stopped */
1650
1651void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1652{
1653 int i, j;
1654 struct ieee80211_tx_stored_packet *store;
1655
1656 for (i = 0; i < local->hw.queues; i++) {
1657 if (!__ieee80211_queue_pending(local, i))
1658 continue;
1659 store = &local->pending_packet[i];
1660 kfree_skb(store->skb);
1661 for (j = 0; j < store->num_extra_frag; j++)
1662 kfree_skb(store->extra_frag[j]);
1663 kfree(store->extra_frag);
1664 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1665 }
1666}
1667
1668void ieee80211_tx_pending(unsigned long data)
1669{
1670 struct ieee80211_local *local = (struct ieee80211_local *)data;
1671 struct net_device *dev = local->mdev;
1672 struct ieee80211_tx_stored_packet *store;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001673 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02001674 int i, ret, reschedule = 0;
1675
1676 netif_tx_lock_bh(dev);
1677 for (i = 0; i < local->hw.queues; i++) {
1678 if (__ieee80211_queue_stopped(local, i))
1679 continue;
1680 if (!__ieee80211_queue_pending(local, i)) {
1681 reschedule = 1;
1682 continue;
1683 }
1684 store = &local->pending_packet[i];
Johannes Berg5cf121c2008-02-25 16:27:43 +01001685 tx.control = &store->control;
1686 tx.extra_frag = store->extra_frag;
1687 tx.num_extra_frag = store->num_extra_frag;
1688 tx.last_frag_rate = store->last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001689 tx.flags = 0;
1690 if (store->last_frag_rate_ctrl_probe)
Johannes Berg5cf121c2008-02-25 16:27:43 +01001691 tx.flags |= IEEE80211_TX_PROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +02001692 ret = __ieee80211_tx(local, store->skb, &tx);
1693 if (ret) {
1694 if (ret == IEEE80211_TX_FRAG_AGAIN)
1695 store->skb = NULL;
1696 } else {
1697 clear_bit(IEEE80211_LINK_STATE_PENDING,
1698 &local->state[i]);
1699 reschedule = 1;
1700 }
1701 }
1702 netif_tx_unlock_bh(dev);
1703 if (reschedule) {
1704 if (!ieee80211_qdisc_installed(dev)) {
1705 if (!__ieee80211_queue_stopped(local, 0))
1706 netif_wake_queue(dev);
1707 } else
1708 netif_schedule(dev);
1709 }
1710}
1711
1712/* functions for drivers to get certain frames */
1713
1714static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1715 struct ieee80211_if_ap *bss,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001716 struct sk_buff *skb,
1717 struct beacon_data *beacon)
Johannes Berge2ebc742007-07-27 15:43:22 +02001718{
1719 u8 *pos, *tim;
1720 int aid0 = 0;
1721 int i, have_bits = 0, n1, n2;
1722
1723 /* Generate bitmap for TIM only if there are any STAs in power save
1724 * mode. */
Johannes Berge2ebc742007-07-27 15:43:22 +02001725 if (atomic_read(&bss->num_sta_ps) > 0)
1726 /* in the hope that this is faster than
1727 * checking byte-for-byte */
1728 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1729 IEEE80211_MAX_AID+1);
1730
1731 if (bss->dtim_count == 0)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001732 bss->dtim_count = beacon->dtim_period - 1;
Johannes Berge2ebc742007-07-27 15:43:22 +02001733 else
1734 bss->dtim_count--;
1735
1736 tim = pos = (u8 *) skb_put(skb, 6);
1737 *pos++ = WLAN_EID_TIM;
1738 *pos++ = 4;
1739 *pos++ = bss->dtim_count;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001740 *pos++ = beacon->dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02001741
1742 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1743 aid0 = 1;
1744
1745 if (have_bits) {
1746 /* Find largest even number N1 so that bits numbered 1 through
1747 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1748 * (N2 + 1) x 8 through 2007 are 0. */
1749 n1 = 0;
1750 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1751 if (bss->tim[i]) {
1752 n1 = i & 0xfe;
1753 break;
1754 }
1755 }
1756 n2 = n1;
1757 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1758 if (bss->tim[i]) {
1759 n2 = i;
1760 break;
1761 }
1762 }
1763
1764 /* Bitmap control */
1765 *pos++ = n1 | aid0;
1766 /* Part Virt Bitmap */
1767 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1768
1769 tim[1] = n2 - n1 + 4;
1770 skb_put(skb, n2 - n1);
1771 } else {
1772 *pos++ = aid0; /* Bitmap control */
1773 *pos++ = 0; /* Part Virt Bitmap */
1774 }
Johannes Berge2ebc742007-07-27 15:43:22 +02001775}
1776
Johannes Berg32bfd352007-12-19 01:31:26 +01001777struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
1778 struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001779 struct ieee80211_tx_control *control)
1780{
1781 struct ieee80211_local *local = hw_to_local(hw);
1782 struct sk_buff *skb;
1783 struct net_device *bdev;
1784 struct ieee80211_sub_if_data *sdata = NULL;
1785 struct ieee80211_if_ap *ap = NULL;
Mattias Nissler1abbe492007-12-20 13:50:07 +01001786 struct rate_selection rsel;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001787 struct beacon_data *beacon;
Johannes Berg8318d782008-01-24 19:38:38 +01001788 struct ieee80211_supported_band *sband;
Johannes Berg902acc72008-02-23 15:17:19 +01001789 struct ieee80211_mgmt *mgmt;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001790 int *num_beacons;
Johannes Berg902acc72008-02-23 15:17:19 +01001791 bool err = true;
1792 u8 *pos;
Johannes Berg8318d782008-01-24 19:38:38 +01001793
1794 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001795
1796 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001797
Johannes Berg32bfd352007-12-19 01:31:26 +01001798 sdata = vif_to_sdata(vif);
1799 bdev = sdata->dev;
Johannes Berge2ebc742007-07-27 15:43:22 +02001800
Johannes Berg902acc72008-02-23 15:17:19 +01001801 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001802 ap = &sdata->u.ap;
1803 beacon = rcu_dereference(ap->beacon);
Johannes Berg902acc72008-02-23 15:17:19 +01001804 if (ap && beacon) {
1805 /*
1806 * headroom, head length,
1807 * tail length and maximum TIM length
1808 */
1809 skb = dev_alloc_skb(local->tx_headroom +
1810 beacon->head_len +
1811 beacon->tail_len + 256);
1812 if (!skb)
1813 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001814
Johannes Berg902acc72008-02-23 15:17:19 +01001815 skb_reserve(skb, local->tx_headroom);
1816 memcpy(skb_put(skb, beacon->head_len), beacon->head,
1817 beacon->head_len);
1818
1819 ieee80211_include_sequence(sdata,
1820 (struct ieee80211_hdr *)skb->data);
1821
Johannes Bergd0709a62008-02-25 16:27:46 +01001822 /*
1823 * Not very nice, but we want to allow the driver to call
1824 * ieee80211_beacon_get() as a response to the set_tim()
1825 * callback. That, however, is already invoked under the
1826 * sta_lock to guarantee consistent and race-free update
1827 * of the tim bitmap in mac80211 and the driver.
1828 */
1829 if (local->tim_in_locked_section) {
1830 ieee80211_beacon_add_tim(local, ap, skb, beacon);
1831 } else {
1832 unsigned long flags;
1833
1834 spin_lock_irqsave(&local->sta_lock, flags);
1835 ieee80211_beacon_add_tim(local, ap, skb, beacon);
1836 spin_unlock_irqrestore(&local->sta_lock, flags);
1837 }
Johannes Berg902acc72008-02-23 15:17:19 +01001838
1839 if (beacon->tail)
1840 memcpy(skb_put(skb, beacon->tail_len),
1841 beacon->tail, beacon->tail_len);
1842
1843 num_beacons = &ap->num_beacons;
1844
1845 err = false;
1846 }
1847 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001848 /* headroom, head length, tail length and maximum TIM length */
Johannes Berg902acc72008-02-23 15:17:19 +01001849 skb = dev_alloc_skb(local->tx_headroom + 400);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001850 if (!skb)
1851 goto out;
1852
Johannes Berg902acc72008-02-23 15:17:19 +01001853 skb_reserve(skb, local->hw.extra_tx_headroom);
1854 mgmt = (struct ieee80211_mgmt *)
1855 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1856 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1857 mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT,
1858 IEEE80211_STYPE_BEACON);
1859 memset(mgmt->da, 0xff, ETH_ALEN);
1860 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1861 /* BSSID is left zeroed, wildcard value */
1862 mgmt->u.beacon.beacon_int =
1863 cpu_to_le16(local->hw.conf.beacon_int);
1864 mgmt->u.beacon.capab_info = 0x0; /* 0x0 for MPs */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001865
Johannes Berg902acc72008-02-23 15:17:19 +01001866 pos = skb_put(skb, 2);
1867 *pos++ = WLAN_EID_SSID;
1868 *pos++ = 0x0;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001869
Johannes Berg902acc72008-02-23 15:17:19 +01001870 mesh_mgmt_ies_add(skb, sdata->dev);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001871
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001872 num_beacons = &sdata->u.sta.num_beacons;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001873
Johannes Berg902acc72008-02-23 15:17:19 +01001874 err = false;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001875 }
1876
1877 if (err) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001878#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1879 if (net_ratelimit())
Johannes Berg32bfd352007-12-19 01:31:26 +01001880 printk(KERN_DEBUG "no beacon data avail for %s\n",
1881 bdev->name);
Johannes Berge2ebc742007-07-27 15:43:22 +02001882#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001883 skb = NULL;
1884 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02001885 }
1886
Johannes Berge2ebc742007-07-27 15:43:22 +02001887 if (control) {
Johannes Berg8318d782008-01-24 19:38:38 +01001888 rate_control_get_rate(local->mdev, sband, skb, &rsel);
Mattias Nissler1abbe492007-12-20 13:50:07 +01001889 if (!rsel.rate) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001890 if (net_ratelimit()) {
Mattias Nissler1abbe492007-12-20 13:50:07 +01001891 printk(KERN_DEBUG "%s: ieee80211_beacon_get: "
1892 "no rate found\n",
1893 wiphy_name(local->hw.wiphy));
Johannes Berge2ebc742007-07-27 15:43:22 +02001894 }
1895 dev_kfree_skb(skb);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001896 skb = NULL;
1897 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02001898 }
1899
Ivo van Doorn0f7054e2008-01-13 14:16:47 +01001900 control->vif = vif;
Johannes Berg8318d782008-01-24 19:38:38 +01001901 control->tx_rate = rsel.rate;
1902 if (sdata->bss_conf.use_short_preamble &&
1903 rsel.rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
1904 control->flags |= IEEE80211_TXCTL_SHORT_PREAMBLE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001905 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02001906 control->flags |= IEEE80211_TXCTL_NO_ACK;
1907 control->retry_limit = 1;
Johannes Bergd46e1442008-02-20 23:59:33 +01001908 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001909 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001910 (*num_beacons)++;
1911out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001912 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001913 return skb;
1914}
1915EXPORT_SYMBOL(ieee80211_beacon_get);
1916
Johannes Berg32bfd352007-12-19 01:31:26 +01001917void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001918 const void *frame, size_t frame_len,
1919 const struct ieee80211_tx_control *frame_txctl,
1920 struct ieee80211_rts *rts)
1921{
1922 const struct ieee80211_hdr *hdr = frame;
1923 u16 fctl;
1924
1925 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1926 rts->frame_control = cpu_to_le16(fctl);
Johannes Berg32bfd352007-12-19 01:31:26 +01001927 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
1928 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001929 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1930 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1931}
1932EXPORT_SYMBOL(ieee80211_rts_get);
1933
Johannes Berg32bfd352007-12-19 01:31:26 +01001934void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001935 const void *frame, size_t frame_len,
1936 const struct ieee80211_tx_control *frame_txctl,
1937 struct ieee80211_cts *cts)
1938{
1939 const struct ieee80211_hdr *hdr = frame;
1940 u16 fctl;
1941
1942 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1943 cts->frame_control = cpu_to_le16(fctl);
Johannes Berg32bfd352007-12-19 01:31:26 +01001944 cts->duration = ieee80211_ctstoself_duration(hw, vif,
1945 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001946 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1947}
1948EXPORT_SYMBOL(ieee80211_ctstoself_get);
1949
1950struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01001951ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
1952 struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001953 struct ieee80211_tx_control *control)
1954{
1955 struct ieee80211_local *local = hw_to_local(hw);
1956 struct sk_buff *skb;
1957 struct sta_info *sta;
1958 ieee80211_tx_handler *handler;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001959 struct ieee80211_tx_data tx;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001960 ieee80211_tx_result res = TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +02001961 struct net_device *bdev;
1962 struct ieee80211_sub_if_data *sdata;
1963 struct ieee80211_if_ap *bss = NULL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001964 struct beacon_data *beacon;
Johannes Berge2ebc742007-07-27 15:43:22 +02001965
Johannes Berg32bfd352007-12-19 01:31:26 +01001966 sdata = vif_to_sdata(vif);
1967 bdev = sdata->dev;
1968
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001969
1970 if (!bss)
Johannes Berge2ebc742007-07-27 15:43:22 +02001971 return NULL;
1972
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001973 rcu_read_lock();
1974 beacon = rcu_dereference(bss->beacon);
1975
1976 if (sdata->vif.type != IEEE80211_IF_TYPE_AP || !beacon ||
1977 !beacon->head) {
1978 rcu_read_unlock();
1979 return NULL;
1980 }
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001981
Johannes Berge2ebc742007-07-27 15:43:22 +02001982 if (bss->dtim_count != 0)
1983 return NULL; /* send buffered bc/mc only after DTIM beacon */
1984 memset(control, 0, sizeof(*control));
1985 while (1) {
1986 skb = skb_dequeue(&bss->ps_bc_buf);
1987 if (!skb)
1988 return NULL;
1989 local->total_ps_buffered--;
1990
1991 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1992 struct ieee80211_hdr *hdr =
1993 (struct ieee80211_hdr *) skb->data;
1994 /* more buffered multicast/broadcast frames ==> set
1995 * MoreData flag in IEEE 802.11 header to inform PS
1996 * STAs */
1997 hdr->frame_control |=
1998 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1999 }
2000
Johannes Berg58d41852007-09-26 17:53:18 +02002001 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
Johannes Berge2ebc742007-07-27 15:43:22 +02002002 break;
2003 dev_kfree_skb_any(skb);
2004 }
2005 sta = tx.sta;
Johannes Berg5cf121c2008-02-25 16:27:43 +01002006 tx.flags |= IEEE80211_TX_PS_BUFFERED;
2007 tx.channel = local->hw.conf.channel;
Johannes Berge2ebc742007-07-27 15:43:22 +02002008
Johannes Berg58905292008-01-31 19:48:25 +01002009 for (handler = ieee80211_tx_handlers; *handler != NULL; handler++) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002010 res = (*handler)(&tx);
Johannes Berg9ae54c82008-01-31 19:48:20 +01002011 if (res == TX_DROP || res == TX_QUEUED)
Johannes Berge2ebc742007-07-27 15:43:22 +02002012 break;
2013 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002014 skb = tx.skb; /* handlers are allowed to change skb */
2015
Johannes Berg9ae54c82008-01-31 19:48:20 +01002016 if (res == TX_DROP) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002017 I802_DEBUG_INC(local->tx_handlers_drop);
2018 dev_kfree_skb(skb);
2019 skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +01002020 } else if (res == TX_QUEUED) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002021 I802_DEBUG_INC(local->tx_handlers_queued);
2022 skb = NULL;
2023 }
2024
Johannes Bergd0709a62008-02-25 16:27:46 +01002025 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02002026
2027 return skb;
2028}
2029EXPORT_SYMBOL(ieee80211_get_buffered_bc);