blob: e2ae1e1fcc7b6fed6b7afba427933cc5877f040d [file] [log] [blame]
Johannes Berge2ebc742007-07-27 15:43:22 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 *
12 * Transmit and frame generation functions.
13 */
14
15#include <linux/kernel.h>
16#include <linux/slab.h>
17#include <linux/skbuff.h>
18#include <linux/etherdevice.h>
19#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040020#include <linux/rcupdate.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070021#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020022#include <net/ieee80211_radiotap.h>
23#include <net/cfg80211.h>
24#include <net/mac80211.h>
25#include <asm/unaligned.h>
26
27#include "ieee80211_i.h"
28#include "ieee80211_led.h"
29#include "wep.h"
30#include "wpa.h"
31#include "wme.h"
32#include "ieee80211_rate.h"
33
34#define IEEE80211_TX_OK 0
35#define IEEE80211_TX_AGAIN 1
36#define IEEE80211_TX_FRAG_AGAIN 2
37
38/* misc utils */
39
40static inline void ieee80211_include_sequence(struct ieee80211_sub_if_data *sdata,
41 struct ieee80211_hdr *hdr)
42{
43 /* Set the sequence number for this frame. */
44 hdr->seq_ctrl = cpu_to_le16(sdata->sequence);
45
46 /* Increase the sequence number. */
47 sdata->sequence = (sdata->sequence + 0x10) & IEEE80211_SCTL_SEQ;
48}
49
50#ifdef CONFIG_MAC80211_LOWTX_FRAME_DUMP
51static void ieee80211_dump_frame(const char *ifname, const char *title,
52 const struct sk_buff *skb)
53{
54 const struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
55 u16 fc;
56 int hdrlen;
57
58 printk(KERN_DEBUG "%s: %s (len=%d)", ifname, title, skb->len);
59 if (skb->len < 4) {
60 printk("\n");
61 return;
62 }
63
64 fc = le16_to_cpu(hdr->frame_control);
65 hdrlen = ieee80211_get_hdrlen(fc);
66 if (hdrlen > skb->len)
67 hdrlen = skb->len;
68 if (hdrlen >= 4)
69 printk(" FC=0x%04x DUR=0x%04x",
70 fc, le16_to_cpu(hdr->duration_id));
71 if (hdrlen >= 10)
72 printk(" A1=" MAC_FMT, MAC_ARG(hdr->addr1));
73 if (hdrlen >= 16)
74 printk(" A2=" MAC_FMT, MAC_ARG(hdr->addr2));
75 if (hdrlen >= 24)
76 printk(" A3=" MAC_FMT, MAC_ARG(hdr->addr3));
77 if (hdrlen >= 30)
78 printk(" A4=" MAC_FMT, MAC_ARG(hdr->addr4));
79 printk("\n");
80}
81#else /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
82static inline void ieee80211_dump_frame(const char *ifname, const char *title,
83 struct sk_buff *skb)
84{
85}
86#endif /* CONFIG_MAC80211_LOWTX_FRAME_DUMP */
87
88static u16 ieee80211_duration(struct ieee80211_txrx_data *tx, int group_addr,
89 int next_frag_len)
90{
91 int rate, mrate, erp, dur, i;
92 struct ieee80211_rate *txrate = tx->u.tx.rate;
93 struct ieee80211_local *local = tx->local;
94 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
95
96 erp = txrate->flags & IEEE80211_RATE_ERP;
97
98 /*
99 * data and mgmt (except PS Poll):
100 * - during CFP: 32768
101 * - during contention period:
102 * if addr1 is group address: 0
103 * if more fragments = 0 and addr1 is individual address: time to
104 * transmit one ACK plus SIFS
105 * if more fragments = 1 and addr1 is individual address: time to
106 * transmit next fragment plus 2 x ACK plus 3 x SIFS
107 *
108 * IEEE 802.11, 9.6:
109 * - control response frame (CTS or ACK) shall be transmitted using the
110 * same rate as the immediately previous frame in the frame exchange
111 * sequence, if this rate belongs to the PHY mandatory rates, or else
112 * at the highest possible rate belonging to the PHY rates in the
113 * BSSBasicRateSet
114 */
115
116 if ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) {
117 /* TODO: These control frames are not currently sent by
118 * 80211.o, but should they be implemented, this function
119 * needs to be updated to support duration field calculation.
120 *
121 * RTS: time needed to transmit pending data/mgmt frame plus
122 * one CTS frame plus one ACK frame plus 3 x SIFS
123 * CTS: duration of immediately previous RTS minus time
124 * required to transmit CTS and its SIFS
125 * ACK: 0 if immediately previous directed data/mgmt had
126 * more=0, with more=1 duration in ACK frame is duration
127 * from previous frame minus time needed to transmit ACK
128 * and its SIFS
129 * PS Poll: BIT(15) | BIT(14) | aid
130 */
131 return 0;
132 }
133
134 /* data/mgmt */
135 if (0 /* FIX: data/mgmt during CFP */)
136 return 32768;
137
138 if (group_addr) /* Group address as the destination - no ACK */
139 return 0;
140
141 /* Individual destination address:
142 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
143 * CTS and ACK frames shall be transmitted using the highest rate in
144 * basic rate set that is less than or equal to the rate of the
145 * immediately previous frame and that is using the same modulation
146 * (CCK or OFDM). If no basic rate set matches with these requirements,
147 * the highest mandatory rate of the PHY that is less than or equal to
148 * the rate of the previous frame is used.
149 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
150 */
151 rate = -1;
152 mrate = 10; /* use 1 Mbps if everything fails */
153 for (i = 0; i < mode->num_rates; i++) {
154 struct ieee80211_rate *r = &mode->rates[i];
155 if (r->rate > txrate->rate)
156 break;
157
158 if (IEEE80211_RATE_MODULATION(txrate->flags) !=
159 IEEE80211_RATE_MODULATION(r->flags))
160 continue;
161
162 if (r->flags & IEEE80211_RATE_BASIC)
163 rate = r->rate;
164 else if (r->flags & IEEE80211_RATE_MANDATORY)
165 mrate = r->rate;
166 }
167 if (rate == -1) {
168 /* No matching basic rate found; use highest suitable mandatory
169 * PHY rate */
170 rate = mrate;
171 }
172
173 /* Time needed to transmit ACK
174 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
175 * to closest integer */
176
177 dur = ieee80211_frame_duration(local, 10, rate, erp,
Jiri Slaby13262ff2007-08-28 17:01:54 -0400178 tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE);
Johannes Berge2ebc742007-07-27 15:43:22 +0200179
180 if (next_frag_len) {
181 /* Frame is fragmented: duration increases with time needed to
182 * transmit next fragment plus ACK and 2 x SIFS. */
183 dur *= 2; /* ACK + SIFS */
184 /* next fragment */
185 dur += ieee80211_frame_duration(local, next_frag_len,
Jiri Slaby13262ff2007-08-28 17:01:54 -0400186 txrate->rate, erp,
187 tx->sdata->flags &
188 IEEE80211_SDATA_SHORT_PREAMBLE);
Johannes Berge2ebc742007-07-27 15:43:22 +0200189 }
190
191 return dur;
192}
193
194static inline int __ieee80211_queue_stopped(const struct ieee80211_local *local,
195 int queue)
196{
197 return test_bit(IEEE80211_LINK_STATE_XOFF, &local->state[queue]);
198}
199
200static inline int __ieee80211_queue_pending(const struct ieee80211_local *local,
201 int queue)
202{
203 return test_bit(IEEE80211_LINK_STATE_PENDING, &local->state[queue]);
204}
205
206static int inline is_ieee80211_device(struct net_device *dev,
207 struct net_device *master)
208{
209 return (wdev_priv(dev->ieee80211_ptr) ==
210 wdev_priv(master->ieee80211_ptr));
211}
212
213/* tx handlers */
214
215static ieee80211_txrx_result
216ieee80211_tx_h_check_assoc(struct ieee80211_txrx_data *tx)
217{
218#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
219 struct sk_buff *skb = tx->skb;
220 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
221#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
222 u32 sta_flags;
223
224 if (unlikely(tx->local->sta_scanning != 0) &&
225 ((tx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
226 (tx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PROBE_REQ))
227 return TXRX_DROP;
228
Jiri Slabybadffb72007-08-28 17:01:54 -0400229 if (tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED)
Johannes Berge2ebc742007-07-27 15:43:22 +0200230 return TXRX_CONTINUE;
231
232 sta_flags = tx->sta ? tx->sta->flags : 0;
233
Jiri Slabybadffb72007-08-28 17:01:54 -0400234 if (likely(tx->flags & IEEE80211_TXRXD_TXUNICAST)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200235 if (unlikely(!(sta_flags & WLAN_STA_ASSOC) &&
236 tx->sdata->type != IEEE80211_IF_TYPE_IBSS &&
237 (tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)) {
238#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
239 printk(KERN_DEBUG "%s: dropped data frame to not "
240 "associated station " MAC_FMT "\n",
241 tx->dev->name, MAC_ARG(hdr->addr1));
242#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
243 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
244 return TXRX_DROP;
245 }
246 } else {
247 if (unlikely((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
248 tx->local->num_sta == 0 &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200249 tx->sdata->type != IEEE80211_IF_TYPE_IBSS)) {
250 /*
251 * No associated STAs - no need to send multicast
252 * frames.
253 */
254 return TXRX_DROP;
255 }
256 return TXRX_CONTINUE;
257 }
258
259 if (unlikely(!tx->u.tx.mgmt_interface && tx->sdata->ieee802_1x &&
260 !(sta_flags & WLAN_STA_AUTHORIZED))) {
261#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
262 printk(KERN_DEBUG "%s: dropped frame to " MAC_FMT
263 " (unauthorized port)\n", tx->dev->name,
264 MAC_ARG(hdr->addr1));
265#endif
266 I802_DEBUG_INC(tx->local->tx_handlers_drop_unauth_port);
267 return TXRX_DROP;
268 }
269
270 return TXRX_CONTINUE;
271}
272
273static ieee80211_txrx_result
274ieee80211_tx_h_sequence(struct ieee80211_txrx_data *tx)
275{
276 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
277
278 if (ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_control)) >= 24)
279 ieee80211_include_sequence(tx->sdata, hdr);
280
281 return TXRX_CONTINUE;
282}
283
284/* This function is called whenever the AP is about to exceed the maximum limit
285 * of buffered frames for power saving STAs. This situation should not really
286 * happen often during normal operation, so dropping the oldest buffered packet
287 * from each queue should be OK to make some room for new frames. */
288static void purge_old_ps_buffers(struct ieee80211_local *local)
289{
290 int total = 0, purged = 0;
291 struct sk_buff *skb;
292 struct ieee80211_sub_if_data *sdata;
293 struct sta_info *sta;
294
295 read_lock(&local->sub_if_lock);
296 list_for_each_entry(sdata, &local->sub_if_list, list) {
297 struct ieee80211_if_ap *ap;
298 if (sdata->dev == local->mdev ||
299 sdata->type != IEEE80211_IF_TYPE_AP)
300 continue;
301 ap = &sdata->u.ap;
302 skb = skb_dequeue(&ap->ps_bc_buf);
303 if (skb) {
304 purged++;
305 dev_kfree_skb(skb);
306 }
307 total += skb_queue_len(&ap->ps_bc_buf);
308 }
309 read_unlock(&local->sub_if_lock);
310
Michael Wube8755e2007-07-27 15:43:23 +0200311 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +0200312 list_for_each_entry(sta, &local->sta_list, list) {
313 skb = skb_dequeue(&sta->ps_tx_buf);
314 if (skb) {
315 purged++;
316 dev_kfree_skb(skb);
317 }
318 total += skb_queue_len(&sta->ps_tx_buf);
319 }
Michael Wube8755e2007-07-27 15:43:23 +0200320 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +0200321
322 local->total_ps_buffered = total;
323 printk(KERN_DEBUG "%s: PS buffers full - purged %d frames\n",
324 local->mdev->name, purged);
325}
326
327static inline ieee80211_txrx_result
328ieee80211_tx_h_multicast_ps_buf(struct ieee80211_txrx_data *tx)
329{
330 /* broadcast/multicast frame */
331 /* If any of the associated stations is in power save mode,
332 * the frame is buffered to be sent after DTIM beacon frame */
333 if ((tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING) &&
334 tx->sdata->type != IEEE80211_IF_TYPE_WDS &&
335 tx->sdata->bss && atomic_read(&tx->sdata->bss->num_sta_ps) &&
336 !(tx->fc & IEEE80211_FCTL_ORDER)) {
337 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
338 purge_old_ps_buffers(tx->local);
339 if (skb_queue_len(&tx->sdata->bss->ps_bc_buf) >=
340 AP_MAX_BC_BUFFER) {
341 if (net_ratelimit()) {
342 printk(KERN_DEBUG "%s: BC TX buffer full - "
343 "dropping the oldest frame\n",
344 tx->dev->name);
345 }
346 dev_kfree_skb(skb_dequeue(&tx->sdata->bss->ps_bc_buf));
347 } else
348 tx->local->total_ps_buffered++;
349 skb_queue_tail(&tx->sdata->bss->ps_bc_buf, tx->skb);
350 return TXRX_QUEUED;
351 }
352
353 return TXRX_CONTINUE;
354}
355
356static inline ieee80211_txrx_result
357ieee80211_tx_h_unicast_ps_buf(struct ieee80211_txrx_data *tx)
358{
359 struct sta_info *sta = tx->sta;
360
361 if (unlikely(!sta ||
362 ((tx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT &&
363 (tx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)))
364 return TXRX_CONTINUE;
365
366 if (unlikely((sta->flags & WLAN_STA_PS) && !sta->pspoll)) {
367 struct ieee80211_tx_packet_data *pkt_data;
368#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
369 printk(KERN_DEBUG "STA " MAC_FMT " aid %d: PS buffer (entries "
370 "before %d)\n",
371 MAC_ARG(sta->addr), sta->aid,
372 skb_queue_len(&sta->ps_tx_buf));
373#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
374 sta->flags |= WLAN_STA_TIM;
375 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
376 purge_old_ps_buffers(tx->local);
377 if (skb_queue_len(&sta->ps_tx_buf) >= STA_MAX_TX_BUFFER) {
378 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf);
379 if (net_ratelimit()) {
380 printk(KERN_DEBUG "%s: STA " MAC_FMT " TX "
381 "buffer full - dropping oldest frame\n",
382 tx->dev->name, MAC_ARG(sta->addr));
383 }
384 dev_kfree_skb(old);
385 } else
386 tx->local->total_ps_buffered++;
387 /* Queue frame to be sent after STA sends an PS Poll frame */
388 if (skb_queue_empty(&sta->ps_tx_buf)) {
389 if (tx->local->ops->set_tim)
390 tx->local->ops->set_tim(local_to_hw(tx->local),
391 sta->aid, 1);
392 if (tx->sdata->bss)
393 bss_tim_set(tx->local, tx->sdata->bss, sta->aid);
394 }
395 pkt_data = (struct ieee80211_tx_packet_data *)tx->skb->cb;
396 pkt_data->jiffies = jiffies;
397 skb_queue_tail(&sta->ps_tx_buf, tx->skb);
398 return TXRX_QUEUED;
399 }
400#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
401 else if (unlikely(sta->flags & WLAN_STA_PS)) {
402 printk(KERN_DEBUG "%s: STA " MAC_FMT " in PS mode, but pspoll "
403 "set -> send frame\n", tx->dev->name,
404 MAC_ARG(sta->addr));
405 }
406#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
407 sta->pspoll = 0;
408
409 return TXRX_CONTINUE;
410}
411
412
413static ieee80211_txrx_result
414ieee80211_tx_h_ps_buf(struct ieee80211_txrx_data *tx)
415{
Jiri Slabybadffb72007-08-28 17:01:54 -0400416 if (unlikely(tx->flags & IEEE80211_TXRXD_TXPS_BUFFERED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200417 return TXRX_CONTINUE;
418
Jiri Slabybadffb72007-08-28 17:01:54 -0400419 if (tx->flags & IEEE80211_TXRXD_TXUNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200420 return ieee80211_tx_h_unicast_ps_buf(tx);
421 else
422 return ieee80211_tx_h_multicast_ps_buf(tx);
423}
424
425
426
427
428static ieee80211_txrx_result
429ieee80211_tx_h_select_key(struct ieee80211_txrx_data *tx)
430{
Johannes Bergd4e46a32007-09-14 11:10:24 -0400431 struct ieee80211_key *key;
432
Johannes Berg3aefaa32007-08-28 17:01:55 -0400433 tx->u.tx.control->key_idx = HW_KEY_IDX_INVALID;
Johannes Berge2ebc742007-07-27 15:43:22 +0200434
435 if (unlikely(tx->u.tx.control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT))
436 tx->key = NULL;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400437 else if (tx->sta && (key = rcu_dereference(tx->sta->key)))
438 tx->key = key;
439 else if ((key = rcu_dereference(tx->sdata->default_key)))
440 tx->key = key;
Johannes Berge2ebc742007-07-27 15:43:22 +0200441 else if (tx->sdata->drop_unencrypted &&
442 !(tx->sdata->eapol && ieee80211_is_eapol(tx->skb))) {
443 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
444 return TXRX_DROP;
445 } else
446 tx->key = NULL;
447
448 if (tx->key) {
449 tx->key->tx_rx_count++;
450 if (unlikely(tx->local->key_tx_rx_threshold &&
451 tx->key->tx_rx_count >
452 tx->local->key_tx_rx_threshold)) {
453 ieee80211_key_threshold_notify(tx->dev, tx->key,
454 tx->sta);
455 }
456 }
457
458 return TXRX_CONTINUE;
459}
460
461static ieee80211_txrx_result
462ieee80211_tx_h_fragment(struct ieee80211_txrx_data *tx)
463{
464 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
465 size_t hdrlen, per_fragm, num_fragm, payload_len, left;
466 struct sk_buff **frags, *first, *frag;
467 int i;
468 u16 seq;
469 u8 *pos;
470 int frag_threshold = tx->local->fragmentation_threshold;
471
Jiri Slabybadffb72007-08-28 17:01:54 -0400472 if (!(tx->flags & IEEE80211_TXRXD_FRAGMENTED))
Johannes Berge2ebc742007-07-27 15:43:22 +0200473 return TXRX_CONTINUE;
474
475 first = tx->skb;
476
477 hdrlen = ieee80211_get_hdrlen(tx->fc);
478 payload_len = first->len - hdrlen;
479 per_fragm = frag_threshold - hdrlen - FCS_LEN;
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700480 num_fragm = DIV_ROUND_UP(payload_len, per_fragm);
Johannes Berge2ebc742007-07-27 15:43:22 +0200481
482 frags = kzalloc(num_fragm * sizeof(struct sk_buff *), GFP_ATOMIC);
483 if (!frags)
484 goto fail;
485
486 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
487 seq = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_SEQ;
488 pos = first->data + hdrlen + per_fragm;
489 left = payload_len - per_fragm;
490 for (i = 0; i < num_fragm - 1; i++) {
491 struct ieee80211_hdr *fhdr;
492 size_t copylen;
493
494 if (left <= 0)
495 goto fail;
496
497 /* reserve enough extra head and tail room for possible
498 * encryption */
499 frag = frags[i] =
500 dev_alloc_skb(tx->local->tx_headroom +
501 frag_threshold +
502 IEEE80211_ENCRYPT_HEADROOM +
503 IEEE80211_ENCRYPT_TAILROOM);
504 if (!frag)
505 goto fail;
506 /* Make sure that all fragments use the same priority so
507 * that they end up using the same TX queue */
508 frag->priority = first->priority;
509 skb_reserve(frag, tx->local->tx_headroom +
510 IEEE80211_ENCRYPT_HEADROOM);
511 fhdr = (struct ieee80211_hdr *) skb_put(frag, hdrlen);
512 memcpy(fhdr, first->data, hdrlen);
513 if (i == num_fragm - 2)
514 fhdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREFRAGS);
515 fhdr->seq_ctrl = cpu_to_le16(seq | ((i + 1) & IEEE80211_SCTL_FRAG));
516 copylen = left > per_fragm ? per_fragm : left;
517 memcpy(skb_put(frag, copylen), pos, copylen);
518
519 pos += copylen;
520 left -= copylen;
521 }
522 skb_trim(first, hdrlen + per_fragm);
523
524 tx->u.tx.num_extra_frag = num_fragm - 1;
525 tx->u.tx.extra_frag = frags;
526
527 return TXRX_CONTINUE;
528
529 fail:
530 printk(KERN_DEBUG "%s: failed to fragment frame\n", tx->dev->name);
531 if (frags) {
532 for (i = 0; i < num_fragm - 1; i++)
533 if (frags[i])
534 dev_kfree_skb(frags[i]);
535 kfree(frags);
536 }
537 I802_DEBUG_INC(tx->local->tx_handlers_drop_fragment);
538 return TXRX_DROP;
539}
540
541static int wep_encrypt_skb(struct ieee80211_txrx_data *tx, struct sk_buff *skb)
542{
Johannes Berg11a843b2007-08-28 17:01:55 -0400543 if (!(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200544 if (ieee80211_wep_encrypt(tx->local, skb, tx->key))
545 return -1;
546 } else {
Johannes Berg8f20fc22007-08-28 17:01:54 -0400547 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
Johannes Berg7848ba72007-09-14 11:10:25 -0400548 if (tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) {
549 if (!ieee80211_wep_add_iv(tx->local, skb, tx->key))
Johannes Berge2ebc742007-07-27 15:43:22 +0200550 return -1;
551 }
552 }
553 return 0;
554}
555
556static ieee80211_txrx_result
557ieee80211_tx_h_wep_encrypt(struct ieee80211_txrx_data *tx)
558{
559 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
560 u16 fc;
561
562 fc = le16_to_cpu(hdr->frame_control);
563
Johannes Berg8f20fc22007-08-28 17:01:54 -0400564 if (!tx->key || tx->key->conf.alg != ALG_WEP ||
Johannes Berge2ebc742007-07-27 15:43:22 +0200565 ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA &&
566 ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
567 (fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_AUTH)))
568 return TXRX_CONTINUE;
569
570 tx->u.tx.control->iv_len = WEP_IV_LEN;
571 tx->u.tx.control->icv_len = WEP_ICV_LEN;
572 ieee80211_tx_set_iswep(tx);
573
574 if (wep_encrypt_skb(tx, tx->skb) < 0) {
575 I802_DEBUG_INC(tx->local->tx_handlers_drop_wep);
576 return TXRX_DROP;
577 }
578
579 if (tx->u.tx.extra_frag) {
580 int i;
581 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
582 if (wep_encrypt_skb(tx, tx->u.tx.extra_frag[i]) < 0) {
583 I802_DEBUG_INC(tx->local->
584 tx_handlers_drop_wep);
585 return TXRX_DROP;
586 }
587 }
588 }
589
590 return TXRX_CONTINUE;
591}
592
593static ieee80211_txrx_result
594ieee80211_tx_h_rate_ctrl(struct ieee80211_txrx_data *tx)
595{
596 struct rate_control_extra extra;
597
598 memset(&extra, 0, sizeof(extra));
599 extra.mode = tx->u.tx.mode;
600 extra.mgmt_data = tx->sdata &&
601 tx->sdata->type == IEEE80211_IF_TYPE_MGMT;
602 extra.ethertype = tx->ethertype;
603
604 tx->u.tx.rate = rate_control_get_rate(tx->local, tx->dev, tx->skb,
605 &extra);
606 if (unlikely(extra.probe != NULL)) {
607 tx->u.tx.control->flags |= IEEE80211_TXCTL_RATE_CTRL_PROBE;
Jiri Slabybadffb72007-08-28 17:01:54 -0400608 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +0200609 tx->u.tx.control->alt_retry_rate = tx->u.tx.rate->val;
610 tx->u.tx.rate = extra.probe;
611 } else {
612 tx->u.tx.control->alt_retry_rate = -1;
613 }
614 if (!tx->u.tx.rate)
615 return TXRX_DROP;
616 if (tx->u.tx.mode->mode == MODE_IEEE80211G &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400617 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400618 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) && extra.nonerp) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200619 tx->u.tx.last_frag_rate = tx->u.tx.rate;
Jiri Slabybadffb72007-08-28 17:01:54 -0400620 if (extra.probe)
621 tx->flags &= ~IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
622 else
623 tx->flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +0200624 tx->u.tx.rate = extra.nonerp;
625 tx->u.tx.control->rate = extra.nonerp;
626 tx->u.tx.control->flags &= ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
627 } else {
628 tx->u.tx.last_frag_rate = tx->u.tx.rate;
629 tx->u.tx.control->rate = tx->u.tx.rate;
630 }
631 tx->u.tx.control->tx_rate = tx->u.tx.rate->val;
Johannes Berge2ebc742007-07-27 15:43:22 +0200632
633 return TXRX_CONTINUE;
634}
635
636static ieee80211_txrx_result
637ieee80211_tx_h_misc(struct ieee80211_txrx_data *tx)
638{
639 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200640 u16 fc = le16_to_cpu(hdr->frame_control);
Johannes Berge2ebc742007-07-27 15:43:22 +0200641 u16 dur;
642 struct ieee80211_tx_control *control = tx->u.tx.control;
643 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
644
645 if (!is_multicast_ether_addr(hdr->addr1)) {
646 if (tx->skb->len + FCS_LEN > tx->local->rts_threshold &&
647 tx->local->rts_threshold < IEEE80211_MAX_RTS_THRESHOLD) {
648 control->flags |= IEEE80211_TXCTL_USE_RTS_CTS;
Ivo van Doornd5d08de2007-07-27 15:43:23 +0200649 control->flags |= IEEE80211_TXCTL_LONG_RETRY_LIMIT;
Johannes Berge2ebc742007-07-27 15:43:22 +0200650 control->retry_limit =
651 tx->local->long_retry_limit;
652 } else {
653 control->retry_limit =
654 tx->local->short_retry_limit;
655 }
656 } else {
657 control->retry_limit = 1;
658 }
659
Jiri Slabybadffb72007-08-28 17:01:54 -0400660 if (tx->flags & IEEE80211_TXRXD_FRAGMENTED) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200661 /* Do not use multiple retry rates when sending fragmented
662 * frames.
663 * TODO: The last fragment could still use multiple retry
664 * rates. */
665 control->alt_retry_rate = -1;
666 }
667
668 /* Use CTS protection for unicast frames sent using extended rates if
669 * there are associated non-ERP stations and RTS/CTS is not configured
670 * for the frame. */
671 if (mode->mode == MODE_IEEE80211G &&
672 (tx->u.tx.rate->flags & IEEE80211_RATE_ERP) &&
Jiri Slabybadffb72007-08-28 17:01:54 -0400673 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400674 (tx->sdata->flags & IEEE80211_SDATA_USE_PROTECTION) &&
Johannes Berge2ebc742007-07-27 15:43:22 +0200675 !(control->flags & IEEE80211_TXCTL_USE_RTS_CTS))
676 control->flags |= IEEE80211_TXCTL_USE_CTS_PROTECT;
677
Daniel Drake7e9ed182007-07-27 15:43:24 +0200678 /* Transmit data frames using short preambles if the driver supports
679 * short preambles at the selected rate and short preambles are
680 * available on the network at the current point in time. */
681 if (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
682 (tx->u.tx.rate->flags & IEEE80211_RATE_PREAMBLE2) &&
Jiri Slaby13262ff2007-08-28 17:01:54 -0400683 (tx->sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
Daniel Drake7e9ed182007-07-27 15:43:24 +0200684 (!tx->sta || (tx->sta->flags & WLAN_STA_SHORT_PREAMBLE))) {
685 tx->u.tx.control->tx_rate = tx->u.tx.rate->val2;
686 }
687
Johannes Berge2ebc742007-07-27 15:43:22 +0200688 /* Setup duration field for the first fragment of the frame. Duration
689 * for remaining fragments will be updated when they are being sent
690 * to low-level driver in ieee80211_tx(). */
691 dur = ieee80211_duration(tx, is_multicast_ether_addr(hdr->addr1),
Jiri Slabybadffb72007-08-28 17:01:54 -0400692 (tx->flags & IEEE80211_TXRXD_FRAGMENTED) ?
693 tx->u.tx.extra_frag[0]->len : 0);
Johannes Berge2ebc742007-07-27 15:43:22 +0200694 hdr->duration_id = cpu_to_le16(dur);
695
696 if ((control->flags & IEEE80211_TXCTL_USE_RTS_CTS) ||
697 (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)) {
698 struct ieee80211_rate *rate;
699
700 /* Do not use multiple retry rates when using RTS/CTS */
701 control->alt_retry_rate = -1;
702
703 /* Use min(data rate, max base rate) as CTS/RTS rate */
704 rate = tx->u.tx.rate;
705 while (rate > mode->rates &&
706 !(rate->flags & IEEE80211_RATE_BASIC))
707 rate--;
708
709 control->rts_cts_rate = rate->val;
710 control->rts_rate = rate;
711 }
712
713 if (tx->sta) {
714 tx->sta->tx_packets++;
715 tx->sta->tx_fragments++;
716 tx->sta->tx_bytes += tx->skb->len;
717 if (tx->u.tx.extra_frag) {
718 int i;
719 tx->sta->tx_fragments += tx->u.tx.num_extra_frag;
720 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
721 tx->sta->tx_bytes +=
722 tx->u.tx.extra_frag[i]->len;
723 }
724 }
725 }
726
727 return TXRX_CONTINUE;
728}
729
730static ieee80211_txrx_result
731ieee80211_tx_h_load_stats(struct ieee80211_txrx_data *tx)
732{
733 struct ieee80211_local *local = tx->local;
734 struct ieee80211_hw_mode *mode = tx->u.tx.mode;
735 struct sk_buff *skb = tx->skb;
736 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
737 u32 load = 0, hdrtime;
738
739 /* TODO: this could be part of tx_status handling, so that the number
740 * of retries would be known; TX rate should in that case be stored
741 * somewhere with the packet */
742
743 /* Estimate total channel use caused by this frame */
744
745 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
746 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
747
748 if (mode->mode == MODE_IEEE80211A ||
Johannes Berge2ebc742007-07-27 15:43:22 +0200749 (mode->mode == MODE_IEEE80211G &&
750 tx->u.tx.rate->flags & IEEE80211_RATE_ERP))
751 hdrtime = CHAN_UTIL_HDR_SHORT;
752 else
753 hdrtime = CHAN_UTIL_HDR_LONG;
754
755 load = hdrtime;
756 if (!is_multicast_ether_addr(hdr->addr1))
757 load += hdrtime;
758
759 if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_RTS_CTS)
760 load += 2 * hdrtime;
761 else if (tx->u.tx.control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
762 load += hdrtime;
763
764 load += skb->len * tx->u.tx.rate->rate_inv;
765
766 if (tx->u.tx.extra_frag) {
767 int i;
768 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
769 load += 2 * hdrtime;
770 load += tx->u.tx.extra_frag[i]->len *
771 tx->u.tx.rate->rate;
772 }
773 }
774
775 /* Divide channel_use by 8 to avoid wrapping around the counter */
776 load >>= CHAN_UTIL_SHIFT;
777 local->channel_use_raw += load;
778 if (tx->sta)
779 tx->sta->channel_use_raw += load;
780 tx->sdata->channel_use_raw += load;
781
782 return TXRX_CONTINUE;
783}
784
785/* TODO: implement register/unregister functions for adding TX/RX handlers
786 * into ordered list */
787
788ieee80211_tx_handler ieee80211_tx_handlers[] =
789{
790 ieee80211_tx_h_check_assoc,
791 ieee80211_tx_h_sequence,
792 ieee80211_tx_h_ps_buf,
793 ieee80211_tx_h_select_key,
794 ieee80211_tx_h_michael_mic_add,
795 ieee80211_tx_h_fragment,
796 ieee80211_tx_h_tkip_encrypt,
797 ieee80211_tx_h_ccmp_encrypt,
798 ieee80211_tx_h_wep_encrypt,
799 ieee80211_tx_h_rate_ctrl,
800 ieee80211_tx_h_misc,
801 ieee80211_tx_h_load_stats,
802 NULL
803};
804
805/* actual transmit path */
806
807/*
808 * deal with packet injection down monitor interface
809 * with Radiotap Header -- only called for monitor mode interface
810 */
811static ieee80211_txrx_result
812__ieee80211_parse_tx_radiotap(
813 struct ieee80211_txrx_data *tx,
814 struct sk_buff *skb, struct ieee80211_tx_control *control)
815{
816 /*
817 * this is the moment to interpret and discard the radiotap header that
818 * must be at the start of the packet injected in Monitor mode
819 *
820 * Need to take some care with endian-ness since radiotap
821 * args are little-endian
822 */
823
824 struct ieee80211_radiotap_iterator iterator;
825 struct ieee80211_radiotap_header *rthdr =
826 (struct ieee80211_radiotap_header *) skb->data;
827 struct ieee80211_hw_mode *mode = tx->local->hw.conf.mode;
828 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len);
829
830 /*
831 * default control situation for all injected packets
832 * FIXME: this does not suit all usage cases, expand to allow control
833 */
834
835 control->retry_limit = 1; /* no retry */
Johannes Berg11a843b2007-08-28 17:01:55 -0400836 control->key_idx = HW_KEY_IDX_INVALID;
Johannes Berge2ebc742007-07-27 15:43:22 +0200837 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
838 IEEE80211_TXCTL_USE_CTS_PROTECT);
839 control->flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT |
840 IEEE80211_TXCTL_NO_ACK;
841 control->antenna_sel_tx = 0; /* default to default antenna */
842
843 /*
844 * for every radiotap entry that is present
845 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
846 * entries present, or -EINVAL on error)
847 */
848
849 while (!ret) {
850 int i, target_rate;
851
852 ret = ieee80211_radiotap_iterator_next(&iterator);
853
854 if (ret)
855 continue;
856
857 /* see if this argument is something we can use */
858 switch (iterator.this_arg_index) {
859 /*
860 * You must take care when dereferencing iterator.this_arg
861 * for multibyte types... the pointer is not aligned. Use
862 * get_unaligned((type *)iterator.this_arg) to dereference
863 * iterator.this_arg for type "type" safely on all arches.
864 */
865 case IEEE80211_RADIOTAP_RATE:
866 /*
867 * radiotap rate u8 is in 500kbps units eg, 0x02=1Mbps
868 * ieee80211 rate int is in 100kbps units eg, 0x0a=1Mbps
869 */
870 target_rate = (*iterator.this_arg) * 5;
871 for (i = 0; i < mode->num_rates; i++) {
872 struct ieee80211_rate *r = &mode->rates[i];
873
874 if (r->rate > target_rate)
875 continue;
876
877 control->rate = r;
878
879 if (r->flags & IEEE80211_RATE_PREAMBLE2)
880 control->tx_rate = r->val2;
881 else
882 control->tx_rate = r->val;
883
884 /* end on exact match */
885 if (r->rate == target_rate)
886 i = mode->num_rates;
887 }
888 break;
889
890 case IEEE80211_RADIOTAP_ANTENNA:
891 /*
892 * radiotap uses 0 for 1st ant, mac80211 is 1 for
893 * 1st ant
894 */
895 control->antenna_sel_tx = (*iterator.this_arg) + 1;
896 break;
897
898 case IEEE80211_RADIOTAP_DBM_TX_POWER:
899 control->power_level = *iterator.this_arg;
900 break;
901
902 case IEEE80211_RADIOTAP_FLAGS:
903 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
904 /*
905 * this indicates that the skb we have been
906 * handed has the 32-bit FCS CRC at the end...
907 * we should react to that by snipping it off
908 * because it will be recomputed and added
909 * on transmission
910 */
911 if (skb->len < (iterator.max_length + FCS_LEN))
912 return TXRX_DROP;
913
914 skb_trim(skb, skb->len - FCS_LEN);
915 }
916 break;
917
918 default:
919 break;
920 }
921 }
922
923 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
924 return TXRX_DROP;
925
926 /*
927 * remove the radiotap header
928 * iterator->max_length was sanity-checked against
929 * skb->len by iterator init
930 */
931 skb_pull(skb, iterator.max_length);
932
933 return TXRX_CONTINUE;
934}
935
936static ieee80211_txrx_result inline
937__ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
938 struct sk_buff *skb,
939 struct net_device *dev,
940 struct ieee80211_tx_control *control)
941{
942 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
943 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
944 struct ieee80211_sub_if_data *sdata;
945 ieee80211_txrx_result res = TXRX_CONTINUE;
946
947 int hdrlen;
948
949 memset(tx, 0, sizeof(*tx));
950 tx->skb = skb;
951 tx->dev = dev; /* use original interface */
952 tx->local = local;
953 tx->sdata = IEEE80211_DEV_TO_SUB_IF(dev);
954 tx->sta = sta_info_get(local, hdr->addr1);
955 tx->fc = le16_to_cpu(hdr->frame_control);
956
957 /*
958 * set defaults for things that can be set by
959 * injected radiotap headers
960 */
961 control->power_level = local->hw.conf.power_level;
962 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
Johannes Berge2ebc742007-07-27 15:43:22 +0200963
964 /* process and remove the injection radiotap header */
965 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
966 if (unlikely(sdata->type == IEEE80211_IF_TYPE_MNTR)) {
967 if (__ieee80211_parse_tx_radiotap(tx, skb, control) ==
968 TXRX_DROP) {
969 return TXRX_DROP;
970 }
971 /*
972 * we removed the radiotap header after this point,
973 * we filled control with what we could use
974 * set to the actual ieee header now
975 */
976 hdr = (struct ieee80211_hdr *) skb->data;
977 res = TXRX_QUEUED; /* indication it was monitor packet */
978 }
979
980 tx->u.tx.control = control;
Jiri Slabybadffb72007-08-28 17:01:54 -0400981 if (is_multicast_ether_addr(hdr->addr1)) {
982 tx->flags &= ~IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200983 control->flags |= IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400984 } else {
985 tx->flags |= IEEE80211_TXRXD_TXUNICAST;
Johannes Berge2ebc742007-07-27 15:43:22 +0200986 control->flags &= ~IEEE80211_TXCTL_NO_ACK;
Jiri Slabybadffb72007-08-28 17:01:54 -0400987 }
988 if (local->fragmentation_threshold < IEEE80211_MAX_FRAG_THRESHOLD &&
989 (tx->flags & IEEE80211_TXRXD_TXUNICAST) &&
990 skb->len + FCS_LEN > local->fragmentation_threshold &&
991 !local->ops->set_frag_threshold)
992 tx->flags |= IEEE80211_TXRXD_FRAGMENTED;
993 else
994 tx->flags &= ~IEEE80211_TXRXD_FRAGMENTED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200995 if (!tx->sta)
996 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
997 else if (tx->sta->clear_dst_mask) {
998 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
999 tx->sta->clear_dst_mask = 0;
1000 }
1001 hdrlen = ieee80211_get_hdrlen(tx->fc);
1002 if (skb->len > hdrlen + sizeof(rfc1042_header) + 2) {
1003 u8 *pos = &skb->data[hdrlen + sizeof(rfc1042_header)];
1004 tx->ethertype = (pos[0] << 8) | pos[1];
1005 }
1006 control->flags |= IEEE80211_TXCTL_FIRST_FRAGMENT;
1007
1008 return res;
1009}
1010
1011/* Device in tx->dev has a reference added; use dev_put(tx->dev) when
1012 * finished with it. */
1013static int inline ieee80211_tx_prepare(struct ieee80211_txrx_data *tx,
1014 struct sk_buff *skb,
1015 struct net_device *mdev,
1016 struct ieee80211_tx_control *control)
1017{
1018 struct ieee80211_tx_packet_data *pkt_data;
1019 struct net_device *dev;
1020
1021 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001022 dev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001023 if (unlikely(dev && !is_ieee80211_device(dev, mdev))) {
1024 dev_put(dev);
1025 dev = NULL;
1026 }
1027 if (unlikely(!dev))
1028 return -ENODEV;
1029 __ieee80211_tx_prepare(tx, skb, dev, control);
1030 return 0;
1031}
1032
1033static int __ieee80211_tx(struct ieee80211_local *local, struct sk_buff *skb,
1034 struct ieee80211_txrx_data *tx)
1035{
1036 struct ieee80211_tx_control *control = tx->u.tx.control;
1037 int ret, i;
1038
1039 if (!ieee80211_qdisc_installed(local->mdev) &&
1040 __ieee80211_queue_stopped(local, 0)) {
1041 netif_stop_queue(local->mdev);
1042 return IEEE80211_TX_AGAIN;
1043 }
1044 if (skb) {
1045 ieee80211_dump_frame(local->mdev->name, "TX to low-level driver", skb);
1046 ret = local->ops->tx(local_to_hw(local), skb, control);
1047 if (ret)
1048 return IEEE80211_TX_AGAIN;
1049 local->mdev->trans_start = jiffies;
1050 ieee80211_led_tx(local, 1);
1051 }
1052 if (tx->u.tx.extra_frag) {
1053 control->flags &= ~(IEEE80211_TXCTL_USE_RTS_CTS |
1054 IEEE80211_TXCTL_USE_CTS_PROTECT |
1055 IEEE80211_TXCTL_CLEAR_DST_MASK |
1056 IEEE80211_TXCTL_FIRST_FRAGMENT);
1057 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
1058 if (!tx->u.tx.extra_frag[i])
1059 continue;
1060 if (__ieee80211_queue_stopped(local, control->queue))
1061 return IEEE80211_TX_FRAG_AGAIN;
1062 if (i == tx->u.tx.num_extra_frag) {
1063 control->tx_rate = tx->u.tx.last_frag_hwrate;
1064 control->rate = tx->u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001065 if (tx->flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG)
Johannes Berge2ebc742007-07-27 15:43:22 +02001066 control->flags |=
1067 IEEE80211_TXCTL_RATE_CTRL_PROBE;
1068 else
1069 control->flags &=
1070 ~IEEE80211_TXCTL_RATE_CTRL_PROBE;
1071 }
1072
1073 ieee80211_dump_frame(local->mdev->name,
1074 "TX to low-level driver",
1075 tx->u.tx.extra_frag[i]);
1076 ret = local->ops->tx(local_to_hw(local),
1077 tx->u.tx.extra_frag[i],
1078 control);
1079 if (ret)
1080 return IEEE80211_TX_FRAG_AGAIN;
1081 local->mdev->trans_start = jiffies;
1082 ieee80211_led_tx(local, 1);
1083 tx->u.tx.extra_frag[i] = NULL;
1084 }
1085 kfree(tx->u.tx.extra_frag);
1086 tx->u.tx.extra_frag = NULL;
1087 }
1088 return IEEE80211_TX_OK;
1089}
1090
1091static int ieee80211_tx(struct net_device *dev, struct sk_buff *skb,
1092 struct ieee80211_tx_control *control, int mgmt)
1093{
1094 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1095 struct sta_info *sta;
1096 ieee80211_tx_handler *handler;
1097 struct ieee80211_txrx_data tx;
1098 ieee80211_txrx_result res = TXRX_DROP, res_prepare;
1099 int ret, i;
1100
1101 WARN_ON(__ieee80211_queue_pending(local, control->queue));
1102
1103 if (unlikely(skb->len < 10)) {
1104 dev_kfree_skb(skb);
1105 return 0;
1106 }
1107
1108 res_prepare = __ieee80211_tx_prepare(&tx, skb, dev, control);
1109
1110 if (res_prepare == TXRX_DROP) {
1111 dev_kfree_skb(skb);
1112 return 0;
1113 }
1114
Johannes Bergd4e46a32007-09-14 11:10:24 -04001115 /*
1116 * key references are protected using RCU and this requires that
1117 * we are in a read-site RCU section during receive processing
1118 */
1119 rcu_read_lock();
1120
Johannes Berge2ebc742007-07-27 15:43:22 +02001121 sta = tx.sta;
1122 tx.u.tx.mgmt_interface = mgmt;
1123 tx.u.tx.mode = local->hw.conf.mode;
1124
1125 if (res_prepare == TXRX_QUEUED) { /* if it was an injected packet */
1126 res = TXRX_CONTINUE;
1127 } else {
1128 for (handler = local->tx_handlers; *handler != NULL;
1129 handler++) {
1130 res = (*handler)(&tx);
1131 if (res != TXRX_CONTINUE)
1132 break;
1133 }
1134 }
1135
1136 skb = tx.skb; /* handlers are allowed to change skb */
1137
1138 if (sta)
1139 sta_info_put(sta);
1140
1141 if (unlikely(res == TXRX_DROP)) {
1142 I802_DEBUG_INC(local->tx_handlers_drop);
1143 goto drop;
1144 }
1145
1146 if (unlikely(res == TXRX_QUEUED)) {
1147 I802_DEBUG_INC(local->tx_handlers_queued);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001148 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001149 return 0;
1150 }
1151
1152 if (tx.u.tx.extra_frag) {
1153 for (i = 0; i < tx.u.tx.num_extra_frag; i++) {
1154 int next_len, dur;
1155 struct ieee80211_hdr *hdr =
1156 (struct ieee80211_hdr *)
1157 tx.u.tx.extra_frag[i]->data;
1158
1159 if (i + 1 < tx.u.tx.num_extra_frag) {
1160 next_len = tx.u.tx.extra_frag[i + 1]->len;
1161 } else {
1162 next_len = 0;
1163 tx.u.tx.rate = tx.u.tx.last_frag_rate;
1164 tx.u.tx.last_frag_hwrate = tx.u.tx.rate->val;
1165 }
1166 dur = ieee80211_duration(&tx, 0, next_len);
1167 hdr->duration_id = cpu_to_le16(dur);
1168 }
1169 }
1170
1171retry:
1172 ret = __ieee80211_tx(local, skb, &tx);
1173 if (ret) {
1174 struct ieee80211_tx_stored_packet *store =
1175 &local->pending_packet[control->queue];
1176
1177 if (ret == IEEE80211_TX_FRAG_AGAIN)
1178 skb = NULL;
1179 set_bit(IEEE80211_LINK_STATE_PENDING,
1180 &local->state[control->queue]);
1181 smp_mb();
1182 /* When the driver gets out of buffers during sending of
1183 * fragments and calls ieee80211_stop_queue, there is
1184 * a small window between IEEE80211_LINK_STATE_XOFF and
1185 * IEEE80211_LINK_STATE_PENDING flags are set. If a buffer
1186 * gets available in that window (i.e. driver calls
1187 * ieee80211_wake_queue), we would end up with ieee80211_tx
1188 * called with IEEE80211_LINK_STATE_PENDING. Prevent this by
1189 * continuing transmitting here when that situation is
1190 * possible to have happened. */
1191 if (!__ieee80211_queue_stopped(local, control->queue)) {
1192 clear_bit(IEEE80211_LINK_STATE_PENDING,
1193 &local->state[control->queue]);
1194 goto retry;
1195 }
1196 memcpy(&store->control, control,
1197 sizeof(struct ieee80211_tx_control));
1198 store->skb = skb;
1199 store->extra_frag = tx.u.tx.extra_frag;
1200 store->num_extra_frag = tx.u.tx.num_extra_frag;
1201 store->last_frag_hwrate = tx.u.tx.last_frag_hwrate;
1202 store->last_frag_rate = tx.u.tx.last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001203 store->last_frag_rate_ctrl_probe =
1204 !!(tx.flags & IEEE80211_TXRXD_TXPROBE_LAST_FRAG);
Johannes Berge2ebc742007-07-27 15:43:22 +02001205 }
Johannes Bergd4e46a32007-09-14 11:10:24 -04001206 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001207 return 0;
1208
1209 drop:
1210 if (skb)
1211 dev_kfree_skb(skb);
1212 for (i = 0; i < tx.u.tx.num_extra_frag; i++)
1213 if (tx.u.tx.extra_frag[i])
1214 dev_kfree_skb(tx.u.tx.extra_frag[i]);
1215 kfree(tx.u.tx.extra_frag);
Johannes Bergd4e46a32007-09-14 11:10:24 -04001216 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02001217 return 0;
1218}
1219
1220/* device xmit handlers */
1221
1222int ieee80211_master_start_xmit(struct sk_buff *skb,
1223 struct net_device *dev)
1224{
1225 struct ieee80211_tx_control control;
1226 struct ieee80211_tx_packet_data *pkt_data;
1227 struct net_device *odev = NULL;
1228 struct ieee80211_sub_if_data *osdata;
1229 int headroom;
1230 int ret;
1231
1232 /*
1233 * copy control out of the skb so other people can use skb->cb
1234 */
1235 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1236 memset(&control, 0, sizeof(struct ieee80211_tx_control));
1237
1238 if (pkt_data->ifindex)
Eric W. Biederman881d9662007-09-17 11:56:21 -07001239 odev = dev_get_by_index(&init_net, pkt_data->ifindex);
Johannes Berge2ebc742007-07-27 15:43:22 +02001240 if (unlikely(odev && !is_ieee80211_device(odev, dev))) {
1241 dev_put(odev);
1242 odev = NULL;
1243 }
1244 if (unlikely(!odev)) {
1245#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1246 printk(KERN_DEBUG "%s: Discarded packet with nonexistent "
1247 "originating device\n", dev->name);
1248#endif
1249 dev_kfree_skb(skb);
1250 return 0;
1251 }
1252 osdata = IEEE80211_DEV_TO_SUB_IF(odev);
1253
1254 headroom = osdata->local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM;
1255 if (skb_headroom(skb) < headroom) {
1256 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
1257 dev_kfree_skb(skb);
1258 dev_put(odev);
1259 return 0;
1260 }
1261 }
1262
1263 control.ifindex = odev->ifindex;
1264 control.type = osdata->type;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001265 if (pkt_data->flags & IEEE80211_TXPD_REQ_TX_STATUS)
Johannes Berge2ebc742007-07-27 15:43:22 +02001266 control.flags |= IEEE80211_TXCTL_REQ_TX_STATUS;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001267 if (pkt_data->flags & IEEE80211_TXPD_DO_NOT_ENCRYPT)
Johannes Berge2ebc742007-07-27 15:43:22 +02001268 control.flags |= IEEE80211_TXCTL_DO_NOT_ENCRYPT;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001269 if (pkt_data->flags & IEEE80211_TXPD_REQUEUE)
Johannes Berge2ebc742007-07-27 15:43:22 +02001270 control.flags |= IEEE80211_TXCTL_REQUEUE;
1271 control.queue = pkt_data->queue;
1272
1273 ret = ieee80211_tx(odev, skb, &control,
1274 control.type == IEEE80211_IF_TYPE_MGMT);
1275 dev_put(odev);
1276
1277 return ret;
1278}
1279
1280int ieee80211_monitor_start_xmit(struct sk_buff *skb,
1281 struct net_device *dev)
1282{
1283 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1284 struct ieee80211_tx_packet_data *pkt_data;
1285 struct ieee80211_radiotap_header *prthdr =
1286 (struct ieee80211_radiotap_header *)skb->data;
Andy Green9b8a74e2007-07-27 15:43:24 +02001287 u16 len_rthdr;
Johannes Berge2ebc742007-07-27 15:43:22 +02001288
Andy Green9b8a74e2007-07-27 15:43:24 +02001289 /* check for not even having the fixed radiotap header part */
1290 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1291 goto fail; /* too short to be possibly valid */
1292
1293 /* is it a header version we can trust to find length from? */
1294 if (unlikely(prthdr->it_version))
1295 goto fail; /* only version 0 is supported */
1296
1297 /* then there must be a radiotap header with a length we can use */
1298 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1299
1300 /* does the skb contain enough to deliver on the alleged length? */
1301 if (unlikely(skb->len < len_rthdr))
1302 goto fail; /* skb too short for claimed rt header extent */
Johannes Berge2ebc742007-07-27 15:43:22 +02001303
1304 skb->dev = local->mdev;
1305
1306 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1307 memset(pkt_data, 0, sizeof(*pkt_data));
Andy Green9b8a74e2007-07-27 15:43:24 +02001308 /* needed because we set skb device to master */
Johannes Berge2ebc742007-07-27 15:43:22 +02001309 pkt_data->ifindex = dev->ifindex;
Andy Green9b8a74e2007-07-27 15:43:24 +02001310
Jiri Slabye8bf9642007-08-28 17:01:54 -04001311 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001312
Johannes Berge2ebc742007-07-27 15:43:22 +02001313 /*
1314 * fix up the pointers accounting for the radiotap
1315 * header still being in there. We are being given
1316 * a precooked IEEE80211 header so no need for
1317 * normal processing
1318 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001319 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001320 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02001321 * these are just fixed to the end of the rt area since we
1322 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02001323 */
Andy Green9b8a74e2007-07-27 15:43:24 +02001324 skb_set_network_header(skb, len_rthdr);
1325 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02001326
Andy Green9b8a74e2007-07-27 15:43:24 +02001327 /* pass the radiotap header up to the next stage intact */
1328 dev_queue_xmit(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001329 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02001330
1331fail:
1332 dev_kfree_skb(skb);
1333 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02001334}
1335
1336/**
1337 * ieee80211_subif_start_xmit - netif start_xmit function for Ethernet-type
1338 * subinterfaces (wlan#, WDS, and VLAN interfaces)
1339 * @skb: packet to be sent
1340 * @dev: incoming interface
1341 *
1342 * Returns: 0 on success (and frees skb in this case) or 1 on failure (skb will
1343 * not be freed, and caller is responsible for either retrying later or freeing
1344 * skb).
1345 *
1346 * This function takes in an Ethernet header and encapsulates it with suitable
1347 * IEEE 802.11 header based on which interface the packet is coming in. The
1348 * encapsulated packet will then be passed to master interface, wlan#.11, for
1349 * transmission (through low-level driver).
1350 */
1351int ieee80211_subif_start_xmit(struct sk_buff *skb,
1352 struct net_device *dev)
1353{
1354 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
1355 struct ieee80211_tx_packet_data *pkt_data;
1356 struct ieee80211_sub_if_data *sdata;
1357 int ret = 1, head_need;
1358 u16 ethertype, hdrlen, fc;
1359 struct ieee80211_hdr hdr;
1360 const u8 *encaps_data;
1361 int encaps_len, skip_header_bytes;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001362 int nh_pos, h_pos;
Johannes Berge2ebc742007-07-27 15:43:22 +02001363 struct sta_info *sta;
1364
1365 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1366 if (unlikely(skb->len < ETH_HLEN)) {
1367 printk(KERN_DEBUG "%s: short skb (len=%d)\n",
1368 dev->name, skb->len);
1369 ret = 0;
1370 goto fail;
1371 }
1372
1373 nh_pos = skb_network_header(skb) - skb->data;
1374 h_pos = skb_transport_header(skb) - skb->data;
1375
1376 /* convert Ethernet header to proper 802.11 header (based on
1377 * operation mode) */
1378 ethertype = (skb->data[12] << 8) | skb->data[13];
1379 /* TODO: handling for 802.1x authorized/unauthorized port */
1380 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
1381
Johannes Bergcf966832007-08-28 17:01:54 -04001382 switch (sdata->type) {
1383 case IEEE80211_IF_TYPE_AP:
1384 case IEEE80211_IF_TYPE_VLAN:
Johannes Berge2ebc742007-07-27 15:43:22 +02001385 fc |= IEEE80211_FCTL_FROMDS;
1386 /* DA BSSID SA */
1387 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1388 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1389 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1390 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001391 break;
1392 case IEEE80211_IF_TYPE_WDS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001393 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
1394 /* RA TA DA SA */
1395 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
1396 memcpy(hdr.addr2, dev->dev_addr, ETH_ALEN);
1397 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1398 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1399 hdrlen = 30;
Johannes Bergcf966832007-08-28 17:01:54 -04001400 break;
1401 case IEEE80211_IF_TYPE_STA:
Johannes Berge2ebc742007-07-27 15:43:22 +02001402 fc |= IEEE80211_FCTL_TODS;
1403 /* BSSID SA DA */
1404 memcpy(hdr.addr1, sdata->u.sta.bssid, ETH_ALEN);
1405 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1406 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1407 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001408 break;
1409 case IEEE80211_IF_TYPE_IBSS:
Johannes Berge2ebc742007-07-27 15:43:22 +02001410 /* DA SA BSSID */
1411 memcpy(hdr.addr1, skb->data, ETH_ALEN);
1412 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
1413 memcpy(hdr.addr3, sdata->u.sta.bssid, ETH_ALEN);
1414 hdrlen = 24;
Johannes Bergcf966832007-08-28 17:01:54 -04001415 break;
1416 default:
Johannes Berge2ebc742007-07-27 15:43:22 +02001417 ret = 0;
1418 goto fail;
1419 }
1420
1421 /* receiver is QoS enabled, use a QoS type frame */
1422 sta = sta_info_get(local, hdr.addr1);
1423 if (sta) {
1424 if (sta->flags & WLAN_STA_WME) {
1425 fc |= IEEE80211_STYPE_QOS_DATA;
1426 hdrlen += 2;
1427 }
1428 sta_info_put(sta);
1429 }
1430
1431 hdr.frame_control = cpu_to_le16(fc);
1432 hdr.duration_id = 0;
1433 hdr.seq_ctrl = 0;
1434
1435 skip_header_bytes = ETH_HLEN;
1436 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
1437 encaps_data = bridge_tunnel_header;
1438 encaps_len = sizeof(bridge_tunnel_header);
1439 skip_header_bytes -= 2;
1440 } else if (ethertype >= 0x600) {
1441 encaps_data = rfc1042_header;
1442 encaps_len = sizeof(rfc1042_header);
1443 skip_header_bytes -= 2;
1444 } else {
1445 encaps_data = NULL;
1446 encaps_len = 0;
1447 }
1448
1449 skb_pull(skb, skip_header_bytes);
1450 nh_pos -= skip_header_bytes;
1451 h_pos -= skip_header_bytes;
1452
1453 /* TODO: implement support for fragments so that there is no need to
1454 * reallocate and copy payload; it might be enough to support one
1455 * extra fragment that would be copied in the beginning of the frame
1456 * data.. anyway, it would be nice to include this into skb structure
1457 * somehow
1458 *
1459 * There are few options for this:
1460 * use skb->cb as an extra space for 802.11 header
1461 * allocate new buffer if not enough headroom
1462 * make sure that there is enough headroom in every skb by increasing
1463 * build in headroom in __dev_alloc_skb() (linux/skbuff.h) and
1464 * alloc_skb() (net/core/skbuff.c)
1465 */
1466 head_need = hdrlen + encaps_len + local->tx_headroom;
1467 head_need -= skb_headroom(skb);
1468
1469 /* We are going to modify skb data, so make a copy of it if happens to
1470 * be cloned. This could happen, e.g., with Linux bridge code passing
1471 * us broadcast frames. */
1472
1473 if (head_need > 0 || skb_cloned(skb)) {
1474#if 0
1475 printk(KERN_DEBUG "%s: need to reallocate buffer for %d bytes "
1476 "of headroom\n", dev->name, head_need);
1477#endif
1478
1479 if (skb_cloned(skb))
1480 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1481 else
1482 I802_DEBUG_INC(local->tx_expand_skb_head);
1483 /* Since we have to reallocate the buffer, make sure that there
1484 * is enough room for possible WEP IV/ICV and TKIP (8 bytes
1485 * before payload and 12 after). */
1486 if (pskb_expand_head(skb, (head_need > 0 ? head_need + 8 : 8),
1487 12, GFP_ATOMIC)) {
1488 printk(KERN_DEBUG "%s: failed to reallocate TX buffer"
1489 "\n", dev->name);
1490 goto fail;
1491 }
1492 }
1493
1494 if (encaps_data) {
1495 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
1496 nh_pos += encaps_len;
1497 h_pos += encaps_len;
1498 }
Johannes Bergc29b9b92007-09-14 11:10:24 -04001499
1500 if (fc & IEEE80211_STYPE_QOS_DATA) {
1501 __le16 *qos_control;
1502
1503 qos_control = (__le16*) skb_push(skb, 2);
1504 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
1505 /*
1506 * Maybe we could actually set some fields here, for now just
1507 * initialise to zero to indicate no special operation.
1508 */
1509 *qos_control = 0;
1510 } else
1511 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
1512
Johannes Berge2ebc742007-07-27 15:43:22 +02001513 nh_pos += hdrlen;
1514 h_pos += hdrlen;
1515
1516 pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
1517 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1518 pkt_data->ifindex = dev->ifindex;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001519 if (sdata->type == IEEE80211_IF_TYPE_MGMT)
1520 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001521
1522 skb->dev = local->mdev;
1523 sdata->stats.tx_packets++;
1524 sdata->stats.tx_bytes += skb->len;
1525
1526 /* Update skb pointers to various headers since this modified frame
1527 * is going to go through Linux networking code that may potentially
1528 * need things like pointer to IP header. */
1529 skb_set_mac_header(skb, 0);
1530 skb_set_network_header(skb, nh_pos);
1531 skb_set_transport_header(skb, h_pos);
1532
1533 dev->trans_start = jiffies;
1534 dev_queue_xmit(skb);
1535
1536 return 0;
1537
1538 fail:
1539 if (!ret)
1540 dev_kfree_skb(skb);
1541
1542 return ret;
1543}
1544
1545/*
1546 * This is the transmit routine for the 802.11 type interfaces
1547 * called by upper layers of the linux networking
1548 * stack when it has a frame to transmit
1549 */
1550int ieee80211_mgmt_start_xmit(struct sk_buff *skb, struct net_device *dev)
1551{
1552 struct ieee80211_sub_if_data *sdata;
1553 struct ieee80211_tx_packet_data *pkt_data;
1554 struct ieee80211_hdr *hdr;
1555 u16 fc;
1556
1557 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1558
1559 if (skb->len < 10) {
1560 dev_kfree_skb(skb);
1561 return 0;
1562 }
1563
1564 if (skb_headroom(skb) < sdata->local->tx_headroom) {
1565 if (pskb_expand_head(skb, sdata->local->tx_headroom,
1566 0, GFP_ATOMIC)) {
1567 dev_kfree_skb(skb);
1568 return 0;
1569 }
1570 }
1571
1572 hdr = (struct ieee80211_hdr *) skb->data;
1573 fc = le16_to_cpu(hdr->frame_control);
1574
1575 pkt_data = (struct ieee80211_tx_packet_data *) skb->cb;
1576 memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data));
1577 pkt_data->ifindex = sdata->dev->ifindex;
Jiri Slabye8bf9642007-08-28 17:01:54 -04001578 if (sdata->type == IEEE80211_IF_TYPE_MGMT)
1579 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001580
1581 skb->priority = 20; /* use hardcoded priority for mgmt TX queue */
1582 skb->dev = sdata->local->mdev;
1583
1584 /*
1585 * We're using the protocol field of the the frame control header
1586 * to request TX callback for hostapd. BIT(1) is checked.
1587 */
1588 if ((fc & BIT(1)) == BIT(1)) {
Jiri Slabye8bf9642007-08-28 17:01:54 -04001589 pkt_data->flags |= IEEE80211_TXPD_REQ_TX_STATUS;
Johannes Berge2ebc742007-07-27 15:43:22 +02001590 fc &= ~BIT(1);
1591 hdr->frame_control = cpu_to_le16(fc);
1592 }
1593
Jiri Slabye8bf9642007-08-28 17:01:54 -04001594 if (!(fc & IEEE80211_FCTL_PROTECTED))
1595 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001596
1597 sdata->stats.tx_packets++;
1598 sdata->stats.tx_bytes += skb->len;
1599
1600 dev_queue_xmit(skb);
1601
1602 return 0;
1603}
1604
1605/* helper functions for pending packets for when queues are stopped */
1606
1607void ieee80211_clear_tx_pending(struct ieee80211_local *local)
1608{
1609 int i, j;
1610 struct ieee80211_tx_stored_packet *store;
1611
1612 for (i = 0; i < local->hw.queues; i++) {
1613 if (!__ieee80211_queue_pending(local, i))
1614 continue;
1615 store = &local->pending_packet[i];
1616 kfree_skb(store->skb);
1617 for (j = 0; j < store->num_extra_frag; j++)
1618 kfree_skb(store->extra_frag[j]);
1619 kfree(store->extra_frag);
1620 clear_bit(IEEE80211_LINK_STATE_PENDING, &local->state[i]);
1621 }
1622}
1623
1624void ieee80211_tx_pending(unsigned long data)
1625{
1626 struct ieee80211_local *local = (struct ieee80211_local *)data;
1627 struct net_device *dev = local->mdev;
1628 struct ieee80211_tx_stored_packet *store;
1629 struct ieee80211_txrx_data tx;
1630 int i, ret, reschedule = 0;
1631
1632 netif_tx_lock_bh(dev);
1633 for (i = 0; i < local->hw.queues; i++) {
1634 if (__ieee80211_queue_stopped(local, i))
1635 continue;
1636 if (!__ieee80211_queue_pending(local, i)) {
1637 reschedule = 1;
1638 continue;
1639 }
1640 store = &local->pending_packet[i];
1641 tx.u.tx.control = &store->control;
1642 tx.u.tx.extra_frag = store->extra_frag;
1643 tx.u.tx.num_extra_frag = store->num_extra_frag;
1644 tx.u.tx.last_frag_hwrate = store->last_frag_hwrate;
1645 tx.u.tx.last_frag_rate = store->last_frag_rate;
Jiri Slabybadffb72007-08-28 17:01:54 -04001646 tx.flags = 0;
1647 if (store->last_frag_rate_ctrl_probe)
1648 tx.flags |= IEEE80211_TXRXD_TXPROBE_LAST_FRAG;
Johannes Berge2ebc742007-07-27 15:43:22 +02001649 ret = __ieee80211_tx(local, store->skb, &tx);
1650 if (ret) {
1651 if (ret == IEEE80211_TX_FRAG_AGAIN)
1652 store->skb = NULL;
1653 } else {
1654 clear_bit(IEEE80211_LINK_STATE_PENDING,
1655 &local->state[i]);
1656 reschedule = 1;
1657 }
1658 }
1659 netif_tx_unlock_bh(dev);
1660 if (reschedule) {
1661 if (!ieee80211_qdisc_installed(dev)) {
1662 if (!__ieee80211_queue_stopped(local, 0))
1663 netif_wake_queue(dev);
1664 } else
1665 netif_schedule(dev);
1666 }
1667}
1668
1669/* functions for drivers to get certain frames */
1670
1671static void ieee80211_beacon_add_tim(struct ieee80211_local *local,
1672 struct ieee80211_if_ap *bss,
1673 struct sk_buff *skb)
1674{
1675 u8 *pos, *tim;
1676 int aid0 = 0;
1677 int i, have_bits = 0, n1, n2;
1678
1679 /* Generate bitmap for TIM only if there are any STAs in power save
1680 * mode. */
Michael Wube8755e2007-07-27 15:43:23 +02001681 read_lock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001682 if (atomic_read(&bss->num_sta_ps) > 0)
1683 /* in the hope that this is faster than
1684 * checking byte-for-byte */
1685 have_bits = !bitmap_empty((unsigned long*)bss->tim,
1686 IEEE80211_MAX_AID+1);
1687
1688 if (bss->dtim_count == 0)
1689 bss->dtim_count = bss->dtim_period - 1;
1690 else
1691 bss->dtim_count--;
1692
1693 tim = pos = (u8 *) skb_put(skb, 6);
1694 *pos++ = WLAN_EID_TIM;
1695 *pos++ = 4;
1696 *pos++ = bss->dtim_count;
1697 *pos++ = bss->dtim_period;
1698
1699 if (bss->dtim_count == 0 && !skb_queue_empty(&bss->ps_bc_buf))
1700 aid0 = 1;
1701
1702 if (have_bits) {
1703 /* Find largest even number N1 so that bits numbered 1 through
1704 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
1705 * (N2 + 1) x 8 through 2007 are 0. */
1706 n1 = 0;
1707 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
1708 if (bss->tim[i]) {
1709 n1 = i & 0xfe;
1710 break;
1711 }
1712 }
1713 n2 = n1;
1714 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
1715 if (bss->tim[i]) {
1716 n2 = i;
1717 break;
1718 }
1719 }
1720
1721 /* Bitmap control */
1722 *pos++ = n1 | aid0;
1723 /* Part Virt Bitmap */
1724 memcpy(pos, bss->tim + n1, n2 - n1 + 1);
1725
1726 tim[1] = n2 - n1 + 4;
1727 skb_put(skb, n2 - n1);
1728 } else {
1729 *pos++ = aid0; /* Bitmap control */
1730 *pos++ = 0; /* Part Virt Bitmap */
1731 }
Michael Wube8755e2007-07-27 15:43:23 +02001732 read_unlock_bh(&local->sta_lock);
Johannes Berge2ebc742007-07-27 15:43:22 +02001733}
1734
1735struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw, int if_id,
1736 struct ieee80211_tx_control *control)
1737{
1738 struct ieee80211_local *local = hw_to_local(hw);
1739 struct sk_buff *skb;
1740 struct net_device *bdev;
1741 struct ieee80211_sub_if_data *sdata = NULL;
1742 struct ieee80211_if_ap *ap = NULL;
1743 struct ieee80211_rate *rate;
1744 struct rate_control_extra extra;
1745 u8 *b_head, *b_tail;
1746 int bh_len, bt_len;
1747
Eric W. Biederman881d9662007-09-17 11:56:21 -07001748 bdev = dev_get_by_index(&init_net, if_id);
Johannes Berge2ebc742007-07-27 15:43:22 +02001749 if (bdev) {
1750 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1751 ap = &sdata->u.ap;
1752 dev_put(bdev);
1753 }
1754
1755 if (!ap || sdata->type != IEEE80211_IF_TYPE_AP ||
1756 !ap->beacon_head) {
1757#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1758 if (net_ratelimit())
1759 printk(KERN_DEBUG "no beacon data avail for idx=%d "
1760 "(%s)\n", if_id, bdev ? bdev->name : "N/A");
1761#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
1762 return NULL;
1763 }
1764
1765 /* Assume we are generating the normal beacon locally */
1766 b_head = ap->beacon_head;
1767 b_tail = ap->beacon_tail;
1768 bh_len = ap->beacon_head_len;
1769 bt_len = ap->beacon_tail_len;
1770
1771 skb = dev_alloc_skb(local->tx_headroom +
1772 bh_len + bt_len + 256 /* maximum TIM len */);
1773 if (!skb)
1774 return NULL;
1775
1776 skb_reserve(skb, local->tx_headroom);
1777 memcpy(skb_put(skb, bh_len), b_head, bh_len);
1778
1779 ieee80211_include_sequence(sdata, (struct ieee80211_hdr *)skb->data);
1780
1781 ieee80211_beacon_add_tim(local, ap, skb);
1782
1783 if (b_tail) {
1784 memcpy(skb_put(skb, bt_len), b_tail, bt_len);
1785 }
1786
1787 if (control) {
1788 memset(&extra, 0, sizeof(extra));
1789 extra.mode = local->oper_hw_mode;
1790
1791 rate = rate_control_get_rate(local, local->mdev, skb, &extra);
1792 if (!rate) {
1793 if (net_ratelimit()) {
1794 printk(KERN_DEBUG "%s: ieee80211_beacon_get: no rate "
1795 "found\n", local->mdev->name);
1796 }
1797 dev_kfree_skb(skb);
1798 return NULL;
1799 }
1800
Jiri Slaby13262ff2007-08-28 17:01:54 -04001801 control->tx_rate =
1802 ((sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE) &&
1803 (rate->flags & IEEE80211_RATE_PREAMBLE2)) ?
Johannes Berge2ebc742007-07-27 15:43:22 +02001804 rate->val2 : rate->val;
1805 control->antenna_sel_tx = local->hw.conf.antenna_sel_tx;
1806 control->power_level = local->hw.conf.power_level;
1807 control->flags |= IEEE80211_TXCTL_NO_ACK;
1808 control->retry_limit = 1;
1809 control->flags |= IEEE80211_TXCTL_CLEAR_DST_MASK;
1810 }
1811
1812 ap->num_beacons++;
1813 return skb;
1814}
1815EXPORT_SYMBOL(ieee80211_beacon_get);
1816
Daniel Drake7e9ed182007-07-27 15:43:24 +02001817void ieee80211_rts_get(struct ieee80211_hw *hw, int if_id,
Johannes Berge2ebc742007-07-27 15:43:22 +02001818 const void *frame, size_t frame_len,
1819 const struct ieee80211_tx_control *frame_txctl,
1820 struct ieee80211_rts *rts)
1821{
1822 const struct ieee80211_hdr *hdr = frame;
1823 u16 fctl;
1824
1825 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS;
1826 rts->frame_control = cpu_to_le16(fctl);
Daniel Drake7e9ed182007-07-27 15:43:24 +02001827 rts->duration = ieee80211_rts_duration(hw, if_id, frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001828 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
1829 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
1830}
1831EXPORT_SYMBOL(ieee80211_rts_get);
1832
Daniel Drake7e9ed182007-07-27 15:43:24 +02001833void ieee80211_ctstoself_get(struct ieee80211_hw *hw, int if_id,
Johannes Berge2ebc742007-07-27 15:43:22 +02001834 const void *frame, size_t frame_len,
1835 const struct ieee80211_tx_control *frame_txctl,
1836 struct ieee80211_cts *cts)
1837{
1838 const struct ieee80211_hdr *hdr = frame;
1839 u16 fctl;
1840
1841 fctl = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS;
1842 cts->frame_control = cpu_to_le16(fctl);
Daniel Drake7e9ed182007-07-27 15:43:24 +02001843 cts->duration = ieee80211_ctstoself_duration(hw, if_id, frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02001844 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
1845}
1846EXPORT_SYMBOL(ieee80211_ctstoself_get);
1847
1848struct sk_buff *
1849ieee80211_get_buffered_bc(struct ieee80211_hw *hw, int if_id,
1850 struct ieee80211_tx_control *control)
1851{
1852 struct ieee80211_local *local = hw_to_local(hw);
1853 struct sk_buff *skb;
1854 struct sta_info *sta;
1855 ieee80211_tx_handler *handler;
1856 struct ieee80211_txrx_data tx;
1857 ieee80211_txrx_result res = TXRX_DROP;
1858 struct net_device *bdev;
1859 struct ieee80211_sub_if_data *sdata;
1860 struct ieee80211_if_ap *bss = NULL;
1861
Eric W. Biederman881d9662007-09-17 11:56:21 -07001862 bdev = dev_get_by_index(&init_net, if_id);
Johannes Berge2ebc742007-07-27 15:43:22 +02001863 if (bdev) {
1864 sdata = IEEE80211_DEV_TO_SUB_IF(bdev);
1865 bss = &sdata->u.ap;
1866 dev_put(bdev);
1867 }
1868 if (!bss || sdata->type != IEEE80211_IF_TYPE_AP || !bss->beacon_head)
1869 return NULL;
1870
1871 if (bss->dtim_count != 0)
1872 return NULL; /* send buffered bc/mc only after DTIM beacon */
1873 memset(control, 0, sizeof(*control));
1874 while (1) {
1875 skb = skb_dequeue(&bss->ps_bc_buf);
1876 if (!skb)
1877 return NULL;
1878 local->total_ps_buffered--;
1879
1880 if (!skb_queue_empty(&bss->ps_bc_buf) && skb->len >= 2) {
1881 struct ieee80211_hdr *hdr =
1882 (struct ieee80211_hdr *) skb->data;
1883 /* more buffered multicast/broadcast frames ==> set
1884 * MoreData flag in IEEE 802.11 header to inform PS
1885 * STAs */
1886 hdr->frame_control |=
1887 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1888 }
1889
1890 if (ieee80211_tx_prepare(&tx, skb, local->mdev, control) == 0)
1891 break;
1892 dev_kfree_skb_any(skb);
1893 }
1894 sta = tx.sta;
Jiri Slabybadffb72007-08-28 17:01:54 -04001895 tx.flags |= IEEE80211_TXRXD_TXPS_BUFFERED;
Johannes Berge2ebc742007-07-27 15:43:22 +02001896
1897 for (handler = local->tx_handlers; *handler != NULL; handler++) {
1898 res = (*handler)(&tx);
1899 if (res == TXRX_DROP || res == TXRX_QUEUED)
1900 break;
1901 }
1902 dev_put(tx.dev);
1903 skb = tx.skb; /* handlers are allowed to change skb */
1904
1905 if (res == TXRX_DROP) {
1906 I802_DEBUG_INC(local->tx_handlers_drop);
1907 dev_kfree_skb(skb);
1908 skb = NULL;
1909 } else if (res == TXRX_QUEUED) {
1910 I802_DEBUG_INC(local->tx_handlers_queued);
1911 skb = NULL;
1912 }
1913
1914 if (sta)
1915 sta_info_put(sta);
1916
1917 return skb;
1918}
1919EXPORT_SYMBOL(ieee80211_get_buffered_bc);