b43: nphy.c remove duplicated include
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / mac80211 / tx.c
CommitLineData
e2ebc74d
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 *
12 * Transmit and frame generation functions.
13 */
14
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>
d4e46a3d 20#include <linux/rcupdate.h>
881d966b 21#include <net/net_namespace.h>
e2ebc74d
JB
22#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"
2c8dccc7 28#include "led.h"
33b64eb2 29#include "mesh.h"
e2ebc74d
JB
30#include "wep.h"
31#include "wpa.h"
32#include "wme.h"
2c8dccc7 33#include "rate.h"
e2ebc74d
JB
34
35#define IEEE80211_TX_OK 0
36#define IEEE80211_TX_AGAIN 1
37#define IEEE80211_TX_FRAG_AGAIN 2
38
39/* misc utils */
40
41static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
42 struct ieee80211_hdr *hdr)
43{
44 /* Set the sequence number for this frame. */
45 hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
46
47 /* Increase the sequence number. */
48 sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
49}
50
51#ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
52static void ieee80211_dump_frame(const char *ifname, const char *title,
53 const struct sk_buff *skb)
54{
55 const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
56 u16 fc;
57 int hdrlen;
0795af57 58 DECLARE_MAC_BUF(mac);
e2ebc74d
JB
59
60 printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
61 if (skb->len < 4) {
62 printk("\n");
63 return;
64 }
65
66 fc = le16_to_cpu(hdr->frame_control);
67 hdrlen = ieee80211_get_hdrlen(fc);
68 if (hdrlen > skb->len)
69 hdrlen = skb->len;
70 if (hdrlen >= 4)
71 printk(" FC=0x%04x DUR=0x%04x",
72 fc, le16_to_cpu(hdr->duration_id));
73 if (hdrlen >= 10)
0795af57 74 printk(" A1=%s", print_mac(mac, hdr->addr1));
e2ebc74d 75 if (hdrlen >= 16)
0795af57 76 printk(" A2=%s", print_mac(mac, hdr->addr2));
e2ebc74d 77 if (hdrlen >= 24)
0795af57 78 printk(" A3=%s", print_mac(mac, hdr->addr3));
e2ebc74d 79 if (hdrlen >= 30)
0795af57 80 printk(" A4=%s", print_mac(mac, hdr->addr4));
e2ebc74d
JB
81 printk("\n");
82}
83#else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
84static inline void ieee80211_dump_frame(const char *ifname, const char *title,
85 struct sk_buff *skb)
86{
87}
88#endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
89
5cf121c3 90static u16 ieee80211_duration(struct ieee80211_tx_data *tx, int group_addr,
e2ebc74d
JB
91 int next_frag_len)
92{
93 int rate, mrate, erp, dur, i;
5cf121c3 94 struct ieee80211_rate *txrate = tx->rate;
e2ebc74d 95 struct ieee80211_local *local = tx->local;
8318d78a 96 struct ieee80211_supported_band *sband;
e2ebc74d 97
8318d78a
JB
98 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
99
100 erp = 0;
101 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
102 erp = txrate->flags & IEEE80211_RATE_ERP_G;
e2ebc74d
JB
103
104 /*
105 * data and mgmt (except PS Poll):
106 * - during CFP: 32768
107 * - during contention period:
108 * if addr1 is group address: 0
109 * if more fragments = 0 and addr1 is individual address: time to
110 * transmit one ACK plus SIFS
111 * if more fragments = 1 and addr1 is individual address: time to
112 * transmit next fragment plus 2 x ACK plus 3 x SIFS
113 *
114 * IEEE 802.11, 9.6:
115 * - control response frame (CTS or ACK) shall be transmitted using the
116 * same rate as the immediately previous frame in the frame exchange
117 * sequence, if this rate belongs to the PHY mandatory rates, or else
118 * at the highest possible rate belonging to the PHY rates in the
119 * BSSBasicRateSet
120 */
121
122 if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) {
123 /* TODO: These control frames are not currently sent by
124 * 80211.o, but should they be implemented, this function
125 * needs to be updated to support duration field calculation.
126 *
127 * RTS: time needed to transmit pending data/mgmt frame plus
128 * one CTS frame plus one ACK frame plus 3 x SIFS
129 * CTS: duration of immediately previous RTS minus time
130 * required to transmit CTS and its SIFS
131 * ACK: 0 if immediately previous directed data/mgmt had
132 * more=0, with more=1 duration in ACK frame is duration
133 * from previous frame minus time needed to transmit ACK
134 * and its SIFS
135 * PS Poll: BIT(15) | BIT(14) | aid
136 */
137 return 0;
138 }
139
140 /* data/mgmt */
141 if (0 /* FIX: data/mgmt during CFP */)
142 return 32768;
143
144 if (group_addr) /* Group address as the destination - no ACK */
145 return 0;
146
147 /* Individual destination address:
148 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
149 * CTS and ACK frames shall be transmitted using the highest rate in
150 * basic rate set that is less than or equal to the rate of the
151 * immediately previous frame and that is using the same modulation
152 * (CCK or OFDM). If no basic rate set matches with these requirements,
153 * the highest mandatory rate of the PHY that is less than or equal to
154 * the rate of the previous frame is used.
155 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
156 */
157 rate = -1;
8318d78a
JB
158 /* use lowest available if everything fails */
159 mrate = sband->bitrates[0].bitrate;
160 for (i = 0; i < sband->n_bitrates; i++) {
161 struct ieee80211_rate *r = &sband->bitrates[i];
e2ebc74d 162
8318d78a
JB
163 if (r->bitrate > txrate->bitrate)
164 break;
e2ebc74d 165
8318d78a
JB
166 if (tx->sdata->basic_rates & BIT(i))
167 rate = r->bitrate;
168
169 switch (sband->band) {
170 case IEEE80211_BAND_2GHZ: {
171 u32 flag;
172 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
173 flag = IEEE80211_RATE_MANDATORY_G;
174 else
175 flag = IEEE80211_RATE_MANDATORY_B;
176 if (r->flags & flag)
177 mrate = r->bitrate;
178 break;
179 }
180 case IEEE80211_BAND_5GHZ:
181 if (r->flags & IEEE80211_RATE_MANDATORY_A)
182 mrate = r->bitrate;
183 break;
184 case IEEE80211_NUM_BANDS:
185 WARN_ON(1);
186 break;
187 }
e2ebc74d
JB
188 }
189 if (rate == -1) {
190 /* No matching basic rate found; use highest suitable mandatory
191 * PHY rate */
192 rate = mrate;
193 }
194
195 /* Time needed to transmit ACK
196 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
197 * to closest integer */
198
199 dur = ieee80211_frame_duration(local, 10, rate, erp,
471b3efd 200 tx->sdata->bss_conf.use_short_preamble);
e2ebc74d
JB
201
202 if (next_frag_len) {
203 /* Frame is fragmented: duration increases with time needed to
204 * transmit next fragment plus ACK and 2 x SIFS. */
205 dur *= 2; /* ACK + SIFS */
206 /* next fragment */
207 dur += ieee80211_frame_duration(local, next_frag_len,
8318d78a 208 txrate->bitrate, erp,
471b3efd 209 tx->sdata->bss_conf.use_short_preamble);
e2ebc74d
JB
210 }
211
212 return dur;
213}
214
215static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
216 int queue)
217{
218 return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
219}
220
221static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
222 int queue)
223{
224 return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
225}
226
227static int inline is_ieee80211_device(struct net_device *dev,
228 struct net_device *master)
229{
230 return (wdev_priv(dev->ieee80211_ptr) ==
231 wdev_priv(master->ieee80211_ptr));
232}
233
234/* tx handlers */
235
9ae54c84 236static ieee80211_tx_result
5cf121c3 237ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
e2ebc74d
JB
238{
239#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
240 struct sk_buff *skb = tx->skb;
241 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
242#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
243 u32 sta_flags;
244
5cf121c3 245 if (unlikely(tx->flags & IEEE80211_TX_INJECTED))
9ae54c84 246 return TX_CONTINUE;
58d4185e 247
ece8eddd 248 if (unlikely(tx->local->sta_sw_scanning) &&
e2ebc74d
JB
249 ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
250 (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
9ae54c84 251 return TX_DROP;
e2ebc74d 252
33b64eb2
LCC
253 if (tx->sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT)
254 return TX_CONTINUE;
255
5cf121c3 256 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
9ae54c84 257 return TX_CONTINUE;
e2ebc74d 258
07346f81 259 sta_flags = tx->sta ? get_sta_flags(tx->sta) : 0;
e2ebc74d 260
5cf121c3 261 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
e2ebc74d 262 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
51fb61e7 263 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
e2ebc74d
JB
264 (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
265#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
0795af57 266 DECLARE_MAC_BUF(mac);
e2ebc74d 267 printk(KERN_DEBUG "%s: dropped data frame to not "
0795af57
JP
268 "associated station %s\n",
269 tx->dev->name, print_mac(mac, hdr->addr1));
e2ebc74d
JB
270#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
271 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
9ae54c84 272 return TX_DROP;
e2ebc74d
JB
273 }
274 } else {
275 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
276 tx->local->num_sta == 0 &&
51fb61e7 277 tx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS)) {
e2ebc74d
JB
278 /*
279 * No associated STAs - no need to send multicast
280 * frames.
281 */
9ae54c84 282 return TX_DROP;
e2ebc74d 283 }
9ae54c84 284 return TX_CONTINUE;
e2ebc74d
JB
285 }
286
9ae54c84 287 return TX_CONTINUE;
e2ebc74d
JB
288}
289
9ae54c84 290static ieee80211_tx_result
5cf121c3 291ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
e2ebc74d
JB
292{
293 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
294
295 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
296 ieee80211_include_sequence(tx->sdata, hdr);
297
9ae54c84 298 return TX_CONTINUE;
e2ebc74d
JB
299}
300
301/* This function is called whenever the AP is about to exceed the maximum limit
302 * of buffered frames for power saving STAs. This situation should not really
303 * happen often during normal operation, so dropping the oldest buffered packet
304 * from each queue should be OK to make some room for new frames. */
305static void purge_old_ps_buffers(struct ieee80211_local *local)
306{
307 int total = 0, purged = 0;
308 struct sk_buff *skb;
309 struct ieee80211_sub_if_data *sdata;
310 struct sta_info *sta;
311
79010420
JB
312 /*
313 * virtual interfaces are protected by RCU
314 */
315 rcu_read_lock();
316
317 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
e2ebc74d
JB
318 struct ieee80211_if_ap *ap;
319 if (sdata->dev == local->mdev ||
51fb61e7 320 sdata->vif.type != IEEE80211_IF_TYPE_AP)
e2ebc74d
JB
321 continue;
322 ap = &sdata->u.ap;
323 skb = skb_dequeue(&ap->ps_bc_buf);
324 if (skb) {
325 purged++;
326 dev_kfree_skb(skb);
327 }
328 total += skb_queue_len(&ap->ps_bc_buf);
329 }
e2ebc74d 330
d0709a65 331 list_for_each_entry_rcu(sta, &local->sta_list, list) {
e2ebc74d
JB
332 skb = skb_dequeue(&sta->ps_tx_buf);
333 if (skb) {
334 purged++;
335 dev_kfree_skb(skb);
336 }
337 total += skb_queue_len(&sta->ps_tx_buf);
338 }
d0709a65
JB
339
340 rcu_read_unlock();
e2ebc74d
JB
341
342 local->total_ps_buffered = total;
343 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
dd1cd4c6 344 wiphy_name(local->hw.wiphy), purged);
e2ebc74d
JB
345}
346
9ae54c84 347static ieee80211_tx_result
5cf121c3 348ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
e2ebc74d 349{
7d54d0dd
JB
350 /*
351 * broadcast/multicast frame
352 *
353 * If any of the associated stations is in power save mode,
354 * the frame is buffered to be sent after DTIM beacon frame.
355 * This is done either by the hardware or us.
356 */
357
358 /* not AP/IBSS or ordered frame */
359 if (!tx->sdata->bss || (tx->fc & IEEE80211_FCTL_ORDER))
9ae54c84 360 return TX_CONTINUE;
7d54d0dd
JB
361
362 /* no stations in PS mode */
363 if (!atomic_read(&tx->sdata->bss->num_sta_ps))
9ae54c84 364 return TX_CONTINUE;
7d54d0dd
JB
365
366 /* buffered in mac80211 */
367 if (tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) {
e2ebc74d
JB
368 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
369 purge_old_ps_buffers(tx->local);
370 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
371 AP_MAX_BC_BUFFER) {
372 if (net_ratelimit()) {
373 printk(KERN_DEBUG "%s: BC TX buffer full - "
374 "dropping the oldest frame\n",
375 tx->dev->name);
376 }
377 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
378 } else
379 tx->local->total_ps_buffered++;
380 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
9ae54c84 381 return TX_QUEUED;
e2ebc74d
JB
382 }
383
7d54d0dd 384 /* buffered in hardware */
5cf121c3 385 tx->control->flags |= IEEE80211_TXCTL_SEND_AFTER_DTIM;
7d54d0dd 386
9ae54c84 387 return TX_CONTINUE;
e2ebc74d
JB
388}
389
9ae54c84 390static ieee80211_tx_result
5cf121c3 391ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
e2ebc74d
JB
392{
393 struct sta_info *sta = tx->sta;
07346f81 394 u32 staflags;
0795af57 395 DECLARE_MAC_BUF(mac);
e2ebc74d
JB
396
397 if (unlikely(!sta ||
398 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
399 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
9ae54c84 400 return TX_CONTINUE;
e2ebc74d 401
07346f81
JB
402 staflags = get_sta_flags(sta);
403
404 if (unlikely((staflags & WLAN_STA_PS) &&
405 !(staflags & WLAN_STA_PSPOLL))) {
e2ebc74d
JB
406 struct ieee80211_tx_packet_data *pkt_data;
407#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0795af57 408 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
e2ebc74d 409 "before %d)\n",
0795af57 410 print_mac(mac, sta->addr), sta->aid,
e2ebc74d
JB
411 skb_queue_len(&sta->ps_tx_buf));
412#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
e2ebc74d
JB
413 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
414 purge_old_ps_buffers(tx->local);
415 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
416 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
417 if (net_ratelimit()) {
0795af57 418 printk(KERN_DEBUG "%s: STA %s TX "
e2ebc74d 419 "buffer full - dropping oldest frame\n",
0795af57 420 tx->dev->name, print_mac(mac, sta->addr));
e2ebc74d
JB
421 }
422 dev_kfree_skb(old);
423 } else
424 tx->local->total_ps_buffered++;
004c872e 425
e2ebc74d 426 /* Queue frame to be sent after STA sends an PS Poll frame */
004c872e
JB
427 if (skb_queue_empty(&sta->ps_tx_buf))
428 sta_info_set_tim_bit(sta);
429
e2ebc74d
JB
430 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
431 pkt_data->jiffies = jiffies;
432 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
9ae54c84 433 return TX_QUEUED;
e2ebc74d
JB
434 }
435#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
07346f81 436 else if (unlikely(test_sta_flags(sta, WLAN_STA_PS))) {
0795af57 437 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
e2ebc74d 438 "set -> send frame\n", tx->dev->name,
0795af57 439 print_mac(mac, sta->addr));
e2ebc74d
JB
440 }
441#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
07346f81 442 clear_sta_flags(sta, WLAN_STA_PSPOLL);
e2ebc74d 443
9ae54c84 444 return TX_CONTINUE;
e2ebc74d
JB
445}
446
9ae54c84 447static ieee80211_tx_result
5cf121c3 448ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
e2ebc74d 449{
5cf121c3 450 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
9ae54c84 451 return TX_CONTINUE;
e2ebc74d 452
5cf121c3 453 if (tx->flags & IEEE80211_TX_UNICAST)
e2ebc74d
JB
454 return ieee80211_tx_h_unicast_ps_buf(tx);
455 else
456 return ieee80211_tx_h_multicast_ps_buf(tx);
457}
458
9ae54c84 459static ieee80211_tx_result
5cf121c3 460ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
e2ebc74d 461{
d4e46a3d 462 struct ieee80211_key *key;
176e4f84 463 u16 fc = tx->fc;
d4e46a3d 464
5cf121c3 465 if (unlikely(tx->control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
e2ebc74d 466 tx->key = NULL;
d4e46a3d
JB
467 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
468 tx->key = key;
469 else if ((key = rcu_dereference(tx->sdata->default_key)))
470 tx->key = key;
e2ebc74d 471 else if (tx->sdata->drop_unencrypted &&
5cf121c3
JB
472 !(tx->control->flags & IEEE80211_TXCTL_EAPOL_FRAME) &&
473 !(tx->flags & IEEE80211_TX_INJECTED)) {
e2ebc74d 474 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
9ae54c84 475 return TX_DROP;
176e4f84 476 } else
e2ebc74d
JB
477 tx->key = NULL;
478
479 if (tx->key) {
176e4f84
JB
480 u16 ftype, stype;
481
e2ebc74d 482 tx->key->tx_rx_count++;
011bfcc4 483 /* TODO: add threshold stuff again */
176e4f84
JB
484
485 switch (tx->key->conf.alg) {
486 case ALG_WEP:
487 ftype = fc & IEEE80211_FCTL_FTYPE;
488 stype = fc & IEEE80211_FCTL_STYPE;
489
490 if (ftype == IEEE80211_FTYPE_MGMT &&
491 stype == IEEE80211_STYPE_AUTH)
492 break;
493 case ALG_TKIP:
494 case ALG_CCMP:
495 if (!WLAN_FC_DATA_PRESENT(fc))
496 tx->key = NULL;
497 break;
498 }
e2ebc74d
JB
499 }
500
176e4f84 501 if (!tx->key || !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
5cf121c3 502 tx->control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
176e4f84 503
9ae54c84 504 return TX_CONTINUE;
e2ebc74d
JB
505}
506
9ae54c84 507static ieee80211_tx_result
5cf121c3 508ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
e2ebc74d
JB
509{
510 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
511 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
512 struct sk_buff **frags, *first, *frag;
513 int i;
514 u16 seq;
515 u8 *pos;
516 int frag_threshold = tx->local->fragmentation_threshold;
517
5cf121c3 518 if (!(tx->flags & IEEE80211_TX_FRAGMENTED))
9ae54c84 519 return TX_CONTINUE;
e2ebc74d
JB
520
521 first = tx->skb;
522
523 hdrlen = ieee80211_get_hdrlen(tx->fc);
524 payload_len = first->len - hdrlen;
525 per_fragm = frag_threshold - hdrlen - FCS_LEN;
172589cc 526 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
e2ebc74d
JB
527
528 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
529 if (!frags)
530 goto fail;
531
532 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
533 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
534 pos = first->data + hdrlen + per_fragm;
535 left = payload_len - per_fragm;
536 for (i = 0; i < num_fragm - 1; i++) {
537 struct ieee80211_hdr *fhdr;
538 size_t copylen;
539
540 if (left <= 0)
541 goto fail;
542
543 /* reserve enough extra head and tail room for possible
544 * encryption */
545 frag = frags[i] =
546 dev_alloc_skb(tx->local->tx_headroom +
547 frag_threshold +
548 IEEE80211_ENCRYPT_HEADROOM +
549 IEEE80211_ENCRYPT_TAILROOM);
550 if (!frag)
551 goto fail;
552 /* Make sure that all fragments use the same priority so
553 * that they end up using the same TX queue */
554 frag->priority = first->priority;
555 skb_reserve(frag, tx->local->tx_headroom +
556 IEEE80211_ENCRYPT_HEADROOM);
557 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
558 memcpy(fhdr, first->data, hdrlen);
559 if (i == num_fragm - 2)
560 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
561 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
562 copylen = left > per_fragm ? per_fragm : left;
563 memcpy(skb_put(frag, copylen), pos, copylen);
564
565 pos += copylen;
566 left -= copylen;
567 }
568 skb_trim(first, hdrlen + per_fragm);
569
5cf121c3
JB
570 tx->num_extra_frag = num_fragm - 1;
571 tx->extra_frag = frags;
e2ebc74d 572
9ae54c84 573 return TX_CONTINUE;
e2ebc74d
JB
574
575 fail:
576 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
577 if (frags) {
578 for (i = 0; i < num_fragm - 1; i++)
579 if (frags[i])
580 dev_kfree_skb(frags[i]);
581 kfree(frags);
582 }
583 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
9ae54c84 584 return TX_DROP;
e2ebc74d
JB
585}
586
9ae54c84 587static ieee80211_tx_result
5cf121c3 588ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
e2ebc74d 589{
6a22a59d 590 if (!tx->key)
9ae54c84 591 return TX_CONTINUE;
e2ebc74d 592
6a22a59d
JB
593 switch (tx->key->conf.alg) {
594 case ALG_WEP:
595 return ieee80211_crypto_wep_encrypt(tx);
596 case ALG_TKIP:
597 return ieee80211_crypto_tkip_encrypt(tx);
598 case ALG_CCMP:
599 return ieee80211_crypto_ccmp_encrypt(tx);
e2ebc74d
JB
600 }
601
6a22a59d
JB
602 /* not reached */
603 WARN_ON(1);
9ae54c84 604 return TX_DROP;
e2ebc74d
JB
605}
606
9ae54c84 607static ieee80211_tx_result
5cf121c3 608ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
e2ebc74d 609{
1abbe498 610 struct rate_selection rsel;
8318d78a
JB
611 struct ieee80211_supported_band *sband;
612
613 sband = tx->local->hw.wiphy->bands[tx->local->hw.conf.channel->band];
e2ebc74d 614
5cf121c3 615 if (likely(!tx->rate)) {
8318d78a 616 rate_control_get_rate(tx->dev, sband, tx->skb, &rsel);
5cf121c3 617 tx->rate = rsel.rate;
8318d78a 618 if (unlikely(rsel.probe)) {
5cf121c3 619 tx->control->flags |=
58d4185e 620 IEEE80211_TXCTL_RATE_CTRL_PROBE;
5cf121c3
JB
621 tx->flags |= IEEE80211_TX_PROBE_LAST_FRAG;
622 tx->control->alt_retry_rate = tx->rate;
623 tx->rate = rsel.probe;
58d4185e 624 } else
5cf121c3 625 tx->control->alt_retry_rate = NULL;
58d4185e 626
5cf121c3 627 if (!tx->rate)
9ae54c84 628 return TX_DROP;
58d4185e 629 } else
5cf121c3 630 tx->control->alt_retry_rate = NULL;
58d4185e 631
8318d78a 632 if (tx->sdata->bss_conf.use_cts_prot &&
5cf121c3
JB
633 (tx->flags & IEEE80211_TX_FRAGMENTED) && rsel.nonerp) {
634 tx->last_frag_rate = tx->rate;
1abbe498 635 if (rsel.probe)
5cf121c3 636 tx->flags &= ~IEEE80211_TX_PROBE_LAST_FRAG;
badffb72 637 else
5cf121c3
JB
638 tx->flags |= IEEE80211_TX_PROBE_LAST_FRAG;
639 tx->rate = rsel.nonerp;
640 tx->control->tx_rate = rsel.nonerp;
641 tx->control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
e2ebc74d 642 } else {
5cf121c3
JB
643 tx->last_frag_rate = tx->rate;
644 tx->control->tx_rate = tx->rate;
e2ebc74d 645 }
5cf121c3 646 tx->control->tx_rate = tx->rate;
e2ebc74d 647
9ae54c84 648 return TX_CONTINUE;
e2ebc74d
JB
649}
650
9ae54c84 651static ieee80211_tx_result
5cf121c3 652ieee80211_tx_h_misc(struct ieee80211_tx_data *tx)
e2ebc74d
JB
653{
654 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
7e9ed188 655 u16 fc = le16_to_cpu(hdr->frame_control);
e2ebc74d 656 u16 dur;
5cf121c3 657 struct ieee80211_tx_control *control = tx->control;
e2ebc74d 658
58d4185e
JB
659 if (!control->retry_limit) {
660 if (!is_multicast_ether_addr(hdr->addr1)) {
661 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold
662 && tx->local->rts_threshold <
663 IEEE80211_MAX_RTS_THRESHOLD) {
664 control->flags |=
665 IEEE80211_TXCTL_USE_RTS_CTS;
666 control->flags |=
667 IEEE80211_TXCTL_LONG_RETRY_LIMIT;
668 control->retry_limit =
669 tx->local->long_retry_limit;
670 } else {
671 control->retry_limit =
672 tx->local->short_retry_limit;
673 }
e2ebc74d 674 } else {
58d4185e 675 control->retry_limit = 1;
e2ebc74d 676 }
e2ebc74d
JB
677 }
678
5cf121c3 679 if (tx->flags & IEEE80211_TX_FRAGMENTED) {
e2ebc74d
JB
680 /* Do not use multiple retry rates when sending fragmented
681 * frames.
682 * TODO: The last fragment could still use multiple retry
683 * rates. */
8318d78a 684 control->alt_retry_rate = NULL;
e2ebc74d
JB
685 }
686
687 /* Use CTS protection for unicast frames sent using extended rates if
688 * there are associated non-ERP stations and RTS/CTS is not configured
689 * for the frame. */
8318d78a 690 if ((tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE) &&
5cf121c3
JB
691 (tx->rate->flags & IEEE80211_RATE_ERP_G) &&
692 (tx->flags & IEEE80211_TX_UNICAST) &&
471b3efd 693 tx->sdata->bss_conf.use_cts_prot &&
e2ebc74d
JB
694 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
695 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
696
7e9ed188
DD
697 /* Transmit data frames using short preambles if the driver supports
698 * short preambles at the selected rate and short preambles are
699 * available on the network at the current point in time. */
700 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
5cf121c3 701 (tx->rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
471b3efd 702 tx->sdata->bss_conf.use_short_preamble &&
07346f81 703 (!tx->sta || test_sta_flags(tx->sta, WLAN_STA_SHORT_PREAMBLE))) {
5cf121c3 704 tx->control->flags |= IEEE80211_TXCTL_SHORT_PREAMBLE;
7e9ed188
DD
705 }
706
e2ebc74d
JB
707 /* Setup duration field for the first fragment of the frame. Duration
708 * for remaining fragments will be updated when they are being sent
709 * to low-level driver in ieee80211_tx(). */
710 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
5cf121c3
JB
711 (tx->flags & IEEE80211_TX_FRAGMENTED) ?
712 tx->extra_frag[0]->len : 0);
e2ebc74d
JB
713 hdr->duration_id = cpu_to_le16(dur);
714
715 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
716 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
8318d78a
JB
717 struct ieee80211_supported_band *sband;
718 struct ieee80211_rate *rate, *baserate;
719 int idx;
720
721 sband = tx->local->hw.wiphy->bands[
722 tx->local->hw.conf.channel->band];
e2ebc74d
JB
723
724 /* Do not use multiple retry rates when using RTS/CTS */
8318d78a 725 control->alt_retry_rate = NULL;
e2ebc74d
JB
726
727 /* Use min(data rate, max base rate) as CTS/RTS rate */
5cf121c3 728 rate = tx->rate;
8318d78a
JB
729 baserate = NULL;
730
731 for (idx = 0; idx < sband->n_bitrates; idx++) {
732 if (sband->bitrates[idx].bitrate > rate->bitrate)
733 continue;
734 if (tx->sdata->basic_rates & BIT(idx) &&
735 (!baserate ||
736 (baserate->bitrate < sband->bitrates[idx].bitrate)))
737 baserate = &sband->bitrates[idx];
738 }
e2ebc74d 739
8318d78a
JB
740 if (baserate)
741 control->rts_cts_rate = baserate;
742 else
743 control->rts_cts_rate = &sband->bitrates[0];
e2ebc74d
JB
744 }
745
746 if (tx->sta) {
fff77109 747 control->aid = tx->sta->aid;
e2ebc74d
JB
748 tx->sta->tx_packets++;
749 tx->sta->tx_fragments++;
750 tx->sta->tx_bytes += tx->skb->len;
5cf121c3 751 if (tx->extra_frag) {
e2ebc74d 752 int i;
5cf121c3
JB
753 tx->sta->tx_fragments += tx->num_extra_frag;
754 for (i = 0; i < tx->num_extra_frag; i++) {
e2ebc74d 755 tx->sta->tx_bytes +=
5cf121c3 756 tx->extra_frag[i]->len;
e2ebc74d
JB
757 }
758 }
759 }
760
9ae54c84 761 return TX_CONTINUE;
e2ebc74d
JB
762}
763
9ae54c84 764static ieee80211_tx_result
5cf121c3 765ieee80211_tx_h_load_stats(struct ieee80211_tx_data *tx)
e2ebc74d
JB
766{
767 struct ieee80211_local *local = tx->local;
e2ebc74d
JB
768 struct sk_buff *skb = tx->skb;
769 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
770 u32 load = 0, hdrtime;
5cf121c3 771 struct ieee80211_rate *rate = tx->rate;
e2ebc74d
JB
772
773 /* TODO: this could be part of tx_status handling, so that the number
774 * of retries would be known; TX rate should in that case be stored
775 * somewhere with the packet */
776
777 /* Estimate total channel use caused by this frame */
778
779 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
780 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
781
5cf121c3
JB
782 if (tx->channel->band == IEEE80211_BAND_5GHZ ||
783 (tx->channel->band == IEEE80211_BAND_2GHZ &&
8318d78a 784 rate->flags & IEEE80211_RATE_ERP_G))
e2ebc74d
JB
785 hdrtime = CHAN_UTIL_HDR_SHORT;
786 else
787 hdrtime = CHAN_UTIL_HDR_LONG;
788
789 load = hdrtime;
790 if (!is_multicast_ether_addr(hdr->addr1))
791 load += hdrtime;
792
5cf121c3 793 if (tx->control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
e2ebc74d 794 load += 2 * hdrtime;
5cf121c3 795 else if (tx->control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
e2ebc74d
JB
796 load += hdrtime;
797
8318d78a
JB
798 /* TODO: optimise again */
799 load += skb->len * CHAN_UTIL_RATE_LCM / rate->bitrate;
e2ebc74d 800
5cf121c3 801 if (tx->extra_frag) {
e2ebc74d 802 int i;
5cf121c3 803 for (i = 0; i < tx->num_extra_frag; i++) {
e2ebc74d 804 load += 2 * hdrtime;
5cf121c3
JB
805 load += tx->extra_frag[i]->len *
806 tx->rate->bitrate;
e2ebc74d
JB
807 }
808 }
809
810 /* Divide channel_use by 8 to avoid wrapping around the counter */
811 load >>= CHAN_UTIL_SHIFT;
812 local->channel_use_raw += load;
813 if (tx->sta)
814 tx->sta->channel_use_raw += load;
815 tx->sdata->channel_use_raw += load;
816
9ae54c84 817 return TX_CONTINUE;
e2ebc74d
JB
818}
819
e2ebc74d 820
5cf121c3 821typedef ieee80211_tx_result (*ieee80211_tx_handler)(struct ieee80211_tx_data *);
58905290 822static ieee80211_tx_handler ieee80211_tx_handlers[] =
e2ebc74d
JB
823{
824 ieee80211_tx_h_check_assoc,
825 ieee80211_tx_h_sequence,
826 ieee80211_tx_h_ps_buf,
827 ieee80211_tx_h_select_key,
828 ieee80211_tx_h_michael_mic_add,
829 ieee80211_tx_h_fragment,
6a22a59d 830 ieee80211_tx_h_encrypt,
e2ebc74d
JB
831 ieee80211_tx_h_rate_ctrl,
832 ieee80211_tx_h_misc,
833 ieee80211_tx_h_load_stats,
834 NULL
835};
836
837/* actual transmit path */
838
839/*
840 * deal with packet injection down monitor interface
841 * with Radiotap Header -- only called for monitor mode interface
842 */
9ae54c84 843static ieee80211_tx_result
5cf121c3 844__ieee80211_parse_tx_radiotap(struct ieee80211_tx_data *tx,
58d4185e 845 struct sk_buff *skb)
e2ebc74d
JB
846{
847 /*
848 * this is the moment to interpret and discard the radiotap header that
849 * must be at the start of the packet injected in Monitor mode
850 *
851 * Need to take some care with endian-ness since radiotap
852 * args are little-endian
853 */
854
855 struct ieee80211_radiotap_iterator iterator;
856 struct ieee80211_radiotap_header *rthdr =
857 (struct ieee80211_radiotap_header *) skb->data;
8318d78a 858 struct ieee80211_supported_band *sband;
e2ebc74d 859 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
5cf121c3 860 struct ieee80211_tx_control *control = tx->control;
e2ebc74d 861
8318d78a
JB
862 sband = tx->local->hw.wiphy->bands[tx->local->hw.conf.channel->band];
863
58d4185e 864 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
5cf121c3
JB
865 tx->flags |= IEEE80211_TX_INJECTED;
866 tx->flags &= ~IEEE80211_TX_FRAGMENTED;
e2ebc74d
JB
867
868 /*
869 * for every radiotap entry that is present
870 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
871 * entries present, or -EINVAL on error)
872 */
873
874 while (!ret) {
875 int i, target_rate;
876
877 ret = ieee80211_radiotap_iterator_next(&iterator);
878
879 if (ret)
880 continue;
881
882 /* see if this argument is something we can use */
883 switch (iterator.this_arg_index) {
884 /*
885 * You must take care when dereferencing iterator.this_arg
886 * for multibyte types... the pointer is not aligned. Use
887 * get_unaligned((type *)iterator.this_arg) to dereference
888 * iterator.this_arg for type "type" safely on all arches.
889 */
890 case IEEE80211_RADIOTAP_RATE:
891 /*
892 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
893 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
894 */
895 target_rate = (*iterator.this_arg) * 5;
8318d78a
JB
896 for (i = 0; i < sband->n_bitrates; i++) {
897 struct ieee80211_rate *r;
e2ebc74d 898
8318d78a
JB
899 r = &sband->bitrates[i];
900
901 if (r->bitrate == target_rate) {
5cf121c3 902 tx->rate = r;
58d4185e
JB
903 break;
904 }
e2ebc74d
JB
905 }
906 break;
907
908 case IEEE80211_RADIOTAP_ANTENNA:
909 /*
910 * radiotap uses 0 for 1st ant, mac80211 is 1 for
911 * 1st ant
912 */
913 control->antenna_sel_tx = (*iterator.this_arg) + 1;
914 break;
915
8318d78a 916#if 0
e2ebc74d
JB
917 case IEEE80211_RADIOTAP_DBM_TX_POWER:
918 control->power_level = *iterator.this_arg;
919 break;
8318d78a 920#endif
e2ebc74d
JB
921
922 case IEEE80211_RADIOTAP_FLAGS:
923 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
924 /*
925 * this indicates that the skb we have been
926 * handed has the 32-bit FCS CRC at the end...
927 * we should react to that by snipping it off
928 * because it will be recomputed and added
929 * on transmission
930 */
931 if (skb->len < (iterator.max_length + FCS_LEN))
9ae54c84 932 return TX_DROP;
e2ebc74d
JB
933
934 skb_trim(skb, skb->len - FCS_LEN);
935 }
58d4185e
JB
936 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
937 control->flags &=
938 ~IEEE80211_TXCTL_DO_NOT_ENCRYPT;
939 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
5cf121c3 940 tx->flags |= IEEE80211_TX_FRAGMENTED;
e2ebc74d
JB
941 break;
942
58d4185e
JB
943 /*
944 * Please update the file
945 * Documentation/networking/mac80211-injection.txt
946 * when parsing new fields here.
947 */
948
e2ebc74d
JB
949 default:
950 break;
951 }
952 }
953
954 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
9ae54c84 955 return TX_DROP;
e2ebc74d
JB
956
957 /*
958 * remove the radiotap header
959 * iterator->max_length was sanity-checked against
960 * skb->len by iterator init
961 */
962 skb_pull(skb, iterator.max_length);
963
9ae54c84 964 return TX_CONTINUE;
e2ebc74d
JB
965}
966
58d4185e
JB
967/*
968 * initialises @tx
969 */
9ae54c84 970static ieee80211_tx_result
5cf121c3 971__ieee80211_tx_prepare(struct ieee80211_tx_data *tx,
e2ebc74d
JB
972 struct sk_buff *skb,
973 struct net_device *dev,
974 struct ieee80211_tx_control *control)
975{
976 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
58d4185e 977 struct ieee80211_hdr *hdr;
e2ebc74d 978 struct ieee80211_sub_if_data *sdata;
e2ebc74d
JB
979
980 int hdrlen;
981
982 memset(tx, 0, sizeof(*tx));
983 tx->skb = skb;
984 tx->dev = dev; /* use original interface */
985 tx->local = local;
986 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5cf121c3 987 tx->control = control;
e2ebc74d 988 /*
58d4185e
JB
989 * Set this flag (used below to indicate "automatic fragmentation"),
990 * it will be cleared/left by radiotap as desired.
e2ebc74d 991 */
5cf121c3 992 tx->flags |= IEEE80211_TX_FRAGMENTED;
e2ebc74d
JB
993
994 /* process and remove the injection radiotap header */
995 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
51fb61e7 996 if (unlikely(sdata->vif.type == IEEE80211_IF_TYPE_MNTR)) {
9ae54c84
JB
997 if (__ieee80211_parse_tx_radiotap(tx, skb) == TX_DROP)
998 return TX_DROP;
58d4185e 999
e2ebc74d 1000 /*
58d4185e
JB
1001 * __ieee80211_parse_tx_radiotap has now removed
1002 * the radiotap header that was present and pre-filled
1003 * 'tx' with tx control information.
e2ebc74d 1004 */
e2ebc74d
JB
1005 }
1006
58d4185e
JB
1007 hdr = (struct ieee80211_hdr *) skb->data;
1008
24338793 1009 tx->sta = sta_info_get(local, hdr->addr1);
1010 tx->fc = le16_to_cpu(hdr->frame_control);
58d4185e 1011
badffb72 1012 if (is_multicast_ether_addr(hdr->addr1)) {
5cf121c3 1013 tx->flags &= ~IEEE80211_TX_UNICAST;
e2ebc74d 1014 control->flags |= IEEE80211_TXCTL_NO_ACK;
badffb72 1015 } else {
5cf121c3 1016 tx->flags |= IEEE80211_TX_UNICAST;
e2ebc74d 1017 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
badffb72 1018 }
58d4185e 1019
5cf121c3
JB
1020 if (tx->flags & IEEE80211_TX_FRAGMENTED) {
1021 if ((tx->flags & IEEE80211_TX_UNICAST) &&
58d4185e
JB
1022 skb->len + FCS_LEN > local->fragmentation_threshold &&
1023 !local->ops->set_frag_threshold)
5cf121c3 1024 tx->flags |= IEEE80211_TX_FRAGMENTED;
58d4185e 1025 else
5cf121c3 1026 tx->flags &= ~IEEE80211_TX_FRAGMENTED;
58d4185e
JB
1027 }
1028
e2ebc74d 1029 if (!tx->sta)
d46e144b 1030 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
07346f81 1031 else if (test_and_clear_sta_flags(tx->sta, WLAN_STA_CLEAR_PS_FILT))
d46e144b 1032 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
58d4185e 1033
e2ebc74d
JB
1034 hdrlen = ieee80211_get_hdrlen(tx->fc);
1035 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
1036 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
1037 tx->ethertype = (pos[0] << 8) | pos[1];
1038 }
1039 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1040
9ae54c84 1041 return TX_CONTINUE;
e2ebc74d
JB
1042}
1043
32bfd35d 1044/*
58d4185e
JB
1045 * NB: @tx is uninitialised when passed in here
1046 */
5cf121c3 1047static int ieee80211_tx_prepare(struct ieee80211_tx_data *tx,
58d4185e
JB
1048 struct sk_buff *skb,
1049 struct net_device *mdev,
1050 struct ieee80211_tx_control *control)
e2ebc74d
JB
1051{
1052 struct ieee80211_tx_packet_data *pkt_data;
1053 struct net_device *dev;
1054
1055 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
881d966b 1056 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
e2ebc74d
JB
1057 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1058 dev_put(dev);
1059 dev = NULL;
1060 }
1061 if (unlikely(!dev))
1062 return -ENODEV;
58d4185e 1063 /* initialises tx with control */
e2ebc74d 1064 __ieee80211_tx_prepare(tx, skb, dev, control);
32bfd35d 1065 dev_put(dev);
e2ebc74d
JB
1066 return 0;
1067}
1068
1069static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
5cf121c3 1070 struct ieee80211_tx_data *tx)
e2ebc74d 1071{
5cf121c3 1072 struct ieee80211_tx_control *control = tx->control;
e2ebc74d
JB
1073 int ret, i;
1074
1075 if (!ieee80211_qdisc_installed(local->mdev) &&
1076 __ieee80211_queue_stopped(local, 0)) {
1077 netif_stop_queue(local->mdev);
1078 return IEEE80211_TX_AGAIN;
1079 }
1080 if (skb) {
dd1cd4c6
JB
1081 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1082 "TX to low-level driver", skb);
e2ebc74d
JB
1083 ret = local->ops->tx(local_to_hw(local), skb, control);
1084 if (ret)
1085 return IEEE80211_TX_AGAIN;
1086 local->mdev->trans_start = jiffies;
1087 ieee80211_led_tx(local, 1);
1088 }
5cf121c3 1089 if (tx->extra_frag) {
e2ebc74d
JB
1090 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1091 IEEE80211_TXCTL_USE_CTS_PROTECT |
d46e144b 1092 IEEE80211_TXCTL_CLEAR_PS_FILT |
e2ebc74d 1093 IEEE80211_TXCTL_FIRST_FRAGMENT);
5cf121c3
JB
1094 for (i = 0; i < tx->num_extra_frag; i++) {
1095 if (!tx->extra_frag[i])
e2ebc74d
JB
1096 continue;
1097 if (__ieee80211_queue_stopped(local, control->queue))
1098 return IEEE80211_TX_FRAG_AGAIN;
5cf121c3
JB
1099 if (i == tx->num_extra_frag) {
1100 control->tx_rate = tx->last_frag_rate;
8318d78a 1101
5cf121c3 1102 if (tx->flags & IEEE80211_TX_PROBE_LAST_FRAG)
e2ebc74d
JB
1103 control->flags |=
1104 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1105 else
1106 control->flags &=
1107 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1108 }
1109
dd1cd4c6 1110 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
e2ebc74d 1111 "TX to low-level driver",
5cf121c3 1112 tx->extra_frag[i]);
e2ebc74d 1113 ret = local->ops->tx(local_to_hw(local),
5cf121c3 1114 tx->extra_frag[i],
e2ebc74d
JB
1115 control);
1116 if (ret)
1117 return IEEE80211_TX_FRAG_AGAIN;
1118 local->mdev->trans_start = jiffies;
1119 ieee80211_led_tx(local, 1);
5cf121c3 1120 tx->extra_frag[i] = NULL;
e2ebc74d 1121 }
5cf121c3
JB
1122 kfree(tx->extra_frag);
1123 tx->extra_frag = NULL;
e2ebc74d
JB
1124 }
1125 return IEEE80211_TX_OK;
1126}
1127
1128static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
f9d540ee 1129 struct ieee80211_tx_control *control)
e2ebc74d
JB
1130{
1131 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1132 struct sta_info *sta;
1133 ieee80211_tx_handler *handler;
5cf121c3 1134 struct ieee80211_tx_data tx;
9ae54c84 1135 ieee80211_tx_result res = TX_DROP, res_prepare;
e2ebc74d
JB
1136 int ret, i;
1137
1138 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1139
1140 if (unlikely(skb->len < 10)) {
1141 dev_kfree_skb(skb);
1142 return 0;
1143 }
1144
d0709a65
JB
1145 rcu_read_lock();
1146
58d4185e 1147 /* initialises tx */
e2ebc74d
JB
1148 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1149
9ae54c84 1150 if (res_prepare == TX_DROP) {
e2ebc74d 1151 dev_kfree_skb(skb);
d0709a65 1152 rcu_read_unlock();
e2ebc74d
JB
1153 return 0;
1154 }
1155
1156 sta = tx.sta;
5cf121c3 1157 tx.channel = local->hw.conf.channel;
e2ebc74d 1158
58905290 1159 for (handler = ieee80211_tx_handlers; *handler != NULL;
58d4185e
JB
1160 handler++) {
1161 res = (*handler)(&tx);
9ae54c84 1162 if (res != TX_CONTINUE)
58d4185e 1163 break;
e2ebc74d
JB
1164 }
1165
1166 skb = tx.skb; /* handlers are allowed to change skb */
1167
9ae54c84 1168 if (unlikely(res == TX_DROP)) {
e2ebc74d
JB
1169 I802_DEBUG_INC(local->tx_handlers_drop);
1170 goto drop;
1171 }
1172
9ae54c84 1173 if (unlikely(res == TX_QUEUED)) {
e2ebc74d 1174 I802_DEBUG_INC(local->tx_handlers_queued);
d4e46a3d 1175 rcu_read_unlock();
e2ebc74d
JB
1176 return 0;
1177 }
1178
5cf121c3
JB
1179 if (tx.extra_frag) {
1180 for (i = 0; i < tx.num_extra_frag; i++) {
e2ebc74d
JB
1181 int next_len, dur;
1182 struct ieee80211_hdr *hdr =
1183 (struct ieee80211_hdr *)
5cf121c3 1184 tx.extra_frag[i]->data;
e2ebc74d 1185
5cf121c3
JB
1186 if (i + 1 < tx.num_extra_frag) {
1187 next_len = tx.extra_frag[i + 1]->len;
e2ebc74d
JB
1188 } else {
1189 next_len = 0;
5cf121c3 1190 tx.rate = tx.last_frag_rate;
e2ebc74d
JB
1191 }
1192 dur = ieee80211_duration(&tx, 0, next_len);
1193 hdr->duration_id = cpu_to_le16(dur);
1194 }
1195 }
1196
1197retry:
1198 ret = __ieee80211_tx(local, skb, &tx);
1199 if (ret) {
1200 struct ieee80211_tx_stored_packet *store =
1201 &local->pending_packet[control->queue];
1202
1203 if (ret == IEEE80211_TX_FRAG_AGAIN)
1204 skb = NULL;
1205 set_bit(IEEE80211_LINK_STATE_PENDING,
1206 &local->state[control->queue]);
1207 smp_mb();
1208 /* When the driver gets out of buffers during sending of
1209 * fragments and calls ieee80211_stop_queue, there is
1210 * a small window between IEEE80211_LINK_STATE_XOFF and
1211 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1212 * gets available in that window (i.e. driver calls
1213 * ieee80211_wake_queue), we would end up with ieee80211_tx
1214 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1215 * continuing transmitting here when that situation is
1216 * possible to have happened. */
1217 if (!__ieee80211_queue_stopped(local, control->queue)) {
1218 clear_bit(IEEE80211_LINK_STATE_PENDING,
1219 &local->state[control->queue]);
1220 goto retry;
1221 }
1222 memcpy(&store->control, control,
1223 sizeof(struct ieee80211_tx_control));
1224 store->skb = skb;
5cf121c3
JB
1225 store->extra_frag = tx.extra_frag;
1226 store->num_extra_frag = tx.num_extra_frag;
1227 store->last_frag_rate = tx.last_frag_rate;
badffb72 1228 store->last_frag_rate_ctrl_probe =
5cf121c3 1229 !!(tx.flags & IEEE80211_TX_PROBE_LAST_FRAG);
e2ebc74d 1230 }
d4e46a3d 1231 rcu_read_unlock();
e2ebc74d
JB
1232 return 0;
1233
1234 drop:
1235 if (skb)
1236 dev_kfree_skb(skb);
5cf121c3
JB
1237 for (i = 0; i < tx.num_extra_frag; i++)
1238 if (tx.extra_frag[i])
1239 dev_kfree_skb(tx.extra_frag[i]);
1240 kfree(tx.extra_frag);
d4e46a3d 1241 rcu_read_unlock();
e2ebc74d
JB
1242 return 0;
1243}
1244
1245/* device xmit handlers */
1246
1247int ieee80211_master_start_xmit(struct sk_buff *skb,
1248 struct net_device *dev)
1249{
1250 struct ieee80211_tx_control control;
1251 struct ieee80211_tx_packet_data *pkt_data;
1252 struct net_device *odev = NULL;
1253 struct ieee80211_sub_if_data *osdata;
1254 int headroom;
1255 int ret;
1256
1257 /*
1258 * copy control out of the skb so other people can use skb->cb
1259 */
1260 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1261 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1262
1263 if (pkt_data->ifindex)
881d966b 1264 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
e2ebc74d
JB
1265 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1266 dev_put(odev);
1267 odev = NULL;
1268 }
1269 if (unlikely(!odev)) {
1270#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1271 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1272 "originating device\n", dev->name);
1273#endif
1274 dev_kfree_skb(skb);
1275 return 0;
1276 }
1277 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1278
1279 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1280 if (skb_headroom(skb) < headroom) {
1281 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1282 dev_kfree_skb(skb);
1283 dev_put(odev);
1284 return 0;
1285 }
1286 }
1287
32bfd35d 1288 control.vif = &osdata->vif;
51fb61e7 1289 control.type = osdata->vif.type;
e8bf9649 1290 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
e2ebc74d 1291 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
e8bf9649 1292 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
e2ebc74d 1293 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
e8bf9649 1294 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
e2ebc74d 1295 control.flags |= IEEE80211_TXCTL_REQUEUE;
678f5f71
JB
1296 if (pkt_data->flags & IEEE80211_TXPD_EAPOL_FRAME)
1297 control.flags |= IEEE80211_TXCTL_EAPOL_FRAME;
9e723492
RR
1298 if (pkt_data->flags & IEEE80211_TXPD_AMPDU)
1299 control.flags |= IEEE80211_TXCTL_AMPDU;
e2ebc74d
JB
1300 control.queue = pkt_data->queue;
1301
f9d540ee 1302 ret = ieee80211_tx(odev, skb, &control);
e2ebc74d
JB
1303 dev_put(odev);
1304
1305 return ret;
1306}
1307
1308int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1309 struct net_device *dev)
1310{
1311 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1312 struct ieee80211_tx_packet_data *pkt_data;
1313 struct ieee80211_radiotap_header *prthdr =
1314 (struct ieee80211_radiotap_header *)skb->data;
9b8a74e3 1315 u16 len_rthdr;
e2ebc74d 1316
9b8a74e3
AG
1317 /* check for not even having the fixed radiotap header part */
1318 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1319 goto fail; /* too short to be possibly valid */
1320
1321 /* is it a header version we can trust to find length from? */
1322 if (unlikely(prthdr->it_version))
1323 goto fail; /* only version 0 is supported */
1324
1325 /* then there must be a radiotap header with a length we can use */
1326 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1327
1328 /* does the skb contain enough to deliver on the alleged length? */
1329 if (unlikely(skb->len < len_rthdr))
1330 goto fail; /* skb too short for claimed rt header extent */
e2ebc74d
JB
1331
1332 skb->dev = local->mdev;
1333
1334 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1335 memset(pkt_data, 0, sizeof(*pkt_data));
9b8a74e3 1336 /* needed because we set skb device to master */
e2ebc74d 1337 pkt_data->ifindex = dev->ifindex;
9b8a74e3 1338
e8bf9649 1339 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
e2ebc74d 1340
e2ebc74d
JB
1341 /*
1342 * fix up the pointers accounting for the radiotap
1343 * header still being in there. We are being given
1344 * a precooked IEEE80211 header so no need for
1345 * normal processing
1346 */
9b8a74e3 1347 skb_set_mac_header(skb, len_rthdr);
e2ebc74d 1348 /*
9b8a74e3
AG
1349 * these are just fixed to the end of the rt area since we
1350 * don't have any better information and at this point, nobody cares
e2ebc74d 1351 */
9b8a74e3
AG
1352 skb_set_network_header(skb, len_rthdr);
1353 skb_set_transport_header(skb, len_rthdr);
e2ebc74d 1354
9b8a74e3
AG
1355 /* pass the radiotap header up to the next stage intact */
1356 dev_queue_xmit(skb);
e2ebc74d 1357 return NETDEV_TX_OK;
9b8a74e3
AG
1358
1359fail:
1360 dev_kfree_skb(skb);
1361 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
e2ebc74d
JB
1362}
1363
1364/**
1365 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1366 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1367 * @skb: packet to be sent
1368 * @dev: incoming interface
1369 *
1370 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1371 * not be freed, and caller is responsible for either retrying later or freeing
1372 * skb).
1373 *
1374 * This function takes in an Ethernet header and encapsulates it with suitable
1375 * IEEE 802.11 header based on which interface the packet is coming in. The
1376 * encapsulated packet will then be passed to master interface, wlan#.11, for
1377 * transmission (through low-level driver).
1378 */
1379int ieee80211_subif_start_xmit(struct sk_buff *skb,
1380 struct net_device *dev)
1381{
1382 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1383 struct ieee80211_tx_packet_data *pkt_data;
1384 struct ieee80211_sub_if_data *sdata;
1385 int ret = 1, head_need;
33b64eb2 1386 u16 ethertype, hdrlen, meshhdrlen = 0, fc;
e2ebc74d 1387 struct ieee80211_hdr hdr;
33b64eb2 1388 struct ieee80211s_hdr mesh_hdr;
e2ebc74d
JB
1389 const u8 *encaps_data;
1390 int encaps_len, skip_header_bytes;
e8bf9649 1391 int nh_pos, h_pos;
e2ebc74d 1392 struct sta_info *sta;
ce3edf6d 1393 u32 sta_flags = 0;
e2ebc74d
JB
1394
1395 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1396 if (unlikely(skb->len < ETH_HLEN)) {
1397 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1398 dev->name, skb->len);
1399 ret = 0;
1400 goto fail;
1401 }
1402
1403 nh_pos = skb_network_header(skb) - skb->data;
1404 h_pos = skb_transport_header(skb) - skb->data;
1405
1406 /* convert Ethernet header to proper 802.11 header (based on
1407 * operation mode) */
1408 ethertype = (skb->data[12] << 8) | skb->data[13];
e2ebc74d
JB
1409 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1410
51fb61e7 1411 switch (sdata->vif.type) {
cf966838
JB
1412 case IEEE80211_IF_TYPE_AP:
1413 case IEEE80211_IF_TYPE_VLAN:
e2ebc74d
JB
1414 fc |= IEEE80211_FCTL_FROMDS;
1415 /* DA BSSID SA */
1416 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1417 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1418 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1419 hdrlen = 24;
cf966838
JB
1420 break;
1421 case IEEE80211_IF_TYPE_WDS:
e2ebc74d
JB
1422 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1423 /* RA TA DA SA */
1424 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1425 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1426 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1427 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1428 hdrlen = 30;
cf966838 1429 break;
33b64eb2
LCC
1430#ifdef CONFIG_MAC80211_MESH
1431 case IEEE80211_IF_TYPE_MESH_POINT:
1432 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1433 /* RA TA DA SA */
1434 if (is_multicast_ether_addr(skb->data))
1435 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1436 else if (mesh_nexthop_lookup(hdr.addr1, skb, dev))
1437 return 0;
1438 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1439 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1440 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1441 if (skb->pkt_type == PACKET_OTHERHOST) {
1442 /* Forwarded frame, keep mesh ttl and seqnum */
1443 struct ieee80211s_hdr *prev_meshhdr;
1444 prev_meshhdr = ((struct ieee80211s_hdr *)skb->cb);
1445 meshhdrlen = ieee80211_get_mesh_hdrlen(prev_meshhdr);
1446 memcpy(&mesh_hdr, prev_meshhdr, meshhdrlen);
1447 sdata->u.sta.mshstats.fwded_frames++;
1448 } else {
1449 if (!sdata->u.sta.mshcfg.dot11MeshTTL) {
1450 /* Do not send frames with mesh_ttl == 0 */
1451 sdata->u.sta.mshstats.dropped_frames_ttl++;
1452 ret = 0;
1453 goto fail;
1454 }
1455 meshhdrlen = ieee80211_new_mesh_header(&mesh_hdr,
902acc78 1456 sdata);
33b64eb2
LCC
1457 }
1458 hdrlen = 30;
1459 break;
1460#endif
cf966838 1461 case IEEE80211_IF_TYPE_STA:
e2ebc74d
JB
1462 fc |= IEEE80211_FCTL_TODS;
1463 /* BSSID SA DA */
1464 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1465 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1466 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1467 hdrlen = 24;
cf966838
JB
1468 break;
1469 case IEEE80211_IF_TYPE_IBSS:
e2ebc74d
JB
1470 /* DA SA BSSID */
1471 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1472 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1473 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1474 hdrlen = 24;
cf966838
JB
1475 break;
1476 default:
e2ebc74d
JB
1477 ret = 0;
1478 goto fail;
1479 }
1480
7d185b8b
JB
1481 /*
1482 * There's no need to try to look up the destination
1483 * if it is a multicast address (which can only happen
1484 * in AP mode)
1485 */
1486 if (!is_multicast_ether_addr(hdr.addr1)) {
d0709a65 1487 rcu_read_lock();
7d185b8b 1488 sta = sta_info_get(local, hdr.addr1);
d0709a65 1489 if (sta)
07346f81 1490 sta_flags = get_sta_flags(sta);
d0709a65 1491 rcu_read_unlock();
e2ebc74d
JB
1492 }
1493
3434fbd3
JB
1494 /* receiver and we are QoS enabled, use a QoS type frame */
1495 if (sta_flags & WLAN_STA_WME && local->hw.queues >= 4) {
ce3edf6d
JB
1496 fc |= IEEE80211_STYPE_QOS_DATA;
1497 hdrlen += 2;
1498 }
1499
1500 /*
238814fd
JB
1501 * Drop unicast frames to unauthorised stations unless they are
1502 * EAPOL frames from the local station.
ce3edf6d 1503 */
238814fd 1504 if (unlikely(!is_multicast_ether_addr(hdr.addr1) &&
33b64eb2
LCC
1505 !(sta_flags & WLAN_STA_AUTHORIZED) &&
1506 !(ethertype == ETH_P_PAE &&
ce3edf6d
JB
1507 compare_ether_addr(dev->dev_addr,
1508 skb->data + ETH_ALEN) == 0))) {
1509#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1510 DECLARE_MAC_BUF(mac);
1511
1512 if (net_ratelimit())
1513 printk(KERN_DEBUG "%s: dropped frame to %s"
1514 " (unauthorized port)\n", dev->name,
1515 print_mac(mac, hdr.addr1));
1516#endif
1517
1518 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
1519
1520 ret = 0;
1521 goto fail;
1522 }
1523
e2ebc74d
JB
1524 hdr.frame_control = cpu_to_le16(fc);
1525 hdr.duration_id = 0;
1526 hdr.seq_ctrl = 0;
1527
1528 skip_header_bytes = ETH_HLEN;
1529 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1530 encaps_data = bridge_tunnel_header;
1531 encaps_len = sizeof(bridge_tunnel_header);
1532 skip_header_bytes -= 2;
1533 } else if (ethertype >= 0x600) {
1534 encaps_data = rfc1042_header;
1535 encaps_len = sizeof(rfc1042_header);
1536 skip_header_bytes -= 2;
1537 } else {
1538 encaps_data = NULL;
1539 encaps_len = 0;
1540 }
1541
1542 skb_pull(skb, skip_header_bytes);
1543 nh_pos -= skip_header_bytes;
1544 h_pos -= skip_header_bytes;
1545
1546 /* TODO: implement support for fragments so that there is no need to
1547 * reallocate and copy payload; it might be enough to support one
1548 * extra fragment that would be copied in the beginning of the frame
1549 * data.. anyway, it would be nice to include this into skb structure
1550 * somehow
1551 *
1552 * There are few options for this:
1553 * use skb->cb as an extra space for 802.11 header
1554 * allocate new buffer if not enough headroom
1555 * make sure that there is enough headroom in every skb by increasing
1556 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1557 * alloc_skb() (net/core/skbuff.c)
1558 */
33b64eb2 1559 head_need = hdrlen + encaps_len + meshhdrlen + local->tx_headroom;
e2ebc74d
JB
1560 head_need -= skb_headroom(skb);
1561
1562 /* We are going to modify skb data, so make a copy of it if happens to
1563 * be cloned. This could happen, e.g., with Linux bridge code passing
1564 * us broadcast frames. */
1565
1566 if (head_need > 0 || skb_cloned(skb)) {
1567#if 0
1568 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1569 "of headroom\n", dev->name, head_need);
1570#endif
1571
1572 if (skb_cloned(skb))
1573 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1574 else
1575 I802_DEBUG_INC(local->tx_expand_skb_head);
1576 /* Since we have to reallocate the buffer, make sure that there
1577 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1578 * before payload and 12 after). */
1579 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1580 12, GFP_ATOMIC)) {
1581 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1582 "\n", dev->name);
1583 goto fail;
1584 }
1585 }
1586
1587 if (encaps_data) {
1588 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1589 nh_pos += encaps_len;
1590 h_pos += encaps_len;
1591 }
c29b9b9b 1592
33b64eb2
LCC
1593 if (meshhdrlen > 0) {
1594 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
1595 nh_pos += meshhdrlen;
1596 h_pos += meshhdrlen;
1597 }
1598
c29b9b9b
JB
1599 if (fc & IEEE80211_STYPE_QOS_DATA) {
1600 __le16 *qos_control;
1601
1602 qos_control = (__le16*) skb_push(skb, 2);
1603 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1604 /*
1605 * Maybe we could actually set some fields here, for now just
1606 * initialise to zero to indicate no special operation.
1607 */
1608 *qos_control = 0;
1609 } else
1610 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1611
e2ebc74d
JB
1612 nh_pos += hdrlen;
1613 h_pos += hdrlen;
1614
1615 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1616 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1617 pkt_data->ifindex = dev->ifindex;
678f5f71
JB
1618 if (ethertype == ETH_P_PAE)
1619 pkt_data->flags |= IEEE80211_TXPD_EAPOL_FRAME;
e2ebc74d
JB
1620
1621 skb->dev = local->mdev;
68aae116
SH
1622 dev->stats.tx_packets++;
1623 dev->stats.tx_bytes += skb->len;
e2ebc74d
JB
1624
1625 /* Update skb pointers to various headers since this modified frame
1626 * is going to go through Linux networking code that may potentially
1627 * need things like pointer to IP header. */
1628 skb_set_mac_header(skb, 0);
1629 skb_set_network_header(skb, nh_pos);
1630 skb_set_transport_header(skb, h_pos);
1631
1632 dev->trans_start = jiffies;
1633 dev_queue_xmit(skb);
1634
1635 return 0;
1636
1637 fail:
1638 if (!ret)
1639 dev_kfree_skb(skb);
1640
1641 return ret;
1642}
1643
e2ebc74d
JB
1644/* helper functions for pending packets for when queues are stopped */
1645
1646void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1647{
1648 int i, j;
1649 struct ieee80211_tx_stored_packet *store;
1650
1651 for (i = 0; i < local->hw.queues; i++) {
1652 if (!__ieee80211_queue_pending(local, i))
1653 continue;
1654 store = &local->pending_packet[i];
1655 kfree_skb(store->skb);
1656 for (j = 0; j < store->num_extra_frag; j++)
1657 kfree_skb(store->extra_frag[j]);
1658 kfree(store->extra_frag);
1659 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1660 }
1661}
1662
1663void ieee80211_tx_pending(unsigned long data)
1664{
1665 struct ieee80211_local *local = (struct ieee80211_local *)data;
1666 struct net_device *dev = local->mdev;
1667 struct ieee80211_tx_stored_packet *store;
5cf121c3 1668 struct ieee80211_tx_data tx;
e2ebc74d
JB
1669 int i, ret, reschedule = 0;
1670
1671 netif_tx_lock_bh(dev);
1672 for (i = 0; i < local->hw.queues; i++) {
1673 if (__ieee80211_queue_stopped(local, i))
1674 continue;
1675 if (!__ieee80211_queue_pending(local, i)) {
1676 reschedule = 1;
1677 continue;
1678 }
1679 store = &local->pending_packet[i];
5cf121c3
JB
1680 tx.control = &store->control;
1681 tx.extra_frag = store->extra_frag;
1682 tx.num_extra_frag = store->num_extra_frag;
1683 tx.last_frag_rate = store->last_frag_rate;
badffb72
JS
1684 tx.flags = 0;
1685 if (store->last_frag_rate_ctrl_probe)
5cf121c3 1686 tx.flags |= IEEE80211_TX_PROBE_LAST_FRAG;
e2ebc74d
JB
1687 ret = __ieee80211_tx(local, store->skb, &tx);
1688 if (ret) {
1689 if (ret == IEEE80211_TX_FRAG_AGAIN)
1690 store->skb = NULL;
1691 } else {
1692 clear_bit(IEEE80211_LINK_STATE_PENDING,
1693 &local->state[i]);
1694 reschedule = 1;
1695 }
1696 }
1697 netif_tx_unlock_bh(dev);
1698 if (reschedule) {
1699 if (!ieee80211_qdisc_installed(dev)) {
1700 if (!__ieee80211_queue_stopped(local, 0))
1701 netif_wake_queue(dev);
1702 } else
1703 netif_schedule(dev);
1704 }
1705}
1706
1707/* functions for drivers to get certain frames */
1708
1709static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1710 struct ieee80211_if_ap *bss,
5dfdaf58
JB
1711 struct sk_buff *skb,
1712 struct beacon_data *beacon)
e2ebc74d
JB
1713{
1714 u8 *pos, *tim;
1715 int aid0 = 0;
1716 int i, have_bits = 0, n1, n2;
1717
1718 /* Generate bitmap for TIM only if there are any STAs in power save
1719 * mode. */
e2ebc74d
JB
1720 if (atomic_read(&bss->num_sta_ps) > 0)
1721 /* in the hope that this is faster than
1722 * checking byte-for-byte */
1723 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1724 IEEE80211_MAX_AID+1);
1725
1726 if (bss->dtim_count == 0)
5dfdaf58 1727 bss->dtim_count = beacon->dtim_period - 1;
e2ebc74d
JB
1728 else
1729 bss->dtim_count--;
1730
1731 tim = pos = (u8 *) skb_put(skb, 6);
1732 *pos++ = WLAN_EID_TIM;
1733 *pos++ = 4;
1734 *pos++ = bss->dtim_count;
5dfdaf58 1735 *pos++ = beacon->dtim_period;
e2ebc74d
JB
1736
1737 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1738 aid0 = 1;
1739
1740 if (have_bits) {
1741 /* Find largest even number N1 so that bits numbered 1 through
1742 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1743 * (N2 + 1) x 8 through 2007 are 0. */
1744 n1 = 0;
1745 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1746 if (bss->tim[i]) {
1747 n1 = i & 0xfe;
1748 break;
1749 }
1750 }
1751 n2 = n1;
1752 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1753 if (bss->tim[i]) {
1754 n2 = i;
1755 break;
1756 }
1757 }
1758
1759 /* Bitmap control */
1760 *pos++ = n1 | aid0;
1761 /* Part Virt Bitmap */
1762 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1763
1764 tim[1] = n2 - n1 + 4;
1765 skb_put(skb, n2 - n1);
1766 } else {
1767 *pos++ = aid0; /* Bitmap control */
1768 *pos++ = 0; /* Part Virt Bitmap */
1769 }
e2ebc74d
JB
1770}
1771
32bfd35d
JB
1772struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
1773 struct ieee80211_vif *vif,
e2ebc74d
JB
1774 struct ieee80211_tx_control *control)
1775{
1776 struct ieee80211_local *local = hw_to_local(hw);
1777 struct sk_buff *skb;
1778 struct net_device *bdev;
1779 struct ieee80211_sub_if_data *sdata = NULL;
1780 struct ieee80211_if_ap *ap = NULL;
1abbe498 1781 struct rate_selection rsel;
5dfdaf58 1782 struct beacon_data *beacon;
8318d78a 1783 struct ieee80211_supported_band *sband;
902acc78 1784 struct ieee80211_mgmt *mgmt;
33b64eb2 1785 int *num_beacons;
902acc78
JB
1786 bool err = true;
1787 u8 *pos;
8318d78a
JB
1788
1789 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
5dfdaf58
JB
1790
1791 rcu_read_lock();
e2ebc74d 1792
32bfd35d
JB
1793 sdata = vif_to_sdata(vif);
1794 bdev = sdata->dev;
e2ebc74d 1795
902acc78 1796 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
33b64eb2
LCC
1797 ap = &sdata->u.ap;
1798 beacon = rcu_dereference(ap->beacon);
902acc78
JB
1799 if (ap && beacon) {
1800 /*
1801 * headroom, head length,
1802 * tail length and maximum TIM length
1803 */
1804 skb = dev_alloc_skb(local->tx_headroom +
1805 beacon->head_len +
1806 beacon->tail_len + 256);
1807 if (!skb)
1808 goto out;
33b64eb2 1809
902acc78
JB
1810 skb_reserve(skb, local->tx_headroom);
1811 memcpy(skb_put(skb, beacon->head_len), beacon->head,
1812 beacon->head_len);
33b64eb2 1813
902acc78
JB
1814 ieee80211_include_sequence(sdata,
1815 (struct ieee80211_hdr *)skb->data);
33b64eb2 1816
d0709a65
JB
1817 /*
1818 * Not very nice, but we want to allow the driver to call
1819 * ieee80211_beacon_get() as a response to the set_tim()
1820 * callback. That, however, is already invoked under the
1821 * sta_lock to guarantee consistent and race-free update
1822 * of the tim bitmap in mac80211 and the driver.
1823 */
1824 if (local->tim_in_locked_section) {
1825 ieee80211_beacon_add_tim(local, ap, skb, beacon);
1826 } else {
1827 unsigned long flags;
1828
1829 spin_lock_irqsave(&local->sta_lock, flags);
1830 ieee80211_beacon_add_tim(local, ap, skb, beacon);
1831 spin_unlock_irqrestore(&local->sta_lock, flags);
1832 }
33b64eb2 1833
902acc78
JB
1834 if (beacon->tail)
1835 memcpy(skb_put(skb, beacon->tail_len),
1836 beacon->tail, beacon->tail_len);
33b64eb2 1837
902acc78 1838 num_beacons = &ap->num_beacons;
33b64eb2 1839
902acc78
JB
1840 err = false;
1841 }
1842 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
1843 /* headroom, head length, tail length and maximum TIM length */
1844 skb = dev_alloc_skb(local->tx_headroom + 400);
1845 if (!skb)
1846 goto out;
1847
1848 skb_reserve(skb, local->hw.extra_tx_headroom);
1849 mgmt = (struct ieee80211_mgmt *)
1850 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1851 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1852 mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT,
1853 IEEE80211_STYPE_BEACON);
1854 memset(mgmt->da, 0xff, ETH_ALEN);
1855 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1856 /* BSSID is left zeroed, wildcard value */
1857 mgmt->u.beacon.beacon_int =
1858 cpu_to_le16(local->hw.conf.beacon_int);
1859 mgmt->u.beacon.capab_info = 0x0; /* 0x0 for MPs */
1860
1861 pos = skb_put(skb, 2);
1862 *pos++ = WLAN_EID_SSID;
1863 *pos++ = 0x0;
1864
1865 mesh_mgmt_ies_add(skb, sdata->dev);
33b64eb2 1866
33b64eb2 1867 num_beacons = &sdata->u.sta.num_beacons;
33b64eb2 1868
902acc78 1869 err = false;
33b64eb2 1870 }
5dfdaf58 1871
33b64eb2 1872 if (err) {
e2ebc74d
JB
1873#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1874 if (net_ratelimit())
32bfd35d
JB
1875 printk(KERN_DEBUG "no beacon data avail for %s\n",
1876 bdev->name);
e2ebc74d 1877#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
5dfdaf58
JB
1878 skb = NULL;
1879 goto out;
e2ebc74d
JB
1880 }
1881
e2ebc74d 1882 if (control) {
8318d78a 1883 rate_control_get_rate(local->mdev, sband, skb, &rsel);
1abbe498 1884 if (!rsel.rate) {
e2ebc74d 1885 if (net_ratelimit()) {
1abbe498
MN
1886 printk(KERN_DEBUG "%s: ieee80211_beacon_get: "
1887 "no rate found\n",
1888 wiphy_name(local->hw.wiphy));
e2ebc74d
JB
1889 }
1890 dev_kfree_skb(skb);
5dfdaf58
JB
1891 skb = NULL;
1892 goto out;
e2ebc74d
JB
1893 }
1894
0f7054e3 1895 control->vif = vif;
8318d78a
JB
1896 control->tx_rate = rsel.rate;
1897 if (sdata->bss_conf.use_short_preamble &&
1898 rsel.rate->flags & IEEE80211_RATE_SHORT_PREAMBLE)
1899 control->flags |= IEEE80211_TXCTL_SHORT_PREAMBLE;
e2ebc74d 1900 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
e2ebc74d
JB
1901 control->flags |= IEEE80211_TXCTL_NO_ACK;
1902 control->retry_limit = 1;
d46e144b 1903 control->flags |= IEEE80211_TXCTL_CLEAR_PS_FILT;
e2ebc74d 1904 }
33b64eb2
LCC
1905 (*num_beacons)++;
1906out:
5dfdaf58 1907 rcu_read_unlock();
e2ebc74d
JB
1908 return skb;
1909}
1910EXPORT_SYMBOL(ieee80211_beacon_get);
1911
32bfd35d 1912void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
e2ebc74d
JB
1913 const void *frame, size_t frame_len,
1914 const struct ieee80211_tx_control *frame_txctl,
1915 struct ieee80211_rts *rts)
1916{
1917 const struct ieee80211_hdr *hdr = frame;
1918 u16 fctl;
1919
1920 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1921 rts->frame_control = cpu_to_le16(fctl);
32bfd35d
JB
1922 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
1923 frame_txctl);
e2ebc74d
JB
1924 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1925 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1926}
1927EXPORT_SYMBOL(ieee80211_rts_get);
1928
32bfd35d 1929void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
e2ebc74d
JB
1930 const void *frame, size_t frame_len,
1931 const struct ieee80211_tx_control *frame_txctl,
1932 struct ieee80211_cts *cts)
1933{
1934 const struct ieee80211_hdr *hdr = frame;
1935 u16 fctl;
1936
1937 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1938 cts->frame_control = cpu_to_le16(fctl);
32bfd35d
JB
1939 cts->duration = ieee80211_ctstoself_duration(hw, vif,
1940 frame_len, frame_txctl);
e2ebc74d
JB
1941 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1942}
1943EXPORT_SYMBOL(ieee80211_ctstoself_get);
1944
1945struct sk_buff *
32bfd35d
JB
1946ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
1947 struct ieee80211_vif *vif,
e2ebc74d
JB
1948 struct ieee80211_tx_control *control)
1949{
1950 struct ieee80211_local *local = hw_to_local(hw);
1951 struct sk_buff *skb;
1952 struct sta_info *sta;
1953 ieee80211_tx_handler *handler;
5cf121c3 1954 struct ieee80211_tx_data tx;
9ae54c84 1955 ieee80211_tx_result res = TX_DROP;
e2ebc74d
JB
1956 struct net_device *bdev;
1957 struct ieee80211_sub_if_data *sdata;
1958 struct ieee80211_if_ap *bss = NULL;
5dfdaf58 1959 struct beacon_data *beacon;
e2ebc74d 1960
32bfd35d
JB
1961 sdata = vif_to_sdata(vif);
1962 bdev = sdata->dev;
1963
5dfdaf58
JB
1964
1965 if (!bss)
e2ebc74d
JB
1966 return NULL;
1967
5dfdaf58
JB
1968 rcu_read_lock();
1969 beacon = rcu_dereference(bss->beacon);
1970
1971 if (sdata->vif.type != IEEE80211_IF_TYPE_AP || !beacon ||
1972 !beacon->head) {
1973 rcu_read_unlock();
1974 return NULL;
1975 }
5dfdaf58 1976
e2ebc74d
JB
1977 if (bss->dtim_count != 0)
1978 return NULL; /* send buffered bc/mc only after DTIM beacon */
1979 memset(control, 0, sizeof(*control));
1980 while (1) {
1981 skb = skb_dequeue(&bss->ps_bc_buf);
1982 if (!skb)
1983 return NULL;
1984 local->total_ps_buffered--;
1985
1986 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1987 struct ieee80211_hdr *hdr =
1988 (struct ieee80211_hdr *) skb->data;
1989 /* more buffered multicast/broadcast frames ==> set
1990 * MoreData flag in IEEE 802.11 header to inform PS
1991 * STAs */
1992 hdr->frame_control |=
1993 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1994 }
1995
58d4185e 1996 if (!ieee80211_tx_prepare(&tx, skb, local->mdev, control))
e2ebc74d
JB
1997 break;
1998 dev_kfree_skb_any(skb);
1999 }
2000 sta = tx.sta;
5cf121c3
JB
2001 tx.flags |= IEEE80211_TX_PS_BUFFERED;
2002 tx.channel = local->hw.conf.channel;
e2ebc74d 2003
58905290 2004 for (handler = ieee80211_tx_handlers; *handler != NULL; handler++) {
e2ebc74d 2005 res = (*handler)(&tx);
9ae54c84 2006 if (res == TX_DROP || res == TX_QUEUED)
e2ebc74d
JB
2007 break;
2008 }
e2ebc74d
JB
2009 skb = tx.skb; /* handlers are allowed to change skb */
2010
9ae54c84 2011 if (res == TX_DROP) {
e2ebc74d
JB
2012 I802_DEBUG_INC(local->tx_handlers_drop);
2013 dev_kfree_skb(skb);
2014 skb = NULL;
9ae54c84 2015 } else if (res == TX_QUEUED) {
e2ebc74d
JB
2016 I802_DEBUG_INC(local->tx_handlers_queued);
2017 skb = NULL;
2018 }
2019
d0709a65 2020 rcu_read_unlock();
e2ebc74d
JB
2021
2022 return skb;
2023}
2024EXPORT_SYMBOL(ieee80211_get_buffered_bc);