[PATCH] mac80211: remove crypto algorithm typedef
[linux-2.6-block.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"
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;
0795af57 57 DECLARE_MAC_BUF(mac);
e2ebc74d
JB
58
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)
0795af57 73 printk(" A1=%s", print_mac(mac, hdr->addr1));
e2ebc74d 74 if (hdrlen >= 16)
0795af57 75 printk(" A2=%s", print_mac(mac, hdr->addr2));
e2ebc74d 76 if (hdrlen >= 24)
0795af57 77 printk(" A3=%s", print_mac(mac, hdr->addr3));
e2ebc74d 78 if (hdrlen >= 30)
0795af57 79 printk(" A4=%s", print_mac(mac, hdr->addr4));
e2ebc74d
JB
80 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,
13262ffd 179 tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE);
e2ebc74d
JB
180
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,
13262ffd
JS
187 txrate->rate, erp,
188 tx->sdata->flags &
189 IEEE80211_SDATA_SHORT_PREAMBLE);
e2ebc74d
JB
190 }
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
225 if (unlikely(tx->local->sta_scanning != 0) &&
226 ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
227 (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
228 return TXRX_DROP;
229
badffb72 230 if (tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED)
e2ebc74d
JB
231 return TXRX_CONTINUE;
232
233 sta_flags = tx->sta ? tx->sta->flags : 0;
234
badffb72 235 if (likely(tx->flags & IEEE80211_TXRXD_TXUNICAST)) {
e2ebc74d
JB
236 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
237 tx->sdata->type != IEEE80211_IF_TYPE_IBSS &&
238 (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
239#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
0795af57 240 DECLARE_MAC_BUF(mac);
e2ebc74d 241 printk(KERN_DEBUG "%s: dropped data frame to not "
0795af57
JP
242 "associated station %s\n",
243 tx->dev->name, print_mac(mac, hdr->addr1));
e2ebc74d
JB
244#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
245 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
246 return TXRX_DROP;
247 }
248 } else {
249 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
250 tx->local->num_sta == 0 &&
e2ebc74d
JB
251 tx->sdata->type != IEEE80211_IF_TYPE_IBSS)) {
252 /*
253 * No associated STAs - no need to send multicast
254 * frames.
255 */
256 return TXRX_DROP;
257 }
258 return TXRX_CONTINUE;
259 }
260
261 if (unlikely(!tx->u.tx.mgmt_interface && tx->sdata->ieee802_1x &&
262 !(sta_flags & WLAN_STA_AUTHORIZED))) {
263#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
0795af57
JP
264 DECLARE_MAC_BUF(mac);
265 printk(KERN_DEBUG "%s: dropped frame to %s"
e2ebc74d 266 " (unauthorized port)\n", tx->dev->name,
0795af57 267 print_mac(mac, hdr->addr1));
e2ebc74d
JB
268#endif
269 I802_DEBUG_INC(tx->local->tx_handlers_drop_unauth_port);
270 return TXRX_DROP;
271 }
272
273 return TXRX_CONTINUE;
274}
275
276static ieee80211_txrx_result
277ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx)
278{
279 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
280
281 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
282 ieee80211_include_sequence(tx->sdata, hdr);
283
284 return TXRX_CONTINUE;
285}
286
287/* This function is called whenever the AP is about to exceed the maximum limit
288 * of buffered frames for power saving STAs. This situation should not really
289 * happen often during normal operation, so dropping the oldest buffered packet
290 * from each queue should be OK to make some room for new frames. */
291static void purge_old_ps_buffers(struct ieee80211_local *local)
292{
293 int total = 0, purged = 0;
294 struct sk_buff *skb;
295 struct ieee80211_sub_if_data *sdata;
296 struct sta_info *sta;
297
298 read_lock(&local->sub_if_lock);
299 list_for_each_entry(sdata, &local->sub_if_list, list) {
300 struct ieee80211_if_ap *ap;
301 if (sdata->dev == local->mdev ||
302 sdata->type != IEEE80211_IF_TYPE_AP)
303 continue;
304 ap = &sdata->u.ap;
305 skb = skb_dequeue(&ap->ps_bc_buf);
306 if (skb) {
307 purged++;
308 dev_kfree_skb(skb);
309 }
310 total += skb_queue_len(&ap->ps_bc_buf);
311 }
312 read_unlock(&local->sub_if_lock);
313
be8755e1 314 read_lock_bh(&local->sta_lock);
e2ebc74d
JB
315 list_for_each_entry(sta, &local->sta_list, list) {
316 skb = skb_dequeue(&sta->ps_tx_buf);
317 if (skb) {
318 purged++;
319 dev_kfree_skb(skb);
320 }
321 total += skb_queue_len(&sta->ps_tx_buf);
322 }
be8755e1 323 read_unlock_bh(&local->sta_lock);
e2ebc74d
JB
324
325 local->total_ps_buffered = total;
326 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
dd1cd4c6 327 wiphy_name(local->hw.wiphy), purged);
e2ebc74d
JB
328}
329
330static inline ieee80211_txrx_result
331ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx)
332{
333 /* broadcast/multicast frame */
334 /* If any of the associated stations is in power save mode,
335 * the frame is buffered to be sent after DTIM beacon frame */
336 if ((tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) &&
337 tx->sdata->type != IEEE80211_IF_TYPE_WDS &&
338 tx->sdata->bss && atomic_read(&tx->sdata->bss->num_sta_ps) &&
339 !(tx->fc & IEEE80211_FCTL_ORDER)) {
340 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
341 purge_old_ps_buffers(tx->local);
342 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
343 AP_MAX_BC_BUFFER) {
344 if (net_ratelimit()) {
345 printk(KERN_DEBUG "%s: BC TX buffer full - "
346 "dropping the oldest frame\n",
347 tx->dev->name);
348 }
349 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
350 } else
351 tx->local->total_ps_buffered++;
352 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
353 return TXRX_QUEUED;
354 }
355
356 return TXRX_CONTINUE;
357}
358
359static inline ieee80211_txrx_result
360ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx)
361{
362 struct sta_info *sta = tx->sta;
0795af57 363 DECLARE_MAC_BUF(mac);
e2ebc74d
JB
364
365 if (unlikely(!sta ||
366 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
367 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
368 return TXRX_CONTINUE;
369
370 if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) {
371 struct ieee80211_tx_packet_data *pkt_data;
372#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0795af57 373 printk(KERN_DEBUG "STA %s aid %d: PS buffer (entries "
e2ebc74d 374 "before %d)\n",
0795af57 375 print_mac(mac, sta->addr), sta->aid,
e2ebc74d
JB
376 skb_queue_len(&sta->ps_tx_buf));
377#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
378 sta->flags |= WLAN_STA_TIM;
379 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
380 purge_old_ps_buffers(tx->local);
381 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
382 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
383 if (net_ratelimit()) {
0795af57 384 printk(KERN_DEBUG "%s: STA %s TX "
e2ebc74d 385 "buffer full - dropping oldest frame\n",
0795af57 386 tx->dev->name, print_mac(mac, sta->addr));
e2ebc74d
JB
387 }
388 dev_kfree_skb(old);
389 } else
390 tx->local->total_ps_buffered++;
391 /* Queue frame to be sent after STA sends an PS Poll frame */
392 if (skb_queue_empty(&sta->ps_tx_buf)) {
393 if (tx->local->ops->set_tim)
394 tx->local->ops->set_tim(local_to_hw(tx->local),
395 sta->aid, 1);
396 if (tx->sdata->bss)
397 bss_tim_set(tx->local, tx->sdata->bss, sta->aid);
398 }
399 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
400 pkt_data->jiffies = jiffies;
401 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
402 return TXRX_QUEUED;
403 }
404#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
405 else if (unlikely(sta->flags & WLAN_STA_PS)) {
0795af57 406 printk(KERN_DEBUG "%s: STA %s in PS mode, but pspoll "
e2ebc74d 407 "set -> send frame\n", tx->dev->name,
0795af57 408 print_mac(mac, sta->addr));
e2ebc74d
JB
409 }
410#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
411 sta->pspoll = 0;
412
413 return TXRX_CONTINUE;
414}
415
416
417static ieee80211_txrx_result
418ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
419{
badffb72 420 if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
e2ebc74d
JB
421 return TXRX_CONTINUE;
422
badffb72 423 if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
e2ebc74d
JB
424 return ieee80211_tx_h_unicast_ps_buf(tx);
425 else
426 return ieee80211_tx_h_multicast_ps_buf(tx);
427}
428
429
430
431
432static ieee80211_txrx_result
433ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
434{
d4e46a3d
JB
435 struct ieee80211_key *key;
436
e2ebc74d
JB
437 if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
438 tx->key = NULL;
d4e46a3d
JB
439 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
440 tx->key = key;
441 else if ((key = rcu_dereference(tx->sdata->default_key)))
442 tx->key = key;
e2ebc74d
JB
443 else if (tx->sdata->drop_unencrypted &&
444 !(tx->sdata->eapol && ieee80211_is_eapol(tx->skb))) {
445 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
446 return TXRX_DROP;
6a7664d4 447 } else {
e2ebc74d 448 tx->key = NULL;
6a7664d4
JB
449 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
450 }
e2ebc74d
JB
451
452 if (tx->key) {
453 tx->key->tx_rx_count++;
011bfcc4 454 /* TODO: add threshold stuff again */
e2ebc74d
JB
455 }
456
457 return TXRX_CONTINUE;
458}
459
460static ieee80211_txrx_result
461ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
462{
463 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
464 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
465 struct sk_buff **frags, *first, *frag;
466 int i;
467 u16 seq;
468 u8 *pos;
469 int frag_threshold = tx->local->fragmentation_threshold;
470
badffb72 471 if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
e2ebc74d
JB
472 return TXRX_CONTINUE;
473
474 first = tx->skb;
475
476 hdrlen = ieee80211_get_hdrlen(tx->fc);
477 payload_len = first->len - hdrlen;
478 per_fragm = frag_threshold - hdrlen - FCS_LEN;
172589cc 479 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
e2ebc74d
JB
480
481 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
482 if (!frags)
483 goto fail;
484
485 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
486 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
487 pos = first->data + hdrlen + per_fragm;
488 left = payload_len - per_fragm;
489 for (i = 0; i < num_fragm - 1; i++) {
490 struct ieee80211_hdr *fhdr;
491 size_t copylen;
492
493 if (left <= 0)
494 goto fail;
495
496 /* reserve enough extra head and tail room for possible
497 * encryption */
498 frag = frags[i] =
499 dev_alloc_skb(tx->local->tx_headroom +
500 frag_threshold +
501 IEEE80211_ENCRYPT_HEADROOM +
502 IEEE80211_ENCRYPT_TAILROOM);
503 if (!frag)
504 goto fail;
505 /* Make sure that all fragments use the same priority so
506 * that they end up using the same TX queue */
507 frag->priority = first->priority;
508 skb_reserve(frag, tx->local->tx_headroom +
509 IEEE80211_ENCRYPT_HEADROOM);
510 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
511 memcpy(fhdr, first->data, hdrlen);
512 if (i == num_fragm - 2)
513 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
514 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
515 copylen = left > per_fragm ? per_fragm : left;
516 memcpy(skb_put(frag, copylen), pos, copylen);
517
518 pos += copylen;
519 left -= copylen;
520 }
521 skb_trim(first, hdrlen + per_fragm);
522
523 tx->u.tx.num_extra_frag = num_fragm - 1;
524 tx->u.tx.extra_frag = frags;
525
526 return TXRX_CONTINUE;
527
528 fail:
529 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
530 if (frags) {
531 for (i = 0; i < num_fragm - 1; i++)
532 if (frags[i])
533 dev_kfree_skb(frags[i]);
534 kfree(frags);
535 }
536 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
537 return TXRX_DROP;
538}
539
540static int wep_encrypt_skb(struct ieee80211_txrx_data *tx, struct sk_buff *skb)
541{
11a843b7 542 if (!(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) {
e2ebc74d
JB
543 if (ieee80211_wep_encrypt(tx->local, skb, tx->key))
544 return -1;
545 } else {
8f20fc24 546 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
7848ba7d
JB
547 if (tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) {
548 if (!ieee80211_wep_add_iv(tx->local, skb, tx->key))
e2ebc74d
JB
549 return -1;
550 }
551 }
552 return 0;
553}
554
555static ieee80211_txrx_result
556ieee80211_tx_h_wep_encrypt(struct ieee80211_txrx_data *tx)
557{
558 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
559 u16 fc;
560
561 fc = le16_to_cpu(hdr->frame_control);
562
8f20fc24 563 if (!tx->key || tx->key->conf.alg != ALG_WEP ||
e2ebc74d
JB
564 ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA &&
565 ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
566 (fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_AUTH)))
567 return TXRX_CONTINUE;
568
569 tx->u.tx.control->iv_len = WEP_IV_LEN;
570 tx->u.tx.control->icv_len = WEP_ICV_LEN;
571 ieee80211_tx_set_iswep(tx);
572
573 if (wep_encrypt_skb(tx, tx->skb) < 0) {
574 I802_DEBUG_INC(tx->local->tx_handlers_drop_wep);
575 return TXRX_DROP;
576 }
577
578 if (tx->u.tx.extra_frag) {
579 int i;
580 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
581 if (wep_encrypt_skb(tx, tx->u.tx.extra_frag[i]) < 0) {
582 I802_DEBUG_INC(tx->local->
583 tx_handlers_drop_wep);
584 return TXRX_DROP;
585 }
586 }
587 }
588
589 return TXRX_CONTINUE;
590}
591
592static ieee80211_txrx_result
593ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
594{
595 struct rate_control_extra extra;
596
597 memset(&extra, 0, sizeof(extra));
598 extra.mode = tx->u.tx.mode;
599 extra.mgmt_data = tx->sdata &&
600 tx->sdata->type == IEEE80211_IF_TYPE_MGMT;
601 extra.ethertype = tx->ethertype;
602
603 tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev, tx->skb,
604 &extra);
605 if (unlikely(extra.probe != NULL)) {
606 tx->u.tx.control->flags |= IEEE80211_TXCTL_RATE_CTRL_PROBE;
badffb72 607 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
e2ebc74d
JB
608 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
609 tx->u.tx.rate = extra.probe;
610 } else {
611 tx->u.tx.control->alt_retry_rate = -1;
612 }
613 if (!tx->u.tx.rate)
614 return TXRX_DROP;
615 if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
13262ffd 616 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
badffb72 617 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) {
e2ebc74d 618 tx->u.tx.last_frag_rate = tx->u.tx.rate;
badffb72
JS
619 if (extra.probe)
620 tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
621 else
622 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
e2ebc74d
JB
623 tx->u.tx.rate = extra.nonerp;
624 tx->u.tx.control->rate = extra.nonerp;
625 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
626 } else {
627 tx->u.tx.last_frag_rate = tx->u.tx.rate;
628 tx->u.tx.control->rate = tx->u.tx.rate;
629 }
630 tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
e2ebc74d
JB
631
632 return TXRX_CONTINUE;
633}
634
635static ieee80211_txrx_result
636ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
637{
638 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
7e9ed188 639 u16 fc = le16_to_cpu(hdr->frame_control);
e2ebc74d
JB
640 u16 dur;
641 struct ieee80211_tx_control *control = tx->u.tx.control;
642 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
643
644 if (!is_multicast_ether_addr(hdr->addr1)) {
645 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold &&
646 tx->local->rts_threshold < IEEE80211_MAX_RTS_THRESHOLD) {
647 control->flags |= IEEE80211_TXCTL_USE_RTS_CTS;
d5d08def 648 control->flags |= IEEE80211_TXCTL_LONG_RETRY_LIMIT;
e2ebc74d
JB
649 control->retry_limit =
650 tx->local->long_retry_limit;
651 } else {
652 control->retry_limit =
653 tx->local->short_retry_limit;
654 }
655 } else {
656 control->retry_limit = 1;
657 }
658
badffb72 659 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
e2ebc74d
JB
660 /* Do not use multiple retry rates when sending fragmented
661 * frames.
662 * TODO: The last fragment could still use multiple retry
663 * rates. */
664 control->alt_retry_rate = -1;
665 }
666
667 /* Use CTS protection for unicast frames sent using extended rates if
668 * there are associated non-ERP stations and RTS/CTS is not configured
669 * for the frame. */
670 if (mode->mode == MODE_IEEE80211G &&
671 (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
badffb72 672 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
13262ffd 673 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
e2ebc74d
JB
674 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
675 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
676
7e9ed188
DD
677 /* Transmit data frames using short preambles if the driver supports
678 * short preambles at the selected rate and short preambles are
679 * available on the network at the current point in time. */
680 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
681 (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
13262ffd 682 (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
7e9ed188
DD
683 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
684 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
685 }
686
e2ebc74d
JB
687 /* Setup duration field for the first fragment of the frame. Duration
688 * for remaining fragments will be updated when they are being sent
689 * to low-level driver in ieee80211_tx(). */
690 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
badffb72
JS
691 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
692 tx->u.tx.extra_frag[0]->len : 0);
e2ebc74d
JB
693 hdr->duration_id = cpu_to_le16(dur);
694
695 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
696 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
697 struct ieee80211_rate *rate;
698
699 /* Do not use multiple retry rates when using RTS/CTS */
700 control->alt_retry_rate = -1;
701
702 /* Use min(data rate, max base rate) as CTS/RTS rate */
703 rate = tx->u.tx.rate;
704 while (rate > mode->rates &&
705 !(rate->flags & IEEE80211_RATE_BASIC))
706 rate--;
707
708 control->rts_cts_rate = rate->val;
709 control->rts_rate = rate;
710 }
711
712 if (tx->sta) {
713 tx->sta->tx_packets++;
714 tx->sta->tx_fragments++;
715 tx->sta->tx_bytes += tx->skb->len;
716 if (tx->u.tx.extra_frag) {
717 int i;
718 tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
719 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
720 tx->sta->tx_bytes +=
721 tx->u.tx.extra_frag[i]->len;
722 }
723 }
724 }
725
6a7664d4
JB
726 /*
727 * Tell hardware to not encrypt when we had sw crypto.
728 * Because we use the same flag to internally indicate that
729 * no (software) encryption should be done, we have to set it
730 * after all crypto handlers.
731 */
732 if (tx->key && !(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
733 tx->u.tx.control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
734
e2ebc74d
JB
735 return TXRX_CONTINUE;
736}
737
738static ieee80211_txrx_result
739ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
740{
741 struct ieee80211_local *local = tx->local;
742 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
743 struct sk_buff *skb = tx->skb;
744 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
745 u32 load = 0, hdrtime;
746
747 /* TODO: this could be part of tx_status handling, so that the number
748 * of retries would be known; TX rate should in that case be stored
749 * somewhere with the packet */
750
751 /* Estimate total channel use caused by this frame */
752
753 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
754 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
755
756 if (mode->mode == MODE_IEEE80211A ||
e2ebc74d
JB
757 (mode->mode == MODE_IEEE80211G &&
758 tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
759 hdrtime = CHAN_UTIL_HDR_SHORT;
760 else
761 hdrtime = CHAN_UTIL_HDR_LONG;
762
763 load = hdrtime;
764 if (!is_multicast_ether_addr(hdr->addr1))
765 load += hdrtime;
766
767 if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
768 load += 2 * hdrtime;
769 else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
770 load += hdrtime;
771
772 load += skb->len * tx->u.tx.rate->rate_inv;
773
774 if (tx->u.tx.extra_frag) {
775 int i;
776 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
777 load += 2 * hdrtime;
778 load += tx->u.tx.extra_frag[i]->len *
779 tx->u.tx.rate->rate;
780 }
781 }
782
783 /* Divide channel_use by 8 to avoid wrapping around the counter */
784 load >>= CHAN_UTIL_SHIFT;
785 local->channel_use_raw += load;
786 if (tx->sta)
787 tx->sta->channel_use_raw += load;
788 tx->sdata->channel_use_raw += load;
789
790 return TXRX_CONTINUE;
791}
792
793/* TODO: implement register/unregister functions for adding TX/RX handlers
794 * into ordered list */
795
796ieee80211_tx_handler ieee80211_tx_handlers[] =
797{
798 ieee80211_tx_h_check_assoc,
799 ieee80211_tx_h_sequence,
800 ieee80211_tx_h_ps_buf,
801 ieee80211_tx_h_select_key,
802 ieee80211_tx_h_michael_mic_add,
803 ieee80211_tx_h_fragment,
804 ieee80211_tx_h_tkip_encrypt,
805 ieee80211_tx_h_ccmp_encrypt,
806 ieee80211_tx_h_wep_encrypt,
807 ieee80211_tx_h_rate_ctrl,
808 ieee80211_tx_h_misc,
809 ieee80211_tx_h_load_stats,
810 NULL
811};
812
813/* actual transmit path */
814
815/*
816 * deal with packet injection down monitor interface
817 * with Radiotap Header -- only called for monitor mode interface
818 */
819static ieee80211_txrx_result
820__ieee80211_parse_tx_radiotap(
821 struct ieee80211_txrx_data *tx,
822 struct sk_buff *skb, struct ieee80211_tx_control *control)
823{
824 /*
825 * this is the moment to interpret and discard the radiotap header that
826 * must be at the start of the packet injected in Monitor mode
827 *
828 * Need to take some care with endian-ness since radiotap
829 * args are little-endian
830 */
831
832 struct ieee80211_radiotap_iterator iterator;
833 struct ieee80211_radiotap_header *rthdr =
834 (struct ieee80211_radiotap_header *) skb->data;
835 struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
836 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
837
838 /*
839 * default control situation for all injected packets
840 * FIXME: this does not suit all usage cases, expand to allow control
841 */
842
843 control->retry_limit = 1; /* no retry */
e2ebc74d
JB
844 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
845 IEEE80211_TXCTL_USE_CTS_PROTECT);
846 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT |
847 IEEE80211_TXCTL_NO_ACK;
848 control->antenna_sel_tx = 0; /* default to default antenna */
849
850 /*
851 * for every radiotap entry that is present
852 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
853 * entries present, or -EINVAL on error)
854 */
855
856 while (!ret) {
857 int i, target_rate;
858
859 ret = ieee80211_radiotap_iterator_next(&iterator);
860
861 if (ret)
862 continue;
863
864 /* see if this argument is something we can use */
865 switch (iterator.this_arg_index) {
866 /*
867 * You must take care when dereferencing iterator.this_arg
868 * for multibyte types... the pointer is not aligned. Use
869 * get_unaligned((type *)iterator.this_arg) to dereference
870 * iterator.this_arg for type "type" safely on all arches.
871 */
872 case IEEE80211_RADIOTAP_RATE:
873 /*
874 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
875 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
876 */
877 target_rate = (*iterator.this_arg) * 5;
878 for (i = 0; i < mode->num_rates; i++) {
879 struct ieee80211_rate *r = &mode->rates[i];
880
881 if (r->rate > target_rate)
882 continue;
883
884 control->rate = r;
885
886 if (r->flags & IEEE80211_RATE_PREAMBLE2)
887 control->tx_rate = r->val2;
888 else
889 control->tx_rate = r->val;
890
891 /* end on exact match */
892 if (r->rate == target_rate)
893 i = mode->num_rates;
894 }
895 break;
896
897 case IEEE80211_RADIOTAP_ANTENNA:
898 /*
899 * radiotap uses 0 for 1st ant, mac80211 is 1 for
900 * 1st ant
901 */
902 control->antenna_sel_tx = (*iterator.this_arg) + 1;
903 break;
904
905 case IEEE80211_RADIOTAP_DBM_TX_POWER:
906 control->power_level = *iterator.this_arg;
907 break;
908
909 case IEEE80211_RADIOTAP_FLAGS:
910 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
911 /*
912 * this indicates that the skb we have been
913 * handed has the 32-bit FCS CRC at the end...
914 * we should react to that by snipping it off
915 * because it will be recomputed and added
916 * on transmission
917 */
918 if (skb->len < (iterator.max_length + FCS_LEN))
919 return TXRX_DROP;
920
921 skb_trim(skb, skb->len - FCS_LEN);
922 }
923 break;
924
925 default:
926 break;
927 }
928 }
929
930 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
931 return TXRX_DROP;
932
933 /*
934 * remove the radiotap header
935 * iterator->max_length was sanity-checked against
936 * skb->len by iterator init
937 */
938 skb_pull(skb, iterator.max_length);
939
940 return TXRX_CONTINUE;
941}
942
943static ieee80211_txrx_result inline
944__ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
945 struct sk_buff *skb,
946 struct net_device *dev,
947 struct ieee80211_tx_control *control)
948{
949 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
950 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
951 struct ieee80211_sub_if_data *sdata;
952 ieee80211_txrx_result res = TXRX_CONTINUE;
953
954 int hdrlen;
955
956 memset(tx, 0, sizeof(*tx));
957 tx->skb = skb;
958 tx->dev = dev; /* use original interface */
959 tx->local = local;
960 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
e2ebc74d
JB
961
962 /*
963 * set defaults for things that can be set by
964 * injected radiotap headers
965 */
966 control->power_level = local->hw.conf.power_level;
967 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
e2ebc74d
JB
968
969 /* process and remove the injection radiotap header */
970 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
971 if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) {
972 if (__ieee80211_parse_tx_radiotap(tx, skb, control) ==
973 TXRX_DROP) {
974 return TXRX_DROP;
975 }
976 /*
977 * we removed the radiotap header after this point,
978 * we filled control with what we could use
979 * set to the actual ieee header now
980 */
981 hdr = (struct ieee80211_hdr *) skb->data;
982 res = TXRX_QUEUED; /* indication it was monitor packet */
983 }
984
24338793 985 tx->sta = sta_info_get(local, hdr->addr1);
986 tx->fc = le16_to_cpu(hdr->frame_control);
e2ebc74d 987 tx->u.tx.control = control;
badffb72
JS
988 if (is_multicast_ether_addr(hdr->addr1)) {
989 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
e2ebc74d 990 control->flags |= IEEE80211_TXCTL_NO_ACK;
badffb72
JS
991 } else {
992 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
e2ebc74d 993 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
badffb72
JS
994 }
995 if (local->fragmentation_threshold < IEEE80211_MAX_FRAG_THRESHOLD &&
996 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
997 skb->len + FCS_LEN > local->fragmentation_threshold &&
998 !local->ops->set_frag_threshold)
999 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
1000 else
1001 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
e2ebc74d
JB
1002 if (!tx->sta)
1003 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1004 else if (tx->sta->clear_dst_mask) {
1005 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1006 tx->sta->clear_dst_mask = 0;
1007 }
1008 hdrlen = ieee80211_get_hdrlen(tx->fc);
1009 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
1010 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
1011 tx->ethertype = (pos[0] << 8) | pos[1];
1012 }
1013 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1014
1015 return res;
1016}
1017
1018/* Device in tx->dev has a reference added; use dev_put(tx->dev) when
1019 * finished with it. */
1020static int inline ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
1021 struct sk_buff *skb,
1022 struct net_device *mdev,
1023 struct ieee80211_tx_control *control)
1024{
1025 struct ieee80211_tx_packet_data *pkt_data;
1026 struct net_device *dev;
1027
1028 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
881d966b 1029 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
e2ebc74d
JB
1030 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1031 dev_put(dev);
1032 dev = NULL;
1033 }
1034 if (unlikely(!dev))
1035 return -ENODEV;
1036 __ieee80211_tx_prepare(tx, skb, dev, control);
1037 return 0;
1038}
1039
1040static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1041 struct ieee80211_txrx_data *tx)
1042{
1043 struct ieee80211_tx_control *control = tx->u.tx.control;
1044 int ret, i;
1045
1046 if (!ieee80211_qdisc_installed(local->mdev) &&
1047 __ieee80211_queue_stopped(local, 0)) {
1048 netif_stop_queue(local->mdev);
1049 return IEEE80211_TX_AGAIN;
1050 }
1051 if (skb) {
dd1cd4c6
JB
1052 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
1053 "TX to low-level driver", skb);
e2ebc74d
JB
1054 ret = local->ops->tx(local_to_hw(local), skb, control);
1055 if (ret)
1056 return IEEE80211_TX_AGAIN;
1057 local->mdev->trans_start = jiffies;
1058 ieee80211_led_tx(local, 1);
1059 }
1060 if (tx->u.tx.extra_frag) {
1061 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1062 IEEE80211_TXCTL_USE_CTS_PROTECT |
1063 IEEE80211_TXCTL_CLEAR_DST_MASK |
1064 IEEE80211_TXCTL_FIRST_FRAGMENT);
1065 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1066 if (!tx->u.tx.extra_frag[i])
1067 continue;
1068 if (__ieee80211_queue_stopped(local, control->queue))
1069 return IEEE80211_TX_FRAG_AGAIN;
1070 if (i == tx->u.tx.num_extra_frag) {
1071 control->tx_rate = tx->u.tx.last_frag_hwrate;
1072 control->rate = tx->u.tx.last_frag_rate;
badffb72 1073 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
e2ebc74d
JB
1074 control->flags |=
1075 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1076 else
1077 control->flags &=
1078 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1079 }
1080
dd1cd4c6 1081 ieee80211_dump_frame(wiphy_name(local->hw.wiphy),
e2ebc74d
JB
1082 "TX to low-level driver",
1083 tx->u.tx.extra_frag[i]);
1084 ret = local->ops->tx(local_to_hw(local),
1085 tx->u.tx.extra_frag[i],
1086 control);
1087 if (ret)
1088 return IEEE80211_TX_FRAG_AGAIN;
1089 local->mdev->trans_start = jiffies;
1090 ieee80211_led_tx(local, 1);
1091 tx->u.tx.extra_frag[i] = NULL;
1092 }
1093 kfree(tx->u.tx.extra_frag);
1094 tx->u.tx.extra_frag = NULL;
1095 }
1096 return IEEE80211_TX_OK;
1097}
1098
1099static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
1100 struct ieee80211_tx_control *control, int mgmt)
1101{
1102 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1103 struct sta_info *sta;
1104 ieee80211_tx_handler *handler;
1105 struct ieee80211_txrx_data tx;
1106 ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1107 int ret, i;
1108
1109 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1110
1111 if (unlikely(skb->len < 10)) {
1112 dev_kfree_skb(skb);
1113 return 0;
1114 }
1115
1116 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1117
1118 if (res_prepare == TXRX_DROP) {
1119 dev_kfree_skb(skb);
1120 return 0;
1121 }
1122
d4e46a3d
JB
1123 /*
1124 * key references are protected using RCU and this requires that
1125 * we are in a read-site RCU section during receive processing
1126 */
1127 rcu_read_lock();
1128
e2ebc74d
JB
1129 sta = tx.sta;
1130 tx.u.tx.mgmt_interface = mgmt;
1131 tx.u.tx.mode = local->hw.conf.mode;
1132
1133 if (res_prepare == TXRX_QUEUED) { /* if it was an injected packet */
1134 res = TXRX_CONTINUE;
1135 } else {
1136 for (handler = local->tx_handlers; *handler != NULL;
1137 handler++) {
1138 res = (*handler)(&tx);
1139 if (res != TXRX_CONTINUE)
1140 break;
1141 }
1142 }
1143
1144 skb = tx.skb; /* handlers are allowed to change skb */
1145
1146 if (sta)
1147 sta_info_put(sta);
1148
1149 if (unlikely(res == TXRX_DROP)) {
1150 I802_DEBUG_INC(local->tx_handlers_drop);
1151 goto drop;
1152 }
1153
1154 if (unlikely(res == TXRX_QUEUED)) {
1155 I802_DEBUG_INC(local->tx_handlers_queued);
d4e46a3d 1156 rcu_read_unlock();
e2ebc74d
JB
1157 return 0;
1158 }
1159
1160 if (tx.u.tx.extra_frag) {
1161 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1162 int next_len, dur;
1163 struct ieee80211_hdr *hdr =
1164 (struct ieee80211_hdr *)
1165 tx.u.tx.extra_frag[i]->data;
1166
1167 if (i + 1 < tx.u.tx.num_extra_frag) {
1168 next_len = tx.u.tx.extra_frag[i + 1]->len;
1169 } else {
1170 next_len = 0;
1171 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1172 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1173 }
1174 dur = ieee80211_duration(&tx, 0, next_len);
1175 hdr->duration_id = cpu_to_le16(dur);
1176 }
1177 }
1178
1179retry:
1180 ret = __ieee80211_tx(local, skb, &tx);
1181 if (ret) {
1182 struct ieee80211_tx_stored_packet *store =
1183 &local->pending_packet[control->queue];
1184
1185 if (ret == IEEE80211_TX_FRAG_AGAIN)
1186 skb = NULL;
1187 set_bit(IEEE80211_LINK_STATE_PENDING,
1188 &local->state[control->queue]);
1189 smp_mb();
1190 /* When the driver gets out of buffers during sending of
1191 * fragments and calls ieee80211_stop_queue, there is
1192 * a small window between IEEE80211_LINK_STATE_XOFF and
1193 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1194 * gets available in that window (i.e. driver calls
1195 * ieee80211_wake_queue), we would end up with ieee80211_tx
1196 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1197 * continuing transmitting here when that situation is
1198 * possible to have happened. */
1199 if (!__ieee80211_queue_stopped(local, control->queue)) {
1200 clear_bit(IEEE80211_LINK_STATE_PENDING,
1201 &local->state[control->queue]);
1202 goto retry;
1203 }
1204 memcpy(&store->control, control,
1205 sizeof(struct ieee80211_tx_control));
1206 store->skb = skb;
1207 store->extra_frag = tx.u.tx.extra_frag;
1208 store->num_extra_frag = tx.u.tx.num_extra_frag;
1209 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1210 store->last_frag_rate = tx.u.tx.last_frag_rate;
badffb72
JS
1211 store->last_frag_rate_ctrl_probe =
1212 !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
e2ebc74d 1213 }
d4e46a3d 1214 rcu_read_unlock();
e2ebc74d
JB
1215 return 0;
1216
1217 drop:
1218 if (skb)
1219 dev_kfree_skb(skb);
1220 for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1221 if (tx.u.tx.extra_frag[i])
1222 dev_kfree_skb(tx.u.tx.extra_frag[i]);
1223 kfree(tx.u.tx.extra_frag);
d4e46a3d 1224 rcu_read_unlock();
e2ebc74d
JB
1225 return 0;
1226}
1227
1228/* device xmit handlers */
1229
1230int ieee80211_master_start_xmit(struct sk_buff *skb,
1231 struct net_device *dev)
1232{
1233 struct ieee80211_tx_control control;
1234 struct ieee80211_tx_packet_data *pkt_data;
1235 struct net_device *odev = NULL;
1236 struct ieee80211_sub_if_data *osdata;
1237 int headroom;
1238 int ret;
1239
1240 /*
1241 * copy control out of the skb so other people can use skb->cb
1242 */
1243 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1244 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1245
1246 if (pkt_data->ifindex)
881d966b 1247 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
e2ebc74d
JB
1248 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1249 dev_put(odev);
1250 odev = NULL;
1251 }
1252 if (unlikely(!odev)) {
1253#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1254 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1255 "originating device\n", dev->name);
1256#endif
1257 dev_kfree_skb(skb);
1258 return 0;
1259 }
1260 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1261
1262 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1263 if (skb_headroom(skb) < headroom) {
1264 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1265 dev_kfree_skb(skb);
1266 dev_put(odev);
1267 return 0;
1268 }
1269 }
1270
1271 control.ifindex = odev->ifindex;
1272 control.type = osdata->type;
e8bf9649 1273 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
e2ebc74d 1274 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
e8bf9649 1275 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
e2ebc74d 1276 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
e8bf9649 1277 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
e2ebc74d
JB
1278 control.flags |= IEEE80211_TXCTL_REQUEUE;
1279 control.queue = pkt_data->queue;
1280
1281 ret = ieee80211_tx(odev, skb, &control,
1282 control.type == IEEE80211_IF_TYPE_MGMT);
1283 dev_put(odev);
1284
1285 return ret;
1286}
1287
1288int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1289 struct net_device *dev)
1290{
1291 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1292 struct ieee80211_tx_packet_data *pkt_data;
1293 struct ieee80211_radiotap_header *prthdr =
1294 (struct ieee80211_radiotap_header *)skb->data;
9b8a74e3 1295 u16 len_rthdr;
e2ebc74d 1296
9b8a74e3
AG
1297 /* check for not even having the fixed radiotap header part */
1298 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1299 goto fail; /* too short to be possibly valid */
1300
1301 /* is it a header version we can trust to find length from? */
1302 if (unlikely(prthdr->it_version))
1303 goto fail; /* only version 0 is supported */
1304
1305 /* then there must be a radiotap header with a length we can use */
1306 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1307
1308 /* does the skb contain enough to deliver on the alleged length? */
1309 if (unlikely(skb->len < len_rthdr))
1310 goto fail; /* skb too short for claimed rt header extent */
e2ebc74d
JB
1311
1312 skb->dev = local->mdev;
1313
1314 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1315 memset(pkt_data, 0, sizeof(*pkt_data));
9b8a74e3 1316 /* needed because we set skb device to master */
e2ebc74d 1317 pkt_data->ifindex = dev->ifindex;
9b8a74e3 1318
e8bf9649 1319 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
e2ebc74d 1320
e2ebc74d
JB
1321 /*
1322 * fix up the pointers accounting for the radiotap
1323 * header still being in there. We are being given
1324 * a precooked IEEE80211 header so no need for
1325 * normal processing
1326 */
9b8a74e3 1327 skb_set_mac_header(skb, len_rthdr);
e2ebc74d 1328 /*
9b8a74e3
AG
1329 * these are just fixed to the end of the rt area since we
1330 * don't have any better information and at this point, nobody cares
e2ebc74d 1331 */
9b8a74e3
AG
1332 skb_set_network_header(skb, len_rthdr);
1333 skb_set_transport_header(skb, len_rthdr);
e2ebc74d 1334
9b8a74e3
AG
1335 /* pass the radiotap header up to the next stage intact */
1336 dev_queue_xmit(skb);
e2ebc74d 1337 return NETDEV_TX_OK;
9b8a74e3
AG
1338
1339fail:
1340 dev_kfree_skb(skb);
1341 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
e2ebc74d
JB
1342}
1343
1344/**
1345 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1346 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1347 * @skb: packet to be sent
1348 * @dev: incoming interface
1349 *
1350 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1351 * not be freed, and caller is responsible for either retrying later or freeing
1352 * skb).
1353 *
1354 * This function takes in an Ethernet header and encapsulates it with suitable
1355 * IEEE 802.11 header based on which interface the packet is coming in. The
1356 * encapsulated packet will then be passed to master interface, wlan#.11, for
1357 * transmission (through low-level driver).
1358 */
1359int ieee80211_subif_start_xmit(struct sk_buff *skb,
1360 struct net_device *dev)
1361{
1362 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1363 struct ieee80211_tx_packet_data *pkt_data;
1364 struct ieee80211_sub_if_data *sdata;
1365 int ret = 1, head_need;
1366 u16 ethertype, hdrlen, fc;
1367 struct ieee80211_hdr hdr;
1368 const u8 *encaps_data;
1369 int encaps_len, skip_header_bytes;
e8bf9649 1370 int nh_pos, h_pos;
e2ebc74d
JB
1371 struct sta_info *sta;
1372
1373 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1374 if (unlikely(skb->len < ETH_HLEN)) {
1375 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1376 dev->name, skb->len);
1377 ret = 0;
1378 goto fail;
1379 }
1380
1381 nh_pos = skb_network_header(skb) - skb->data;
1382 h_pos = skb_transport_header(skb) - skb->data;
1383
1384 /* convert Ethernet header to proper 802.11 header (based on
1385 * operation mode) */
1386 ethertype = (skb->data[12] << 8) | skb->data[13];
1387 /* TODO: handling for 802.1x authorized/unauthorized port */
1388 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1389
cf966838
JB
1390 switch (sdata->type) {
1391 case IEEE80211_IF_TYPE_AP:
1392 case IEEE80211_IF_TYPE_VLAN:
e2ebc74d
JB
1393 fc |= IEEE80211_FCTL_FROMDS;
1394 /* DA BSSID SA */
1395 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1396 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1397 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1398 hdrlen = 24;
cf966838
JB
1399 break;
1400 case IEEE80211_IF_TYPE_WDS:
e2ebc74d
JB
1401 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1402 /* RA TA DA SA */
1403 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1404 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1405 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1406 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1407 hdrlen = 30;
cf966838
JB
1408 break;
1409 case IEEE80211_IF_TYPE_STA:
e2ebc74d
JB
1410 fc |= IEEE80211_FCTL_TODS;
1411 /* BSSID SA DA */
1412 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1413 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1414 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1415 hdrlen = 24;
cf966838
JB
1416 break;
1417 case IEEE80211_IF_TYPE_IBSS:
e2ebc74d
JB
1418 /* DA SA BSSID */
1419 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1420 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1421 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1422 hdrlen = 24;
cf966838
JB
1423 break;
1424 default:
e2ebc74d
JB
1425 ret = 0;
1426 goto fail;
1427 }
1428
1429 /* receiver is QoS enabled, use a QoS type frame */
1430 sta = sta_info_get(local, hdr.addr1);
1431 if (sta) {
1432 if (sta->flags & WLAN_STA_WME) {
1433 fc |= IEEE80211_STYPE_QOS_DATA;
1434 hdrlen += 2;
1435 }
1436 sta_info_put(sta);
1437 }
1438
1439 hdr.frame_control = cpu_to_le16(fc);
1440 hdr.duration_id = 0;
1441 hdr.seq_ctrl = 0;
1442
1443 skip_header_bytes = ETH_HLEN;
1444 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1445 encaps_data = bridge_tunnel_header;
1446 encaps_len = sizeof(bridge_tunnel_header);
1447 skip_header_bytes -= 2;
1448 } else if (ethertype >= 0x600) {
1449 encaps_data = rfc1042_header;
1450 encaps_len = sizeof(rfc1042_header);
1451 skip_header_bytes -= 2;
1452 } else {
1453 encaps_data = NULL;
1454 encaps_len = 0;
1455 }
1456
1457 skb_pull(skb, skip_header_bytes);
1458 nh_pos -= skip_header_bytes;
1459 h_pos -= skip_header_bytes;
1460
1461 /* TODO: implement support for fragments so that there is no need to
1462 * reallocate and copy payload; it might be enough to support one
1463 * extra fragment that would be copied in the beginning of the frame
1464 * data.. anyway, it would be nice to include this into skb structure
1465 * somehow
1466 *
1467 * There are few options for this:
1468 * use skb->cb as an extra space for 802.11 header
1469 * allocate new buffer if not enough headroom
1470 * make sure that there is enough headroom in every skb by increasing
1471 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1472 * alloc_skb() (net/core/skbuff.c)
1473 */
1474 head_need = hdrlen + encaps_len + local->tx_headroom;
1475 head_need -= skb_headroom(skb);
1476
1477 /* We are going to modify skb data, so make a copy of it if happens to
1478 * be cloned. This could happen, e.g., with Linux bridge code passing
1479 * us broadcast frames. */
1480
1481 if (head_need > 0 || skb_cloned(skb)) {
1482#if 0
1483 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1484 "of headroom\n", dev->name, head_need);
1485#endif
1486
1487 if (skb_cloned(skb))
1488 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1489 else
1490 I802_DEBUG_INC(local->tx_expand_skb_head);
1491 /* Since we have to reallocate the buffer, make sure that there
1492 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1493 * before payload and 12 after). */
1494 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1495 12, GFP_ATOMIC)) {
1496 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1497 "\n", dev->name);
1498 goto fail;
1499 }
1500 }
1501
1502 if (encaps_data) {
1503 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1504 nh_pos += encaps_len;
1505 h_pos += encaps_len;
1506 }
c29b9b9b
JB
1507
1508 if (fc & IEEE80211_STYPE_QOS_DATA) {
1509 __le16 *qos_control;
1510
1511 qos_control = (__le16*) skb_push(skb, 2);
1512 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1513 /*
1514 * Maybe we could actually set some fields here, for now just
1515 * initialise to zero to indicate no special operation.
1516 */
1517 *qos_control = 0;
1518 } else
1519 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1520
e2ebc74d
JB
1521 nh_pos += hdrlen;
1522 h_pos += hdrlen;
1523
1524 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1525 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1526 pkt_data->ifindex = dev->ifindex;
e8bf9649
JS
1527 if (sdata->type == IEEE80211_IF_TYPE_MGMT)
1528 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
e2ebc74d
JB
1529
1530 skb->dev = local->mdev;
68aae116
SH
1531 dev->stats.tx_packets++;
1532 dev->stats.tx_bytes += skb->len;
e2ebc74d
JB
1533
1534 /* Update skb pointers to various headers since this modified frame
1535 * is going to go through Linux networking code that may potentially
1536 * need things like pointer to IP header. */
1537 skb_set_mac_header(skb, 0);
1538 skb_set_network_header(skb, nh_pos);
1539 skb_set_transport_header(skb, h_pos);
1540
1541 dev->trans_start = jiffies;
1542 dev_queue_xmit(skb);
1543
1544 return 0;
1545
1546 fail:
1547 if (!ret)
1548 dev_kfree_skb(skb);
1549
1550 return ret;
1551}
1552
1553/*
1554 * This is the transmit routine for the 802.11 type interfaces
1555 * called by upper layers of the linux networking
1556 * stack when it has a frame to transmit
1557 */
1558int ieee80211_mgmt_start_xmit(struct sk_buff *skb, struct net_device *dev)
1559{
1560 struct ieee80211_sub_if_data *sdata;
1561 struct ieee80211_tx_packet_data *pkt_data;
1562 struct ieee80211_hdr *hdr;
1563 u16 fc;
1564
1565 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1566
1567 if (skb->len < 10) {
1568 dev_kfree_skb(skb);
1569 return 0;
1570 }
1571
1572 if (skb_headroom(skb) < sdata->local->tx_headroom) {
1573 if (pskb_expand_head(skb, sdata->local->tx_headroom,
1574 0, GFP_ATOMIC)) {
1575 dev_kfree_skb(skb);
1576 return 0;
1577 }
1578 }
1579
1580 hdr = (struct ieee80211_hdr *) skb->data;
1581 fc = le16_to_cpu(hdr->frame_control);
1582
1583 pkt_data = (struct ieee80211_tx_packet_data *) skb->cb;
1584 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1585 pkt_data->ifindex = sdata->dev->ifindex;
e8bf9649
JS
1586 if (sdata->type == IEEE80211_IF_TYPE_MGMT)
1587 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
e2ebc74d
JB
1588
1589 skb->priority = 20; /* use hardcoded priority for mgmt TX queue */
1590 skb->dev = sdata->local->mdev;
1591
1592 /*
1593 * We're using the protocol field of the the frame control header
1594 * to request TX callback for hostapd. BIT(1) is checked.
1595 */
1596 if ((fc & BIT(1)) == BIT(1)) {
e8bf9649 1597 pkt_data->flags |= IEEE80211_TXPD_REQ_TX_STATUS;
e2ebc74d
JB
1598 fc &= ~BIT(1);
1599 hdr->frame_control = cpu_to_le16(fc);
1600 }
1601
e8bf9649
JS
1602 if (!(fc & IEEE80211_FCTL_PROTECTED))
1603 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
e2ebc74d 1604
68aae116
SH
1605 dev->stats.tx_packets++;
1606 dev->stats.tx_bytes += skb->len;
e2ebc74d
JB
1607
1608 dev_queue_xmit(skb);
1609
1610 return 0;
1611}
1612
1613/* helper functions for pending packets for when queues are stopped */
1614
1615void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1616{
1617 int i, j;
1618 struct ieee80211_tx_stored_packet *store;
1619
1620 for (i = 0; i < local->hw.queues; i++) {
1621 if (!__ieee80211_queue_pending(local, i))
1622 continue;
1623 store = &local->pending_packet[i];
1624 kfree_skb(store->skb);
1625 for (j = 0; j < store->num_extra_frag; j++)
1626 kfree_skb(store->extra_frag[j]);
1627 kfree(store->extra_frag);
1628 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1629 }
1630}
1631
1632void ieee80211_tx_pending(unsigned long data)
1633{
1634 struct ieee80211_local *local = (struct ieee80211_local *)data;
1635 struct net_device *dev = local->mdev;
1636 struct ieee80211_tx_stored_packet *store;
1637 struct ieee80211_txrx_data tx;
1638 int i, ret, reschedule = 0;
1639
1640 netif_tx_lock_bh(dev);
1641 for (i = 0; i < local->hw.queues; i++) {
1642 if (__ieee80211_queue_stopped(local, i))
1643 continue;
1644 if (!__ieee80211_queue_pending(local, i)) {
1645 reschedule = 1;
1646 continue;
1647 }
1648 store = &local->pending_packet[i];
1649 tx.u.tx.control = &store->control;
1650 tx.u.tx.extra_frag = store->extra_frag;
1651 tx.u.tx.num_extra_frag = store->num_extra_frag;
1652 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1653 tx.u.tx.last_frag_rate = store->last_frag_rate;
badffb72
JS
1654 tx.flags = 0;
1655 if (store->last_frag_rate_ctrl_probe)
1656 tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
e2ebc74d
JB
1657 ret = __ieee80211_tx(local, store->skb, &tx);
1658 if (ret) {
1659 if (ret == IEEE80211_TX_FRAG_AGAIN)
1660 store->skb = NULL;
1661 } else {
1662 clear_bit(IEEE80211_LINK_STATE_PENDING,
1663 &local->state[i]);
1664 reschedule = 1;
1665 }
1666 }
1667 netif_tx_unlock_bh(dev);
1668 if (reschedule) {
1669 if (!ieee80211_qdisc_installed(dev)) {
1670 if (!__ieee80211_queue_stopped(local, 0))
1671 netif_wake_queue(dev);
1672 } else
1673 netif_schedule(dev);
1674 }
1675}
1676
1677/* functions for drivers to get certain frames */
1678
1679static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1680 struct ieee80211_if_ap *bss,
1681 struct sk_buff *skb)
1682{
1683 u8 *pos, *tim;
1684 int aid0 = 0;
1685 int i, have_bits = 0, n1, n2;
1686
1687 /* Generate bitmap for TIM only if there are any STAs in power save
1688 * mode. */
be8755e1 1689 read_lock_bh(&local->sta_lock);
e2ebc74d
JB
1690 if (atomic_read(&bss->num_sta_ps) > 0)
1691 /* in the hope that this is faster than
1692 * checking byte-for-byte */
1693 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1694 IEEE80211_MAX_AID+1);
1695
1696 if (bss->dtim_count == 0)
1697 bss->dtim_count = bss->dtim_period - 1;
1698 else
1699 bss->dtim_count--;
1700
1701 tim = pos = (u8 *) skb_put(skb, 6);
1702 *pos++ = WLAN_EID_TIM;
1703 *pos++ = 4;
1704 *pos++ = bss->dtim_count;
1705 *pos++ = bss->dtim_period;
1706
1707 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1708 aid0 = 1;
1709
1710 if (have_bits) {
1711 /* Find largest even number N1 so that bits numbered 1 through
1712 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1713 * (N2 + 1) x 8 through 2007 are 0. */
1714 n1 = 0;
1715 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1716 if (bss->tim[i]) {
1717 n1 = i & 0xfe;
1718 break;
1719 }
1720 }
1721 n2 = n1;
1722 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1723 if (bss->tim[i]) {
1724 n2 = i;
1725 break;
1726 }
1727 }
1728
1729 /* Bitmap control */
1730 *pos++ = n1 | aid0;
1731 /* Part Virt Bitmap */
1732 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1733
1734 tim[1] = n2 - n1 + 4;
1735 skb_put(skb, n2 - n1);
1736 } else {
1737 *pos++ = aid0; /* Bitmap control */
1738 *pos++ = 0; /* Part Virt Bitmap */
1739 }
be8755e1 1740 read_unlock_bh(&local->sta_lock);
e2ebc74d
JB
1741}
1742
1743struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id,
1744 struct ieee80211_tx_control *control)
1745{
1746 struct ieee80211_local *local = hw_to_local(hw);
1747 struct sk_buff *skb;
1748 struct net_device *bdev;
1749 struct ieee80211_sub_if_data *sdata = NULL;
1750 struct ieee80211_if_ap *ap = NULL;
1751 struct ieee80211_rate *rate;
1752 struct rate_control_extra extra;
1753 u8 *b_head, *b_tail;
1754 int bh_len, bt_len;
1755
881d966b 1756 bdev = dev_get_by_index(&init_net, if_id);
e2ebc74d
JB
1757 if (bdev) {
1758 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1759 ap = &sdata->u.ap;
1760 dev_put(bdev);
1761 }
1762
1763 if (!ap || sdata->type != IEEE80211_IF_TYPE_AP ||
1764 !ap->beacon_head) {
1765#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1766 if (net_ratelimit())
1767 printk(KERN_DEBUG "no beacon data avail for idx=%d "
1768 "(%s)\n", if_id, bdev ? bdev->name : "N/A");
1769#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1770 return NULL;
1771 }
1772
1773 /* Assume we are generating the normal beacon locally */
1774 b_head = ap->beacon_head;
1775 b_tail = ap->beacon_tail;
1776 bh_len = ap->beacon_head_len;
1777 bt_len = ap->beacon_tail_len;
1778
1779 skb = dev_alloc_skb(local->tx_headroom +
1780 bh_len + bt_len + 256 /* maximum TIM len */);
1781 if (!skb)
1782 return NULL;
1783
1784 skb_reserve(skb, local->tx_headroom);
1785 memcpy(skb_put(skb, bh_len), b_head, bh_len);
1786
1787 ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1788
1789 ieee80211_beacon_add_tim(local, ap, skb);
1790
1791 if (b_tail) {
1792 memcpy(skb_put(skb, bt_len), b_tail, bt_len);
1793 }
1794
1795 if (control) {
1796 memset(&extra, 0, sizeof(extra));
1797 extra.mode = local->oper_hw_mode;
1798
1799 rate = rate_control_get_rate(local, local->mdev, skb, &extra);
1800 if (!rate) {
1801 if (net_ratelimit()) {
1802 printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate "
dd1cd4c6 1803 "found\n", wiphy_name(local->hw.wiphy));
e2ebc74d
JB
1804 }
1805 dev_kfree_skb(skb);
1806 return NULL;
1807 }
1808
13262ffd
JS
1809 control->tx_rate =
1810 ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
1811 (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
e2ebc74d
JB
1812 rate->val2 : rate->val;
1813 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1814 control->power_level = local->hw.conf.power_level;
1815 control->flags |= IEEE80211_TXCTL_NO_ACK;
1816 control->retry_limit = 1;
1817 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1818 }
1819
1820 ap->num_beacons++;
1821 return skb;
1822}
1823EXPORT_SYMBOL(ieee80211_beacon_get);
1824
7e9ed188 1825void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
e2ebc74d
JB
1826 const void *frame, size_t frame_len,
1827 const struct ieee80211_tx_control *frame_txctl,
1828 struct ieee80211_rts *rts)
1829{
1830 const struct ieee80211_hdr *hdr = frame;
1831 u16 fctl;
1832
1833 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1834 rts->frame_control = cpu_to_le16(fctl);
7e9ed188 1835 rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl);
e2ebc74d
JB
1836 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1837 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1838}
1839EXPORT_SYMBOL(ieee80211_rts_get);
1840
7e9ed188 1841void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
e2ebc74d
JB
1842 const void *frame, size_t frame_len,
1843 const struct ieee80211_tx_control *frame_txctl,
1844 struct ieee80211_cts *cts)
1845{
1846 const struct ieee80211_hdr *hdr = frame;
1847 u16 fctl;
1848
1849 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1850 cts->frame_control = cpu_to_le16(fctl);
7e9ed188 1851 cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl);
e2ebc74d
JB
1852 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1853}
1854EXPORT_SYMBOL(ieee80211_ctstoself_get);
1855
1856struct sk_buff *
1857ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
1858 struct ieee80211_tx_control *control)
1859{
1860 struct ieee80211_local *local = hw_to_local(hw);
1861 struct sk_buff *skb;
1862 struct sta_info *sta;
1863 ieee80211_tx_handler *handler;
1864 struct ieee80211_txrx_data tx;
1865 ieee80211_txrx_result res = TXRX_DROP;
1866 struct net_device *bdev;
1867 struct ieee80211_sub_if_data *sdata;
1868 struct ieee80211_if_ap *bss = NULL;
1869
881d966b 1870 bdev = dev_get_by_index(&init_net, if_id);
e2ebc74d
JB
1871 if (bdev) {
1872 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1873 bss = &sdata->u.ap;
1874 dev_put(bdev);
1875 }
1876 if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head)
1877 return NULL;
1878
1879 if (bss->dtim_count != 0)
1880 return NULL; /* send buffered bc/mc only after DTIM beacon */
1881 memset(control, 0, sizeof(*control));
1882 while (1) {
1883 skb = skb_dequeue(&bss->ps_bc_buf);
1884 if (!skb)
1885 return NULL;
1886 local->total_ps_buffered--;
1887
1888 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1889 struct ieee80211_hdr *hdr =
1890 (struct ieee80211_hdr *) skb->data;
1891 /* more buffered multicast/broadcast frames ==> set
1892 * MoreData flag in IEEE 802.11 header to inform PS
1893 * STAs */
1894 hdr->frame_control |=
1895 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1896 }
1897
1898 if (ieee80211_tx_prepare(&tx, skb, local->mdev, control) == 0)
1899 break;
1900 dev_kfree_skb_any(skb);
1901 }
1902 sta = tx.sta;
badffb72 1903 tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
475fa49c 1904 tx.u.tx.mode = local->hw.conf.mode;
e2ebc74d
JB
1905
1906 for (handler = local->tx_handlers; *handler != NULL; handler++) {
1907 res = (*handler)(&tx);
1908 if (res == TXRX_DROP || res == TXRX_QUEUED)
1909 break;
1910 }
1911 dev_put(tx.dev);
1912 skb = tx.skb; /* handlers are allowed to change skb */
1913
1914 if (res == TXRX_DROP) {
1915 I802_DEBUG_INC(local->tx_handlers_drop);
1916 dev_kfree_skb(skb);
1917 skb = NULL;
1918 } else if (res == TXRX_QUEUED) {
1919 I802_DEBUG_INC(local->tx_handlers_queued);
1920 skb = NULL;
1921 }
1922
1923 if (sta)
1924 sta_info_put(sta);
1925
1926 return skb;
1927}
1928EXPORT_SYMBOL(ieee80211_get_buffered_bc);