blob: 50ab4b2de1e971cfa1bd68db9d556390f1d2b348 [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) &&
240 tx->sdata->type != IEEE80211_IF_TYPE_IBSS &&
241 (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 Berge2ebc742007-07-27 15:43:22 +0200254 tx->sdata->type != IEEE80211_IF_TYPE_IBSS)) {
255 /*
256 * No associated STAs - no need to send multicast
257 * frames.
258 */
259 return TXRX_DROP;
260 }
261 return TXRX_CONTINUE;
262 }
263
Johannes Bergf9d540e2007-09-28 14:02:09 +0200264 if (unlikely(/* !injected && */ tx->sdata->ieee802_1x &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200265 !(sta_flags & WLAN_STA_AUTHORIZED))) {
266#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700267 DECLARE_MAC_BUF(mac);
268 printk(KERN_DEBUG "%s: dropped frame to %s"
Johannes Berge2ebc742007-07-27 15:43:22 +0200269 " (unauthorized port)\n", tx->dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700270 print_mac(mac, hdr->addr1));
Johannes Berge2ebc742007-07-27 15:43:22 +0200271#endif
272 I802_DEBUG_INC(tx->local->tx_handlers_drop_unauth_port);
273 return TXRX_DROP;
274 }
275
276 return TXRX_CONTINUE;
277}
278
279static ieee80211_txrx_result
280ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx)
281{
282 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
283
284 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
285 ieee80211_include_sequence(tx->sdata, hdr);
286
287 return TXRX_CONTINUE;
288}
289
290/* This function is called whenever the AP is about to exceed the maximum limit
291 * of buffered frames for power saving STAs. This situation should not really
292 * happen often during normal operation, so dropping the oldest buffered packet
293 * from each queue should be OK to make some room for new frames. */
294static void purge_old_ps_buffers(struct ieee80211_local *local)
295{
296 int total = 0, purged = 0;
297 struct sk_buff *skb;
298 struct ieee80211_sub_if_data *sdata;
299 struct sta_info *sta;
300
Johannes Berg79010422007-09-18 17:29:21 -0400301 /*
302 * virtual interfaces are protected by RCU
303 */
304 rcu_read_lock();
305
306 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200307 struct ieee80211_if_ap *ap;
308 if (sdata->dev == local->mdev ||
309 sdata->type != IEEE80211_IF_TYPE_AP)
310 continue;
311 ap = &sdata->u.ap;
312 skb = skb_dequeue(&ap->ps_bc_buf);
313 if (skb) {
314 purged++;
315 dev_kfree_skb(skb);
316 }
317 total += skb_queue_len(&ap->ps_bc_buf);
318 }
Johannes Berg79010422007-09-18 17:29:21 -0400319 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +0200320
Michael Wube8755e2007-07-27 15:43:23 +0200321 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +0200322 list_for_each_entry(sta, &local->sta_list, list) {
323 skb = skb_dequeue(&sta->ps_tx_buf);
324 if (skb) {
325 purged++;
326 dev_kfree_skb(skb);
327 }
328 total += skb_queue_len(&sta->ps_tx_buf);
329 }
Michael Wube8755e2007-07-27 15:43:23 +0200330 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +0200331
332 local->total_ps_buffered = total;
333 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400334 wiphy_name(local->hw.wiphy), purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200335}
336
337static inline ieee80211_txrx_result
338ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx)
339{
340 /* broadcast/multicast frame */
341 /* If any of the associated stations is in power save mode,
342 * the frame is buffered to be sent after DTIM beacon frame */
343 if ((tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) &&
344 tx->sdata->type != IEEE80211_IF_TYPE_WDS &&
345 tx->sdata->bss && atomic_read(&tx->sdata->bss->num_sta_ps) &&
346 !(tx->fc & IEEE80211_FCTL_ORDER)) {
347 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
348 purge_old_ps_buffers(tx->local);
349 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
350 AP_MAX_BC_BUFFER) {
351 if (net_ratelimit()) {
352 printk(KERN_DEBUG "%s: BC TX buffer full - "
353 "dropping the oldest frame\n",
354 tx->dev->name);
355 }
356 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
357 } else
358 tx->local->total_ps_buffered++;
359 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
360 return TXRX_QUEUED;
361 }
362
363 return TXRX_CONTINUE;
364}
365
366static inline ieee80211_txrx_result
367ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx)
368{
369 struct sta_info *sta = tx->sta;
Joe Perches0795af52007-10-03 17:59:30 -0700370 DECLARE_MAC_BUF(mac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200371
372 if (unlikely(!sta ||
373 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
374 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
375 return TXRX_CONTINUE;
376
377 if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) {
378 struct ieee80211_tx_packet_data *pkt_data;
379#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700380 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
Johannes Berge2ebc742007-07-27 15:43:22 +0200381 "before %d)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700382 print_mac(mac, sta->addr), sta->aid,
Johannes Berge2ebc742007-07-27 15:43:22 +0200383 skb_queue_len(&sta->ps_tx_buf));
384#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
385 sta->flags |= WLAN_STA_TIM;
386 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
387 purge_old_ps_buffers(tx->local);
388 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
389 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
390 if (net_ratelimit()) {
Joe Perches0795af52007-10-03 17:59:30 -0700391 printk(KERN_DEBUG "%s: STA %s TX "
Johannes Berge2ebc742007-07-27 15:43:22 +0200392 "buffer full - dropping oldest frame\n",
Joe Perches0795af52007-10-03 17:59:30 -0700393 tx->dev->name, print_mac(mac, sta->addr));
Johannes Berge2ebc742007-07-27 15:43:22 +0200394 }
395 dev_kfree_skb(old);
396 } else
397 tx->local->total_ps_buffered++;
398 /* Queue frame to be sent after STA sends an PS Poll frame */
399 if (skb_queue_empty(&sta->ps_tx_buf)) {
400 if (tx->local->ops->set_tim)
401 tx->local->ops->set_tim(local_to_hw(tx->local),
402 sta->aid, 1);
403 if (tx->sdata->bss)
404 bss_tim_set(tx->local, tx->sdata->bss, sta->aid);
405 }
406 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
407 pkt_data->jiffies = jiffies;
408 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
409 return TXRX_QUEUED;
410 }
411#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
412 else if (unlikely(sta->flags & WLAN_STA_PS)) {
Joe Perches0795af52007-10-03 17:59:30 -0700413 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
Johannes Berge2ebc742007-07-27 15:43:22 +0200414 "set -> send frame\n", tx->dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700415 print_mac(mac, sta->addr));
Johannes Berge2ebc742007-07-27 15:43:22 +0200416 }
417#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
418 sta->pspoll = 0;
419
420 return TXRX_CONTINUE;
421}
422
423
424static ieee80211_txrx_result
425ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
426{
Jiri Slabybadffb72007-08-28 17:01:54 -0400427 if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200428 return TXRX_CONTINUE;
429
Jiri Slabybadffb72007-08-28 17:01:54 -0400430 if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200431 return ieee80211_tx_h_unicast_ps_buf(tx);
432 else
433 return ieee80211_tx_h_multicast_ps_buf(tx);
434}
435
436
437
438
439static ieee80211_txrx_result
440ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
441{
Johannes Bergd4e46a32007-09-14 11:10:24 -0400442 struct ieee80211_key *key;
443
Johannes Berge2ebc742007-07-27 15:43:22 +0200444 if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
445 tx->key = NULL;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400446 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
447 tx->key = key;
448 else if ((key = rcu_dereference(tx->sdata->default_key)))
449 tx->key = key;
Johannes Berge2ebc742007-07-27 15:43:22 +0200450 else if (tx->sdata->drop_unencrypted &&
451 !(tx->sdata->eapol && ieee80211_is_eapol(tx->skb))) {
452 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
453 return TXRX_DROP;
Johannes Berg6a7664d2007-09-14 11:10:25 -0400454 } else {
Johannes Berge2ebc742007-07-27 15:43:22 +0200455 tx->key = NULL;
Johannes Berg6a7664d2007-09-14 11:10:25 -0400456 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
457 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200458
459 if (tx->key) {
460 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400461 /* TODO: add threshold stuff again */
Johannes Berge2ebc742007-07-27 15:43:22 +0200462 }
463
464 return TXRX_CONTINUE;
465}
466
467static ieee80211_txrx_result
468ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
469{
470 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
471 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
472 struct sk_buff **frags, *first, *frag;
473 int i;
474 u16 seq;
475 u8 *pos;
476 int frag_threshold = tx->local->fragmentation_threshold;
477
Jiri Slabybadffb72007-08-28 17:01:54 -0400478 if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200479 return TXRX_CONTINUE;
480
481 first = tx->skb;
482
483 hdrlen = ieee80211_get_hdrlen(tx->fc);
484 payload_len = first->len - hdrlen;
485 per_fragm = frag_threshold - hdrlen - FCS_LEN;
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700486 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
Johannes Berge2ebc742007-07-27 15:43:22 +0200487
488 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
489 if (!frags)
490 goto fail;
491
492 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
493 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
494 pos = first->data + hdrlen + per_fragm;
495 left = payload_len - per_fragm;
496 for (i = 0; i < num_fragm - 1; i++) {
497 struct ieee80211_hdr *fhdr;
498 size_t copylen;
499
500 if (left <= 0)
501 goto fail;
502
503 /* reserve enough extra head and tail room for possible
504 * encryption */
505 frag = frags[i] =
506 dev_alloc_skb(tx->local->tx_headroom +
507 frag_threshold +
508 IEEE80211_ENCRYPT_HEADROOM +
509 IEEE80211_ENCRYPT_TAILROOM);
510 if (!frag)
511 goto fail;
512 /* Make sure that all fragments use the same priority so
513 * that they end up using the same TX queue */
514 frag->priority = first->priority;
515 skb_reserve(frag, tx->local->tx_headroom +
516 IEEE80211_ENCRYPT_HEADROOM);
517 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
518 memcpy(fhdr, first->data, hdrlen);
519 if (i == num_fragm - 2)
520 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
521 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
522 copylen = left > per_fragm ? per_fragm : left;
523 memcpy(skb_put(frag, copylen), pos, copylen);
524
525 pos += copylen;
526 left -= copylen;
527 }
528 skb_trim(first, hdrlen + per_fragm);
529
530 tx->u.tx.num_extra_frag = num_fragm - 1;
531 tx->u.tx.extra_frag = frags;
532
533 return TXRX_CONTINUE;
534
535 fail:
536 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
537 if (frags) {
538 for (i = 0; i < num_fragm - 1; i++)
539 if (frags[i])
540 dev_kfree_skb(frags[i]);
541 kfree(frags);
542 }
543 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
544 return TXRX_DROP;
545}
546
Johannes Berge2ebc742007-07-27 15:43:22 +0200547static ieee80211_txrx_result
Johannes Berg6a22a592007-09-26 15:19:41 +0200548ieee80211_tx_h_encrypt(struct ieee80211_txrx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200549{
Johannes Berg6a22a592007-09-26 15:19:41 +0200550 if (!tx->key)
Johannes Berge2ebc742007-07-27 15:43:22 +0200551 return TXRX_CONTINUE;
552
Johannes Berg6a22a592007-09-26 15:19:41 +0200553 switch (tx->key->conf.alg) {
554 case ALG_WEP:
555 return ieee80211_crypto_wep_encrypt(tx);
556 case ALG_TKIP:
557 return ieee80211_crypto_tkip_encrypt(tx);
558 case ALG_CCMP:
559 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berge2ebc742007-07-27 15:43:22 +0200560 }
561
Johannes Berg6a22a592007-09-26 15:19:41 +0200562 /* not reached */
563 WARN_ON(1);
564 return TXRX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200565}
566
567static ieee80211_txrx_result
568ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
569{
570 struct rate_control_extra extra;
571
Johannes Berg58d41852007-09-26 17:53:18 +0200572 if (likely(!tx->u.tx.rate)) {
573 memset(&extra, 0, sizeof(extra));
574 extra.mode = tx->u.tx.mode;
575 extra.ethertype = tx->ethertype;
Johannes Berge2ebc742007-07-27 15:43:22 +0200576
Johannes Berg58d41852007-09-26 17:53:18 +0200577 tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev,
578 tx->skb, &extra);
579 if (unlikely(extra.probe != NULL)) {
580 tx->u.tx.control->flags |=
581 IEEE80211_TXCTL_RATE_CTRL_PROBE;
582 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
583 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
584 tx->u.tx.rate = extra.probe;
585 } else
586 tx->u.tx.control->alt_retry_rate = -1;
587
588 if (!tx->u.tx.rate)
589 return TXRX_DROP;
590 } else
Johannes Berge2ebc742007-07-27 15:43:22 +0200591 tx->u.tx.control->alt_retry_rate = -1;
Johannes Berg58d41852007-09-26 17:53:18 +0200592
Johannes Berge2ebc742007-07-27 15:43:22 +0200593 if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400594 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400595 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200596 tx->u.tx.last_frag_rate = tx->u.tx.rate;
Jiri Slabybadffb72007-08-28 17:01:54 -0400597 if (extra.probe)
598 tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
599 else
600 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +0200601 tx->u.tx.rate = extra.nonerp;
602 tx->u.tx.control->rate = extra.nonerp;
603 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
604 } else {
605 tx->u.tx.last_frag_rate = tx->u.tx.rate;
606 tx->u.tx.control->rate = tx->u.tx.rate;
607 }
608 tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
Johannes Berge2ebc742007-07-27 15:43:22 +0200609
610 return TXRX_CONTINUE;
611}
612
613static ieee80211_txrx_result
614ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
615{
616 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200617 u16 fc = le16_to_cpu(hdr->frame_control);
Johannes Berge2ebc742007-07-27 15:43:22 +0200618 u16 dur;
619 struct ieee80211_tx_control *control = tx->u.tx.control;
620 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
621
Johannes Berg58d41852007-09-26 17:53:18 +0200622 if (!control->retry_limit) {
623 if (!is_multicast_ether_addr(hdr->addr1)) {
624 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
625 && tx->local->rts_threshold <
626 IEEE80211_MAX_RTS_THRESHOLD) {
627 control->flags |=
628 IEEE80211_TXCTL_USE_RTS_CTS;
629 control->flags |=
630 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
631 control->retry_limit =
632 tx->local->long_retry_limit;
633 } else {
634 control->retry_limit =
635 tx->local->short_retry_limit;
636 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200637 } else {
Johannes Berg58d41852007-09-26 17:53:18 +0200638 control->retry_limit = 1;
Johannes Berge2ebc742007-07-27 15:43:22 +0200639 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200640 }
641
Jiri Slabybadffb72007-08-28 17:01:54 -0400642 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200643 /* Do not use multiple retry rates when sending fragmented
644 * frames.
645 * TODO: The last fragment could still use multiple retry
646 * rates. */
647 control->alt_retry_rate = -1;
648 }
649
650 /* Use CTS protection for unicast frames sent using extended rates if
651 * there are associated non-ERP stations and RTS/CTS is not configured
652 * for the frame. */
653 if (mode->mode == MODE_IEEE80211G &&
654 (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400655 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400656 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200657 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
658 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
659
Daniel Drake7e9ed182007-07-27 15:43:24 +0200660 /* Transmit data frames using short preambles if the driver supports
661 * short preambles at the selected rate and short preambles are
662 * available on the network at the current point in time. */
663 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
664 (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400665 (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
Daniel Drake7e9ed182007-07-27 15:43:24 +0200666 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
667 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
668 }
669
Johannes Berge2ebc742007-07-27 15:43:22 +0200670 /* Setup duration field for the first fragment of the frame. Duration
671 * for remaining fragments will be updated when they are being sent
672 * to low-level driver in ieee80211_tx(). */
673 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
Jiri Slabybadffb72007-08-28 17:01:54 -0400674 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
675 tx->u.tx.extra_frag[0]->len : 0);
Johannes Berge2ebc742007-07-27 15:43:22 +0200676 hdr->duration_id = cpu_to_le16(dur);
677
678 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
679 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
680 struct ieee80211_rate *rate;
681
682 /* Do not use multiple retry rates when using RTS/CTS */
683 control->alt_retry_rate = -1;
684
685 /* Use min(data rate, max base rate) as CTS/RTS rate */
686 rate = tx->u.tx.rate;
687 while (rate > mode->rates &&
688 !(rate->flags & IEEE80211_RATE_BASIC))
689 rate--;
690
691 control->rts_cts_rate = rate->val;
692 control->rts_rate = rate;
693 }
694
695 if (tx->sta) {
696 tx->sta->tx_packets++;
697 tx->sta->tx_fragments++;
698 tx->sta->tx_bytes += tx->skb->len;
699 if (tx->u.tx.extra_frag) {
700 int i;
701 tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
702 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
703 tx->sta->tx_bytes +=
704 tx->u.tx.extra_frag[i]->len;
705 }
706 }
707 }
708
Johannes Berg6a7664d2007-09-14 11:10:25 -0400709 /*
710 * Tell hardware to not encrypt when we had sw crypto.
711 * Because we use the same flag to internally indicate that
712 * no (software) encryption should be done, we have to set it
713 * after all crypto handlers.
714 */
715 if (tx->key && !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
716 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
717
Johannes Berge2ebc742007-07-27 15:43:22 +0200718 return TXRX_CONTINUE;
719}
720
721static ieee80211_txrx_result
722ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
723{
724 struct ieee80211_local *local = tx->local;
725 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
726 struct sk_buff *skb = tx->skb;
727 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
728 u32 load = 0, hdrtime;
729
730 /* TODO: this could be part of tx_status handling, so that the number
731 * of retries would be known; TX rate should in that case be stored
732 * somewhere with the packet */
733
734 /* Estimate total channel use caused by this frame */
735
736 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
737 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
738
739 if (mode->mode == MODE_IEEE80211A ||
Johannes Berge2ebc742007-07-27 15:43:22 +0200740 (mode->mode == MODE_IEEE80211G &&
741 tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
742 hdrtime = CHAN_UTIL_HDR_SHORT;
743 else
744 hdrtime = CHAN_UTIL_HDR_LONG;
745
746 load = hdrtime;
747 if (!is_multicast_ether_addr(hdr->addr1))
748 load += hdrtime;
749
750 if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
751 load += 2 * hdrtime;
752 else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
753 load += hdrtime;
754
755 load += skb->len * tx->u.tx.rate->rate_inv;
756
757 if (tx->u.tx.extra_frag) {
758 int i;
759 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
760 load += 2 * hdrtime;
761 load += tx->u.tx.extra_frag[i]->len *
762 tx->u.tx.rate->rate;
763 }
764 }
765
766 /* Divide channel_use by 8 to avoid wrapping around the counter */
767 load >>= CHAN_UTIL_SHIFT;
768 local->channel_use_raw += load;
769 if (tx->sta)
770 tx->sta->channel_use_raw += load;
771 tx->sdata->channel_use_raw += load;
772
773 return TXRX_CONTINUE;
774}
775
776/* TODO: implement register/unregister functions for adding TX/RX handlers
777 * into ordered list */
778
779ieee80211_tx_handler ieee80211_tx_handlers[] =
780{
781 ieee80211_tx_h_check_assoc,
782 ieee80211_tx_h_sequence,
783 ieee80211_tx_h_ps_buf,
784 ieee80211_tx_h_select_key,
785 ieee80211_tx_h_michael_mic_add,
786 ieee80211_tx_h_fragment,
Johannes Berg6a22a592007-09-26 15:19:41 +0200787 ieee80211_tx_h_encrypt,
Johannes Berge2ebc742007-07-27 15:43:22 +0200788 ieee80211_tx_h_rate_ctrl,
789 ieee80211_tx_h_misc,
790 ieee80211_tx_h_load_stats,
791 NULL
792};
793
794/* actual transmit path */
795
796/*
797 * deal with packet injection down monitor interface
798 * with Radiotap Header -- only called for monitor mode interface
799 */
800static ieee80211_txrx_result
Johannes Berg58d41852007-09-26 17:53:18 +0200801__ieee80211_parse_tx_radiotap(struct ieee80211_txrx_data *tx,
802 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +0200803{
804 /*
805 * this is the moment to interpret and discard the radiotap header that
806 * must be at the start of the packet injected in Monitor mode
807 *
808 * Need to take some care with endian-ness since radiotap
809 * args are little-endian
810 */
811
812 struct ieee80211_radiotap_iterator iterator;
813 struct ieee80211_radiotap_header *rthdr =
814 (struct ieee80211_radiotap_header *) skb->data;
815 struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
816 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
Johannes Berg58d41852007-09-26 17:53:18 +0200817 struct ieee80211_tx_control *control = tx->u.tx.control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200818
Johannes Berg58d41852007-09-26 17:53:18 +0200819 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
820 tx->flags |= IEEE80211_TXRXD_TX_INJECTED;
821 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200822
823 /*
824 * for every radiotap entry that is present
825 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
826 * entries present, or -EINVAL on error)
827 */
828
829 while (!ret) {
830 int i, target_rate;
831
832 ret = ieee80211_radiotap_iterator_next(&iterator);
833
834 if (ret)
835 continue;
836
837 /* see if this argument is something we can use */
838 switch (iterator.this_arg_index) {
839 /*
840 * You must take care when dereferencing iterator.this_arg
841 * for multibyte types... the pointer is not aligned. Use
842 * get_unaligned((type *)iterator.this_arg) to dereference
843 * iterator.this_arg for type "type" safely on all arches.
844 */
845 case IEEE80211_RADIOTAP_RATE:
846 /*
847 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
848 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
849 */
850 target_rate = (*iterator.this_arg) * 5;
851 for (i = 0; i < mode->num_rates; i++) {
852 struct ieee80211_rate *r = &mode->rates[i];
853
Johannes Berg58d41852007-09-26 17:53:18 +0200854 if (r->rate == target_rate) {
855 tx->u.tx.rate = r;
856 break;
857 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200858 }
859 break;
860
861 case IEEE80211_RADIOTAP_ANTENNA:
862 /*
863 * radiotap uses 0 for 1st ant, mac80211 is 1 for
864 * 1st ant
865 */
866 control->antenna_sel_tx = (*iterator.this_arg) + 1;
867 break;
868
869 case IEEE80211_RADIOTAP_DBM_TX_POWER:
870 control->power_level = *iterator.this_arg;
871 break;
872
873 case IEEE80211_RADIOTAP_FLAGS:
874 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
875 /*
876 * this indicates that the skb we have been
877 * handed has the 32-bit FCS CRC at the end...
878 * we should react to that by snipping it off
879 * because it will be recomputed and added
880 * on transmission
881 */
882 if (skb->len < (iterator.max_length + FCS_LEN))
883 return TXRX_DROP;
884
885 skb_trim(skb, skb->len - FCS_LEN);
886 }
Johannes Berg58d41852007-09-26 17:53:18 +0200887 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
888 control->flags &=
889 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
890 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
891 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200892 break;
893
Johannes Berg58d41852007-09-26 17:53:18 +0200894 /*
895 * Please update the file
896 * Documentation/networking/mac80211-injection.txt
897 * when parsing new fields here.
898 */
899
Johannes Berge2ebc742007-07-27 15:43:22 +0200900 default:
901 break;
902 }
903 }
904
905 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
906 return TXRX_DROP;
907
908 /*
909 * remove the radiotap header
910 * iterator->max_length was sanity-checked against
911 * skb->len by iterator init
912 */
913 skb_pull(skb, iterator.max_length);
914
915 return TXRX_CONTINUE;
916}
917
Johannes Berg58d41852007-09-26 17:53:18 +0200918/*
919 * initialises @tx
920 */
921static ieee80211_txrx_result
Johannes Berge2ebc742007-07-27 15:43:22 +0200922__ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
923 struct sk_buff *skb,
924 struct net_device *dev,
925 struct ieee80211_tx_control *control)
926{
927 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg58d41852007-09-26 17:53:18 +0200928 struct ieee80211_hdr *hdr;
Johannes Berge2ebc742007-07-27 15:43:22 +0200929 struct ieee80211_sub_if_data *sdata;
930 ieee80211_txrx_result res = TXRX_CONTINUE;
931
932 int hdrlen;
933
934 memset(tx, 0, sizeof(*tx));
935 tx->skb = skb;
936 tx->dev = dev; /* use original interface */
937 tx->local = local;
938 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg58d41852007-09-26 17:53:18 +0200939 tx->u.tx.control = control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200940 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200941 * Set this flag (used below to indicate "automatic fragmentation"),
942 * it will be cleared/left by radiotap as desired.
Johannes Berge2ebc742007-07-27 15:43:22 +0200943 */
Johannes Berg58d41852007-09-26 17:53:18 +0200944 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200945
946 /* process and remove the injection radiotap header */
947 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
948 if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) {
Johannes Berg58d41852007-09-26 17:53:18 +0200949 if (__ieee80211_parse_tx_radiotap(tx, skb) == TXRX_DROP)
Johannes Berge2ebc742007-07-27 15:43:22 +0200950 return TXRX_DROP;
Johannes Berg58d41852007-09-26 17:53:18 +0200951
Johannes Berge2ebc742007-07-27 15:43:22 +0200952 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200953 * __ieee80211_parse_tx_radiotap has now removed
954 * the radiotap header that was present and pre-filled
955 * 'tx' with tx control information.
Johannes Berge2ebc742007-07-27 15:43:22 +0200956 */
Johannes Berge2ebc742007-07-27 15:43:22 +0200957 }
958
Johannes Berg58d41852007-09-26 17:53:18 +0200959 hdr = (struct ieee80211_hdr *) skb->data;
960
warmcat24338792007-09-14 11:10:25 -0400961 tx->sta = sta_info_get(local, hdr->addr1);
962 tx->fc = le16_to_cpu(hdr->frame_control);
Johannes Berg58d41852007-09-26 17:53:18 +0200963
Jiri Slabybadffb72007-08-28 17:01:54 -0400964 if (is_multicast_ether_addr(hdr->addr1)) {
965 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200966 control->flags |= IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400967 } else {
968 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200969 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400970 }
Johannes Berg58d41852007-09-26 17:53:18 +0200971
972 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
973 if ((tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
974 skb->len + FCS_LEN > local->fragmentation_threshold &&
975 !local->ops->set_frag_threshold)
976 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
977 else
978 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
979 }
980
Johannes Berge2ebc742007-07-27 15:43:22 +0200981 if (!tx->sta)
982 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
983 else if (tx->sta->clear_dst_mask) {
984 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
985 tx->sta->clear_dst_mask = 0;
986 }
Johannes Berg58d41852007-09-26 17:53:18 +0200987
Johannes Berge2ebc742007-07-27 15:43:22 +0200988 hdrlen = ieee80211_get_hdrlen(tx->fc);
989 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
990 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
991 tx->ethertype = (pos[0] << 8) | pos[1];
992 }
993 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
994
995 return res;
996}
997
998/* Device in tx->dev has a reference added; use dev_put(tx->dev) when
Johannes Berg58d41852007-09-26 17:53:18 +0200999 * finished with it.
1000 *
1001 * NB: @tx is uninitialised when passed in here
1002 */
1003static int ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
1004 struct sk_buff *skb,
1005 struct net_device *mdev,
1006 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001007{
1008 struct ieee80211_tx_packet_data *pkt_data;
1009 struct net_device *dev;
1010
1011 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001012 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001013 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1014 dev_put(dev);
1015 dev = NULL;
1016 }
1017 if (unlikely(!dev))
1018 return -ENODEV;
Johannes Berg58d41852007-09-26 17:53:18 +02001019 /* initialises tx with control */
Johannes Berge2ebc742007-07-27 15:43:22 +02001020 __ieee80211_tx_prepare(tx, skb, dev, control);
1021 return 0;
1022}
1023
1024static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1025 struct ieee80211_txrx_data *tx)
1026{
1027 struct ieee80211_tx_control *control = tx->u.tx.control;
1028 int ret, i;
1029
1030 if (!ieee80211_qdisc_installed(local->mdev) &&
1031 __ieee80211_queue_stopped(local, 0)) {
1032 netif_stop_queue(local->mdev);
1033 return IEEE80211_TX_AGAIN;
1034 }
1035 if (skb) {
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001036 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1037 "TX to low-level driver", skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001038 ret = local->ops->tx(local_to_hw(local), skb, control);
1039 if (ret)
1040 return IEEE80211_TX_AGAIN;
1041 local->mdev->trans_start = jiffies;
1042 ieee80211_led_tx(local, 1);
1043 }
1044 if (tx->u.tx.extra_frag) {
1045 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1046 IEEE80211_TXCTL_USE_CTS_PROTECT |
1047 IEEE80211_TXCTL_CLEAR_DST_MASK |
1048 IEEE80211_TXCTL_FIRST_FRAGMENT);
1049 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1050 if (!tx->u.tx.extra_frag[i])
1051 continue;
1052 if (__ieee80211_queue_stopped(local, control->queue))
1053 return IEEE80211_TX_FRAG_AGAIN;
1054 if (i == tx->u.tx.num_extra_frag) {
1055 control->tx_rate = tx->u.tx.last_frag_hwrate;
1056 control->rate = tx->u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001057 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
Johannes Berge2ebc742007-07-27 15:43:22 +02001058 control->flags |=
1059 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1060 else
1061 control->flags &=
1062 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1063 }
1064
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001065 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
Johannes Berge2ebc742007-07-27 15:43:22 +02001066 "TX to low-level driver",
1067 tx->u.tx.extra_frag[i]);
1068 ret = local->ops->tx(local_to_hw(local),
1069 tx->u.tx.extra_frag[i],
1070 control);
1071 if (ret)
1072 return IEEE80211_TX_FRAG_AGAIN;
1073 local->mdev->trans_start = jiffies;
1074 ieee80211_led_tx(local, 1);
1075 tx->u.tx.extra_frag[i] = NULL;
1076 }
1077 kfree(tx->u.tx.extra_frag);
1078 tx->u.tx.extra_frag = NULL;
1079 }
1080 return IEEE80211_TX_OK;
1081}
1082
1083static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
Johannes Bergf9d540e2007-09-28 14:02:09 +02001084 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001085{
1086 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1087 struct sta_info *sta;
1088 ieee80211_tx_handler *handler;
1089 struct ieee80211_txrx_data tx;
1090 ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1091 int ret, i;
1092
1093 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1094
1095 if (unlikely(skb->len < 10)) {
1096 dev_kfree_skb(skb);
1097 return 0;
1098 }
1099
Johannes Berg58d41852007-09-26 17:53:18 +02001100 /* initialises tx */
Johannes Berge2ebc742007-07-27 15:43:22 +02001101 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1102
1103 if (res_prepare == TXRX_DROP) {
1104 dev_kfree_skb(skb);
1105 return 0;
1106 }
1107
Johannes Bergd4e46a32007-09-14 11:10:24 -04001108 /*
1109 * key references are protected using RCU and this requires that
1110 * we are in a read-site RCU section during receive processing
1111 */
1112 rcu_read_lock();
1113
Johannes Berge2ebc742007-07-27 15:43:22 +02001114 sta = tx.sta;
Johannes Berge2ebc742007-07-27 15:43:22 +02001115 tx.u.tx.mode = local->hw.conf.mode;
1116
Johannes Berg58d41852007-09-26 17:53:18 +02001117 for (handler = local->tx_handlers; *handler != NULL;
1118 handler++) {
1119 res = (*handler)(&tx);
1120 if (res != TXRX_CONTINUE)
1121 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02001122 }
1123
1124 skb = tx.skb; /* handlers are allowed to change skb */
1125
1126 if (sta)
1127 sta_info_put(sta);
1128
1129 if (unlikely(res == TXRX_DROP)) {
1130 I802_DEBUG_INC(local->tx_handlers_drop);
1131 goto drop;
1132 }
1133
1134 if (unlikely(res == TXRX_QUEUED)) {
1135 I802_DEBUG_INC(local->tx_handlers_queued);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001136 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001137 return 0;
1138 }
1139
1140 if (tx.u.tx.extra_frag) {
1141 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1142 int next_len, dur;
1143 struct ieee80211_hdr *hdr =
1144 (struct ieee80211_hdr *)
1145 tx.u.tx.extra_frag[i]->data;
1146
1147 if (i + 1 < tx.u.tx.num_extra_frag) {
1148 next_len = tx.u.tx.extra_frag[i + 1]->len;
1149 } else {
1150 next_len = 0;
1151 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1152 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1153 }
1154 dur = ieee80211_duration(&tx, 0, next_len);
1155 hdr->duration_id = cpu_to_le16(dur);
1156 }
1157 }
1158
1159retry:
1160 ret = __ieee80211_tx(local, skb, &tx);
1161 if (ret) {
1162 struct ieee80211_tx_stored_packet *store =
1163 &local->pending_packet[control->queue];
1164
1165 if (ret == IEEE80211_TX_FRAG_AGAIN)
1166 skb = NULL;
1167 set_bit(IEEE80211_LINK_STATE_PENDING,
1168 &local->state[control->queue]);
1169 smp_mb();
1170 /* When the driver gets out of buffers during sending of
1171 * fragments and calls ieee80211_stop_queue, there is
1172 * a small window between IEEE80211_LINK_STATE_XOFF and
1173 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1174 * gets available in that window (i.e. driver calls
1175 * ieee80211_wake_queue), we would end up with ieee80211_tx
1176 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1177 * continuing transmitting here when that situation is
1178 * possible to have happened. */
1179 if (!__ieee80211_queue_stopped(local, control->queue)) {
1180 clear_bit(IEEE80211_LINK_STATE_PENDING,
1181 &local->state[control->queue]);
1182 goto retry;
1183 }
1184 memcpy(&store->control, control,
1185 sizeof(struct ieee80211_tx_control));
1186 store->skb = skb;
1187 store->extra_frag = tx.u.tx.extra_frag;
1188 store->num_extra_frag = tx.u.tx.num_extra_frag;
1189 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1190 store->last_frag_rate = tx.u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001191 store->last_frag_rate_ctrl_probe =
1192 !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
Johannes Berge2ebc742007-07-27 15:43:22 +02001193 }
Johannes Bergd4e46a32007-09-14 11:10:24 -04001194 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001195 return 0;
1196
1197 drop:
1198 if (skb)
1199 dev_kfree_skb(skb);
1200 for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1201 if (tx.u.tx.extra_frag[i])
1202 dev_kfree_skb(tx.u.tx.extra_frag[i]);
1203 kfree(tx.u.tx.extra_frag);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001204 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001205 return 0;
1206}
1207
1208/* device xmit handlers */
1209
1210int ieee80211_master_start_xmit(struct sk_buff *skb,
1211 struct net_device *dev)
1212{
1213 struct ieee80211_tx_control control;
1214 struct ieee80211_tx_packet_data *pkt_data;
1215 struct net_device *odev = NULL;
1216 struct ieee80211_sub_if_data *osdata;
1217 int headroom;
1218 int ret;
1219
1220 /*
1221 * copy control out of the skb so other people can use skb->cb
1222 */
1223 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1224 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1225
1226 if (pkt_data->ifindex)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001227 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001228 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1229 dev_put(odev);
1230 odev = NULL;
1231 }
1232 if (unlikely(!odev)) {
1233#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1234 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1235 "originating device\n", dev->name);
1236#endif
1237 dev_kfree_skb(skb);
1238 return 0;
1239 }
1240 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1241
1242 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1243 if (skb_headroom(skb) < headroom) {
1244 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1245 dev_kfree_skb(skb);
1246 dev_put(odev);
1247 return 0;
1248 }
1249 }
1250
1251 control.ifindex = odev->ifindex;
1252 control.type = osdata->type;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001253 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
Johannes Berge2ebc742007-07-27 15:43:22 +02001254 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001255 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
Johannes Berge2ebc742007-07-27 15:43:22 +02001256 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001257 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
Johannes Berge2ebc742007-07-27 15:43:22 +02001258 control.flags |= IEEE80211_TXCTL_REQUEUE;
1259 control.queue = pkt_data->queue;
1260
Johannes Bergf9d540e2007-09-28 14:02:09 +02001261 ret = ieee80211_tx(odev, skb, &control);
Johannes Berge2ebc742007-07-27 15:43:22 +02001262 dev_put(odev);
1263
1264 return ret;
1265}
1266
1267int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1268 struct net_device *dev)
1269{
1270 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1271 struct ieee80211_tx_packet_data *pkt_data;
1272 struct ieee80211_radiotap_header *prthdr =
1273 (struct ieee80211_radiotap_header *)skb->data;
Andy Green9b8a74e2007-07-27 15:43:24 +02001274 u16 len_rthdr;
Johannes Berge2ebc742007-07-27 15:43:22 +02001275
Andy Green9b8a74e2007-07-27 15:43:24 +02001276 /* check for not even having the fixed radiotap header part */
1277 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1278 goto fail; /* too short to be possibly valid */
1279
1280 /* is it a header version we can trust to find length from? */
1281 if (unlikely(prthdr->it_version))
1282 goto fail; /* only version 0 is supported */
1283
1284 /* then there must be a radiotap header with a length we can use */
1285 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1286
1287 /* does the skb contain enough to deliver on the alleged length? */
1288 if (unlikely(skb->len < len_rthdr))
1289 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001290
1291 skb->dev = local->mdev;
1292
1293 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1294 memset(pkt_data, 0, sizeof(*pkt_data));
Andy Green9b8a74e2007-07-27 15:43:24 +02001295 /* needed because we set skb device to master */
Johannes Berge2ebc742007-07-27 15:43:22 +02001296 pkt_data->ifindex = dev->ifindex;
Andy Green9b8a74e2007-07-27 15:43:24 +02001297
Jiri Slabye8bf9642007-08-28 17:01:54 -04001298 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001299
Johannes Berge2ebc742007-07-27 15:43:22 +02001300 /*
1301 * fix up the pointers accounting for the radiotap
1302 * header still being in there. We are being given
1303 * a precooked IEEE80211 header so no need for
1304 * normal processing
1305 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001306 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001307 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001308 * these are just fixed to the end of the rt area since we
1309 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001310 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001311 skb_set_network_header(skb, len_rthdr);
1312 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001313
Andy Green9b8a74e2007-07-27 15:43:24 +02001314 /* pass the radiotap header up to the next stage intact */
1315 dev_queue_xmit(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001316 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001317
1318fail:
1319 dev_kfree_skb(skb);
1320 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001321}
1322
1323/**
1324 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1325 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1326 * @skb: packet to be sent
1327 * @dev: incoming interface
1328 *
1329 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1330 * not be freed, and caller is responsible for either retrying later or freeing
1331 * skb).
1332 *
1333 * This function takes in an Ethernet header and encapsulates it with suitable
1334 * IEEE 802.11 header based on which interface the packet is coming in. The
1335 * encapsulated packet will then be passed to master interface, wlan#.11, for
1336 * transmission (through low-level driver).
1337 */
1338int ieee80211_subif_start_xmit(struct sk_buff *skb,
1339 struct net_device *dev)
1340{
1341 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1342 struct ieee80211_tx_packet_data *pkt_data;
1343 struct ieee80211_sub_if_data *sdata;
1344 int ret = 1, head_need;
1345 u16 ethertype, hdrlen, fc;
1346 struct ieee80211_hdr hdr;
1347 const u8 *encaps_data;
1348 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001349 int nh_pos, h_pos;
Johannes Berge2ebc742007-07-27 15:43:22 +02001350 struct sta_info *sta;
1351
1352 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1353 if (unlikely(skb->len < ETH_HLEN)) {
1354 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1355 dev->name, skb->len);
1356 ret = 0;
1357 goto fail;
1358 }
1359
1360 nh_pos = skb_network_header(skb) - skb->data;
1361 h_pos = skb_transport_header(skb) - skb->data;
1362
1363 /* convert Ethernet header to proper 802.11 header (based on
1364 * operation mode) */
1365 ethertype = (skb->data[12] << 8) | skb->data[13];
1366 /* TODO: handling for 802.1x authorized/unauthorized port */
1367 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1368
Johannes Bergcf966832007-08-28 17:01:54 -04001369 switch (sdata->type) {
1370 case IEEE80211_IF_TYPE_AP:
1371 case IEEE80211_IF_TYPE_VLAN:
Johannes Berge2ebc742007-07-27 15:43:22 +02001372 fc |= IEEE80211_FCTL_FROMDS;
1373 /* DA BSSID SA */
1374 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1375 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1376 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1377 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001378 break;
1379 case IEEE80211_IF_TYPE_WDS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001380 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1381 /* RA TA DA SA */
1382 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1383 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1384 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1385 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1386 hdrlen = 30;
Johannes Bergcf966832007-08-28 17:01:54 -04001387 break;
1388 case IEEE80211_IF_TYPE_STA:
Johannes Berge2ebc742007-07-27 15:43:22 +02001389 fc |= IEEE80211_FCTL_TODS;
1390 /* BSSID SA DA */
1391 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1392 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1393 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1394 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001395 break;
1396 case IEEE80211_IF_TYPE_IBSS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001397 /* DA SA BSSID */
1398 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1399 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1400 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1401 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001402 break;
1403 default:
Johannes Berge2ebc742007-07-27 15:43:22 +02001404 ret = 0;
1405 goto fail;
1406 }
1407
1408 /* receiver is QoS enabled, use a QoS type frame */
1409 sta = sta_info_get(local, hdr.addr1);
1410 if (sta) {
1411 if (sta->flags & WLAN_STA_WME) {
1412 fc |= IEEE80211_STYPE_QOS_DATA;
1413 hdrlen += 2;
1414 }
1415 sta_info_put(sta);
1416 }
1417
1418 hdr.frame_control = cpu_to_le16(fc);
1419 hdr.duration_id = 0;
1420 hdr.seq_ctrl = 0;
1421
1422 skip_header_bytes = ETH_HLEN;
1423 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1424 encaps_data = bridge_tunnel_header;
1425 encaps_len = sizeof(bridge_tunnel_header);
1426 skip_header_bytes -= 2;
1427 } else if (ethertype >= 0x600) {
1428 encaps_data = rfc1042_header;
1429 encaps_len = sizeof(rfc1042_header);
1430 skip_header_bytes -= 2;
1431 } else {
1432 encaps_data = NULL;
1433 encaps_len = 0;
1434 }
1435
1436 skb_pull(skb, skip_header_bytes);
1437 nh_pos -= skip_header_bytes;
1438 h_pos -= skip_header_bytes;
1439
1440 /* TODO: implement support for fragments so that there is no need to
1441 * reallocate and copy payload; it might be enough to support one
1442 * extra fragment that would be copied in the beginning of the frame
1443 * data.. anyway, it would be nice to include this into skb structure
1444 * somehow
1445 *
1446 * There are few options for this:
1447 * use skb->cb as an extra space for 802.11 header
1448 * allocate new buffer if not enough headroom
1449 * make sure that there is enough headroom in every skb by increasing
1450 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1451 * alloc_skb() (net/core/skbuff.c)
1452 */
1453 head_need = hdrlen + encaps_len + local->tx_headroom;
1454 head_need -= skb_headroom(skb);
1455
1456 /* We are going to modify skb data, so make a copy of it if happens to
1457 * be cloned. This could happen, e.g., with Linux bridge code passing
1458 * us broadcast frames. */
1459
1460 if (head_need > 0 || skb_cloned(skb)) {
1461#if 0
1462 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1463 "of headroom\n", dev->name, head_need);
1464#endif
1465
1466 if (skb_cloned(skb))
1467 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1468 else
1469 I802_DEBUG_INC(local->tx_expand_skb_head);
1470 /* Since we have to reallocate the buffer, make sure that there
1471 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1472 * before payload and 12 after). */
1473 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1474 12, GFP_ATOMIC)) {
1475 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1476 "\n", dev->name);
1477 goto fail;
1478 }
1479 }
1480
1481 if (encaps_data) {
1482 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1483 nh_pos += encaps_len;
1484 h_pos += encaps_len;
1485 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04001486
1487 if (fc & IEEE80211_STYPE_QOS_DATA) {
1488 __le16 *qos_control;
1489
1490 qos_control = (__le16*) skb_push(skb, 2);
1491 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1492 /*
1493 * Maybe we could actually set some fields here, for now just
1494 * initialise to zero to indicate no special operation.
1495 */
1496 *qos_control = 0;
1497 } else
1498 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1499
Johannes Berge2ebc742007-07-27 15:43:22 +02001500 nh_pos += hdrlen;
1501 h_pos += hdrlen;
1502
1503 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1504 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1505 pkt_data->ifindex = dev->ifindex;
Johannes Berge2ebc742007-07-27 15:43:22 +02001506
1507 skb->dev = local->mdev;
Stephen Hemminger68aae112007-08-24 11:29:34 -07001508 dev->stats.tx_packets++;
1509 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001510
1511 /* Update skb pointers to various headers since this modified frame
1512 * is going to go through Linux networking code that may potentially
1513 * need things like pointer to IP header. */
1514 skb_set_mac_header(skb, 0);
1515 skb_set_network_header(skb, nh_pos);
1516 skb_set_transport_header(skb, h_pos);
1517
1518 dev->trans_start = jiffies;
1519 dev_queue_xmit(skb);
1520
1521 return 0;
1522
1523 fail:
1524 if (!ret)
1525 dev_kfree_skb(skb);
1526
1527 return ret;
1528}
1529
Johannes Berge2ebc742007-07-27 15:43:22 +02001530/* helper functions for pending packets for when queues are stopped */
1531
1532void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1533{
1534 int i, j;
1535 struct ieee80211_tx_stored_packet *store;
1536
1537 for (i = 0; i < local->hw.queues; i++) {
1538 if (!__ieee80211_queue_pending(local, i))
1539 continue;
1540 store = &local->pending_packet[i];
1541 kfree_skb(store->skb);
1542 for (j = 0; j < store->num_extra_frag; j++)
1543 kfree_skb(store->extra_frag[j]);
1544 kfree(store->extra_frag);
1545 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1546 }
1547}
1548
1549void ieee80211_tx_pending(unsigned long data)
1550{
1551 struct ieee80211_local *local = (struct ieee80211_local *)data;
1552 struct net_device *dev = local->mdev;
1553 struct ieee80211_tx_stored_packet *store;
1554 struct ieee80211_txrx_data tx;
1555 int i, ret, reschedule = 0;
1556
1557 netif_tx_lock_bh(dev);
1558 for (i = 0; i < local->hw.queues; i++) {
1559 if (__ieee80211_queue_stopped(local, i))
1560 continue;
1561 if (!__ieee80211_queue_pending(local, i)) {
1562 reschedule = 1;
1563 continue;
1564 }
1565 store = &local->pending_packet[i];
1566 tx.u.tx.control = &store->control;
1567 tx.u.tx.extra_frag = store->extra_frag;
1568 tx.u.tx.num_extra_frag = store->num_extra_frag;
1569 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1570 tx.u.tx.last_frag_rate = store->last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001571 tx.flags = 0;
1572 if (store->last_frag_rate_ctrl_probe)
1573 tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +02001574 ret = __ieee80211_tx(local, store->skb, &tx);
1575 if (ret) {
1576 if (ret == IEEE80211_TX_FRAG_AGAIN)
1577 store->skb = NULL;
1578 } else {
1579 clear_bit(IEEE80211_LINK_STATE_PENDING,
1580 &local->state[i]);
1581 reschedule = 1;
1582 }
1583 }
1584 netif_tx_unlock_bh(dev);
1585 if (reschedule) {
1586 if (!ieee80211_qdisc_installed(dev)) {
1587 if (!__ieee80211_queue_stopped(local, 0))
1588 netif_wake_queue(dev);
1589 } else
1590 netif_schedule(dev);
1591 }
1592}
1593
1594/* functions for drivers to get certain frames */
1595
1596static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1597 struct ieee80211_if_ap *bss,
1598 struct sk_buff *skb)
1599{
1600 u8 *pos, *tim;
1601 int aid0 = 0;
1602 int i, have_bits = 0, n1, n2;
1603
1604 /* Generate bitmap for TIM only if there are any STAs in power save
1605 * mode. */
Michael Wube8755e2007-07-27 15:43:23 +02001606 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001607 if (atomic_read(&bss->num_sta_ps) > 0)
1608 /* in the hope that this is faster than
1609 * checking byte-for-byte */
1610 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1611 IEEE80211_MAX_AID+1);
1612
1613 if (bss->dtim_count == 0)
1614 bss->dtim_count = bss->dtim_period - 1;
1615 else
1616 bss->dtim_count--;
1617
1618 tim = pos = (u8 *) skb_put(skb, 6);
1619 *pos++ = WLAN_EID_TIM;
1620 *pos++ = 4;
1621 *pos++ = bss->dtim_count;
1622 *pos++ = bss->dtim_period;
1623
1624 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1625 aid0 = 1;
1626
1627 if (have_bits) {
1628 /* Find largest even number N1 so that bits numbered 1 through
1629 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1630 * (N2 + 1) x 8 through 2007 are 0. */
1631 n1 = 0;
1632 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1633 if (bss->tim[i]) {
1634 n1 = i & 0xfe;
1635 break;
1636 }
1637 }
1638 n2 = n1;
1639 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1640 if (bss->tim[i]) {
1641 n2 = i;
1642 break;
1643 }
1644 }
1645
1646 /* Bitmap control */
1647 *pos++ = n1 | aid0;
1648 /* Part Virt Bitmap */
1649 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1650
1651 tim[1] = n2 - n1 + 4;
1652 skb_put(skb, n2 - n1);
1653 } else {
1654 *pos++ = aid0; /* Bitmap control */
1655 *pos++ = 0; /* Part Virt Bitmap */
1656 }
Michael Wube8755e2007-07-27 15:43:23 +02001657 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001658}
1659
1660struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id,
1661 struct ieee80211_tx_control *control)
1662{
1663 struct ieee80211_local *local = hw_to_local(hw);
1664 struct sk_buff *skb;
1665 struct net_device *bdev;
1666 struct ieee80211_sub_if_data *sdata = NULL;
1667 struct ieee80211_if_ap *ap = NULL;
1668 struct ieee80211_rate *rate;
1669 struct rate_control_extra extra;
1670 u8 *b_head, *b_tail;
1671 int bh_len, bt_len;
1672
Eric W. Biederman881d9662007-09-17 11:56:21 -07001673 bdev = dev_get_by_index(&init_net, if_id);
Johannes Berge2ebc742007-07-27 15:43:22 +02001674 if (bdev) {
1675 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1676 ap = &sdata->u.ap;
1677 dev_put(bdev);
1678 }
1679
1680 if (!ap || sdata->type != IEEE80211_IF_TYPE_AP ||
1681 !ap->beacon_head) {
1682#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1683 if (net_ratelimit())
1684 printk(KERN_DEBUG "no beacon data avail for idx=%d "
1685 "(%s)\n", if_id, bdev ? bdev->name : "N/A");
1686#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1687 return NULL;
1688 }
1689
1690 /* Assume we are generating the normal beacon locally */
1691 b_head = ap->beacon_head;
1692 b_tail = ap->beacon_tail;
1693 bh_len = ap->beacon_head_len;
1694 bt_len = ap->beacon_tail_len;
1695
1696 skb = dev_alloc_skb(local->tx_headroom +
1697 bh_len + bt_len + 256 /* maximum TIM len */);
1698 if (!skb)
1699 return NULL;
1700
1701 skb_reserve(skb, local->tx_headroom);
1702 memcpy(skb_put(skb, bh_len), b_head, bh_len);
1703
1704 ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1705
1706 ieee80211_beacon_add_tim(local, ap, skb);
1707
1708 if (b_tail) {
1709 memcpy(skb_put(skb, bt_len), b_tail, bt_len);
1710 }
1711
1712 if (control) {
1713 memset(&extra, 0, sizeof(extra));
1714 extra.mode = local->oper_hw_mode;
1715
1716 rate = rate_control_get_rate(local, local->mdev, skb, &extra);
1717 if (!rate) {
1718 if (net_ratelimit()) {
1719 printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001720 "found\n", wiphy_name(local->hw.wiphy));
Johannes Berge2ebc742007-07-27 15:43:22 +02001721 }
1722 dev_kfree_skb(skb);
1723 return NULL;
1724 }
1725
Jiri Slaby13262ff2007-08-28 17:01:54 -04001726 control->tx_rate =
1727 ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
1728 (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
Johannes Berge2ebc742007-07-27 15:43:22 +02001729 rate->val2 : rate->val;
1730 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1731 control->power_level = local->hw.conf.power_level;
1732 control->flags |= IEEE80211_TXCTL_NO_ACK;
1733 control->retry_limit = 1;
1734 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1735 }
1736
1737 ap->num_beacons++;
1738 return skb;
1739}
1740EXPORT_SYMBOL(ieee80211_beacon_get);
1741
Daniel Drake7e9ed182007-07-27 15:43:24 +02001742void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
Johannes Berge2ebc742007-07-27 15:43:22 +02001743 const void *frame, size_t frame_len,
1744 const struct ieee80211_tx_control *frame_txctl,
1745 struct ieee80211_rts *rts)
1746{
1747 const struct ieee80211_hdr *hdr = frame;
1748 u16 fctl;
1749
1750 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1751 rts->frame_control = cpu_to_le16(fctl);
Daniel Drake7e9ed182007-07-27 15:43:24 +02001752 rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001753 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1754 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1755}
1756EXPORT_SYMBOL(ieee80211_rts_get);
1757
Daniel Drake7e9ed182007-07-27 15:43:24 +02001758void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
Johannes Berge2ebc742007-07-27 15:43:22 +02001759 const void *frame, size_t frame_len,
1760 const struct ieee80211_tx_control *frame_txctl,
1761 struct ieee80211_cts *cts)
1762{
1763 const struct ieee80211_hdr *hdr = frame;
1764 u16 fctl;
1765
1766 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1767 cts->frame_control = cpu_to_le16(fctl);
Daniel Drake7e9ed182007-07-27 15:43:24 +02001768 cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001769 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1770}
1771EXPORT_SYMBOL(ieee80211_ctstoself_get);
1772
1773struct sk_buff *
1774ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
1775 struct ieee80211_tx_control *control)
1776{
1777 struct ieee80211_local *local = hw_to_local(hw);
1778 struct sk_buff *skb;
1779 struct sta_info *sta;
1780 ieee80211_tx_handler *handler;
1781 struct ieee80211_txrx_data tx;
1782 ieee80211_txrx_result res = TXRX_DROP;
1783 struct net_device *bdev;
1784 struct ieee80211_sub_if_data *sdata;
1785 struct ieee80211_if_ap *bss = NULL;
1786
Eric W. Biederman881d9662007-09-17 11:56:21 -07001787 bdev = dev_get_by_index(&init_net, if_id);
Johannes Berge2ebc742007-07-27 15:43:22 +02001788 if (bdev) {
1789 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1790 bss = &sdata->u.ap;
1791 dev_put(bdev);
1792 }
1793 if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head)
1794 return NULL;
1795
1796 if (bss->dtim_count != 0)
1797 return NULL; /* send buffered bc/mc only after DTIM beacon */
1798 memset(control, 0, sizeof(*control));
1799 while (1) {
1800 skb = skb_dequeue(&bss->ps_bc_buf);
1801 if (!skb)
1802 return NULL;
1803 local->total_ps_buffered--;
1804
1805 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1806 struct ieee80211_hdr *hdr =
1807 (struct ieee80211_hdr *) skb->data;
1808 /* more buffered multicast/broadcast frames ==> set
1809 * MoreData flag in IEEE 802.11 header to inform PS
1810 * STAs */
1811 hdr->frame_control |=
1812 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1813 }
1814
Johannes Berg58d41852007-09-26 17:53:18 +02001815 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
Johannes Berge2ebc742007-07-27 15:43:22 +02001816 break;
1817 dev_kfree_skb_any(skb);
1818 }
1819 sta = tx.sta;
Jiri Slabybadffb72007-08-28 17:01:54 -04001820 tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
Tomas Winkler475fa492007-09-02 22:58:21 +03001821 tx.u.tx.mode = local->hw.conf.mode;
Johannes Berge2ebc742007-07-27 15:43:22 +02001822
1823 for (handler = local->tx_handlers; *handler != NULL; handler++) {
1824 res = (*handler)(&tx);
1825 if (res == TXRX_DROP || res == TXRX_QUEUED)
1826 break;
1827 }
1828 dev_put(tx.dev);
1829 skb = tx.skb; /* handlers are allowed to change skb */
1830
1831 if (res == TXRX_DROP) {
1832 I802_DEBUG_INC(local->tx_handlers_drop);
1833 dev_kfree_skb(skb);
1834 skb = NULL;
1835 } else if (res == TXRX_QUEUED) {
1836 I802_DEBUG_INC(local->tx_handlers_queued);
1837 skb = NULL;
1838 }
1839
1840 if (sta)
1841 sta_info_put(sta);
1842
1843 return skb;
1844}
1845EXPORT_SYMBOL(ieee80211_get_buffered_bc);