blob: 51c0f00d02d18860dd73acb2b4a8d336b1bab7f0 [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"
28#include "ieee80211_led.h"
29#include "wep.h"
30#include "wpa.h"
31#include "wme.h"
32#include "ieee80211_rate.h"
33
34#define IEEE80211_TX_OK 0
35#define IEEE80211_TX_AGAIN 1
36#define IEEE80211_TX_FRAG_AGAIN 2
37
38/* misc utils */
39
40static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
41 struct ieee80211_hdr *hdr)
42{
43 /* Set the sequence number for this frame. */
44 hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
45
46 /* Increase the sequence number. */
47 sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
48}
49
50#ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
51static void ieee80211_dump_frame(const char *ifname, const char *title,
52 const struct sk_buff *skb)
53{
54 const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
55 u16 fc;
56 int hdrlen;
Joe Perches0795af52007-10-03 17:59:30 -070057 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +020058
59 printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
60 if (skb->len < 4) {
61 printk("\n");
62 return;
63 }
64
65 fc = le16_to_cpu(hdr->frame_control);
66 hdrlen = ieee80211_get_hdrlen(fc);
67 if (hdrlen > skb->len)
68 hdrlen = skb->len;
69 if (hdrlen >= 4)
70 printk(" FC=0x%04x DUR=0x%04x",
71 fc, le16_to_cpu(hdr->duration_id));
72 if (hdrlen >= 10)
Joe Perches0795af52007-10-03 17:59:30 -070073 printk(" A1=%s", print_mac(mac, hdr->addr1));
Johannes Berge2ebc742007-07-27 15:43:22 +020074 if (hdrlen >= 16)
Joe Perches0795af52007-10-03 17:59:30 -070075 printk(" A2=%s", print_mac(mac, hdr->addr2));
Johannes Berge2ebc742007-07-27 15:43:22 +020076 if (hdrlen >= 24)
Joe Perches0795af52007-10-03 17:59:30 -070077 printk(" A3=%s", print_mac(mac, hdr->addr3));
Johannes Berge2ebc742007-07-27 15:43:22 +020078 if (hdrlen >= 30)
Joe Perches0795af52007-10-03 17:59:30 -070079 printk(" A4=%s", print_mac(mac, hdr->addr4));
Johannes Berge2ebc742007-07-27 15:43:22 +020080 printk("\n");
81}
82#else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
83static inline void ieee80211_dump_frame(const char *ifname, const char *title,
84 struct sk_buff *skb)
85{
86}
87#endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
88
89static u16 ieee80211_duration(struct ieee80211_txrx_data *tx, int group_addr,
90 int next_frag_len)
91{
92 int rate, mrate, erp, dur, i;
93 struct ieee80211_rate *txrate = tx->u.tx.rate;
94 struct ieee80211_local *local = tx->local;
95 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
96
97 erp = txrate->flags & IEEE80211_RATE_ERP;
98
99 /*
100 * data and mgmt (except PS Poll):
101 * - during CFP: 32768
102 * - during contention period:
103 * if addr1 is group address: 0
104 * if more fragments = 0 and addr1 is individual address: time to
105 * transmit one ACK plus SIFS
106 * if more fragments = 1 and addr1 is individual address: time to
107 * transmit next fragment plus 2 x ACK plus 3 x SIFS
108 *
109 * IEEE 802.11, 9.6:
110 * - control response frame (CTS or ACK) shall be transmitted using the
111 * same rate as the immediately previous frame in the frame exchange
112 * sequence, if this rate belongs to the PHY mandatory rates, or else
113 * at the highest possible rate belonging to the PHY rates in the
114 * BSSBasicRateSet
115 */
116
117 if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) {
118 /* TODO: These control frames are not currently sent by
119 * 80211.o, but should they be implemented, this function
120 * needs to be updated to support duration field calculation.
121 *
122 * RTS: time needed to transmit pending data/mgmt frame plus
123 * one CTS frame plus one ACK frame plus 3 x SIFS
124 * CTS: duration of immediately previous RTS minus time
125 * required to transmit CTS and its SIFS
126 * ACK: 0 if immediately previous directed data/mgmt had
127 * more=0, with more=1 duration in ACK frame is duration
128 * from previous frame minus time needed to transmit ACK
129 * and its SIFS
130 * PS Poll: BIT(15) | BIT(14) | aid
131 */
132 return 0;
133 }
134
135 /* data/mgmt */
136 if (0 /* FIX: data/mgmt during CFP */)
137 return 32768;
138
139 if (group_addr) /* Group address as the destination - no ACK */
140 return 0;
141
142 /* Individual destination address:
143 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
144 * CTS and ACK frames shall be transmitted using the highest rate in
145 * basic rate set that is less than or equal to the rate of the
146 * immediately previous frame and that is using the same modulation
147 * (CCK or OFDM). If no basic rate set matches with these requirements,
148 * the highest mandatory rate of the PHY that is less than or equal to
149 * the rate of the previous frame is used.
150 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
151 */
152 rate = -1;
153 mrate = 10; /* use 1 Mbps if everything fails */
154 for (i = 0; i < mode->num_rates; i++) {
155 struct ieee80211_rate *r = &mode->rates[i];
156 if (r->rate > txrate->rate)
157 break;
158
159 if (IEEE80211_RATE_MODULATION(txrate->flags) !=
160 IEEE80211_RATE_MODULATION(r->flags))
161 continue;
162
163 if (r->flags & IEEE80211_RATE_BASIC)
164 rate = r->rate;
165 else if (r->flags & IEEE80211_RATE_MANDATORY)
166 mrate = r->rate;
167 }
168 if (rate == -1) {
169 /* No matching basic rate found; use highest suitable mandatory
170 * PHY rate */
171 rate = mrate;
172 }
173
174 /* Time needed to transmit ACK
175 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
176 * to closest integer */
177
178 dur = ieee80211_frame_duration(local, 10, rate, erp,
Jiri Slaby13262ff2007-08-28 17:01:54 -0400179 tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE);
Johannes Berge2ebc742007-07-27 15:43:22 +0200180
181 if (next_frag_len) {
182 /* Frame is fragmented: duration increases with time needed to
183 * transmit next fragment plus ACK and 2 x SIFS. */
184 dur *= 2; /* ACK + SIFS */
185 /* next fragment */
186 dur += ieee80211_frame_duration(local, next_frag_len,
Jiri Slaby13262ff2007-08-28 17:01:54 -0400187 txrate->rate, erp,
188 tx->sdata->flags &
189 IEEE80211_SDATA_SHORT_PREAMBLE);
Johannes Berge2ebc742007-07-27 15:43:22 +0200190 }
191
192 return dur;
193}
194
195static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
196 int queue)
197{
198 return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
199}
200
201static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
202 int queue)
203{
204 return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
205}
206
207static int inline is_ieee80211_device(struct net_device *dev,
208 struct net_device *master)
209{
210 return (wdev_priv(dev->ieee80211_ptr) ==
211 wdev_priv(master->ieee80211_ptr));
212}
213
214/* tx handlers */
215
216static ieee80211_txrx_result
217ieee80211_tx_h_check_assoc(struct ieee80211_txrx_data *tx)
218{
219#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
220 struct sk_buff *skb = tx->skb;
221 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
222#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
223 u32 sta_flags;
224
Johannes Berg58d41852007-09-26 17:53:18 +0200225 if (unlikely(tx->flags & IEEE80211_TXRXD_TX_INJECTED))
226 return TXRX_CONTINUE;
227
Zhu Yiece8edd2007-11-22 10:53:21 +0800228 if (unlikely(tx->local->sta_sw_scanning) &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200229 ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
230 (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
231 return TXRX_DROP;
232
Jiri Slabybadffb72007-08-28 17:01:54 -0400233 if (tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED)
Johannes Berge2ebc742007-07-27 15:43:22 +0200234 return TXRX_CONTINUE;
235
236 sta_flags = tx->sta ? tx->sta->flags : 0;
237
Jiri Slabybadffb72007-08-28 17:01:54 -0400238 if (likely(tx->flags & IEEE80211_TXRXD_TXUNICAST)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200239 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100240 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200241 (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
242#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700243 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200244 printk(KERN_DEBUG "%s: dropped data frame to not "
Joe Perches0795af52007-10-03 17:59:30 -0700245 "associated station %s\n",
246 tx->dev->name, print_mac(mac, hdr->addr1));
Johannes Berge2ebc742007-07-27 15:43:22 +0200247#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
248 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
249 return TXRX_DROP;
250 }
251 } else {
252 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
253 tx->local->num_sta == 0 &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100254 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200255 /*
256 * No associated STAs - no need to send multicast
257 * frames.
258 */
259 return TXRX_DROP;
260 }
261 return TXRX_CONTINUE;
262 }
263
Johannes Berge2ebc742007-07-27 15:43:22 +0200264 return TXRX_CONTINUE;
265}
266
267static ieee80211_txrx_result
268ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx)
269{
270 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
271
272 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
273 ieee80211_include_sequence(tx->sdata, hdr);
274
275 return TXRX_CONTINUE;
276}
277
278/* This function is called whenever the AP is about to exceed the maximum limit
279 * of buffered frames for power saving STAs. This situation should not really
280 * happen often during normal operation, so dropping the oldest buffered packet
281 * from each queue should be OK to make some room for new frames. */
282static void purge_old_ps_buffers(struct ieee80211_local *local)
283{
284 int total = 0, purged = 0;
285 struct sk_buff *skb;
286 struct ieee80211_sub_if_data *sdata;
287 struct sta_info *sta;
288
Johannes Berg79010422007-09-18 17:29:21 -0400289 /*
290 * virtual interfaces are protected by RCU
291 */
292 rcu_read_lock();
293
294 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200295 struct ieee80211_if_ap *ap;
296 if (sdata->dev == local->mdev ||
Johannes Berg51fb61e2007-12-19 01:31:27 +0100297 sdata->vif.type != IEEE80211_IF_TYPE_AP)
Johannes Berge2ebc742007-07-27 15:43:22 +0200298 continue;
299 ap = &sdata->u.ap;
300 skb = skb_dequeue(&ap->ps_bc_buf);
301 if (skb) {
302 purged++;
303 dev_kfree_skb(skb);
304 }
305 total += skb_queue_len(&ap->ps_bc_buf);
306 }
Johannes Berg79010422007-09-18 17:29:21 -0400307 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +0200308
Michael Wube8755e2007-07-27 15:43:23 +0200309 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +0200310 list_for_each_entry(sta, &local->sta_list, list) {
311 skb = skb_dequeue(&sta->ps_tx_buf);
312 if (skb) {
313 purged++;
314 dev_kfree_skb(skb);
315 }
316 total += skb_queue_len(&sta->ps_tx_buf);
317 }
Michael Wube8755e2007-07-27 15:43:23 +0200318 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +0200319
320 local->total_ps_buffered = total;
321 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400322 wiphy_name(local->hw.wiphy), purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200323}
324
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100325static ieee80211_txrx_result
Johannes Berge2ebc742007-07-27 15:43:22 +0200326ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx)
327{
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100328 /*
329 * broadcast/multicast frame
330 *
331 * If any of the associated stations is in power save mode,
332 * the frame is buffered to be sent after DTIM beacon frame.
333 * This is done either by the hardware or us.
334 */
335
336 /* not AP/IBSS or ordered frame */
337 if (!tx->sdata->bss || (tx->fc & IEEE80211_FCTL_ORDER))
338 return TXRX_CONTINUE;
339
340 /* no stations in PS mode */
341 if (!atomic_read(&tx->sdata->bss->num_sta_ps))
342 return TXRX_CONTINUE;
343
344 /* buffered in mac80211 */
345 if (tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200346 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
347 purge_old_ps_buffers(tx->local);
348 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
349 AP_MAX_BC_BUFFER) {
350 if (net_ratelimit()) {
351 printk(KERN_DEBUG "%s: BC TX buffer full - "
352 "dropping the oldest frame\n",
353 tx->dev->name);
354 }
355 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
356 } else
357 tx->local->total_ps_buffered++;
358 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
359 return TXRX_QUEUED;
360 }
361
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100362 /* buffered in hardware */
363 tx->u.tx.control->flags |= IEEE80211_TXCTL_SEND_AFTER_DTIM;
364
Johannes Berge2ebc742007-07-27 15:43:22 +0200365 return TXRX_CONTINUE;
366}
367
Johannes Berg7d54d0d2007-12-19 01:31:25 +0100368static ieee80211_txrx_result
Johannes Berge2ebc742007-07-27 15:43:22 +0200369ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx)
370{
371 struct sta_info *sta = tx->sta;
Joe Perches0795af52007-10-03 17:59:30 -0700372 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200373
374 if (unlikely(!sta ||
375 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
376 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
377 return TXRX_CONTINUE;
378
379 if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) {
380 struct ieee80211_tx_packet_data *pkt_data;
381#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700382 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
Johannes Berge2ebc742007-07-27 15:43:22 +0200383 "before %d)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700384 print_mac(mac, sta->addr), sta->aid,
Johannes Berge2ebc742007-07-27 15:43:22 +0200385 skb_queue_len(&sta->ps_tx_buf));
386#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
387 sta->flags |= WLAN_STA_TIM;
388 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
389 purge_old_ps_buffers(tx->local);
390 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
391 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
392 if (net_ratelimit()) {
Joe Perches0795af52007-10-03 17:59:30 -0700393 printk(KERN_DEBUG "%s: STA %s TX "
Johannes Berge2ebc742007-07-27 15:43:22 +0200394 "buffer full - dropping oldest frame\n",
Joe Perches0795af52007-10-03 17:59:30 -0700395 tx->dev->name, print_mac(mac, sta->addr));
Johannes Berge2ebc742007-07-27 15:43:22 +0200396 }
397 dev_kfree_skb(old);
398 } else
399 tx->local->total_ps_buffered++;
400 /* Queue frame to be sent after STA sends an PS Poll frame */
401 if (skb_queue_empty(&sta->ps_tx_buf)) {
402 if (tx->local->ops->set_tim)
403 tx->local->ops->set_tim(local_to_hw(tx->local),
404 sta->aid, 1);
405 if (tx->sdata->bss)
406 bss_tim_set(tx->local, tx->sdata->bss, sta->aid);
407 }
408 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
409 pkt_data->jiffies = jiffies;
410 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
411 return TXRX_QUEUED;
412 }
413#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
414 else if (unlikely(sta->flags & WLAN_STA_PS)) {
Joe Perches0795af52007-10-03 17:59:30 -0700415 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
Johannes Berge2ebc742007-07-27 15:43:22 +0200416 "set -> send frame\n", tx->dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700417 print_mac(mac, sta->addr));
Johannes Berge2ebc742007-07-27 15:43:22 +0200418 }
419#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
420 sta->pspoll = 0;
421
422 return TXRX_CONTINUE;
423}
424
Johannes Berge2ebc742007-07-27 15:43:22 +0200425static ieee80211_txrx_result
426ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
427{
Jiri Slabybadffb72007-08-28 17:01:54 -0400428 if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200429 return TXRX_CONTINUE;
430
Jiri Slabybadffb72007-08-28 17:01:54 -0400431 if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200432 return ieee80211_tx_h_unicast_ps_buf(tx);
433 else
434 return ieee80211_tx_h_multicast_ps_buf(tx);
435}
436
Johannes Berge2ebc742007-07-27 15:43:22 +0200437static ieee80211_txrx_result
438ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
439{
Johannes Bergd4e46a32007-09-14 11:10:24 -0400440 struct ieee80211_key *key;
Johannes Berg176e4f82007-12-18 15:27:47 +0100441 u16 fc = tx->fc;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400442
Johannes Berge2ebc742007-07-27 15:43:22 +0200443 if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
444 tx->key = NULL;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400445 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
446 tx->key = key;
447 else if ((key = rcu_dereference(tx->sdata->default_key)))
448 tx->key = key;
Johannes Berge2ebc742007-07-27 15:43:22 +0200449 else if (tx->sdata->drop_unencrypted &&
Johannes Berg678f5f712007-12-19 01:31:23 +0100450 !(tx->u.tx.control->flags & IEEE80211_TXCTL_EAPOL_FRAME) &&
451 !(tx->flags & IEEE80211_TXRXD_TX_INJECTED)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200452 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
453 return TXRX_DROP;
Johannes Berg176e4f82007-12-18 15:27:47 +0100454 } else
Johannes Berge2ebc742007-07-27 15:43:22 +0200455 tx->key = NULL;
456
457 if (tx->key) {
Johannes Berg176e4f82007-12-18 15:27:47 +0100458 u16 ftype, stype;
459
Johannes Berge2ebc742007-07-27 15:43:22 +0200460 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400461 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100462
463 switch (tx->key->conf.alg) {
464 case ALG_WEP:
465 ftype = fc & IEEE80211_FCTL_FTYPE;
466 stype = fc & IEEE80211_FCTL_STYPE;
467
468 if (ftype == IEEE80211_FTYPE_MGMT &&
469 stype == IEEE80211_STYPE_AUTH)
470 break;
471 case ALG_TKIP:
472 case ALG_CCMP:
473 if (!WLAN_FC_DATA_PRESENT(fc))
474 tx->key = NULL;
475 break;
476 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200477 }
478
Johannes Berg176e4f82007-12-18 15:27:47 +0100479 if (!tx->key || !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
480 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
481
Johannes Berge2ebc742007-07-27 15:43:22 +0200482 return TXRX_CONTINUE;
483}
484
485static ieee80211_txrx_result
486ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
487{
488 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
489 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
490 struct sk_buff **frags, *first, *frag;
491 int i;
492 u16 seq;
493 u8 *pos;
494 int frag_threshold = tx->local->fragmentation_threshold;
495
Jiri Slabybadffb72007-08-28 17:01:54 -0400496 if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200497 return TXRX_CONTINUE;
498
499 first = tx->skb;
500
501 hdrlen = ieee80211_get_hdrlen(tx->fc);
502 payload_len = first->len - hdrlen;
503 per_fragm = frag_threshold - hdrlen - FCS_LEN;
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700504 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
Johannes Berge2ebc742007-07-27 15:43:22 +0200505
506 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
507 if (!frags)
508 goto fail;
509
510 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
511 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
512 pos = first->data + hdrlen + per_fragm;
513 left = payload_len - per_fragm;
514 for (i = 0; i < num_fragm - 1; i++) {
515 struct ieee80211_hdr *fhdr;
516 size_t copylen;
517
518 if (left <= 0)
519 goto fail;
520
521 /* reserve enough extra head and tail room for possible
522 * encryption */
523 frag = frags[i] =
524 dev_alloc_skb(tx->local->tx_headroom +
525 frag_threshold +
526 IEEE80211_ENCRYPT_HEADROOM +
527 IEEE80211_ENCRYPT_TAILROOM);
528 if (!frag)
529 goto fail;
530 /* Make sure that all fragments use the same priority so
531 * that they end up using the same TX queue */
532 frag->priority = first->priority;
533 skb_reserve(frag, tx->local->tx_headroom +
534 IEEE80211_ENCRYPT_HEADROOM);
535 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
536 memcpy(fhdr, first->data, hdrlen);
537 if (i == num_fragm - 2)
538 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
539 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
540 copylen = left > per_fragm ? per_fragm : left;
541 memcpy(skb_put(frag, copylen), pos, copylen);
542
543 pos += copylen;
544 left -= copylen;
545 }
546 skb_trim(first, hdrlen + per_fragm);
547
548 tx->u.tx.num_extra_frag = num_fragm - 1;
549 tx->u.tx.extra_frag = frags;
550
551 return TXRX_CONTINUE;
552
553 fail:
554 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
555 if (frags) {
556 for (i = 0; i < num_fragm - 1; i++)
557 if (frags[i])
558 dev_kfree_skb(frags[i]);
559 kfree(frags);
560 }
561 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
562 return TXRX_DROP;
563}
564
Johannes Berge2ebc742007-07-27 15:43:22 +0200565static ieee80211_txrx_result
Johannes Berg6a22a592007-09-26 15:19:41 +0200566ieee80211_tx_h_encrypt(struct ieee80211_txrx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200567{
Johannes Berg6a22a592007-09-26 15:19:41 +0200568 if (!tx->key)
Johannes Berge2ebc742007-07-27 15:43:22 +0200569 return TXRX_CONTINUE;
570
Johannes Berg6a22a592007-09-26 15:19:41 +0200571 switch (tx->key->conf.alg) {
572 case ALG_WEP:
573 return ieee80211_crypto_wep_encrypt(tx);
574 case ALG_TKIP:
575 return ieee80211_crypto_tkip_encrypt(tx);
576 case ALG_CCMP:
577 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berge2ebc742007-07-27 15:43:22 +0200578 }
579
Johannes Berg6a22a592007-09-26 15:19:41 +0200580 /* not reached */
581 WARN_ON(1);
582 return TXRX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200583}
584
585static ieee80211_txrx_result
586ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
587{
Mattias Nissler1abbe492007-12-20 13:50:07 +0100588 struct rate_selection rsel;
Johannes Berge2ebc742007-07-27 15:43:22 +0200589
Johannes Berg58d41852007-09-26 17:53:18 +0200590 if (likely(!tx->u.tx.rate)) {
Mattias Nissler1abbe492007-12-20 13:50:07 +0100591 rate_control_get_rate(tx->dev, tx->u.tx.mode, tx->skb, &rsel);
592 tx->u.tx.rate = rsel.rate;
593 if (unlikely(rsel.probe != NULL)) {
Johannes Berg58d41852007-09-26 17:53:18 +0200594 tx->u.tx.control->flags |=
595 IEEE80211_TXCTL_RATE_CTRL_PROBE;
596 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
597 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100598 tx->u.tx.rate = rsel.probe;
Johannes Berg58d41852007-09-26 17:53:18 +0200599 } else
600 tx->u.tx.control->alt_retry_rate = -1;
601
602 if (!tx->u.tx.rate)
603 return TXRX_DROP;
604 } else
Johannes Berge2ebc742007-07-27 15:43:22 +0200605 tx->u.tx.control->alt_retry_rate = -1;
Johannes Berg58d41852007-09-26 17:53:18 +0200606
Johannes Berge2ebc742007-07-27 15:43:22 +0200607 if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400608 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Mattias Nissler1abbe492007-12-20 13:50:07 +0100609 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && rsel.nonerp) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200610 tx->u.tx.last_frag_rate = tx->u.tx.rate;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100611 if (rsel.probe)
Jiri Slabybadffb72007-08-28 17:01:54 -0400612 tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
613 else
614 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100615 tx->u.tx.rate = rsel.nonerp;
616 tx->u.tx.control->rate = rsel.nonerp;
Johannes Berge2ebc742007-07-27 15:43:22 +0200617 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
618 } else {
619 tx->u.tx.last_frag_rate = tx->u.tx.rate;
620 tx->u.tx.control->rate = tx->u.tx.rate;
621 }
622 tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
Johannes Berge2ebc742007-07-27 15:43:22 +0200623
624 return TXRX_CONTINUE;
625}
626
627static ieee80211_txrx_result
628ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
629{
630 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200631 u16 fc = le16_to_cpu(hdr->frame_control);
Johannes Berge2ebc742007-07-27 15:43:22 +0200632 u16 dur;
633 struct ieee80211_tx_control *control = tx->u.tx.control;
634 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
635
Johannes Berg58d41852007-09-26 17:53:18 +0200636 if (!control->retry_limit) {
637 if (!is_multicast_ether_addr(hdr->addr1)) {
638 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
639 && tx->local->rts_threshold <
640 IEEE80211_MAX_RTS_THRESHOLD) {
641 control->flags |=
642 IEEE80211_TXCTL_USE_RTS_CTS;
643 control->flags |=
644 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
645 control->retry_limit =
646 tx->local->long_retry_limit;
647 } else {
648 control->retry_limit =
649 tx->local->short_retry_limit;
650 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200651 } else {
Johannes Berg58d41852007-09-26 17:53:18 +0200652 control->retry_limit = 1;
Johannes Berge2ebc742007-07-27 15:43:22 +0200653 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200654 }
655
Jiri Slabybadffb72007-08-28 17:01:54 -0400656 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200657 /* Do not use multiple retry rates when sending fragmented
658 * frames.
659 * TODO: The last fragment could still use multiple retry
660 * rates. */
661 control->alt_retry_rate = -1;
662 }
663
664 /* Use CTS protection for unicast frames sent using extended rates if
665 * there are associated non-ERP stations and RTS/CTS is not configured
666 * for the frame. */
667 if (mode->mode == MODE_IEEE80211G &&
668 (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400669 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400670 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200671 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
672 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
673
Daniel Drake7e9ed182007-07-27 15:43:24 +0200674 /* Transmit data frames using short preambles if the driver supports
675 * short preambles at the selected rate and short preambles are
676 * available on the network at the current point in time. */
677 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
678 (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400679 (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
Daniel Drake7e9ed182007-07-27 15:43:24 +0200680 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
681 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
682 }
683
Johannes Berge2ebc742007-07-27 15:43:22 +0200684 /* Setup duration field for the first fragment of the frame. Duration
685 * for remaining fragments will be updated when they are being sent
686 * to low-level driver in ieee80211_tx(). */
687 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
Jiri Slabybadffb72007-08-28 17:01:54 -0400688 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
689 tx->u.tx.extra_frag[0]->len : 0);
Johannes Berge2ebc742007-07-27 15:43:22 +0200690 hdr->duration_id = cpu_to_le16(dur);
691
692 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
693 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
694 struct ieee80211_rate *rate;
695
696 /* Do not use multiple retry rates when using RTS/CTS */
697 control->alt_retry_rate = -1;
698
699 /* Use min(data rate, max base rate) as CTS/RTS rate */
700 rate = tx->u.tx.rate;
701 while (rate > mode->rates &&
702 !(rate->flags & IEEE80211_RATE_BASIC))
703 rate--;
704
705 control->rts_cts_rate = rate->val;
706 control->rts_rate = rate;
707 }
708
709 if (tx->sta) {
710 tx->sta->tx_packets++;
711 tx->sta->tx_fragments++;
712 tx->sta->tx_bytes += tx->skb->len;
713 if (tx->u.tx.extra_frag) {
714 int i;
715 tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
716 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
717 tx->sta->tx_bytes +=
718 tx->u.tx.extra_frag[i]->len;
719 }
720 }
721 }
722
723 return TXRX_CONTINUE;
724}
725
726static ieee80211_txrx_result
727ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
728{
729 struct ieee80211_local *local = tx->local;
730 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
731 struct sk_buff *skb = tx->skb;
732 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
733 u32 load = 0, hdrtime;
734
735 /* TODO: this could be part of tx_status handling, so that the number
736 * of retries would be known; TX rate should in that case be stored
737 * somewhere with the packet */
738
739 /* Estimate total channel use caused by this frame */
740
741 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
742 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
743
744 if (mode->mode == MODE_IEEE80211A ||
Johannes Berge2ebc742007-07-27 15:43:22 +0200745 (mode->mode == MODE_IEEE80211G &&
746 tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
747 hdrtime = CHAN_UTIL_HDR_SHORT;
748 else
749 hdrtime = CHAN_UTIL_HDR_LONG;
750
751 load = hdrtime;
752 if (!is_multicast_ether_addr(hdr->addr1))
753 load += hdrtime;
754
755 if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
756 load += 2 * hdrtime;
757 else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
758 load += hdrtime;
759
760 load += skb->len * tx->u.tx.rate->rate_inv;
761
762 if (tx->u.tx.extra_frag) {
763 int i;
764 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
765 load += 2 * hdrtime;
766 load += tx->u.tx.extra_frag[i]->len *
767 tx->u.tx.rate->rate;
768 }
769 }
770
771 /* Divide channel_use by 8 to avoid wrapping around the counter */
772 load >>= CHAN_UTIL_SHIFT;
773 local->channel_use_raw += load;
774 if (tx->sta)
775 tx->sta->channel_use_raw += load;
776 tx->sdata->channel_use_raw += load;
777
778 return TXRX_CONTINUE;
779}
780
781/* TODO: implement register/unregister functions for adding TX/RX handlers
782 * into ordered list */
783
784ieee80211_tx_handler ieee80211_tx_handlers[] =
785{
786 ieee80211_tx_h_check_assoc,
787 ieee80211_tx_h_sequence,
788 ieee80211_tx_h_ps_buf,
789 ieee80211_tx_h_select_key,
790 ieee80211_tx_h_michael_mic_add,
791 ieee80211_tx_h_fragment,
Johannes Berg6a22a592007-09-26 15:19:41 +0200792 ieee80211_tx_h_encrypt,
Johannes Berge2ebc742007-07-27 15:43:22 +0200793 ieee80211_tx_h_rate_ctrl,
794 ieee80211_tx_h_misc,
795 ieee80211_tx_h_load_stats,
796 NULL
797};
798
799/* actual transmit path */
800
801/*
802 * deal with packet injection down monitor interface
803 * with Radiotap Header -- only called for monitor mode interface
804 */
805static ieee80211_txrx_result
Johannes Berg58d41852007-09-26 17:53:18 +0200806__ieee80211_parse_tx_radiotap(struct ieee80211_txrx_data *tx,
807 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +0200808{
809 /*
810 * this is the moment to interpret and discard the radiotap header that
811 * must be at the start of the packet injected in Monitor mode
812 *
813 * Need to take some care with endian-ness since radiotap
814 * args are little-endian
815 */
816
817 struct ieee80211_radiotap_iterator iterator;
818 struct ieee80211_radiotap_header *rthdr =
819 (struct ieee80211_radiotap_header *) skb->data;
820 struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
821 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
Johannes Berg58d41852007-09-26 17:53:18 +0200822 struct ieee80211_tx_control *control = tx->u.tx.control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200823
Johannes Berg58d41852007-09-26 17:53:18 +0200824 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
825 tx->flags |= IEEE80211_TXRXD_TX_INJECTED;
826 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200827
828 /*
829 * for every radiotap entry that is present
830 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
831 * entries present, or -EINVAL on error)
832 */
833
834 while (!ret) {
835 int i, target_rate;
836
837 ret = ieee80211_radiotap_iterator_next(&iterator);
838
839 if (ret)
840 continue;
841
842 /* see if this argument is something we can use */
843 switch (iterator.this_arg_index) {
844 /*
845 * You must take care when dereferencing iterator.this_arg
846 * for multibyte types... the pointer is not aligned. Use
847 * get_unaligned((type *)iterator.this_arg) to dereference
848 * iterator.this_arg for type "type" safely on all arches.
849 */
850 case IEEE80211_RADIOTAP_RATE:
851 /*
852 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
853 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
854 */
855 target_rate = (*iterator.this_arg) * 5;
856 for (i = 0; i < mode->num_rates; i++) {
857 struct ieee80211_rate *r = &mode->rates[i];
858
Johannes Berg58d41852007-09-26 17:53:18 +0200859 if (r->rate == target_rate) {
860 tx->u.tx.rate = r;
861 break;
862 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200863 }
864 break;
865
866 case IEEE80211_RADIOTAP_ANTENNA:
867 /*
868 * radiotap uses 0 for 1st ant, mac80211 is 1 for
869 * 1st ant
870 */
871 control->antenna_sel_tx = (*iterator.this_arg) + 1;
872 break;
873
874 case IEEE80211_RADIOTAP_DBM_TX_POWER:
875 control->power_level = *iterator.this_arg;
876 break;
877
878 case IEEE80211_RADIOTAP_FLAGS:
879 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
880 /*
881 * this indicates that the skb we have been
882 * handed has the 32-bit FCS CRC at the end...
883 * we should react to that by snipping it off
884 * because it will be recomputed and added
885 * on transmission
886 */
887 if (skb->len < (iterator.max_length + FCS_LEN))
888 return TXRX_DROP;
889
890 skb_trim(skb, skb->len - FCS_LEN);
891 }
Johannes Berg58d41852007-09-26 17:53:18 +0200892 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
893 control->flags &=
894 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
895 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
896 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200897 break;
898
Johannes Berg58d41852007-09-26 17:53:18 +0200899 /*
900 * Please update the file
901 * Documentation/networking/mac80211-injection.txt
902 * when parsing new fields here.
903 */
904
Johannes Berge2ebc742007-07-27 15:43:22 +0200905 default:
906 break;
907 }
908 }
909
910 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
911 return TXRX_DROP;
912
913 /*
914 * remove the radiotap header
915 * iterator->max_length was sanity-checked against
916 * skb->len by iterator init
917 */
918 skb_pull(skb, iterator.max_length);
919
920 return TXRX_CONTINUE;
921}
922
Johannes Berg58d41852007-09-26 17:53:18 +0200923/*
924 * initialises @tx
925 */
926static ieee80211_txrx_result
Johannes Berge2ebc742007-07-27 15:43:22 +0200927__ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
928 struct sk_buff *skb,
929 struct net_device *dev,
930 struct ieee80211_tx_control *control)
931{
932 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg58d41852007-09-26 17:53:18 +0200933 struct ieee80211_hdr *hdr;
Johannes Berge2ebc742007-07-27 15:43:22 +0200934 struct ieee80211_sub_if_data *sdata;
Johannes Berge2ebc742007-07-27 15:43:22 +0200935
936 int hdrlen;
937
938 memset(tx, 0, sizeof(*tx));
939 tx->skb = skb;
940 tx->dev = dev; /* use original interface */
941 tx->local = local;
942 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg58d41852007-09-26 17:53:18 +0200943 tx->u.tx.control = control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200944 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200945 * Set this flag (used below to indicate "automatic fragmentation"),
946 * it will be cleared/left by radiotap as desired.
Johannes Berge2ebc742007-07-27 15:43:22 +0200947 */
Johannes Berg58d41852007-09-26 17:53:18 +0200948 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200949
950 /* process and remove the injection radiotap header */
951 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +0100952 if (unlikely(sdata->vif.type == IEEE80211_IF_TYPE_MNTR)) {
Johannes Berg58d41852007-09-26 17:53:18 +0200953 if (__ieee80211_parse_tx_radiotap(tx, skb) == TXRX_DROP)
Johannes Berge2ebc742007-07-27 15:43:22 +0200954 return TXRX_DROP;
Johannes Berg58d41852007-09-26 17:53:18 +0200955
Johannes Berge2ebc742007-07-27 15:43:22 +0200956 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200957 * __ieee80211_parse_tx_radiotap has now removed
958 * the radiotap header that was present and pre-filled
959 * 'tx' with tx control information.
Johannes Berge2ebc742007-07-27 15:43:22 +0200960 */
Johannes Berge2ebc742007-07-27 15:43:22 +0200961 }
962
Johannes Berg58d41852007-09-26 17:53:18 +0200963 hdr = (struct ieee80211_hdr *) skb->data;
964
warmcat24338792007-09-14 11:10:25 -0400965 tx->sta = sta_info_get(local, hdr->addr1);
966 tx->fc = le16_to_cpu(hdr->frame_control);
Johannes Berg58d41852007-09-26 17:53:18 +0200967
Jiri Slabybadffb72007-08-28 17:01:54 -0400968 if (is_multicast_ether_addr(hdr->addr1)) {
969 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200970 control->flags |= IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400971 } else {
972 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200973 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400974 }
Johannes Berg58d41852007-09-26 17:53:18 +0200975
976 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
977 if ((tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
978 skb->len + FCS_LEN > local->fragmentation_threshold &&
979 !local->ops->set_frag_threshold)
980 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
981 else
982 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
983 }
984
Johannes Berge2ebc742007-07-27 15:43:22 +0200985 if (!tx->sta)
986 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
987 else if (tx->sta->clear_dst_mask) {
988 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
989 tx->sta->clear_dst_mask = 0;
990 }
Johannes Berg58d41852007-09-26 17:53:18 +0200991
Johannes Berge2ebc742007-07-27 15:43:22 +0200992 hdrlen = ieee80211_get_hdrlen(tx->fc);
993 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
994 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
995 tx->ethertype = (pos[0] << 8) | pos[1];
996 }
997 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
998
Johannes Berg6d65f5d2007-12-23 10:11:55 +0100999 return TXRX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001000}
1001
Johannes Berg32bfd352007-12-19 01:31:26 +01001002/*
Johannes Berg58d41852007-09-26 17:53:18 +02001003 * NB: @tx is uninitialised when passed in here
1004 */
1005static int ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
1006 struct sk_buff *skb,
1007 struct net_device *mdev,
1008 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001009{
1010 struct ieee80211_tx_packet_data *pkt_data;
1011 struct net_device *dev;
1012
1013 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001014 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001015 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1016 dev_put(dev);
1017 dev = NULL;
1018 }
1019 if (unlikely(!dev))
1020 return -ENODEV;
Johannes Berg58d41852007-09-26 17:53:18 +02001021 /* initialises tx with control */
Johannes Berge2ebc742007-07-27 15:43:22 +02001022 __ieee80211_tx_prepare(tx, skb, dev, control);
Johannes Berg32bfd352007-12-19 01:31:26 +01001023 dev_put(dev);
Johannes Berge2ebc742007-07-27 15:43:22 +02001024 return 0;
1025}
1026
1027static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1028 struct ieee80211_txrx_data *tx)
1029{
1030 struct ieee80211_tx_control *control = tx->u.tx.control;
1031 int ret, i;
1032
1033 if (!ieee80211_qdisc_installed(local->mdev) &&
1034 __ieee80211_queue_stopped(local, 0)) {
1035 netif_stop_queue(local->mdev);
1036 return IEEE80211_TX_AGAIN;
1037 }
1038 if (skb) {
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001039 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1040 "TX to low-level driver", skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001041 ret = local->ops->tx(local_to_hw(local), skb, control);
1042 if (ret)
1043 return IEEE80211_TX_AGAIN;
1044 local->mdev->trans_start = jiffies;
1045 ieee80211_led_tx(local, 1);
1046 }
1047 if (tx->u.tx.extra_frag) {
1048 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1049 IEEE80211_TXCTL_USE_CTS_PROTECT |
1050 IEEE80211_TXCTL_CLEAR_DST_MASK |
1051 IEEE80211_TXCTL_FIRST_FRAGMENT);
1052 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1053 if (!tx->u.tx.extra_frag[i])
1054 continue;
1055 if (__ieee80211_queue_stopped(local, control->queue))
1056 return IEEE80211_TX_FRAG_AGAIN;
1057 if (i == tx->u.tx.num_extra_frag) {
1058 control->tx_rate = tx->u.tx.last_frag_hwrate;
1059 control->rate = tx->u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001060 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
Johannes Berge2ebc742007-07-27 15:43:22 +02001061 control->flags |=
1062 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1063 else
1064 control->flags &=
1065 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1066 }
1067
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001068 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
Johannes Berge2ebc742007-07-27 15:43:22 +02001069 "TX to low-level driver",
1070 tx->u.tx.extra_frag[i]);
1071 ret = local->ops->tx(local_to_hw(local),
1072 tx->u.tx.extra_frag[i],
1073 control);
1074 if (ret)
1075 return IEEE80211_TX_FRAG_AGAIN;
1076 local->mdev->trans_start = jiffies;
1077 ieee80211_led_tx(local, 1);
1078 tx->u.tx.extra_frag[i] = NULL;
1079 }
1080 kfree(tx->u.tx.extra_frag);
1081 tx->u.tx.extra_frag = NULL;
1082 }
1083 return IEEE80211_TX_OK;
1084}
1085
1086static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
Johannes Bergf9d540e2007-09-28 14:02:09 +02001087 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001088{
1089 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1090 struct sta_info *sta;
1091 ieee80211_tx_handler *handler;
1092 struct ieee80211_txrx_data tx;
1093 ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1094 int ret, i;
1095
1096 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1097
1098 if (unlikely(skb->len < 10)) {
1099 dev_kfree_skb(skb);
1100 return 0;
1101 }
1102
Johannes Berg58d41852007-09-26 17:53:18 +02001103 /* initialises tx */
Johannes Berge2ebc742007-07-27 15:43:22 +02001104 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1105
1106 if (res_prepare == TXRX_DROP) {
1107 dev_kfree_skb(skb);
1108 return 0;
1109 }
1110
Johannes Bergd4e46a32007-09-14 11:10:24 -04001111 /*
1112 * key references are protected using RCU and this requires that
1113 * we are in a read-site RCU section during receive processing
1114 */
1115 rcu_read_lock();
1116
Johannes Berge2ebc742007-07-27 15:43:22 +02001117 sta = tx.sta;
Johannes Berge2ebc742007-07-27 15:43:22 +02001118 tx.u.tx.mode = local->hw.conf.mode;
1119
Johannes Berg58d41852007-09-26 17:53:18 +02001120 for (handler = local->tx_handlers; *handler != NULL;
1121 handler++) {
1122 res = (*handler)(&tx);
1123 if (res != TXRX_CONTINUE)
1124 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02001125 }
1126
1127 skb = tx.skb; /* handlers are allowed to change skb */
1128
1129 if (sta)
1130 sta_info_put(sta);
1131
1132 if (unlikely(res == TXRX_DROP)) {
1133 I802_DEBUG_INC(local->tx_handlers_drop);
1134 goto drop;
1135 }
1136
1137 if (unlikely(res == TXRX_QUEUED)) {
1138 I802_DEBUG_INC(local->tx_handlers_queued);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001139 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001140 return 0;
1141 }
1142
1143 if (tx.u.tx.extra_frag) {
1144 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1145 int next_len, dur;
1146 struct ieee80211_hdr *hdr =
1147 (struct ieee80211_hdr *)
1148 tx.u.tx.extra_frag[i]->data;
1149
1150 if (i + 1 < tx.u.tx.num_extra_frag) {
1151 next_len = tx.u.tx.extra_frag[i + 1]->len;
1152 } else {
1153 next_len = 0;
1154 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1155 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1156 }
1157 dur = ieee80211_duration(&tx, 0, next_len);
1158 hdr->duration_id = cpu_to_le16(dur);
1159 }
1160 }
1161
1162retry:
1163 ret = __ieee80211_tx(local, skb, &tx);
1164 if (ret) {
1165 struct ieee80211_tx_stored_packet *store =
1166 &local->pending_packet[control->queue];
1167
1168 if (ret == IEEE80211_TX_FRAG_AGAIN)
1169 skb = NULL;
1170 set_bit(IEEE80211_LINK_STATE_PENDING,
1171 &local->state[control->queue]);
1172 smp_mb();
1173 /* When the driver gets out of buffers during sending of
1174 * fragments and calls ieee80211_stop_queue, there is
1175 * a small window between IEEE80211_LINK_STATE_XOFF and
1176 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1177 * gets available in that window (i.e. driver calls
1178 * ieee80211_wake_queue), we would end up with ieee80211_tx
1179 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1180 * continuing transmitting here when that situation is
1181 * possible to have happened. */
1182 if (!__ieee80211_queue_stopped(local, control->queue)) {
1183 clear_bit(IEEE80211_LINK_STATE_PENDING,
1184 &local->state[control->queue]);
1185 goto retry;
1186 }
1187 memcpy(&store->control, control,
1188 sizeof(struct ieee80211_tx_control));
1189 store->skb = skb;
1190 store->extra_frag = tx.u.tx.extra_frag;
1191 store->num_extra_frag = tx.u.tx.num_extra_frag;
1192 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1193 store->last_frag_rate = tx.u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001194 store->last_frag_rate_ctrl_probe =
1195 !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
Johannes Berge2ebc742007-07-27 15:43:22 +02001196 }
Johannes Bergd4e46a32007-09-14 11:10:24 -04001197 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001198 return 0;
1199
1200 drop:
1201 if (skb)
1202 dev_kfree_skb(skb);
1203 for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1204 if (tx.u.tx.extra_frag[i])
1205 dev_kfree_skb(tx.u.tx.extra_frag[i]);
1206 kfree(tx.u.tx.extra_frag);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001207 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001208 return 0;
1209}
1210
1211/* device xmit handlers */
1212
1213int ieee80211_master_start_xmit(struct sk_buff *skb,
1214 struct net_device *dev)
1215{
1216 struct ieee80211_tx_control control;
1217 struct ieee80211_tx_packet_data *pkt_data;
1218 struct net_device *odev = NULL;
1219 struct ieee80211_sub_if_data *osdata;
1220 int headroom;
1221 int ret;
1222
1223 /*
1224 * copy control out of the skb so other people can use skb->cb
1225 */
1226 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1227 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1228
1229 if (pkt_data->ifindex)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001230 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001231 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1232 dev_put(odev);
1233 odev = NULL;
1234 }
1235 if (unlikely(!odev)) {
1236#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1237 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1238 "originating device\n", dev->name);
1239#endif
1240 dev_kfree_skb(skb);
1241 return 0;
1242 }
1243 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1244
1245 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1246 if (skb_headroom(skb) < headroom) {
1247 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1248 dev_kfree_skb(skb);
1249 dev_put(odev);
1250 return 0;
1251 }
1252 }
1253
Johannes Berg32bfd352007-12-19 01:31:26 +01001254 control.vif = &osdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +01001255 control.type = osdata->vif.type;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001256 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
Johannes Berge2ebc742007-07-27 15:43:22 +02001257 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001258 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
Johannes Berge2ebc742007-07-27 15:43:22 +02001259 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001260 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
Johannes Berge2ebc742007-07-27 15:43:22 +02001261 control.flags |= IEEE80211_TXCTL_REQUEUE;
Johannes Berg678f5f712007-12-19 01:31:23 +01001262 if (pkt_data->flags & IEEE80211_TXPD_EAPOL_FRAME)
1263 control.flags |= IEEE80211_TXCTL_EAPOL_FRAME;
Johannes Berge2ebc742007-07-27 15:43:22 +02001264 control.queue = pkt_data->queue;
1265
Johannes Bergf9d540e2007-09-28 14:02:09 +02001266 ret = ieee80211_tx(odev, skb, &control);
Johannes Berge2ebc742007-07-27 15:43:22 +02001267 dev_put(odev);
1268
1269 return ret;
1270}
1271
1272int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1273 struct net_device *dev)
1274{
1275 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1276 struct ieee80211_tx_packet_data *pkt_data;
1277 struct ieee80211_radiotap_header *prthdr =
1278 (struct ieee80211_radiotap_header *)skb->data;
Andy Green9b8a74e2007-07-27 15:43:24 +02001279 u16 len_rthdr;
Johannes Berge2ebc742007-07-27 15:43:22 +02001280
Andy Green9b8a74e2007-07-27 15:43:24 +02001281 /* check for not even having the fixed radiotap header part */
1282 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1283 goto fail; /* too short to be possibly valid */
1284
1285 /* is it a header version we can trust to find length from? */
1286 if (unlikely(prthdr->it_version))
1287 goto fail; /* only version 0 is supported */
1288
1289 /* then there must be a radiotap header with a length we can use */
1290 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1291
1292 /* does the skb contain enough to deliver on the alleged length? */
1293 if (unlikely(skb->len < len_rthdr))
1294 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001295
1296 skb->dev = local->mdev;
1297
1298 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1299 memset(pkt_data, 0, sizeof(*pkt_data));
Andy Green9b8a74e2007-07-27 15:43:24 +02001300 /* needed because we set skb device to master */
Johannes Berge2ebc742007-07-27 15:43:22 +02001301 pkt_data->ifindex = dev->ifindex;
Andy Green9b8a74e2007-07-27 15:43:24 +02001302
Jiri Slabye8bf9642007-08-28 17:01:54 -04001303 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001304
Johannes Berge2ebc742007-07-27 15:43:22 +02001305 /*
1306 * fix up the pointers accounting for the radiotap
1307 * header still being in there. We are being given
1308 * a precooked IEEE80211 header so no need for
1309 * normal processing
1310 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001311 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001312 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001313 * these are just fixed to the end of the rt area since we
1314 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001315 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001316 skb_set_network_header(skb, len_rthdr);
1317 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001318
Andy Green9b8a74e2007-07-27 15:43:24 +02001319 /* pass the radiotap header up to the next stage intact */
1320 dev_queue_xmit(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001321 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001322
1323fail:
1324 dev_kfree_skb(skb);
1325 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001326}
1327
1328/**
1329 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1330 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1331 * @skb: packet to be sent
1332 * @dev: incoming interface
1333 *
1334 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1335 * not be freed, and caller is responsible for either retrying later or freeing
1336 * skb).
1337 *
1338 * This function takes in an Ethernet header and encapsulates it with suitable
1339 * IEEE 802.11 header based on which interface the packet is coming in. The
1340 * encapsulated packet will then be passed to master interface, wlan#.11, for
1341 * transmission (through low-level driver).
1342 */
1343int ieee80211_subif_start_xmit(struct sk_buff *skb,
1344 struct net_device *dev)
1345{
1346 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1347 struct ieee80211_tx_packet_data *pkt_data;
1348 struct ieee80211_sub_if_data *sdata;
1349 int ret = 1, head_need;
1350 u16 ethertype, hdrlen, fc;
1351 struct ieee80211_hdr hdr;
1352 const u8 *encaps_data;
1353 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001354 int nh_pos, h_pos;
Johannes Berge2ebc742007-07-27 15:43:22 +02001355 struct sta_info *sta;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001356 u32 sta_flags = 0;
Johannes Berge2ebc742007-07-27 15:43:22 +02001357
1358 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1359 if (unlikely(skb->len < ETH_HLEN)) {
1360 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1361 dev->name, skb->len);
1362 ret = 0;
1363 goto fail;
1364 }
1365
1366 nh_pos = skb_network_header(skb) - skb->data;
1367 h_pos = skb_transport_header(skb) - skb->data;
1368
1369 /* convert Ethernet header to proper 802.11 header (based on
1370 * operation mode) */
1371 ethertype = (skb->data[12] << 8) | skb->data[13];
Johannes Berge2ebc742007-07-27 15:43:22 +02001372 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1373
Johannes Berg51fb61e2007-12-19 01:31:27 +01001374 switch (sdata->vif.type) {
Johannes Bergcf966832007-08-28 17:01:54 -04001375 case IEEE80211_IF_TYPE_AP:
1376 case IEEE80211_IF_TYPE_VLAN:
Johannes Berge2ebc742007-07-27 15:43:22 +02001377 fc |= IEEE80211_FCTL_FROMDS;
1378 /* DA BSSID SA */
1379 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1380 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1381 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1382 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001383 break;
1384 case IEEE80211_IF_TYPE_WDS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001385 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1386 /* RA TA DA SA */
1387 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1388 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1389 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1390 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1391 hdrlen = 30;
Johannes Bergcf966832007-08-28 17:01:54 -04001392 break;
1393 case IEEE80211_IF_TYPE_STA:
Johannes Berge2ebc742007-07-27 15:43:22 +02001394 fc |= IEEE80211_FCTL_TODS;
1395 /* BSSID SA DA */
1396 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1397 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1398 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1399 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001400 break;
1401 case IEEE80211_IF_TYPE_IBSS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001402 /* DA SA BSSID */
1403 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1404 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1405 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1406 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001407 break;
1408 default:
Johannes Berge2ebc742007-07-27 15:43:22 +02001409 ret = 0;
1410 goto fail;
1411 }
1412
Johannes Berge2ebc742007-07-27 15:43:22 +02001413 sta = sta_info_get(local, hdr.addr1);
1414 if (sta) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001415 sta_flags = sta->flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001416 sta_info_put(sta);
1417 }
1418
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001419 /* receiver is QoS enabled, use a QoS type frame */
1420 if (sta_flags & WLAN_STA_WME) {
1421 fc |= IEEE80211_STYPE_QOS_DATA;
1422 hdrlen += 2;
1423 }
1424
1425 /*
1426 * If port access control is enabled, drop frames to unauthorised
1427 * stations unless they are EAPOL frames from the local station.
1428 */
1429 if (unlikely(sdata->ieee802_1x_pac &&
1430 !(sta_flags & WLAN_STA_AUTHORIZED) &&
1431 !(ethertype == ETH_P_PAE &&
1432 compare_ether_addr(dev->dev_addr,
1433 skb->data + ETH_ALEN) == 0))) {
1434#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1435 DECLARE_MAC_BUF(mac);
1436
1437 if (net_ratelimit())
1438 printk(KERN_DEBUG "%s: dropped frame to %s"
1439 " (unauthorized port)\n", dev->name,
1440 print_mac(mac, hdr.addr1));
1441#endif
1442
1443 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
1444
1445 ret = 0;
1446 goto fail;
1447 }
1448
Johannes Berge2ebc742007-07-27 15:43:22 +02001449 hdr.frame_control = cpu_to_le16(fc);
1450 hdr.duration_id = 0;
1451 hdr.seq_ctrl = 0;
1452
1453 skip_header_bytes = ETH_HLEN;
1454 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1455 encaps_data = bridge_tunnel_header;
1456 encaps_len = sizeof(bridge_tunnel_header);
1457 skip_header_bytes -= 2;
1458 } else if (ethertype >= 0x600) {
1459 encaps_data = rfc1042_header;
1460 encaps_len = sizeof(rfc1042_header);
1461 skip_header_bytes -= 2;
1462 } else {
1463 encaps_data = NULL;
1464 encaps_len = 0;
1465 }
1466
1467 skb_pull(skb, skip_header_bytes);
1468 nh_pos -= skip_header_bytes;
1469 h_pos -= skip_header_bytes;
1470
1471 /* TODO: implement support for fragments so that there is no need to
1472 * reallocate and copy payload; it might be enough to support one
1473 * extra fragment that would be copied in the beginning of the frame
1474 * data.. anyway, it would be nice to include this into skb structure
1475 * somehow
1476 *
1477 * There are few options for this:
1478 * use skb->cb as an extra space for 802.11 header
1479 * allocate new buffer if not enough headroom
1480 * make sure that there is enough headroom in every skb by increasing
1481 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1482 * alloc_skb() (net/core/skbuff.c)
1483 */
1484 head_need = hdrlen + encaps_len + local->tx_headroom;
1485 head_need -= skb_headroom(skb);
1486
1487 /* We are going to modify skb data, so make a copy of it if happens to
1488 * be cloned. This could happen, e.g., with Linux bridge code passing
1489 * us broadcast frames. */
1490
1491 if (head_need > 0 || skb_cloned(skb)) {
1492#if 0
1493 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1494 "of headroom\n", dev->name, head_need);
1495#endif
1496
1497 if (skb_cloned(skb))
1498 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1499 else
1500 I802_DEBUG_INC(local->tx_expand_skb_head);
1501 /* Since we have to reallocate the buffer, make sure that there
1502 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1503 * before payload and 12 after). */
1504 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1505 12, GFP_ATOMIC)) {
1506 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1507 "\n", dev->name);
1508 goto fail;
1509 }
1510 }
1511
1512 if (encaps_data) {
1513 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1514 nh_pos += encaps_len;
1515 h_pos += encaps_len;
1516 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04001517
1518 if (fc & IEEE80211_STYPE_QOS_DATA) {
1519 __le16 *qos_control;
1520
1521 qos_control = (__le16*) skb_push(skb, 2);
1522 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1523 /*
1524 * Maybe we could actually set some fields here, for now just
1525 * initialise to zero to indicate no special operation.
1526 */
1527 *qos_control = 0;
1528 } else
1529 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1530
Johannes Berge2ebc742007-07-27 15:43:22 +02001531 nh_pos += hdrlen;
1532 h_pos += hdrlen;
1533
1534 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1535 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1536 pkt_data->ifindex = dev->ifindex;
Johannes Berg678f5f712007-12-19 01:31:23 +01001537 if (ethertype == ETH_P_PAE)
1538 pkt_data->flags |= IEEE80211_TXPD_EAPOL_FRAME;
Johannes Berge2ebc742007-07-27 15:43:22 +02001539
1540 skb->dev = local->mdev;
Stephen Hemminger68aae112007-08-24 11:29:34 -07001541 dev->stats.tx_packets++;
1542 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001543
1544 /* Update skb pointers to various headers since this modified frame
1545 * is going to go through Linux networking code that may potentially
1546 * need things like pointer to IP header. */
1547 skb_set_mac_header(skb, 0);
1548 skb_set_network_header(skb, nh_pos);
1549 skb_set_transport_header(skb, h_pos);
1550
1551 dev->trans_start = jiffies;
1552 dev_queue_xmit(skb);
1553
1554 return 0;
1555
1556 fail:
1557 if (!ret)
1558 dev_kfree_skb(skb);
1559
1560 return ret;
1561}
1562
Johannes Berge2ebc742007-07-27 15:43:22 +02001563/* helper functions for pending packets for when queues are stopped */
1564
1565void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1566{
1567 int i, j;
1568 struct ieee80211_tx_stored_packet *store;
1569
1570 for (i = 0; i < local->hw.queues; i++) {
1571 if (!__ieee80211_queue_pending(local, i))
1572 continue;
1573 store = &local->pending_packet[i];
1574 kfree_skb(store->skb);
1575 for (j = 0; j < store->num_extra_frag; j++)
1576 kfree_skb(store->extra_frag[j]);
1577 kfree(store->extra_frag);
1578 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1579 }
1580}
1581
1582void ieee80211_tx_pending(unsigned long data)
1583{
1584 struct ieee80211_local *local = (struct ieee80211_local *)data;
1585 struct net_device *dev = local->mdev;
1586 struct ieee80211_tx_stored_packet *store;
1587 struct ieee80211_txrx_data tx;
1588 int i, ret, reschedule = 0;
1589
1590 netif_tx_lock_bh(dev);
1591 for (i = 0; i < local->hw.queues; i++) {
1592 if (__ieee80211_queue_stopped(local, i))
1593 continue;
1594 if (!__ieee80211_queue_pending(local, i)) {
1595 reschedule = 1;
1596 continue;
1597 }
1598 store = &local->pending_packet[i];
1599 tx.u.tx.control = &store->control;
1600 tx.u.tx.extra_frag = store->extra_frag;
1601 tx.u.tx.num_extra_frag = store->num_extra_frag;
1602 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1603 tx.u.tx.last_frag_rate = store->last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001604 tx.flags = 0;
1605 if (store->last_frag_rate_ctrl_probe)
1606 tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +02001607 ret = __ieee80211_tx(local, store->skb, &tx);
1608 if (ret) {
1609 if (ret == IEEE80211_TX_FRAG_AGAIN)
1610 store->skb = NULL;
1611 } else {
1612 clear_bit(IEEE80211_LINK_STATE_PENDING,
1613 &local->state[i]);
1614 reschedule = 1;
1615 }
1616 }
1617 netif_tx_unlock_bh(dev);
1618 if (reschedule) {
1619 if (!ieee80211_qdisc_installed(dev)) {
1620 if (!__ieee80211_queue_stopped(local, 0))
1621 netif_wake_queue(dev);
1622 } else
1623 netif_schedule(dev);
1624 }
1625}
1626
1627/* functions for drivers to get certain frames */
1628
1629static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1630 struct ieee80211_if_ap *bss,
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001631 struct sk_buff *skb,
1632 struct beacon_data *beacon)
Johannes Berge2ebc742007-07-27 15:43:22 +02001633{
1634 u8 *pos, *tim;
1635 int aid0 = 0;
1636 int i, have_bits = 0, n1, n2;
1637
1638 /* Generate bitmap for TIM only if there are any STAs in power save
1639 * mode. */
Michael Wube8755e2007-07-27 15:43:23 +02001640 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001641 if (atomic_read(&bss->num_sta_ps) > 0)
1642 /* in the hope that this is faster than
1643 * checking byte-for-byte */
1644 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1645 IEEE80211_MAX_AID+1);
1646
1647 if (bss->dtim_count == 0)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001648 bss->dtim_count = beacon->dtim_period - 1;
Johannes Berge2ebc742007-07-27 15:43:22 +02001649 else
1650 bss->dtim_count--;
1651
1652 tim = pos = (u8 *) skb_put(skb, 6);
1653 *pos++ = WLAN_EID_TIM;
1654 *pos++ = 4;
1655 *pos++ = bss->dtim_count;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001656 *pos++ = beacon->dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02001657
1658 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1659 aid0 = 1;
1660
1661 if (have_bits) {
1662 /* Find largest even number N1 so that bits numbered 1 through
1663 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1664 * (N2 + 1) x 8 through 2007 are 0. */
1665 n1 = 0;
1666 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1667 if (bss->tim[i]) {
1668 n1 = i & 0xfe;
1669 break;
1670 }
1671 }
1672 n2 = n1;
1673 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1674 if (bss->tim[i]) {
1675 n2 = i;
1676 break;
1677 }
1678 }
1679
1680 /* Bitmap control */
1681 *pos++ = n1 | aid0;
1682 /* Part Virt Bitmap */
1683 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1684
1685 tim[1] = n2 - n1 + 4;
1686 skb_put(skb, n2 - n1);
1687 } else {
1688 *pos++ = aid0; /* Bitmap control */
1689 *pos++ = 0; /* Part Virt Bitmap */
1690 }
Michael Wube8755e2007-07-27 15:43:23 +02001691 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001692}
1693
Johannes Berg32bfd352007-12-19 01:31:26 +01001694struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
1695 struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001696 struct ieee80211_tx_control *control)
1697{
1698 struct ieee80211_local *local = hw_to_local(hw);
1699 struct sk_buff *skb;
1700 struct net_device *bdev;
1701 struct ieee80211_sub_if_data *sdata = NULL;
1702 struct ieee80211_if_ap *ap = NULL;
Mattias Nissler1abbe492007-12-20 13:50:07 +01001703 struct rate_selection rsel;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001704 struct beacon_data *beacon;
1705
1706 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001707
Johannes Berg32bfd352007-12-19 01:31:26 +01001708 sdata = vif_to_sdata(vif);
1709 bdev = sdata->dev;
1710 ap = &sdata->u.ap;
Johannes Berge2ebc742007-07-27 15:43:22 +02001711
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001712 beacon = rcu_dereference(ap->beacon);
1713
1714 if (!ap || sdata->vif.type != IEEE80211_IF_TYPE_AP || !beacon) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001715#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1716 if (net_ratelimit())
Johannes Berg32bfd352007-12-19 01:31:26 +01001717 printk(KERN_DEBUG "no beacon data avail for %s\n",
1718 bdev->name);
Johannes Berge2ebc742007-07-27 15:43:22 +02001719#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001720 skb = NULL;
1721 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02001722 }
1723
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001724 /* headroom, head length, tail length and maximum TIM length */
1725 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
1726 beacon->tail_len + 256);
Johannes Berge2ebc742007-07-27 15:43:22 +02001727 if (!skb)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001728 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02001729
1730 skb_reserve(skb, local->tx_headroom);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001731 memcpy(skb_put(skb, beacon->head_len), beacon->head,
1732 beacon->head_len);
Johannes Berge2ebc742007-07-27 15:43:22 +02001733
1734 ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1735
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001736 ieee80211_beacon_add_tim(local, ap, skb, beacon);
Johannes Berge2ebc742007-07-27 15:43:22 +02001737
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001738 if (beacon->tail)
1739 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
1740 beacon->tail_len);
Johannes Berge2ebc742007-07-27 15:43:22 +02001741
1742 if (control) {
Mattias Nissler1abbe492007-12-20 13:50:07 +01001743 rate_control_get_rate(local->mdev, local->oper_hw_mode, skb,
1744 &rsel);
1745 if (!rsel.rate) {
Johannes Berge2ebc742007-07-27 15:43:22 +02001746 if (net_ratelimit()) {
Mattias Nissler1abbe492007-12-20 13:50:07 +01001747 printk(KERN_DEBUG "%s: ieee80211_beacon_get: "
1748 "no rate found\n",
1749 wiphy_name(local->hw.wiphy));
Johannes Berge2ebc742007-07-27 15:43:22 +02001750 }
1751 dev_kfree_skb(skb);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001752 skb = NULL;
1753 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02001754 }
1755
Jiri Slaby13262ff2007-08-28 17:01:54 -04001756 control->tx_rate =
1757 ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
Mattias Nissler1abbe492007-12-20 13:50:07 +01001758 (rsel.rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
1759 rsel.rate->val2 : rsel.rate->val;
Johannes Berge2ebc742007-07-27 15:43:22 +02001760 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1761 control->power_level = local->hw.conf.power_level;
1762 control->flags |= IEEE80211_TXCTL_NO_ACK;
1763 control->retry_limit = 1;
1764 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1765 }
1766
1767 ap->num_beacons++;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001768
1769 out:
1770 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001771 return skb;
1772}
1773EXPORT_SYMBOL(ieee80211_beacon_get);
1774
Johannes Berg32bfd352007-12-19 01:31:26 +01001775void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001776 const void *frame, size_t frame_len,
1777 const struct ieee80211_tx_control *frame_txctl,
1778 struct ieee80211_rts *rts)
1779{
1780 const struct ieee80211_hdr *hdr = frame;
1781 u16 fctl;
1782
1783 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1784 rts->frame_control = cpu_to_le16(fctl);
Johannes Berg32bfd352007-12-19 01:31:26 +01001785 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
1786 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001787 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1788 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1789}
1790EXPORT_SYMBOL(ieee80211_rts_get);
1791
Johannes Berg32bfd352007-12-19 01:31:26 +01001792void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001793 const void *frame, size_t frame_len,
1794 const struct ieee80211_tx_control *frame_txctl,
1795 struct ieee80211_cts *cts)
1796{
1797 const struct ieee80211_hdr *hdr = frame;
1798 u16 fctl;
1799
1800 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1801 cts->frame_control = cpu_to_le16(fctl);
Johannes Berg32bfd352007-12-19 01:31:26 +01001802 cts->duration = ieee80211_ctstoself_duration(hw, vif,
1803 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001804 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1805}
1806EXPORT_SYMBOL(ieee80211_ctstoself_get);
1807
1808struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01001809ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
1810 struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02001811 struct ieee80211_tx_control *control)
1812{
1813 struct ieee80211_local *local = hw_to_local(hw);
1814 struct sk_buff *skb;
1815 struct sta_info *sta;
1816 ieee80211_tx_handler *handler;
1817 struct ieee80211_txrx_data tx;
1818 ieee80211_txrx_result res = TXRX_DROP;
1819 struct net_device *bdev;
1820 struct ieee80211_sub_if_data *sdata;
1821 struct ieee80211_if_ap *bss = NULL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001822 struct beacon_data *beacon;
Johannes Berge2ebc742007-07-27 15:43:22 +02001823
Johannes Berg32bfd352007-12-19 01:31:26 +01001824 sdata = vif_to_sdata(vif);
1825 bdev = sdata->dev;
1826
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001827
1828 if (!bss)
Johannes Berge2ebc742007-07-27 15:43:22 +02001829 return NULL;
1830
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001831 rcu_read_lock();
1832 beacon = rcu_dereference(bss->beacon);
1833
1834 if (sdata->vif.type != IEEE80211_IF_TYPE_AP || !beacon ||
1835 !beacon->head) {
1836 rcu_read_unlock();
1837 return NULL;
1838 }
1839 rcu_read_unlock();
1840
Johannes Berge2ebc742007-07-27 15:43:22 +02001841 if (bss->dtim_count != 0)
1842 return NULL; /* send buffered bc/mc only after DTIM beacon */
1843 memset(control, 0, sizeof(*control));
1844 while (1) {
1845 skb = skb_dequeue(&bss->ps_bc_buf);
1846 if (!skb)
1847 return NULL;
1848 local->total_ps_buffered--;
1849
1850 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1851 struct ieee80211_hdr *hdr =
1852 (struct ieee80211_hdr *) skb->data;
1853 /* more buffered multicast/broadcast frames ==> set
1854 * MoreData flag in IEEE 802.11 header to inform PS
1855 * STAs */
1856 hdr->frame_control |=
1857 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1858 }
1859
Johannes Berg58d41852007-09-26 17:53:18 +02001860 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
Johannes Berge2ebc742007-07-27 15:43:22 +02001861 break;
1862 dev_kfree_skb_any(skb);
1863 }
1864 sta = tx.sta;
Jiri Slabybadffb72007-08-28 17:01:54 -04001865 tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
Tomas Winkler475fa492007-09-02 22:58:21 +03001866 tx.u.tx.mode = local->hw.conf.mode;
Johannes Berge2ebc742007-07-27 15:43:22 +02001867
1868 for (handler = local->tx_handlers; *handler != NULL; handler++) {
1869 res = (*handler)(&tx);
1870 if (res == TXRX_DROP || res == TXRX_QUEUED)
1871 break;
1872 }
Johannes Berge2ebc742007-07-27 15:43:22 +02001873 skb = tx.skb; /* handlers are allowed to change skb */
1874
1875 if (res == TXRX_DROP) {
1876 I802_DEBUG_INC(local->tx_handlers_drop);
1877 dev_kfree_skb(skb);
1878 skb = NULL;
1879 } else if (res == TXRX_QUEUED) {
1880 I802_DEBUG_INC(local->tx_handlers_queued);
1881 skb = NULL;
1882 }
1883
1884 if (sta)
1885 sta_info_put(sta);
1886
1887 return skb;
1888}
1889EXPORT_SYMBOL(ieee80211_get_buffered_bc);