blob: 12c15588af6868f82132ff2bb5918d6f75ca6694 [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
Johannes Berge2ebc742007-07-27 15:43:22 +0200423static ieee80211_txrx_result
424ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
425{
Jiri Slabybadffb72007-08-28 17:01:54 -0400426 if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200427 return TXRX_CONTINUE;
428
Jiri Slabybadffb72007-08-28 17:01:54 -0400429 if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200430 return ieee80211_tx_h_unicast_ps_buf(tx);
431 else
432 return ieee80211_tx_h_multicast_ps_buf(tx);
433}
434
Johannes Berge2ebc742007-07-27 15:43:22 +0200435static ieee80211_txrx_result
436ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
437{
Johannes Bergd4e46a32007-09-14 11:10:24 -0400438 struct ieee80211_key *key;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +0200439 const struct ieee80211_hdr *hdr;
440 u16 fc;
441
442 hdr = (const struct ieee80211_hdr *) tx->skb->data;
443 fc = le16_to_cpu(hdr->frame_control);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400444
Johannes Berge2ebc742007-07-27 15:43:22 +0200445 if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
446 tx->key = NULL;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400447 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
448 tx->key = key;
449 else if ((key = rcu_dereference(tx->sdata->default_key)))
450 tx->key = key;
Johannes Berge2ebc742007-07-27 15:43:22 +0200451 else if (tx->sdata->drop_unencrypted &&
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +0200452 !(tx->sdata->eapol &&
453 ieee80211_is_eapol(tx->skb, ieee80211_get_hdrlen(fc)))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200454 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
455 return TXRX_DROP;
Johannes Berg6a7664d2007-09-14 11:10:25 -0400456 } else {
Johannes Berge2ebc742007-07-27 15:43:22 +0200457 tx->key = NULL;
Johannes Berg6a7664d2007-09-14 11:10:25 -0400458 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
459 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200460
461 if (tx->key) {
462 tx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400463 /* TODO: add threshold stuff again */
Johannes Berge2ebc742007-07-27 15:43:22 +0200464 }
465
466 return TXRX_CONTINUE;
467}
468
469static ieee80211_txrx_result
470ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
471{
472 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
473 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
474 struct sk_buff **frags, *first, *frag;
475 int i;
476 u16 seq;
477 u8 *pos;
478 int frag_threshold = tx->local->fragmentation_threshold;
479
Jiri Slabybadffb72007-08-28 17:01:54 -0400480 if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200481 return TXRX_CONTINUE;
482
483 first = tx->skb;
484
485 hdrlen = ieee80211_get_hdrlen(tx->fc);
486 payload_len = first->len - hdrlen;
487 per_fragm = frag_threshold - hdrlen - FCS_LEN;
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700488 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
Johannes Berge2ebc742007-07-27 15:43:22 +0200489
490 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
491 if (!frags)
492 goto fail;
493
494 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
495 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
496 pos = first->data + hdrlen + per_fragm;
497 left = payload_len - per_fragm;
498 for (i = 0; i < num_fragm - 1; i++) {
499 struct ieee80211_hdr *fhdr;
500 size_t copylen;
501
502 if (left <= 0)
503 goto fail;
504
505 /* reserve enough extra head and tail room for possible
506 * encryption */
507 frag = frags[i] =
508 dev_alloc_skb(tx->local->tx_headroom +
509 frag_threshold +
510 IEEE80211_ENCRYPT_HEADROOM +
511 IEEE80211_ENCRYPT_TAILROOM);
512 if (!frag)
513 goto fail;
514 /* Make sure that all fragments use the same priority so
515 * that they end up using the same TX queue */
516 frag->priority = first->priority;
517 skb_reserve(frag, tx->local->tx_headroom +
518 IEEE80211_ENCRYPT_HEADROOM);
519 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
520 memcpy(fhdr, first->data, hdrlen);
521 if (i == num_fragm - 2)
522 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
523 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
524 copylen = left > per_fragm ? per_fragm : left;
525 memcpy(skb_put(frag, copylen), pos, copylen);
526
527 pos += copylen;
528 left -= copylen;
529 }
530 skb_trim(first, hdrlen + per_fragm);
531
532 tx->u.tx.num_extra_frag = num_fragm - 1;
533 tx->u.tx.extra_frag = frags;
534
535 return TXRX_CONTINUE;
536
537 fail:
538 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
539 if (frags) {
540 for (i = 0; i < num_fragm - 1; i++)
541 if (frags[i])
542 dev_kfree_skb(frags[i]);
543 kfree(frags);
544 }
545 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
546 return TXRX_DROP;
547}
548
Johannes Berge2ebc742007-07-27 15:43:22 +0200549static ieee80211_txrx_result
Johannes Berg6a22a592007-09-26 15:19:41 +0200550ieee80211_tx_h_encrypt(struct ieee80211_txrx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200551{
Johannes Berg6a22a592007-09-26 15:19:41 +0200552 if (!tx->key)
Johannes Berge2ebc742007-07-27 15:43:22 +0200553 return TXRX_CONTINUE;
554
Johannes Berg6a22a592007-09-26 15:19:41 +0200555 switch (tx->key->conf.alg) {
556 case ALG_WEP:
557 return ieee80211_crypto_wep_encrypt(tx);
558 case ALG_TKIP:
559 return ieee80211_crypto_tkip_encrypt(tx);
560 case ALG_CCMP:
561 return ieee80211_crypto_ccmp_encrypt(tx);
Johannes Berge2ebc742007-07-27 15:43:22 +0200562 }
563
Johannes Berg6a22a592007-09-26 15:19:41 +0200564 /* not reached */
565 WARN_ON(1);
566 return TXRX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200567}
568
569static ieee80211_txrx_result
570ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
571{
572 struct rate_control_extra extra;
573
Johannes Berg58d41852007-09-26 17:53:18 +0200574 if (likely(!tx->u.tx.rate)) {
575 memset(&extra, 0, sizeof(extra));
576 extra.mode = tx->u.tx.mode;
577 extra.ethertype = tx->ethertype;
Johannes Berge2ebc742007-07-27 15:43:22 +0200578
Johannes Berg58d41852007-09-26 17:53:18 +0200579 tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev,
580 tx->skb, &extra);
581 if (unlikely(extra.probe != NULL)) {
582 tx->u.tx.control->flags |=
583 IEEE80211_TXCTL_RATE_CTRL_PROBE;
584 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
585 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
586 tx->u.tx.rate = extra.probe;
587 } else
588 tx->u.tx.control->alt_retry_rate = -1;
589
590 if (!tx->u.tx.rate)
591 return TXRX_DROP;
592 } else
Johannes Berge2ebc742007-07-27 15:43:22 +0200593 tx->u.tx.control->alt_retry_rate = -1;
Johannes Berg58d41852007-09-26 17:53:18 +0200594
Johannes Berge2ebc742007-07-27 15:43:22 +0200595 if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400596 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400597 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200598 tx->u.tx.last_frag_rate = tx->u.tx.rate;
Jiri Slabybadffb72007-08-28 17:01:54 -0400599 if (extra.probe)
600 tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
601 else
602 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +0200603 tx->u.tx.rate = extra.nonerp;
604 tx->u.tx.control->rate = extra.nonerp;
605 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
606 } else {
607 tx->u.tx.last_frag_rate = tx->u.tx.rate;
608 tx->u.tx.control->rate = tx->u.tx.rate;
609 }
610 tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
Johannes Berge2ebc742007-07-27 15:43:22 +0200611
612 return TXRX_CONTINUE;
613}
614
615static ieee80211_txrx_result
616ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
617{
618 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200619 u16 fc = le16_to_cpu(hdr->frame_control);
Johannes Berge2ebc742007-07-27 15:43:22 +0200620 u16 dur;
621 struct ieee80211_tx_control *control = tx->u.tx.control;
622 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
623
Johannes Berg58d41852007-09-26 17:53:18 +0200624 if (!control->retry_limit) {
625 if (!is_multicast_ether_addr(hdr->addr1)) {
626 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
627 && tx->local->rts_threshold <
628 IEEE80211_MAX_RTS_THRESHOLD) {
629 control->flags |=
630 IEEE80211_TXCTL_USE_RTS_CTS;
631 control->flags |=
632 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
633 control->retry_limit =
634 tx->local->long_retry_limit;
635 } else {
636 control->retry_limit =
637 tx->local->short_retry_limit;
638 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200639 } else {
Johannes Berg58d41852007-09-26 17:53:18 +0200640 control->retry_limit = 1;
Johannes Berge2ebc742007-07-27 15:43:22 +0200641 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200642 }
643
Jiri Slabybadffb72007-08-28 17:01:54 -0400644 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200645 /* Do not use multiple retry rates when sending fragmented
646 * frames.
647 * TODO: The last fragment could still use multiple retry
648 * rates. */
649 control->alt_retry_rate = -1;
650 }
651
652 /* Use CTS protection for unicast frames sent using extended rates if
653 * there are associated non-ERP stations and RTS/CTS is not configured
654 * for the frame. */
655 if (mode->mode == MODE_IEEE80211G &&
656 (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400657 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400658 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200659 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
660 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
661
Daniel Drake7e9ed182007-07-27 15:43:24 +0200662 /* Transmit data frames using short preambles if the driver supports
663 * short preambles at the selected rate and short preambles are
664 * available on the network at the current point in time. */
665 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
666 (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400667 (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
Daniel Drake7e9ed182007-07-27 15:43:24 +0200668 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
669 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
670 }
671
Johannes Berge2ebc742007-07-27 15:43:22 +0200672 /* Setup duration field for the first fragment of the frame. Duration
673 * for remaining fragments will be updated when they are being sent
674 * to low-level driver in ieee80211_tx(). */
675 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
Jiri Slabybadffb72007-08-28 17:01:54 -0400676 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
677 tx->u.tx.extra_frag[0]->len : 0);
Johannes Berge2ebc742007-07-27 15:43:22 +0200678 hdr->duration_id = cpu_to_le16(dur);
679
680 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
681 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
682 struct ieee80211_rate *rate;
683
684 /* Do not use multiple retry rates when using RTS/CTS */
685 control->alt_retry_rate = -1;
686
687 /* Use min(data rate, max base rate) as CTS/RTS rate */
688 rate = tx->u.tx.rate;
689 while (rate > mode->rates &&
690 !(rate->flags & IEEE80211_RATE_BASIC))
691 rate--;
692
693 control->rts_cts_rate = rate->val;
694 control->rts_rate = rate;
695 }
696
697 if (tx->sta) {
698 tx->sta->tx_packets++;
699 tx->sta->tx_fragments++;
700 tx->sta->tx_bytes += tx->skb->len;
701 if (tx->u.tx.extra_frag) {
702 int i;
703 tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
704 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
705 tx->sta->tx_bytes +=
706 tx->u.tx.extra_frag[i]->len;
707 }
708 }
709 }
710
Johannes Berg6a7664d2007-09-14 11:10:25 -0400711 /*
712 * Tell hardware to not encrypt when we had sw crypto.
713 * Because we use the same flag to internally indicate that
714 * no (software) encryption should be done, we have to set it
715 * after all crypto handlers.
716 */
717 if (tx->key && !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
718 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
719
Johannes Berge2ebc742007-07-27 15:43:22 +0200720 return TXRX_CONTINUE;
721}
722
723static ieee80211_txrx_result
724ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
725{
726 struct ieee80211_local *local = tx->local;
727 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
728 struct sk_buff *skb = tx->skb;
729 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
730 u32 load = 0, hdrtime;
731
732 /* TODO: this could be part of tx_status handling, so that the number
733 * of retries would be known; TX rate should in that case be stored
734 * somewhere with the packet */
735
736 /* Estimate total channel use caused by this frame */
737
738 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
739 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
740
741 if (mode->mode == MODE_IEEE80211A ||
Johannes Berge2ebc742007-07-27 15:43:22 +0200742 (mode->mode == MODE_IEEE80211G &&
743 tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
744 hdrtime = CHAN_UTIL_HDR_SHORT;
745 else
746 hdrtime = CHAN_UTIL_HDR_LONG;
747
748 load = hdrtime;
749 if (!is_multicast_ether_addr(hdr->addr1))
750 load += hdrtime;
751
752 if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
753 load += 2 * hdrtime;
754 else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
755 load += hdrtime;
756
757 load += skb->len * tx->u.tx.rate->rate_inv;
758
759 if (tx->u.tx.extra_frag) {
760 int i;
761 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
762 load += 2 * hdrtime;
763 load += tx->u.tx.extra_frag[i]->len *
764 tx->u.tx.rate->rate;
765 }
766 }
767
768 /* Divide channel_use by 8 to avoid wrapping around the counter */
769 load >>= CHAN_UTIL_SHIFT;
770 local->channel_use_raw += load;
771 if (tx->sta)
772 tx->sta->channel_use_raw += load;
773 tx->sdata->channel_use_raw += load;
774
775 return TXRX_CONTINUE;
776}
777
778/* TODO: implement register/unregister functions for adding TX/RX handlers
779 * into ordered list */
780
781ieee80211_tx_handler ieee80211_tx_handlers[] =
782{
783 ieee80211_tx_h_check_assoc,
784 ieee80211_tx_h_sequence,
785 ieee80211_tx_h_ps_buf,
786 ieee80211_tx_h_select_key,
787 ieee80211_tx_h_michael_mic_add,
788 ieee80211_tx_h_fragment,
Johannes Berg6a22a592007-09-26 15:19:41 +0200789 ieee80211_tx_h_encrypt,
Johannes Berge2ebc742007-07-27 15:43:22 +0200790 ieee80211_tx_h_rate_ctrl,
791 ieee80211_tx_h_misc,
792 ieee80211_tx_h_load_stats,
793 NULL
794};
795
796/* actual transmit path */
797
798/*
799 * deal with packet injection down monitor interface
800 * with Radiotap Header -- only called for monitor mode interface
801 */
802static ieee80211_txrx_result
Johannes Berg58d41852007-09-26 17:53:18 +0200803__ieee80211_parse_tx_radiotap(struct ieee80211_txrx_data *tx,
804 struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +0200805{
806 /*
807 * this is the moment to interpret and discard the radiotap header that
808 * must be at the start of the packet injected in Monitor mode
809 *
810 * Need to take some care with endian-ness since radiotap
811 * args are little-endian
812 */
813
814 struct ieee80211_radiotap_iterator iterator;
815 struct ieee80211_radiotap_header *rthdr =
816 (struct ieee80211_radiotap_header *) skb->data;
817 struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
818 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
Johannes Berg58d41852007-09-26 17:53:18 +0200819 struct ieee80211_tx_control *control = tx->u.tx.control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200820
Johannes Berg58d41852007-09-26 17:53:18 +0200821 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
822 tx->flags |= IEEE80211_TXRXD_TX_INJECTED;
823 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200824
825 /*
826 * for every radiotap entry that is present
827 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
828 * entries present, or -EINVAL on error)
829 */
830
831 while (!ret) {
832 int i, target_rate;
833
834 ret = ieee80211_radiotap_iterator_next(&iterator);
835
836 if (ret)
837 continue;
838
839 /* see if this argument is something we can use */
840 switch (iterator.this_arg_index) {
841 /*
842 * You must take care when dereferencing iterator.this_arg
843 * for multibyte types... the pointer is not aligned. Use
844 * get_unaligned((type *)iterator.this_arg) to dereference
845 * iterator.this_arg for type "type" safely on all arches.
846 */
847 case IEEE80211_RADIOTAP_RATE:
848 /*
849 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
850 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
851 */
852 target_rate = (*iterator.this_arg) * 5;
853 for (i = 0; i < mode->num_rates; i++) {
854 struct ieee80211_rate *r = &mode->rates[i];
855
Johannes Berg58d41852007-09-26 17:53:18 +0200856 if (r->rate == target_rate) {
857 tx->u.tx.rate = r;
858 break;
859 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200860 }
861 break;
862
863 case IEEE80211_RADIOTAP_ANTENNA:
864 /*
865 * radiotap uses 0 for 1st ant, mac80211 is 1 for
866 * 1st ant
867 */
868 control->antenna_sel_tx = (*iterator.this_arg) + 1;
869 break;
870
871 case IEEE80211_RADIOTAP_DBM_TX_POWER:
872 control->power_level = *iterator.this_arg;
873 break;
874
875 case IEEE80211_RADIOTAP_FLAGS:
876 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
877 /*
878 * this indicates that the skb we have been
879 * handed has the 32-bit FCS CRC at the end...
880 * we should react to that by snipping it off
881 * because it will be recomputed and added
882 * on transmission
883 */
884 if (skb->len < (iterator.max_length + FCS_LEN))
885 return TXRX_DROP;
886
887 skb_trim(skb, skb->len - FCS_LEN);
888 }
Johannes Berg58d41852007-09-26 17:53:18 +0200889 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
890 control->flags &=
891 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
892 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
893 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200894 break;
895
Johannes Berg58d41852007-09-26 17:53:18 +0200896 /*
897 * Please update the file
898 * Documentation/networking/mac80211-injection.txt
899 * when parsing new fields here.
900 */
901
Johannes Berge2ebc742007-07-27 15:43:22 +0200902 default:
903 break;
904 }
905 }
906
907 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
908 return TXRX_DROP;
909
910 /*
911 * remove the radiotap header
912 * iterator->max_length was sanity-checked against
913 * skb->len by iterator init
914 */
915 skb_pull(skb, iterator.max_length);
916
917 return TXRX_CONTINUE;
918}
919
Johannes Berg58d41852007-09-26 17:53:18 +0200920/*
921 * initialises @tx
922 */
923static ieee80211_txrx_result
Johannes Berge2ebc742007-07-27 15:43:22 +0200924__ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
925 struct sk_buff *skb,
926 struct net_device *dev,
927 struct ieee80211_tx_control *control)
928{
929 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg58d41852007-09-26 17:53:18 +0200930 struct ieee80211_hdr *hdr;
Johannes Berge2ebc742007-07-27 15:43:22 +0200931 struct ieee80211_sub_if_data *sdata;
932 ieee80211_txrx_result res = TXRX_CONTINUE;
933
934 int hdrlen;
935
936 memset(tx, 0, sizeof(*tx));
937 tx->skb = skb;
938 tx->dev = dev; /* use original interface */
939 tx->local = local;
940 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg58d41852007-09-26 17:53:18 +0200941 tx->u.tx.control = control;
Johannes Berge2ebc742007-07-27 15:43:22 +0200942 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200943 * Set this flag (used below to indicate "automatic fragmentation"),
944 * it will be cleared/left by radiotap as desired.
Johannes Berge2ebc742007-07-27 15:43:22 +0200945 */
Johannes Berg58d41852007-09-26 17:53:18 +0200946 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200947
948 /* process and remove the injection radiotap header */
949 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
950 if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) {
Johannes Berg58d41852007-09-26 17:53:18 +0200951 if (__ieee80211_parse_tx_radiotap(tx, skb) == TXRX_DROP)
Johannes Berge2ebc742007-07-27 15:43:22 +0200952 return TXRX_DROP;
Johannes Berg58d41852007-09-26 17:53:18 +0200953
Johannes Berge2ebc742007-07-27 15:43:22 +0200954 /*
Johannes Berg58d41852007-09-26 17:53:18 +0200955 * __ieee80211_parse_tx_radiotap has now removed
956 * the radiotap header that was present and pre-filled
957 * 'tx' with tx control information.
Johannes Berge2ebc742007-07-27 15:43:22 +0200958 */
Johannes Berge2ebc742007-07-27 15:43:22 +0200959 }
960
Johannes Berg58d41852007-09-26 17:53:18 +0200961 hdr = (struct ieee80211_hdr *) skb->data;
962
warmcat24338792007-09-14 11:10:25 -0400963 tx->sta = sta_info_get(local, hdr->addr1);
964 tx->fc = le16_to_cpu(hdr->frame_control);
Johannes Berg58d41852007-09-26 17:53:18 +0200965
Jiri Slabybadffb72007-08-28 17:01:54 -0400966 if (is_multicast_ether_addr(hdr->addr1)) {
967 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200968 control->flags |= IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400969 } else {
970 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200971 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400972 }
Johannes Berg58d41852007-09-26 17:53:18 +0200973
974 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
975 if ((tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
976 skb->len + FCS_LEN > local->fragmentation_threshold &&
977 !local->ops->set_frag_threshold)
978 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
979 else
980 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
981 }
982
Johannes Berge2ebc742007-07-27 15:43:22 +0200983 if (!tx->sta)
984 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
985 else if (tx->sta->clear_dst_mask) {
986 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
987 tx->sta->clear_dst_mask = 0;
988 }
Johannes Berg58d41852007-09-26 17:53:18 +0200989
Johannes Berge2ebc742007-07-27 15:43:22 +0200990 hdrlen = ieee80211_get_hdrlen(tx->fc);
991 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
992 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
993 tx->ethertype = (pos[0] << 8) | pos[1];
994 }
995 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
996
997 return res;
998}
999
1000/* Device in tx->dev has a reference added; use dev_put(tx->dev) when
Johannes Berg58d41852007-09-26 17:53:18 +02001001 * finished with it.
1002 *
1003 * 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);
1023 return 0;
1024}
1025
1026static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1027 struct ieee80211_txrx_data *tx)
1028{
1029 struct ieee80211_tx_control *control = tx->u.tx.control;
1030 int ret, i;
1031
1032 if (!ieee80211_qdisc_installed(local->mdev) &&
1033 __ieee80211_queue_stopped(local, 0)) {
1034 netif_stop_queue(local->mdev);
1035 return IEEE80211_TX_AGAIN;
1036 }
1037 if (skb) {
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001038 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1039 "TX to low-level driver", skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001040 ret = local->ops->tx(local_to_hw(local), skb, control);
1041 if (ret)
1042 return IEEE80211_TX_AGAIN;
1043 local->mdev->trans_start = jiffies;
1044 ieee80211_led_tx(local, 1);
1045 }
1046 if (tx->u.tx.extra_frag) {
1047 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1048 IEEE80211_TXCTL_USE_CTS_PROTECT |
1049 IEEE80211_TXCTL_CLEAR_DST_MASK |
1050 IEEE80211_TXCTL_FIRST_FRAGMENT);
1051 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1052 if (!tx->u.tx.extra_frag[i])
1053 continue;
1054 if (__ieee80211_queue_stopped(local, control->queue))
1055 return IEEE80211_TX_FRAG_AGAIN;
1056 if (i == tx->u.tx.num_extra_frag) {
1057 control->tx_rate = tx->u.tx.last_frag_hwrate;
1058 control->rate = tx->u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001059 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
Johannes Berge2ebc742007-07-27 15:43:22 +02001060 control->flags |=
1061 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1062 else
1063 control->flags &=
1064 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1065 }
1066
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001067 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
Johannes Berge2ebc742007-07-27 15:43:22 +02001068 "TX to low-level driver",
1069 tx->u.tx.extra_frag[i]);
1070 ret = local->ops->tx(local_to_hw(local),
1071 tx->u.tx.extra_frag[i],
1072 control);
1073 if (ret)
1074 return IEEE80211_TX_FRAG_AGAIN;
1075 local->mdev->trans_start = jiffies;
1076 ieee80211_led_tx(local, 1);
1077 tx->u.tx.extra_frag[i] = NULL;
1078 }
1079 kfree(tx->u.tx.extra_frag);
1080 tx->u.tx.extra_frag = NULL;
1081 }
1082 return IEEE80211_TX_OK;
1083}
1084
1085static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
Johannes Bergf9d540e2007-09-28 14:02:09 +02001086 struct ieee80211_tx_control *control)
Johannes Berge2ebc742007-07-27 15:43:22 +02001087{
1088 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1089 struct sta_info *sta;
1090 ieee80211_tx_handler *handler;
1091 struct ieee80211_txrx_data tx;
1092 ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1093 int ret, i;
1094
1095 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1096
1097 if (unlikely(skb->len < 10)) {
1098 dev_kfree_skb(skb);
1099 return 0;
1100 }
1101
Johannes Berg58d41852007-09-26 17:53:18 +02001102 /* initialises tx */
Johannes Berge2ebc742007-07-27 15:43:22 +02001103 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1104
1105 if (res_prepare == TXRX_DROP) {
1106 dev_kfree_skb(skb);
1107 return 0;
1108 }
1109
Johannes Bergd4e46a32007-09-14 11:10:24 -04001110 /*
1111 * key references are protected using RCU and this requires that
1112 * we are in a read-site RCU section during receive processing
1113 */
1114 rcu_read_lock();
1115
Johannes Berge2ebc742007-07-27 15:43:22 +02001116 sta = tx.sta;
Johannes Berge2ebc742007-07-27 15:43:22 +02001117 tx.u.tx.mode = local->hw.conf.mode;
1118
Johannes Berg58d41852007-09-26 17:53:18 +02001119 for (handler = local->tx_handlers; *handler != NULL;
1120 handler++) {
1121 res = (*handler)(&tx);
1122 if (res != TXRX_CONTINUE)
1123 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02001124 }
1125
1126 skb = tx.skb; /* handlers are allowed to change skb */
1127
1128 if (sta)
1129 sta_info_put(sta);
1130
1131 if (unlikely(res == TXRX_DROP)) {
1132 I802_DEBUG_INC(local->tx_handlers_drop);
1133 goto drop;
1134 }
1135
1136 if (unlikely(res == TXRX_QUEUED)) {
1137 I802_DEBUG_INC(local->tx_handlers_queued);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001138 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001139 return 0;
1140 }
1141
1142 if (tx.u.tx.extra_frag) {
1143 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1144 int next_len, dur;
1145 struct ieee80211_hdr *hdr =
1146 (struct ieee80211_hdr *)
1147 tx.u.tx.extra_frag[i]->data;
1148
1149 if (i + 1 < tx.u.tx.num_extra_frag) {
1150 next_len = tx.u.tx.extra_frag[i + 1]->len;
1151 } else {
1152 next_len = 0;
1153 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1154 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1155 }
1156 dur = ieee80211_duration(&tx, 0, next_len);
1157 hdr->duration_id = cpu_to_le16(dur);
1158 }
1159 }
1160
1161retry:
1162 ret = __ieee80211_tx(local, skb, &tx);
1163 if (ret) {
1164 struct ieee80211_tx_stored_packet *store =
1165 &local->pending_packet[control->queue];
1166
1167 if (ret == IEEE80211_TX_FRAG_AGAIN)
1168 skb = NULL;
1169 set_bit(IEEE80211_LINK_STATE_PENDING,
1170 &local->state[control->queue]);
1171 smp_mb();
1172 /* When the driver gets out of buffers during sending of
1173 * fragments and calls ieee80211_stop_queue, there is
1174 * a small window between IEEE80211_LINK_STATE_XOFF and
1175 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1176 * gets available in that window (i.e. driver calls
1177 * ieee80211_wake_queue), we would end up with ieee80211_tx
1178 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1179 * continuing transmitting here when that situation is
1180 * possible to have happened. */
1181 if (!__ieee80211_queue_stopped(local, control->queue)) {
1182 clear_bit(IEEE80211_LINK_STATE_PENDING,
1183 &local->state[control->queue]);
1184 goto retry;
1185 }
1186 memcpy(&store->control, control,
1187 sizeof(struct ieee80211_tx_control));
1188 store->skb = skb;
1189 store->extra_frag = tx.u.tx.extra_frag;
1190 store->num_extra_frag = tx.u.tx.num_extra_frag;
1191 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1192 store->last_frag_rate = tx.u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001193 store->last_frag_rate_ctrl_probe =
1194 !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
Johannes Berge2ebc742007-07-27 15:43:22 +02001195 }
Johannes Bergd4e46a32007-09-14 11:10:24 -04001196 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001197 return 0;
1198
1199 drop:
1200 if (skb)
1201 dev_kfree_skb(skb);
1202 for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1203 if (tx.u.tx.extra_frag[i])
1204 dev_kfree_skb(tx.u.tx.extra_frag[i]);
1205 kfree(tx.u.tx.extra_frag);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001206 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001207 return 0;
1208}
1209
1210/* device xmit handlers */
1211
1212int ieee80211_master_start_xmit(struct sk_buff *skb,
1213 struct net_device *dev)
1214{
1215 struct ieee80211_tx_control control;
1216 struct ieee80211_tx_packet_data *pkt_data;
1217 struct net_device *odev = NULL;
1218 struct ieee80211_sub_if_data *osdata;
1219 int headroom;
1220 int ret;
1221
1222 /*
1223 * copy control out of the skb so other people can use skb->cb
1224 */
1225 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1226 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1227
1228 if (pkt_data->ifindex)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001229 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001230 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1231 dev_put(odev);
1232 odev = NULL;
1233 }
1234 if (unlikely(!odev)) {
1235#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1236 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1237 "originating device\n", dev->name);
1238#endif
1239 dev_kfree_skb(skb);
1240 return 0;
1241 }
1242 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1243
1244 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1245 if (skb_headroom(skb) < headroom) {
1246 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1247 dev_kfree_skb(skb);
1248 dev_put(odev);
1249 return 0;
1250 }
1251 }
1252
1253 control.ifindex = odev->ifindex;
1254 control.type = osdata->type;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001255 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
Johannes Berge2ebc742007-07-27 15:43:22 +02001256 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001257 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
Johannes Berge2ebc742007-07-27 15:43:22 +02001258 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001259 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
Johannes Berge2ebc742007-07-27 15:43:22 +02001260 control.flags |= IEEE80211_TXCTL_REQUEUE;
1261 control.queue = pkt_data->queue;
1262
Johannes Bergf9d540e2007-09-28 14:02:09 +02001263 ret = ieee80211_tx(odev, skb, &control);
Johannes Berge2ebc742007-07-27 15:43:22 +02001264 dev_put(odev);
1265
1266 return ret;
1267}
1268
1269int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1270 struct net_device *dev)
1271{
1272 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1273 struct ieee80211_tx_packet_data *pkt_data;
1274 struct ieee80211_radiotap_header *prthdr =
1275 (struct ieee80211_radiotap_header *)skb->data;
Andy Green9b8a74e2007-07-27 15:43:24 +02001276 u16 len_rthdr;
Johannes Berge2ebc742007-07-27 15:43:22 +02001277
Andy Green9b8a74e2007-07-27 15:43:24 +02001278 /* check for not even having the fixed radiotap header part */
1279 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1280 goto fail; /* too short to be possibly valid */
1281
1282 /* is it a header version we can trust to find length from? */
1283 if (unlikely(prthdr->it_version))
1284 goto fail; /* only version 0 is supported */
1285
1286 /* then there must be a radiotap header with a length we can use */
1287 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1288
1289 /* does the skb contain enough to deliver on the alleged length? */
1290 if (unlikely(skb->len < len_rthdr))
1291 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001292
1293 skb->dev = local->mdev;
1294
1295 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1296 memset(pkt_data, 0, sizeof(*pkt_data));
Andy Green9b8a74e2007-07-27 15:43:24 +02001297 /* needed because we set skb device to master */
Johannes Berge2ebc742007-07-27 15:43:22 +02001298 pkt_data->ifindex = dev->ifindex;
Andy Green9b8a74e2007-07-27 15:43:24 +02001299
Jiri Slabye8bf9642007-08-28 17:01:54 -04001300 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001301
Johannes Berge2ebc742007-07-27 15:43:22 +02001302 /*
1303 * fix up the pointers accounting for the radiotap
1304 * header still being in there. We are being given
1305 * a precooked IEEE80211 header so no need for
1306 * normal processing
1307 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001308 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001309 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001310 * these are just fixed to the end of the rt area since we
1311 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001312 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001313 skb_set_network_header(skb, len_rthdr);
1314 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001315
Andy Green9b8a74e2007-07-27 15:43:24 +02001316 /* pass the radiotap header up to the next stage intact */
1317 dev_queue_xmit(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001318 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001319
1320fail:
1321 dev_kfree_skb(skb);
1322 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001323}
1324
1325/**
1326 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1327 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1328 * @skb: packet to be sent
1329 * @dev: incoming interface
1330 *
1331 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1332 * not be freed, and caller is responsible for either retrying later or freeing
1333 * skb).
1334 *
1335 * This function takes in an Ethernet header and encapsulates it with suitable
1336 * IEEE 802.11 header based on which interface the packet is coming in. The
1337 * encapsulated packet will then be passed to master interface, wlan#.11, for
1338 * transmission (through low-level driver).
1339 */
1340int ieee80211_subif_start_xmit(struct sk_buff *skb,
1341 struct net_device *dev)
1342{
1343 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1344 struct ieee80211_tx_packet_data *pkt_data;
1345 struct ieee80211_sub_if_data *sdata;
1346 int ret = 1, head_need;
1347 u16 ethertype, hdrlen, fc;
1348 struct ieee80211_hdr hdr;
1349 const u8 *encaps_data;
1350 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001351 int nh_pos, h_pos;
Johannes Berge2ebc742007-07-27 15:43:22 +02001352 struct sta_info *sta;
1353
1354 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1355 if (unlikely(skb->len < ETH_HLEN)) {
1356 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1357 dev->name, skb->len);
1358 ret = 0;
1359 goto fail;
1360 }
1361
1362 nh_pos = skb_network_header(skb) - skb->data;
1363 h_pos = skb_transport_header(skb) - skb->data;
1364
1365 /* convert Ethernet header to proper 802.11 header (based on
1366 * operation mode) */
1367 ethertype = (skb->data[12] << 8) | skb->data[13];
1368 /* TODO: handling for 802.1x authorized/unauthorized port */
1369 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1370
Johannes Bergcf966832007-08-28 17:01:54 -04001371 switch (sdata->type) {
1372 case IEEE80211_IF_TYPE_AP:
1373 case IEEE80211_IF_TYPE_VLAN:
Johannes Berge2ebc742007-07-27 15:43:22 +02001374 fc |= IEEE80211_FCTL_FROMDS;
1375 /* DA BSSID SA */
1376 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1377 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1378 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1379 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001380 break;
1381 case IEEE80211_IF_TYPE_WDS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001382 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1383 /* RA TA DA SA */
1384 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1385 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1386 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1387 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1388 hdrlen = 30;
Johannes Bergcf966832007-08-28 17:01:54 -04001389 break;
1390 case IEEE80211_IF_TYPE_STA:
Johannes Berge2ebc742007-07-27 15:43:22 +02001391 fc |= IEEE80211_FCTL_TODS;
1392 /* BSSID SA DA */
1393 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1394 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1395 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1396 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001397 break;
1398 case IEEE80211_IF_TYPE_IBSS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001399 /* DA SA BSSID */
1400 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1401 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1402 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1403 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001404 break;
1405 default:
Johannes Berge2ebc742007-07-27 15:43:22 +02001406 ret = 0;
1407 goto fail;
1408 }
1409
1410 /* receiver is QoS enabled, use a QoS type frame */
1411 sta = sta_info_get(local, hdr.addr1);
1412 if (sta) {
1413 if (sta->flags & WLAN_STA_WME) {
1414 fc |= IEEE80211_STYPE_QOS_DATA;
1415 hdrlen += 2;
1416 }
1417 sta_info_put(sta);
1418 }
1419
1420 hdr.frame_control = cpu_to_le16(fc);
1421 hdr.duration_id = 0;
1422 hdr.seq_ctrl = 0;
1423
1424 skip_header_bytes = ETH_HLEN;
1425 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1426 encaps_data = bridge_tunnel_header;
1427 encaps_len = sizeof(bridge_tunnel_header);
1428 skip_header_bytes -= 2;
1429 } else if (ethertype >= 0x600) {
1430 encaps_data = rfc1042_header;
1431 encaps_len = sizeof(rfc1042_header);
1432 skip_header_bytes -= 2;
1433 } else {
1434 encaps_data = NULL;
1435 encaps_len = 0;
1436 }
1437
1438 skb_pull(skb, skip_header_bytes);
1439 nh_pos -= skip_header_bytes;
1440 h_pos -= skip_header_bytes;
1441
1442 /* TODO: implement support for fragments so that there is no need to
1443 * reallocate and copy payload; it might be enough to support one
1444 * extra fragment that would be copied in the beginning of the frame
1445 * data.. anyway, it would be nice to include this into skb structure
1446 * somehow
1447 *
1448 * There are few options for this:
1449 * use skb->cb as an extra space for 802.11 header
1450 * allocate new buffer if not enough headroom
1451 * make sure that there is enough headroom in every skb by increasing
1452 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1453 * alloc_skb() (net/core/skbuff.c)
1454 */
1455 head_need = hdrlen + encaps_len + local->tx_headroom;
1456 head_need -= skb_headroom(skb);
1457
1458 /* We are going to modify skb data, so make a copy of it if happens to
1459 * be cloned. This could happen, e.g., with Linux bridge code passing
1460 * us broadcast frames. */
1461
1462 if (head_need > 0 || skb_cloned(skb)) {
1463#if 0
1464 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1465 "of headroom\n", dev->name, head_need);
1466#endif
1467
1468 if (skb_cloned(skb))
1469 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1470 else
1471 I802_DEBUG_INC(local->tx_expand_skb_head);
1472 /* Since we have to reallocate the buffer, make sure that there
1473 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1474 * before payload and 12 after). */
1475 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1476 12, GFP_ATOMIC)) {
1477 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1478 "\n", dev->name);
1479 goto fail;
1480 }
1481 }
1482
1483 if (encaps_data) {
1484 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1485 nh_pos += encaps_len;
1486 h_pos += encaps_len;
1487 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04001488
1489 if (fc & IEEE80211_STYPE_QOS_DATA) {
1490 __le16 *qos_control;
1491
1492 qos_control = (__le16*) skb_push(skb, 2);
1493 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1494 /*
1495 * Maybe we could actually set some fields here, for now just
1496 * initialise to zero to indicate no special operation.
1497 */
1498 *qos_control = 0;
1499 } else
1500 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1501
Johannes Berge2ebc742007-07-27 15:43:22 +02001502 nh_pos += hdrlen;
1503 h_pos += hdrlen;
1504
1505 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1506 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1507 pkt_data->ifindex = dev->ifindex;
Johannes Berge2ebc742007-07-27 15:43:22 +02001508
1509 skb->dev = local->mdev;
Stephen Hemminger68aae112007-08-24 11:29:34 -07001510 dev->stats.tx_packets++;
1511 dev->stats.tx_bytes += skb->len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001512
1513 /* Update skb pointers to various headers since this modified frame
1514 * is going to go through Linux networking code that may potentially
1515 * need things like pointer to IP header. */
1516 skb_set_mac_header(skb, 0);
1517 skb_set_network_header(skb, nh_pos);
1518 skb_set_transport_header(skb, h_pos);
1519
1520 dev->trans_start = jiffies;
1521 dev_queue_xmit(skb);
1522
1523 return 0;
1524
1525 fail:
1526 if (!ret)
1527 dev_kfree_skb(skb);
1528
1529 return ret;
1530}
1531
Johannes Berge2ebc742007-07-27 15:43:22 +02001532/* helper functions for pending packets for when queues are stopped */
1533
1534void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1535{
1536 int i, j;
1537 struct ieee80211_tx_stored_packet *store;
1538
1539 for (i = 0; i < local->hw.queues; i++) {
1540 if (!__ieee80211_queue_pending(local, i))
1541 continue;
1542 store = &local->pending_packet[i];
1543 kfree_skb(store->skb);
1544 for (j = 0; j < store->num_extra_frag; j++)
1545 kfree_skb(store->extra_frag[j]);
1546 kfree(store->extra_frag);
1547 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1548 }
1549}
1550
1551void ieee80211_tx_pending(unsigned long data)
1552{
1553 struct ieee80211_local *local = (struct ieee80211_local *)data;
1554 struct net_device *dev = local->mdev;
1555 struct ieee80211_tx_stored_packet *store;
1556 struct ieee80211_txrx_data tx;
1557 int i, ret, reschedule = 0;
1558
1559 netif_tx_lock_bh(dev);
1560 for (i = 0; i < local->hw.queues; i++) {
1561 if (__ieee80211_queue_stopped(local, i))
1562 continue;
1563 if (!__ieee80211_queue_pending(local, i)) {
1564 reschedule = 1;
1565 continue;
1566 }
1567 store = &local->pending_packet[i];
1568 tx.u.tx.control = &store->control;
1569 tx.u.tx.extra_frag = store->extra_frag;
1570 tx.u.tx.num_extra_frag = store->num_extra_frag;
1571 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1572 tx.u.tx.last_frag_rate = store->last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001573 tx.flags = 0;
1574 if (store->last_frag_rate_ctrl_probe)
1575 tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +02001576 ret = __ieee80211_tx(local, store->skb, &tx);
1577 if (ret) {
1578 if (ret == IEEE80211_TX_FRAG_AGAIN)
1579 store->skb = NULL;
1580 } else {
1581 clear_bit(IEEE80211_LINK_STATE_PENDING,
1582 &local->state[i]);
1583 reschedule = 1;
1584 }
1585 }
1586 netif_tx_unlock_bh(dev);
1587 if (reschedule) {
1588 if (!ieee80211_qdisc_installed(dev)) {
1589 if (!__ieee80211_queue_stopped(local, 0))
1590 netif_wake_queue(dev);
1591 } else
1592 netif_schedule(dev);
1593 }
1594}
1595
1596/* functions for drivers to get certain frames */
1597
1598static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1599 struct ieee80211_if_ap *bss,
1600 struct sk_buff *skb)
1601{
1602 u8 *pos, *tim;
1603 int aid0 = 0;
1604 int i, have_bits = 0, n1, n2;
1605
1606 /* Generate bitmap for TIM only if there are any STAs in power save
1607 * mode. */
Michael Wube8755e2007-07-27 15:43:23 +02001608 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001609 if (atomic_read(&bss->num_sta_ps) > 0)
1610 /* in the hope that this is faster than
1611 * checking byte-for-byte */
1612 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1613 IEEE80211_MAX_AID+1);
1614
1615 if (bss->dtim_count == 0)
1616 bss->dtim_count = bss->dtim_period - 1;
1617 else
1618 bss->dtim_count--;
1619
1620 tim = pos = (u8 *) skb_put(skb, 6);
1621 *pos++ = WLAN_EID_TIM;
1622 *pos++ = 4;
1623 *pos++ = bss->dtim_count;
1624 *pos++ = bss->dtim_period;
1625
1626 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1627 aid0 = 1;
1628
1629 if (have_bits) {
1630 /* Find largest even number N1 so that bits numbered 1 through
1631 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1632 * (N2 + 1) x 8 through 2007 are 0. */
1633 n1 = 0;
1634 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1635 if (bss->tim[i]) {
1636 n1 = i & 0xfe;
1637 break;
1638 }
1639 }
1640 n2 = n1;
1641 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1642 if (bss->tim[i]) {
1643 n2 = i;
1644 break;
1645 }
1646 }
1647
1648 /* Bitmap control */
1649 *pos++ = n1 | aid0;
1650 /* Part Virt Bitmap */
1651 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1652
1653 tim[1] = n2 - n1 + 4;
1654 skb_put(skb, n2 - n1);
1655 } else {
1656 *pos++ = aid0; /* Bitmap control */
1657 *pos++ = 0; /* Part Virt Bitmap */
1658 }
Michael Wube8755e2007-07-27 15:43:23 +02001659 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001660}
1661
1662struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id,
1663 struct ieee80211_tx_control *control)
1664{
1665 struct ieee80211_local *local = hw_to_local(hw);
1666 struct sk_buff *skb;
1667 struct net_device *bdev;
1668 struct ieee80211_sub_if_data *sdata = NULL;
1669 struct ieee80211_if_ap *ap = NULL;
1670 struct ieee80211_rate *rate;
1671 struct rate_control_extra extra;
1672 u8 *b_head, *b_tail;
1673 int bh_len, bt_len;
1674
Eric W. Biederman881d9662007-09-17 11:56:21 -07001675 bdev = dev_get_by_index(&init_net, if_id);
Johannes Berge2ebc742007-07-27 15:43:22 +02001676 if (bdev) {
1677 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1678 ap = &sdata->u.ap;
1679 dev_put(bdev);
1680 }
1681
1682 if (!ap || sdata->type != IEEE80211_IF_TYPE_AP ||
1683 !ap->beacon_head) {
1684#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1685 if (net_ratelimit())
1686 printk(KERN_DEBUG "no beacon data avail for idx=%d "
1687 "(%s)\n", if_id, bdev ? bdev->name : "N/A");
1688#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1689 return NULL;
1690 }
1691
1692 /* Assume we are generating the normal beacon locally */
1693 b_head = ap->beacon_head;
1694 b_tail = ap->beacon_tail;
1695 bh_len = ap->beacon_head_len;
1696 bt_len = ap->beacon_tail_len;
1697
1698 skb = dev_alloc_skb(local->tx_headroom +
1699 bh_len + bt_len + 256 /* maximum TIM len */);
1700 if (!skb)
1701 return NULL;
1702
1703 skb_reserve(skb, local->tx_headroom);
1704 memcpy(skb_put(skb, bh_len), b_head, bh_len);
1705
1706 ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1707
1708 ieee80211_beacon_add_tim(local, ap, skb);
1709
1710 if (b_tail) {
1711 memcpy(skb_put(skb, bt_len), b_tail, bt_len);
1712 }
1713
1714 if (control) {
1715 memset(&extra, 0, sizeof(extra));
1716 extra.mode = local->oper_hw_mode;
1717
1718 rate = rate_control_get_rate(local, local->mdev, skb, &extra);
1719 if (!rate) {
1720 if (net_ratelimit()) {
1721 printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001722 "found\n", wiphy_name(local->hw.wiphy));
Johannes Berge2ebc742007-07-27 15:43:22 +02001723 }
1724 dev_kfree_skb(skb);
1725 return NULL;
1726 }
1727
Jiri Slaby13262ff2007-08-28 17:01:54 -04001728 control->tx_rate =
1729 ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
1730 (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
Johannes Berge2ebc742007-07-27 15:43:22 +02001731 rate->val2 : rate->val;
1732 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1733 control->power_level = local->hw.conf.power_level;
1734 control->flags |= IEEE80211_TXCTL_NO_ACK;
1735 control->retry_limit = 1;
1736 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1737 }
1738
1739 ap->num_beacons++;
1740 return skb;
1741}
1742EXPORT_SYMBOL(ieee80211_beacon_get);
1743
Daniel Drake7e9ed182007-07-27 15:43:24 +02001744void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
Johannes Berge2ebc742007-07-27 15:43:22 +02001745 const void *frame, size_t frame_len,
1746 const struct ieee80211_tx_control *frame_txctl,
1747 struct ieee80211_rts *rts)
1748{
1749 const struct ieee80211_hdr *hdr = frame;
1750 u16 fctl;
1751
1752 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1753 rts->frame_control = cpu_to_le16(fctl);
Daniel Drake7e9ed182007-07-27 15:43:24 +02001754 rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001755 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1756 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1757}
1758EXPORT_SYMBOL(ieee80211_rts_get);
1759
Daniel Drake7e9ed182007-07-27 15:43:24 +02001760void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
Johannes Berge2ebc742007-07-27 15:43:22 +02001761 const void *frame, size_t frame_len,
1762 const struct ieee80211_tx_control *frame_txctl,
1763 struct ieee80211_cts *cts)
1764{
1765 const struct ieee80211_hdr *hdr = frame;
1766 u16 fctl;
1767
1768 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1769 cts->frame_control = cpu_to_le16(fctl);
Daniel Drake7e9ed182007-07-27 15:43:24 +02001770 cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001771 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1772}
1773EXPORT_SYMBOL(ieee80211_ctstoself_get);
1774
1775struct sk_buff *
1776ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
1777 struct ieee80211_tx_control *control)
1778{
1779 struct ieee80211_local *local = hw_to_local(hw);
1780 struct sk_buff *skb;
1781 struct sta_info *sta;
1782 ieee80211_tx_handler *handler;
1783 struct ieee80211_txrx_data tx;
1784 ieee80211_txrx_result res = TXRX_DROP;
1785 struct net_device *bdev;
1786 struct ieee80211_sub_if_data *sdata;
1787 struct ieee80211_if_ap *bss = NULL;
1788
Eric W. Biederman881d9662007-09-17 11:56:21 -07001789 bdev = dev_get_by_index(&init_net, if_id);
Johannes Berge2ebc742007-07-27 15:43:22 +02001790 if (bdev) {
1791 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1792 bss = &sdata->u.ap;
1793 dev_put(bdev);
1794 }
1795 if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head)
1796 return NULL;
1797
1798 if (bss->dtim_count != 0)
1799 return NULL; /* send buffered bc/mc only after DTIM beacon */
1800 memset(control, 0, sizeof(*control));
1801 while (1) {
1802 skb = skb_dequeue(&bss->ps_bc_buf);
1803 if (!skb)
1804 return NULL;
1805 local->total_ps_buffered--;
1806
1807 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1808 struct ieee80211_hdr *hdr =
1809 (struct ieee80211_hdr *) skb->data;
1810 /* more buffered multicast/broadcast frames ==> set
1811 * MoreData flag in IEEE 802.11 header to inform PS
1812 * STAs */
1813 hdr->frame_control |=
1814 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1815 }
1816
Johannes Berg58d41852007-09-26 17:53:18 +02001817 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
Johannes Berge2ebc742007-07-27 15:43:22 +02001818 break;
1819 dev_kfree_skb_any(skb);
1820 }
1821 sta = tx.sta;
Jiri Slabybadffb72007-08-28 17:01:54 -04001822 tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
Tomas Winkler475fa492007-09-02 22:58:21 +03001823 tx.u.tx.mode = local->hw.conf.mode;
Johannes Berge2ebc742007-07-27 15:43:22 +02001824
1825 for (handler = local->tx_handlers; *handler != NULL; handler++) {
1826 res = (*handler)(&tx);
1827 if (res == TXRX_DROP || res == TXRX_QUEUED)
1828 break;
1829 }
1830 dev_put(tx.dev);
1831 skb = tx.skb; /* handlers are allowed to change skb */
1832
1833 if (res == TXRX_DROP) {
1834 I802_DEBUG_INC(local->tx_handlers_drop);
1835 dev_kfree_skb(skb);
1836 skb = NULL;
1837 } else if (res == TXRX_QUEUED) {
1838 I802_DEBUG_INC(local->tx_handlers_queued);
1839 skb = NULL;
1840 }
1841
1842 if (sta)
1843 sta_info_put(sta);
1844
1845 return skb;
1846}
1847EXPORT_SYMBOL(ieee80211_get_buffered_bc);