blob: 8b4332f533945c4109d31debed4aebcbf310a9f9 [file] [log] [blame]
Jeff Garzikb4538722005-05-12 22:48:20 -04001/******************************************************************************
2
James Ketrenosebeaddc2005-09-21 11:58:43 -05003 Copyright(c) 2003 - 2005 Intel Corporation. All rights reserved.
Jeff Garzikb4538722005-05-12 22:48:20 -04004
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of version 2 of the GNU General Public License as
7 published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
20
21 Contact Information:
22 James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25******************************************************************************/
26#include <linux/compiler.h>
27#include <linux/config.h>
28#include <linux/errno.h>
29#include <linux/if_arp.h>
30#include <linux/in6.h>
31#include <linux/in.h>
32#include <linux/ip.h>
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/netdevice.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040036#include <linux/proc_fs.h>
37#include <linux/skbuff.h>
38#include <linux/slab.h>
39#include <linux/tcp.h>
40#include <linux/types.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040041#include <linux/wireless.h>
42#include <linux/etherdevice.h>
43#include <asm/uaccess.h>
44
45#include <net/ieee80211.h>
46
Jeff Garzikb4538722005-05-12 22:48:20 -040047/*
48
Jeff Garzikb4538722005-05-12 22:48:20 -040049802.11 Data Frame
50
51 ,-------------------------------------------------------------------.
52Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
53 |------|------|---------|---------|---------|------|---------|------|
54Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | Frame | fcs |
55 | | tion | (BSSID) | | | ence | data | |
56 `--------------------------------------------------| |------'
57Total: 28 non-data bytes `----.----'
58 |
Denis Vlasenko44d7a8c2006-01-18 12:02:33 +020059 .- 'Frame data' expands, if WEP enabled, to <----------'
60 |
61 V
62 ,-----------------------.
63Bytes | 4 | 0-2296 | 4 |
64 |-----|-----------|-----|
65Desc. | IV | Encrypted | ICV |
66 | | Packet | |
67 `-----| |-----'
68 `-----.-----'
69 |
70 .- 'Encrypted Packet' expands to
Jeff Garzikb4538722005-05-12 22:48:20 -040071 |
72 V
73 ,---------------------------------------------------.
74Bytes | 1 | 1 | 1 | 3 | 2 | 0-2304 |
75 |------|------|---------|----------|------|---------|
76Desc. | SNAP | SNAP | Control |Eth Tunnel| Type | IP |
77 | DSAP | SSAP | | | | Packet |
78 | 0xAA | 0xAA |0x03 (UI)|0x00-00-F8| | |
Denis Vlasenko44d7a8c2006-01-18 12:02:33 +020079 `----------------------------------------------------
Jeff Garzikb4538722005-05-12 22:48:20 -040080Total: 8 non-data bytes
81
Jeff Garzikb4538722005-05-12 22:48:20 -040082802.3 Ethernet Data Frame
83
84 ,-----------------------------------------.
85Bytes | 6 | 6 | 2 | Variable | 4 |
86 |-------|-------|------|-----------|------|
87Desc. | Dest. | Source| Type | IP Packet | fcs |
88 | MAC | MAC | | | |
89 `-----------------------------------------'
90Total: 18 non-data bytes
91
92In the event that fragmentation is required, the incoming payload is split into
93N parts of size ieee->fts. The first fragment contains the SNAP header and the
94remaining packets are just data.
95
96If encryption is enabled, each fragment payload size is reduced by enough space
97to add the prefix and postfix (IV and ICV totalling 8 bytes in the case of WEP)
98So if you have 1500 bytes of payload with ieee->fts set to 500 without
99encryption it will take 3 frames. With WEP it will take 4 frames as the
100payload of each frame is reduced to 492 bytes.
101
102* SKB visualization
103*
104* ,- skb->data
105* |
106* | ETHERNET HEADER ,-<-- PAYLOAD
107* | | 14 bytes from skb->data
108* | 2 bytes for Type --> ,T. | (sizeof ethhdr)
109* | | | |
110* |,-Dest.--. ,--Src.---. | | |
111* | 6 bytes| | 6 bytes | | | |
112* v | | | | | |
113* 0 | v 1 | v | v 2
114* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
115* ^ | ^ | ^ |
116* | | | | | |
117* | | | | `T' <---- 2 bytes for Type
118* | | | |
119* | | '---SNAP--' <-------- 6 bytes for SNAP
120* | |
121* `-IV--' <-------------------- 4 bytes for IV (WEP)
122*
123* SNAP HEADER
124*
125*/
126
127static u8 P802_1H_OUI[P80211_OUI_LEN] = { 0x00, 0x00, 0xf8 };
128static u8 RFC1042_OUI[P80211_OUI_LEN] = { 0x00, 0x00, 0x00 };
129
Arjan van de Ven858119e2006-01-14 13:20:43 -0800130static int ieee80211_copy_snap(u8 * data, u16 h_proto)
Jeff Garzikb4538722005-05-12 22:48:20 -0400131{
132 struct ieee80211_snap_hdr *snap;
133 u8 *oui;
134
135 snap = (struct ieee80211_snap_hdr *)data;
136 snap->dsap = 0xaa;
137 snap->ssap = 0xaa;
138 snap->ctrl = 0x03;
139
140 if (h_proto == 0x8137 || h_proto == 0x80f3)
141 oui = P802_1H_OUI;
142 else
143 oui = RFC1042_OUI;
144 snap->oui[0] = oui[0];
145 snap->oui[1] = oui[1];
146 snap->oui[2] = oui[2];
147
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400148 *(u16 *) (data + SNAP_SIZE) = htons(h_proto);
Jeff Garzikb4538722005-05-12 22:48:20 -0400149
150 return SNAP_SIZE + sizeof(u16);
151}
152
Arjan van de Ven858119e2006-01-14 13:20:43 -0800153static int ieee80211_encrypt_fragment(struct ieee80211_device *ieee,
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400154 struct sk_buff *frag, int hdr_len)
Jeff Garzikb4538722005-05-12 22:48:20 -0400155{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400156 struct ieee80211_crypt_data *crypt = ieee->crypt[ieee->tx_keyidx];
Jeff Garzikb4538722005-05-12 22:48:20 -0400157 int res;
158
Hong Liuf0f15ab2005-10-20 11:06:36 -0500159 if (crypt == NULL)
160 return -1;
161
Jeff Garzikb4538722005-05-12 22:48:20 -0400162 /* To encrypt, frame format is:
163 * IV (4 bytes), clear payload (including SNAP), ICV (4 bytes) */
Jeff Garzikb4538722005-05-12 22:48:20 -0400164 atomic_inc(&crypt->refcnt);
165 res = 0;
Hong Liuf0f15ab2005-10-20 11:06:36 -0500166 if (crypt->ops && crypt->ops->encrypt_mpdu)
Jeff Garzikb4538722005-05-12 22:48:20 -0400167 res = crypt->ops->encrypt_mpdu(frag, hdr_len, crypt->priv);
168
169 atomic_dec(&crypt->refcnt);
170 if (res < 0) {
171 printk(KERN_INFO "%s: Encryption failed: len=%d.\n",
172 ieee->dev->name, frag->len);
173 ieee->ieee_stats.tx_discards++;
174 return -1;
175 }
176
177 return 0;
178}
179
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400180void ieee80211_txb_free(struct ieee80211_txb *txb)
181{
Jeff Garzikb4538722005-05-12 22:48:20 -0400182 int i;
183 if (unlikely(!txb))
184 return;
185 for (i = 0; i < txb->nr_frags; i++)
186 if (txb->fragments[i])
187 dev_kfree_skb_any(txb->fragments[i]);
188 kfree(txb);
189}
190
Adrian Bunke1572492005-05-06 23:32:39 +0200191static struct ieee80211_txb *ieee80211_alloc_txb(int nr_frags, int txb_size,
Michael Bueschd3f7bf42005-10-21 12:39:52 -0500192 int headroom, gfp_t gfp_mask)
Jeff Garzikb4538722005-05-12 22:48:20 -0400193{
194 struct ieee80211_txb *txb;
195 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400196 txb = kmalloc(sizeof(struct ieee80211_txb) + (sizeof(u8 *) * nr_frags),
197 gfp_mask);
Jeff Garzikb4538722005-05-12 22:48:20 -0400198 if (!txb)
199 return NULL;
200
Adrian Bunk0a989b22005-04-11 16:52:15 -0700201 memset(txb, 0, sizeof(struct ieee80211_txb));
Jeff Garzikb4538722005-05-12 22:48:20 -0400202 txb->nr_frags = nr_frags;
203 txb->frag_size = txb_size;
204
205 for (i = 0; i < nr_frags; i++) {
Michael Bueschd3f7bf42005-10-21 12:39:52 -0500206 txb->fragments[i] = __dev_alloc_skb(txb_size + headroom,
207 gfp_mask);
Jeff Garzikb4538722005-05-12 22:48:20 -0400208 if (unlikely(!txb->fragments[i])) {
209 i--;
210 break;
211 }
Michael Bueschd3f7bf42005-10-21 12:39:52 -0500212 skb_reserve(txb->fragments[i], headroom);
Jeff Garzikb4538722005-05-12 22:48:20 -0400213 }
214 if (unlikely(i != nr_frags)) {
215 while (i >= 0)
216 dev_kfree_skb_any(txb->fragments[i--]);
217 kfree(txb);
218 return NULL;
219 }
220 return txb;
221}
222
James Ketrenos1264fc02005-09-21 11:54:53 -0500223/* Incoming skb is converted to a txb which consists of
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500224 * a block of 802.11 fragment packets (stored as skbs) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400225int ieee80211_xmit(struct sk_buff *skb, struct net_device *dev)
Jeff Garzikb4538722005-05-12 22:48:20 -0400226{
227 struct ieee80211_device *ieee = netdev_priv(dev);
228 struct ieee80211_txb *txb = NULL;
James Ketrenosee34af32005-09-21 11:54:36 -0500229 struct ieee80211_hdr_3addr *frag_hdr;
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500230 int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size,
231 rts_required;
Jeff Garzikb4538722005-05-12 22:48:20 -0400232 unsigned long flags;
233 struct net_device_stats *stats = &ieee->stats;
James Ketrenos31b59ea2005-09-21 11:58:49 -0500234 int ether_type, encrypt, host_encrypt, host_encrypt_msdu, host_build_iv;
Jeff Garzikb4538722005-05-12 22:48:20 -0400235 int bytes, fc, hdr_len;
236 struct sk_buff *skb_frag;
James Ketrenosee34af32005-09-21 11:54:36 -0500237 struct ieee80211_hdr_3addr header = { /* Ensure zero initialized */
Jeff Garzikb4538722005-05-12 22:48:20 -0400238 .duration_id = 0,
239 .seq_ctl = 0
240 };
241 u8 dest[ETH_ALEN], src[ETH_ALEN];
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400242 struct ieee80211_crypt_data *crypt;
James Ketrenos2c0aa2a2005-09-21 11:56:27 -0500243 int priority = skb->priority;
James Ketrenos1264fc02005-09-21 11:54:53 -0500244 int snapped = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -0400245
James Ketrenos2c0aa2a2005-09-21 11:56:27 -0500246 if (ieee->is_queue_full && (*ieee->is_queue_full) (dev, priority))
247 return NETDEV_TX_BUSY;
248
Jeff Garzikb4538722005-05-12 22:48:20 -0400249 spin_lock_irqsave(&ieee->lock, flags);
250
251 /* If there is no driver handler to take the TXB, dont' bother
252 * creating it... */
253 if (!ieee->hard_start_xmit) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400254 printk(KERN_WARNING "%s: No xmit handler.\n", ieee->dev->name);
Jeff Garzikb4538722005-05-12 22:48:20 -0400255 goto success;
256 }
257
258 if (unlikely(skb->len < SNAP_SIZE + sizeof(u16))) {
259 printk(KERN_WARNING "%s: skb too small (%d).\n",
260 ieee->dev->name, skb->len);
261 goto success;
262 }
263
264 ether_type = ntohs(((struct ethhdr *)skb->data)->h_proto);
265
266 crypt = ieee->crypt[ieee->tx_keyidx];
267
268 encrypt = !(ether_type == ETH_P_PAE && ieee->ieee802_1x) &&
James Ketrenosf1bf6632005-09-21 11:53:54 -0500269 ieee->sec.encrypt;
James Ketrenos31b59ea2005-09-21 11:58:49 -0500270
Hong Liuf0f15ab2005-10-20 11:06:36 -0500271 host_encrypt = ieee->host_encrypt && encrypt && crypt;
272 host_encrypt_msdu = ieee->host_encrypt_msdu && encrypt && crypt;
273 host_build_iv = ieee->host_build_iv && encrypt && crypt;
Jeff Garzikb4538722005-05-12 22:48:20 -0400274
275 if (!encrypt && ieee->ieee802_1x &&
276 ieee->drop_unencrypted && ether_type != ETH_P_PAE) {
277 stats->tx_dropped++;
278 goto success;
279 }
280
Jeff Garzikb4538722005-05-12 22:48:20 -0400281 /* Save source and destination addresses */
James Ketrenos18294d82005-09-13 17:40:29 -0500282 memcpy(dest, skb->data, ETH_ALEN);
283 memcpy(src, skb->data + ETH_ALEN, ETH_ALEN);
Jeff Garzikb4538722005-05-12 22:48:20 -0400284
285 /* Advance the SKB to the start of the payload */
286 skb_pull(skb, sizeof(struct ethhdr));
287
288 /* Determine total amount of storage required for TXB packets */
289 bytes = skb->len + SNAP_SIZE + sizeof(u16);
290
Johannes Berga4bf26f2005-12-31 11:35:20 +0100291 if (host_encrypt || host_build_iv)
Jeff Garzikb4538722005-05-12 22:48:20 -0400292 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA |
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400293 IEEE80211_FCTL_PROTECTED;
Jeff Garzikb4538722005-05-12 22:48:20 -0400294 else
295 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
296
297 if (ieee->iw_mode == IW_MODE_INFRA) {
298 fc |= IEEE80211_FCTL_TODS;
James Ketrenos1264fc02005-09-21 11:54:53 -0500299 /* To DS: Addr1 = BSSID, Addr2 = SA, Addr3 = DA */
James Ketrenos18294d82005-09-13 17:40:29 -0500300 memcpy(header.addr1, ieee->bssid, ETH_ALEN);
301 memcpy(header.addr2, src, ETH_ALEN);
302 memcpy(header.addr3, dest, ETH_ALEN);
Jeff Garzikb4538722005-05-12 22:48:20 -0400303 } else if (ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenos1264fc02005-09-21 11:54:53 -0500304 /* not From/To DS: Addr1 = DA, Addr2 = SA, Addr3 = BSSID */
James Ketrenos18294d82005-09-13 17:40:29 -0500305 memcpy(header.addr1, dest, ETH_ALEN);
306 memcpy(header.addr2, src, ETH_ALEN);
307 memcpy(header.addr3, ieee->bssid, ETH_ALEN);
Jeff Garzikb4538722005-05-12 22:48:20 -0400308 }
309 header.frame_ctl = cpu_to_le16(fc);
310 hdr_len = IEEE80211_3ADDR_LEN;
311
James Ketrenos1264fc02005-09-21 11:54:53 -0500312 /* Encrypt msdu first on the whole data packet. */
313 if ((host_encrypt || host_encrypt_msdu) &&
314 crypt && crypt->ops && crypt->ops->encrypt_msdu) {
315 int res = 0;
316 int len = bytes + hdr_len + crypt->ops->extra_msdu_prefix_len +
317 crypt->ops->extra_msdu_postfix_len;
318 struct sk_buff *skb_new = dev_alloc_skb(len);
James Ketrenos31b59ea2005-09-21 11:58:49 -0500319
James Ketrenos1264fc02005-09-21 11:54:53 -0500320 if (unlikely(!skb_new))
321 goto failed;
James Ketrenos31b59ea2005-09-21 11:58:49 -0500322
James Ketrenos1264fc02005-09-21 11:54:53 -0500323 skb_reserve(skb_new, crypt->ops->extra_msdu_prefix_len);
324 memcpy(skb_put(skb_new, hdr_len), &header, hdr_len);
325 snapped = 1;
326 ieee80211_copy_snap(skb_put(skb_new, SNAP_SIZE + sizeof(u16)),
327 ether_type);
328 memcpy(skb_put(skb_new, skb->len), skb->data, skb->len);
329 res = crypt->ops->encrypt_msdu(skb_new, hdr_len, crypt->priv);
330 if (res < 0) {
331 IEEE80211_ERROR("msdu encryption failed\n");
332 dev_kfree_skb_any(skb_new);
333 goto failed;
334 }
335 dev_kfree_skb_any(skb);
336 skb = skb_new;
337 bytes += crypt->ops->extra_msdu_prefix_len +
338 crypt->ops->extra_msdu_postfix_len;
339 skb_pull(skb, hdr_len);
340 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400341
James Ketrenos1264fc02005-09-21 11:54:53 -0500342 if (host_encrypt || ieee->host_open_frag) {
343 /* Determine fragmentation size based on destination (multicast
344 * and broadcast are not fragmented) */
Hong Liu5b74eda2005-10-19 16:31:34 -0500345 if (is_multicast_ether_addr(dest) ||
346 is_broadcast_ether_addr(dest))
James Ketrenos1264fc02005-09-21 11:54:53 -0500347 frag_size = MAX_FRAG_THRESHOLD;
348 else
349 frag_size = ieee->fts;
Jeff Garzikb4538722005-05-12 22:48:20 -0400350
James Ketrenos1264fc02005-09-21 11:54:53 -0500351 /* Determine amount of payload per fragment. Regardless of if
352 * this stack is providing the full 802.11 header, one will
353 * eventually be affixed to this fragment -- so we must account
354 * for it when determining the amount of payload space. */
355 bytes_per_frag = frag_size - IEEE80211_3ADDR_LEN;
356 if (ieee->config &
357 (CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
358 bytes_per_frag -= IEEE80211_FCS_LEN;
Jeff Garzikb4538722005-05-12 22:48:20 -0400359
James Ketrenos1264fc02005-09-21 11:54:53 -0500360 /* Each fragment may need to have room for encryptiong
361 * pre/postfix */
362 if (host_encrypt)
363 bytes_per_frag -= crypt->ops->extra_mpdu_prefix_len +
364 crypt->ops->extra_mpdu_postfix_len;
365
366 /* Number of fragments is the total
367 * bytes_per_frag / payload_per_fragment */
368 nr_frags = bytes / bytes_per_frag;
369 bytes_last_frag = bytes % bytes_per_frag;
370 if (bytes_last_frag)
371 nr_frags++;
372 else
373 bytes_last_frag = bytes_per_frag;
374 } else {
375 nr_frags = 1;
376 bytes_per_frag = bytes_last_frag = bytes;
377 frag_size = bytes + IEEE80211_3ADDR_LEN;
378 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400379
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500380 rts_required = (frag_size > ieee->rts
381 && ieee->config & CFG_IEEE80211_RTS);
382 if (rts_required)
383 nr_frags++;
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500384
Jeff Garzikb4538722005-05-12 22:48:20 -0400385 /* When we allocate the TXB we allocate enough space for the reserve
386 * and full fragment bytes (bytes_per_frag doesn't include prefix,
387 * postfix, header, FCS, etc.) */
Michael Bueschd3f7bf42005-10-21 12:39:52 -0500388 txb = ieee80211_alloc_txb(nr_frags, frag_size,
389 ieee->tx_headroom, GFP_ATOMIC);
Jeff Garzikb4538722005-05-12 22:48:20 -0400390 if (unlikely(!txb)) {
391 printk(KERN_WARNING "%s: Could not allocate TXB\n",
392 ieee->dev->name);
393 goto failed;
394 }
395 txb->encrypted = encrypt;
James Ketrenos1264fc02005-09-21 11:54:53 -0500396 if (host_encrypt)
397 txb->payload_size = frag_size * (nr_frags - 1) +
398 bytes_last_frag;
399 else
400 txb->payload_size = bytes;
Jeff Garzikb4538722005-05-12 22:48:20 -0400401
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500402 if (rts_required) {
403 skb_frag = txb->fragments[0];
404 frag_hdr =
405 (struct ieee80211_hdr_3addr *)skb_put(skb_frag, hdr_len);
406
407 /*
408 * Set header frame_ctl to the RTS.
409 */
410 header.frame_ctl =
411 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
412 memcpy(frag_hdr, &header, hdr_len);
413
414 /*
415 * Restore header frame_ctl to the original data setting.
416 */
417 header.frame_ctl = cpu_to_le16(fc);
418
419 if (ieee->config &
420 (CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
421 skb_put(skb_frag, 4);
422
423 txb->rts_included = 1;
424 i = 1;
425 } else
426 i = 0;
427
428 for (; i < nr_frags; i++) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400429 skb_frag = txb->fragments[i];
430
James Ketrenos31b59ea2005-09-21 11:58:49 -0500431 if (host_encrypt || host_build_iv)
James Ketrenos1264fc02005-09-21 11:54:53 -0500432 skb_reserve(skb_frag,
433 crypt->ops->extra_mpdu_prefix_len);
Jeff Garzikb4538722005-05-12 22:48:20 -0400434
James Ketrenosee34af32005-09-21 11:54:36 -0500435 frag_hdr =
436 (struct ieee80211_hdr_3addr *)skb_put(skb_frag, hdr_len);
Jeff Garzikb4538722005-05-12 22:48:20 -0400437 memcpy(frag_hdr, &header, hdr_len);
438
439 /* If this is not the last fragment, then add the MOREFRAGS
440 * bit to the frame control */
441 if (i != nr_frags - 1) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400442 frag_hdr->frame_ctl =
443 cpu_to_le16(fc | IEEE80211_FCTL_MOREFRAGS);
Jeff Garzikb4538722005-05-12 22:48:20 -0400444 bytes = bytes_per_frag;
445 } else {
446 /* The last fragment takes the remaining length */
447 bytes = bytes_last_frag;
448 }
449
James Ketrenos1264fc02005-09-21 11:54:53 -0500450 if (i == 0 && !snapped) {
451 ieee80211_copy_snap(skb_put
452 (skb_frag, SNAP_SIZE + sizeof(u16)),
453 ether_type);
Jeff Garzikb4538722005-05-12 22:48:20 -0400454 bytes -= SNAP_SIZE + sizeof(u16);
455 }
456
457 memcpy(skb_put(skb_frag, bytes), skb->data, bytes);
458
459 /* Advance the SKB... */
460 skb_pull(skb, bytes);
461
462 /* Encryption routine will move the header forward in order
463 * to insert the IV between the header and the payload */
James Ketrenosf1bf6632005-09-21 11:53:54 -0500464 if (host_encrypt)
Jeff Garzikb4538722005-05-12 22:48:20 -0400465 ieee80211_encrypt_fragment(ieee, skb_frag, hdr_len);
James Ketrenos31b59ea2005-09-21 11:58:49 -0500466 else if (host_build_iv) {
467 struct ieee80211_crypt_data *crypt;
468
469 crypt = ieee->crypt[ieee->tx_keyidx];
470 atomic_inc(&crypt->refcnt);
471 if (crypt->ops->build_iv)
472 crypt->ops->build_iv(skb_frag, hdr_len,
Zhu Yi9184d932006-01-19 16:22:32 +0800473 ieee->sec.keys[ieee->sec.active_key],
474 ieee->sec.key_sizes[ieee->sec.active_key],
475 crypt->priv);
James Ketrenos31b59ea2005-09-21 11:58:49 -0500476 atomic_dec(&crypt->refcnt);
477 }
James Ketrenosf1bf6632005-09-21 11:53:54 -0500478
Jeff Garzikb4538722005-05-12 22:48:20 -0400479 if (ieee->config &
480 (CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
481 skb_put(skb_frag, 4);
482 }
483
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400484 success:
Jeff Garzikb4538722005-05-12 22:48:20 -0400485 spin_unlock_irqrestore(&ieee->lock, flags);
486
487 dev_kfree_skb_any(skb);
488
489 if (txb) {
James Ketrenos9e8571a2005-09-21 11:56:33 -0500490 int ret = (*ieee->hard_start_xmit) (txb, dev, priority);
James Ketrenos1264fc02005-09-21 11:54:53 -0500491 if (ret == 0) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400492 stats->tx_packets++;
493 stats->tx_bytes += txb->payload_size;
494 return 0;
495 }
James Ketrenos2c0aa2a2005-09-21 11:56:27 -0500496
497 if (ret == NETDEV_TX_BUSY) {
498 printk(KERN_ERR "%s: NETDEV_TX_BUSY returned; "
499 "driver should report queue full via "
500 "ieee_device->is_queue_full.\n",
501 ieee->dev->name);
502 }
503
Jeff Garzikb4538722005-05-12 22:48:20 -0400504 ieee80211_txb_free(txb);
505 }
506
507 return 0;
508
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400509 failed:
Jeff Garzikb4538722005-05-12 22:48:20 -0400510 spin_unlock_irqrestore(&ieee->lock, flags);
511 netif_stop_queue(dev);
512 stats->tx_errors++;
513 return 1;
Jeff Garzikb4538722005-05-12 22:48:20 -0400514}
515
James Ketrenos3f552bb2005-09-21 11:54:47 -0500516/* Incoming 802.11 strucure is converted to a TXB
517 * a block of 802.11 fragment packets (stored as skbs) */
518int ieee80211_tx_frame(struct ieee80211_device *ieee,
519 struct ieee80211_hdr *frame, int len)
520{
521 struct ieee80211_txb *txb = NULL;
522 unsigned long flags;
523 struct net_device_stats *stats = &ieee->stats;
524 struct sk_buff *skb_frag;
James Ketrenos9e8571a2005-09-21 11:56:33 -0500525 int priority = -1;
James Ketrenos3f552bb2005-09-21 11:54:47 -0500526
527 spin_lock_irqsave(&ieee->lock, flags);
528
529 /* If there is no driver handler to take the TXB, dont' bother
530 * creating it... */
531 if (!ieee->hard_start_xmit) {
532 printk(KERN_WARNING "%s: No xmit handler.\n", ieee->dev->name);
533 goto success;
534 }
535
536 if (unlikely(len < 24)) {
537 printk(KERN_WARNING "%s: skb too small (%d).\n",
538 ieee->dev->name, len);
539 goto success;
540 }
541
542 /* When we allocate the TXB we allocate enough space for the reserve
543 * and full fragment bytes (bytes_per_frag doesn't include prefix,
544 * postfix, header, FCS, etc.) */
James Ketrenos077783f2005-10-24 10:27:46 -0500545 txb = ieee80211_alloc_txb(1, len, ieee->tx_headroom, GFP_ATOMIC);
James Ketrenos3f552bb2005-09-21 11:54:47 -0500546 if (unlikely(!txb)) {
547 printk(KERN_WARNING "%s: Could not allocate TXB\n",
548 ieee->dev->name);
549 goto failed;
550 }
551 txb->encrypted = 0;
552 txb->payload_size = len;
553
554 skb_frag = txb->fragments[0];
555
556 memcpy(skb_put(skb_frag, len), frame, len);
557
558 if (ieee->config &
559 (CFG_IEEE80211_COMPUTE_FCS | CFG_IEEE80211_RESERVE_FCS))
560 skb_put(skb_frag, 4);
561
562 success:
563 spin_unlock_irqrestore(&ieee->lock, flags);
564
565 if (txb) {
James Ketrenos9e8571a2005-09-21 11:56:33 -0500566 if ((*ieee->hard_start_xmit) (txb, ieee->dev, priority) == 0) {
James Ketrenos3f552bb2005-09-21 11:54:47 -0500567 stats->tx_packets++;
568 stats->tx_bytes += txb->payload_size;
569 return 0;
570 }
571 ieee80211_txb_free(txb);
572 }
573 return 0;
574
575 failed:
576 spin_unlock_irqrestore(&ieee->lock, flags);
577 stats->tx_errors++;
578 return 1;
579}
580
581EXPORT_SYMBOL(ieee80211_tx_frame);
Jeff Garzikb4538722005-05-12 22:48:20 -0400582EXPORT_SYMBOL(ieee80211_txb_free);