blob: da8beac7fcf36e9d57bc1db928d83b6e54f6b80d [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:
Reinette Chatrec1eb2c82009-08-21 13:34:26 -070022 Intel Linux Wireless <ilw@linux.intel.com>
Jeff Garzikb4538722005-05-12 22:48:20 -040023 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25******************************************************************************/
26#include <linux/compiler.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040027#include <linux/errno.h>
28#include <linux/if_arp.h>
29#include <linux/in6.h>
30#include <linux/in.h>
31#include <linux/ip.h>
32#include <linux/kernel.h>
33#include <linux/module.h>
34#include <linux/netdevice.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040035#include <linux/proc_fs.h>
36#include <linux/skbuff.h>
37#include <linux/slab.h>
38#include <linux/tcp.h>
39#include <linux/types.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040040#include <linux/wireless.h>
41#include <linux/etherdevice.h>
42#include <asm/uaccess.h>
43
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040044#include "libipw.h"
Jeff Garzikb4538722005-05-12 22:48:20 -040045
Jeff Garzikb4538722005-05-12 22:48:20 -040046/*
47
Jeff Garzikb4538722005-05-12 22:48:20 -040048802.11 Data Frame
49
50 ,-------------------------------------------------------------------.
51Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
52 |------|------|---------|---------|---------|------|---------|------|
53Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | Frame | fcs |
54 | | tion | (BSSID) | | | ence | data | |
55 `--------------------------------------------------| |------'
56Total: 28 non-data bytes `----.----'
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +090057 |
Denis Vlasenko44d7a8c2006-01-18 12:02:33 +020058 .- 'Frame data' expands, if WEP enabled, to <----------'
59 |
60 V
61 ,-----------------------.
62Bytes | 4 | 0-2296 | 4 |
63 |-----|-----------|-----|
64Desc. | IV | Encrypted | ICV |
65 | | Packet | |
66 `-----| |-----'
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +090067 `-----.-----'
68 |
Denis Vlasenko44d7a8c2006-01-18 12:02:33 +020069 .- 'Encrypted Packet' expands to
Jeff Garzikb4538722005-05-12 22:48:20 -040070 |
71 V
72 ,---------------------------------------------------.
73Bytes | 1 | 1 | 1 | 3 | 2 | 0-2304 |
74 |------|------|---------|----------|------|---------|
75Desc. | SNAP | SNAP | Control |Eth Tunnel| Type | IP |
76 | DSAP | SSAP | | | | Packet |
77 | 0xAA | 0xAA |0x03 (UI)|0x00-00-F8| | |
Denis Vlasenko44d7a8c2006-01-18 12:02:33 +020078 `----------------------------------------------------
Jeff Garzikb4538722005-05-12 22:48:20 -040079Total: 8 non-data bytes
80
Jeff Garzikb4538722005-05-12 22:48:20 -040081802.3 Ethernet Data Frame
82
83 ,-----------------------------------------.
84Bytes | 6 | 6 | 2 | Variable | 4 |
85 |-------|-------|------|-----------|------|
86Desc. | Dest. | Source| Type | IP Packet | fcs |
87 | MAC | MAC | | | |
88 `-----------------------------------------'
89Total: 18 non-data bytes
90
91In the event that fragmentation is required, the incoming payload is split into
92N parts of size ieee->fts. The first fragment contains the SNAP header and the
93remaining packets are just data.
94
95If encryption is enabled, each fragment payload size is reduced by enough space
96to add the prefix and postfix (IV and ICV totalling 8 bytes in the case of WEP)
97So if you have 1500 bytes of payload with ieee->fts set to 500 without
98encryption it will take 3 frames. With WEP it will take 4 frames as the
99payload of each frame is reduced to 492 bytes.
100
101* SKB visualization
102*
103* ,- skb->data
104* |
105* | ETHERNET HEADER ,-<-- PAYLOAD
106* | | 14 bytes from skb->data
107* | 2 bytes for Type --> ,T. | (sizeof ethhdr)
108* | | | |
109* |,-Dest.--. ,--Src.---. | | |
110* | 6 bytes| | 6 bytes | | | |
111* v | | | | | |
112* 0 | v 1 | v | v 2
113* 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
114* ^ | ^ | ^ |
115* | | | | | |
116* | | | | `T' <---- 2 bytes for Type
117* | | | |
118* | | '---SNAP--' <-------- 6 bytes for SNAP
119* | |
120* `-IV--' <-------------------- 4 bytes for IV (WEP)
121*
122* SNAP HEADER
123*
124*/
125
126static u8 P802_1H_OUI[P80211_OUI_LEN] = { 0x00, 0x00, 0xf8 };
127static u8 RFC1042_OUI[P80211_OUI_LEN] = { 0x00, 0x00, 0x00 };
128
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400129static int libipw_copy_snap(u8 * data, __be16 h_proto)
Jeff Garzikb4538722005-05-12 22:48:20 -0400130{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400131 struct libipw_snap_hdr *snap;
Jeff Garzikb4538722005-05-12 22:48:20 -0400132 u8 *oui;
133
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400134 snap = (struct libipw_snap_hdr *)data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400135 snap->dsap = 0xaa;
136 snap->ssap = 0xaa;
137 snap->ctrl = 0x03;
138
Al Virod9e94d52007-12-29 05:01:07 -0500139 if (h_proto == htons(ETH_P_AARP) || h_proto == htons(ETH_P_IPX))
Jeff Garzikb4538722005-05-12 22:48:20 -0400140 oui = P802_1H_OUI;
141 else
142 oui = RFC1042_OUI;
143 snap->oui[0] = oui[0];
144 snap->oui[1] = oui[1];
145 snap->oui[2] = oui[2];
146
Daniel Drake01e1f042007-11-22 22:03:42 +0000147 memcpy(data + SNAP_SIZE, &h_proto, sizeof(u16));
Jeff Garzikb4538722005-05-12 22:48:20 -0400148
149 return SNAP_SIZE + sizeof(u16);
150}
151
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400152static int libipw_encrypt_fragment(struct libipw_device *ieee,
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400153 struct sk_buff *frag, int hdr_len)
Jeff Garzikb4538722005-05-12 22:48:20 -0400154{
John W. Linville274bfb82008-10-29 11:35:05 -0400155 struct lib80211_crypt_data *crypt =
156 ieee->crypt_info.crypt[ieee->crypt_info.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
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400180void libipw_txb_free(struct libipw_txb *txb)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400181{
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
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400191static struct libipw_txb *libipw_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{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400194 struct libipw_txb *txb;
Jeff Garzikb4538722005-05-12 22:48:20 -0400195 int i;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400196 txb = kmalloc(sizeof(struct libipw_txb) + (sizeof(u8 *) * nr_frags),
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400197 gfp_mask);
Jeff Garzikb4538722005-05-12 22:48:20 -0400198 if (!txb)
199 return NULL;
200
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400201 memset(txb, 0, sizeof(struct libipw_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
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400223static int libipw_classify(struct sk_buff *skb)
Zhu Yi738580622006-04-13 17:17:17 +0800224{
225 struct ethhdr *eth;
226 struct iphdr *ip;
227
228 eth = (struct ethhdr *)skb->data;
YOSHIFUJI Hideaki1c9e8ef2007-03-07 14:19:05 +0900229 if (eth->h_proto != htons(ETH_P_IP))
Zhu Yi738580622006-04-13 17:17:17 +0800230 return 0;
231
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700232 ip = ip_hdr(skb);
Zhu Yi738580622006-04-13 17:17:17 +0800233 switch (ip->tos & 0xfc) {
234 case 0x20:
235 return 2;
236 case 0x40:
237 return 1;
238 case 0x60:
239 return 3;
240 case 0x80:
241 return 4;
242 case 0xa0:
243 return 5;
244 case 0xc0:
245 return 6;
246 case 0xe0:
247 return 7;
248 default:
249 return 0;
250 }
251}
252
James Ketrenos1264fc02005-09-21 11:54:53 -0500253/* Incoming skb is converted to a txb which consists of
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500254 * a block of 802.11 fragment packets (stored as skbs) */
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000255netdev_tx_t libipw_xmit(struct sk_buff *skb, struct net_device *dev)
Jeff Garzikb4538722005-05-12 22:48:20 -0400256{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400257 struct libipw_device *ieee = netdev_priv(dev);
258 struct libipw_txb *txb = NULL;
259 struct libipw_hdr_3addrqos *frag_hdr;
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500260 int i, bytes_per_frag, nr_frags, bytes_last_frag, frag_size,
261 rts_required;
Jeff Garzikb4538722005-05-12 22:48:20 -0400262 unsigned long flags;
Al Virod9e94d52007-12-29 05:01:07 -0500263 int encrypt, host_encrypt, host_encrypt_msdu, host_build_iv;
264 __be16 ether_type;
Jeff Garzikb4538722005-05-12 22:48:20 -0400265 int bytes, fc, hdr_len;
266 struct sk_buff *skb_frag;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400267 struct libipw_hdr_3addrqos header = {/* Ensure zero initialized */
Jeff Garzikb4538722005-05-12 22:48:20 -0400268 .duration_id = 0,
Zhu Yi738580622006-04-13 17:17:17 +0800269 .seq_ctl = 0,
270 .qos_ctl = 0
Jeff Garzikb4538722005-05-12 22:48:20 -0400271 };
272 u8 dest[ETH_ALEN], src[ETH_ALEN];
John W. Linville274bfb82008-10-29 11:35:05 -0400273 struct lib80211_crypt_data *crypt;
James Ketrenos2c0aa2a2005-09-21 11:56:27 -0500274 int priority = skb->priority;
James Ketrenos1264fc02005-09-21 11:54:53 -0500275 int snapped = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -0400276
James Ketrenos2c0aa2a2005-09-21 11:56:27 -0500277 if (ieee->is_queue_full && (*ieee->is_queue_full) (dev, priority))
278 return NETDEV_TX_BUSY;
279
Jeff Garzikb4538722005-05-12 22:48:20 -0400280 spin_lock_irqsave(&ieee->lock, flags);
281
282 /* If there is no driver handler to take the TXB, dont' bother
283 * creating it... */
284 if (!ieee->hard_start_xmit) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400285 printk(KERN_WARNING "%s: No xmit handler.\n", ieee->dev->name);
Jeff Garzikb4538722005-05-12 22:48:20 -0400286 goto success;
287 }
288
289 if (unlikely(skb->len < SNAP_SIZE + sizeof(u16))) {
290 printk(KERN_WARNING "%s: skb too small (%d).\n",
291 ieee->dev->name, skb->len);
292 goto success;
293 }
294
Al Virod9e94d52007-12-29 05:01:07 -0500295 ether_type = ((struct ethhdr *)skb->data)->h_proto;
Jeff Garzikb4538722005-05-12 22:48:20 -0400296
John W. Linville274bfb82008-10-29 11:35:05 -0400297 crypt = ieee->crypt_info.crypt[ieee->crypt_info.tx_keyidx];
Jeff Garzikb4538722005-05-12 22:48:20 -0400298
Al Virod9e94d52007-12-29 05:01:07 -0500299 encrypt = !(ether_type == htons(ETH_P_PAE) && ieee->ieee802_1x) &&
James Ketrenosf1bf6632005-09-21 11:53:54 -0500300 ieee->sec.encrypt;
James Ketrenos31b59ea2005-09-21 11:58:49 -0500301
Hong Liuf0f15ab2005-10-20 11:06:36 -0500302 host_encrypt = ieee->host_encrypt && encrypt && crypt;
303 host_encrypt_msdu = ieee->host_encrypt_msdu && encrypt && crypt;
304 host_build_iv = ieee->host_build_iv && encrypt && crypt;
Jeff Garzikb4538722005-05-12 22:48:20 -0400305
306 if (!encrypt && ieee->ieee802_1x &&
Al Virod9e94d52007-12-29 05:01:07 -0500307 ieee->drop_unencrypted && ether_type != htons(ETH_P_PAE)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +0000308 dev->stats.tx_dropped++;
Jeff Garzikb4538722005-05-12 22:48:20 -0400309 goto success;
310 }
311
Jeff Garzikb4538722005-05-12 22:48:20 -0400312 /* Save source and destination addresses */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300313 skb_copy_from_linear_data(skb, dest, ETH_ALEN);
314 skb_copy_from_linear_data_offset(skb, ETH_ALEN, src, ETH_ALEN);
Jeff Garzikb4538722005-05-12 22:48:20 -0400315
Johannes Berga4bf26f2005-12-31 11:35:20 +0100316 if (host_encrypt || host_build_iv)
Jeff Garzikb4538722005-05-12 22:48:20 -0400317 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA |
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400318 IEEE80211_FCTL_PROTECTED;
Jeff Garzikb4538722005-05-12 22:48:20 -0400319 else
320 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
321
322 if (ieee->iw_mode == IW_MODE_INFRA) {
323 fc |= IEEE80211_FCTL_TODS;
James Ketrenos1264fc02005-09-21 11:54:53 -0500324 /* To DS: Addr1 = BSSID, Addr2 = SA, Addr3 = DA */
James Ketrenos18294d82005-09-13 17:40:29 -0500325 memcpy(header.addr1, ieee->bssid, ETH_ALEN);
326 memcpy(header.addr2, src, ETH_ALEN);
327 memcpy(header.addr3, dest, ETH_ALEN);
Jeff Garzikb4538722005-05-12 22:48:20 -0400328 } else if (ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenos1264fc02005-09-21 11:54:53 -0500329 /* not From/To DS: Addr1 = DA, Addr2 = SA, Addr3 = BSSID */
James Ketrenos18294d82005-09-13 17:40:29 -0500330 memcpy(header.addr1, dest, ETH_ALEN);
331 memcpy(header.addr2, src, ETH_ALEN);
332 memcpy(header.addr3, ieee->bssid, ETH_ALEN);
Jeff Garzikb4538722005-05-12 22:48:20 -0400333 }
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400334 hdr_len = LIBIPW_3ADDR_LEN;
Jeff Garzikb4538722005-05-12 22:48:20 -0400335
Zhu Yi738580622006-04-13 17:17:17 +0800336 if (ieee->is_qos_active && ieee->is_qos_active(dev, skb)) {
337 fc |= IEEE80211_STYPE_QOS_DATA;
338 hdr_len += 2;
339
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400340 skb->priority = libipw_classify(skb);
341 header.qos_ctl |= cpu_to_le16(skb->priority & LIBIPW_QCTL_TID);
Zhu Yi738580622006-04-13 17:17:17 +0800342 }
343 header.frame_ctl = cpu_to_le16(fc);
344
345 /* Advance the SKB to the start of the payload */
346 skb_pull(skb, sizeof(struct ethhdr));
347
348 /* Determine total amount of storage required for TXB packets */
349 bytes = skb->len + SNAP_SIZE + sizeof(u16);
350
James Ketrenos1264fc02005-09-21 11:54:53 -0500351 /* Encrypt msdu first on the whole data packet. */
352 if ((host_encrypt || host_encrypt_msdu) &&
353 crypt && crypt->ops && crypt->ops->encrypt_msdu) {
354 int res = 0;
355 int len = bytes + hdr_len + crypt->ops->extra_msdu_prefix_len +
356 crypt->ops->extra_msdu_postfix_len;
357 struct sk_buff *skb_new = dev_alloc_skb(len);
James Ketrenos31b59ea2005-09-21 11:58:49 -0500358
James Ketrenos1264fc02005-09-21 11:54:53 -0500359 if (unlikely(!skb_new))
360 goto failed;
James Ketrenos31b59ea2005-09-21 11:58:49 -0500361
James Ketrenos1264fc02005-09-21 11:54:53 -0500362 skb_reserve(skb_new, crypt->ops->extra_msdu_prefix_len);
363 memcpy(skb_put(skb_new, hdr_len), &header, hdr_len);
364 snapped = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400365 libipw_copy_snap(skb_put(skb_new, SNAP_SIZE + sizeof(u16)),
James Ketrenos1264fc02005-09-21 11:54:53 -0500366 ether_type);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300367 skb_copy_from_linear_data(skb, skb_put(skb_new, skb->len), skb->len);
James Ketrenos1264fc02005-09-21 11:54:53 -0500368 res = crypt->ops->encrypt_msdu(skb_new, hdr_len, crypt->priv);
369 if (res < 0) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400370 LIBIPW_ERROR("msdu encryption failed\n");
James Ketrenos1264fc02005-09-21 11:54:53 -0500371 dev_kfree_skb_any(skb_new);
372 goto failed;
373 }
374 dev_kfree_skb_any(skb);
375 skb = skb_new;
376 bytes += crypt->ops->extra_msdu_prefix_len +
377 crypt->ops->extra_msdu_postfix_len;
378 skb_pull(skb, hdr_len);
379 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400380
James Ketrenos1264fc02005-09-21 11:54:53 -0500381 if (host_encrypt || ieee->host_open_frag) {
382 /* Determine fragmentation size based on destination (multicast
383 * and broadcast are not fragmented) */
Hong Liu5b74eda2005-10-19 16:31:34 -0500384 if (is_multicast_ether_addr(dest) ||
385 is_broadcast_ether_addr(dest))
James Ketrenos1264fc02005-09-21 11:54:53 -0500386 frag_size = MAX_FRAG_THRESHOLD;
387 else
388 frag_size = ieee->fts;
Jeff Garzikb4538722005-05-12 22:48:20 -0400389
James Ketrenos1264fc02005-09-21 11:54:53 -0500390 /* Determine amount of payload per fragment. Regardless of if
391 * this stack is providing the full 802.11 header, one will
392 * eventually be affixed to this fragment -- so we must account
393 * for it when determining the amount of payload space. */
Zhu Yiefa53eb2006-11-13 11:32:50 +0800394 bytes_per_frag = frag_size - hdr_len;
James Ketrenos1264fc02005-09-21 11:54:53 -0500395 if (ieee->config &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400396 (CFG_LIBIPW_COMPUTE_FCS | CFG_LIBIPW_RESERVE_FCS))
397 bytes_per_frag -= LIBIPW_FCS_LEN;
Jeff Garzikb4538722005-05-12 22:48:20 -0400398
James Ketrenos1264fc02005-09-21 11:54:53 -0500399 /* Each fragment may need to have room for encryptiong
400 * pre/postfix */
401 if (host_encrypt)
402 bytes_per_frag -= crypt->ops->extra_mpdu_prefix_len +
403 crypt->ops->extra_mpdu_postfix_len;
404
405 /* Number of fragments is the total
406 * bytes_per_frag / payload_per_fragment */
407 nr_frags = bytes / bytes_per_frag;
408 bytes_last_frag = bytes % bytes_per_frag;
409 if (bytes_last_frag)
410 nr_frags++;
411 else
412 bytes_last_frag = bytes_per_frag;
413 } else {
414 nr_frags = 1;
415 bytes_per_frag = bytes_last_frag = bytes;
Zhu Yiefa53eb2006-11-13 11:32:50 +0800416 frag_size = bytes + hdr_len;
James Ketrenos1264fc02005-09-21 11:54:53 -0500417 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400418
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500419 rts_required = (frag_size > ieee->rts
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400420 && ieee->config & CFG_LIBIPW_RTS);
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500421 if (rts_required)
422 nr_frags++;
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500423
Jeff Garzikb4538722005-05-12 22:48:20 -0400424 /* When we allocate the TXB we allocate enough space for the reserve
425 * and full fragment bytes (bytes_per_frag doesn't include prefix,
426 * postfix, header, FCS, etc.) */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400427 txb = libipw_alloc_txb(nr_frags, frag_size,
Michael Bueschd3f7bf42005-10-21 12:39:52 -0500428 ieee->tx_headroom, GFP_ATOMIC);
Jeff Garzikb4538722005-05-12 22:48:20 -0400429 if (unlikely(!txb)) {
430 printk(KERN_WARNING "%s: Could not allocate TXB\n",
431 ieee->dev->name);
432 goto failed;
433 }
434 txb->encrypted = encrypt;
James Ketrenos1264fc02005-09-21 11:54:53 -0500435 if (host_encrypt)
436 txb->payload_size = frag_size * (nr_frags - 1) +
437 bytes_last_frag;
438 else
439 txb->payload_size = bytes;
Jeff Garzikb4538722005-05-12 22:48:20 -0400440
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500441 if (rts_required) {
442 skb_frag = txb->fragments[0];
443 frag_hdr =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400444 (struct libipw_hdr_3addrqos *)skb_put(skb_frag, hdr_len);
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500445
446 /*
447 * Set header frame_ctl to the RTS.
448 */
449 header.frame_ctl =
450 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
451 memcpy(frag_hdr, &header, hdr_len);
452
453 /*
454 * Restore header frame_ctl to the original data setting.
455 */
456 header.frame_ctl = cpu_to_le16(fc);
457
458 if (ieee->config &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400459 (CFG_LIBIPW_COMPUTE_FCS | CFG_LIBIPW_RESERVE_FCS))
James Ketrenos3cdd00c2005-09-21 11:54:43 -0500460 skb_put(skb_frag, 4);
461
462 txb->rts_included = 1;
463 i = 1;
464 } else
465 i = 0;
466
467 for (; i < nr_frags; i++) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400468 skb_frag = txb->fragments[i];
469
James Ketrenos31b59ea2005-09-21 11:58:49 -0500470 if (host_encrypt || host_build_iv)
James Ketrenos1264fc02005-09-21 11:54:53 -0500471 skb_reserve(skb_frag,
472 crypt->ops->extra_mpdu_prefix_len);
Jeff Garzikb4538722005-05-12 22:48:20 -0400473
James Ketrenosee34af32005-09-21 11:54:36 -0500474 frag_hdr =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400475 (struct libipw_hdr_3addrqos *)skb_put(skb_frag, hdr_len);
Jeff Garzikb4538722005-05-12 22:48:20 -0400476 memcpy(frag_hdr, &header, hdr_len);
477
478 /* If this is not the last fragment, then add the MOREFRAGS
479 * bit to the frame control */
480 if (i != nr_frags - 1) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400481 frag_hdr->frame_ctl =
482 cpu_to_le16(fc | IEEE80211_FCTL_MOREFRAGS);
Jeff Garzikb4538722005-05-12 22:48:20 -0400483 bytes = bytes_per_frag;
484 } else {
485 /* The last fragment takes the remaining length */
486 bytes = bytes_last_frag;
487 }
488
James Ketrenos1264fc02005-09-21 11:54:53 -0500489 if (i == 0 && !snapped) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400490 libipw_copy_snap(skb_put
James Ketrenos1264fc02005-09-21 11:54:53 -0500491 (skb_frag, SNAP_SIZE + sizeof(u16)),
492 ether_type);
Jeff Garzikb4538722005-05-12 22:48:20 -0400493 bytes -= SNAP_SIZE + sizeof(u16);
494 }
495
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300496 skb_copy_from_linear_data(skb, skb_put(skb_frag, bytes), bytes);
Jeff Garzikb4538722005-05-12 22:48:20 -0400497
498 /* Advance the SKB... */
499 skb_pull(skb, bytes);
500
501 /* Encryption routine will move the header forward in order
502 * to insert the IV between the header and the payload */
James Ketrenosf1bf6632005-09-21 11:53:54 -0500503 if (host_encrypt)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400504 libipw_encrypt_fragment(ieee, skb_frag, hdr_len);
James Ketrenos31b59ea2005-09-21 11:58:49 -0500505 else if (host_build_iv) {
James Ketrenos31b59ea2005-09-21 11:58:49 -0500506 atomic_inc(&crypt->refcnt);
507 if (crypt->ops->build_iv)
508 crypt->ops->build_iv(skb_frag, hdr_len,
Zhu Yi9184d932006-01-19 16:22:32 +0800509 ieee->sec.keys[ieee->sec.active_key],
510 ieee->sec.key_sizes[ieee->sec.active_key],
511 crypt->priv);
James Ketrenos31b59ea2005-09-21 11:58:49 -0500512 atomic_dec(&crypt->refcnt);
513 }
James Ketrenosf1bf6632005-09-21 11:53:54 -0500514
Jeff Garzikb4538722005-05-12 22:48:20 -0400515 if (ieee->config &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400516 (CFG_LIBIPW_COMPUTE_FCS | CFG_LIBIPW_RESERVE_FCS))
Jeff Garzikb4538722005-05-12 22:48:20 -0400517 skb_put(skb_frag, 4);
518 }
519
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400520 success:
Jeff Garzikb4538722005-05-12 22:48:20 -0400521 spin_unlock_irqrestore(&ieee->lock, flags);
522
523 dev_kfree_skb_any(skb);
524
525 if (txb) {
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000526 netdev_tx_t ret = (*ieee->hard_start_xmit)(txb, dev, priority);
527 if (ret == NETDEV_TX_OK) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +0000528 dev->stats.tx_packets++;
529 dev->stats.tx_bytes += txb->payload_size;
Patrick McHardyec634fe2009-07-05 19:23:38 -0700530 return NETDEV_TX_OK;
Jeff Garzikb4538722005-05-12 22:48:20 -0400531 }
James Ketrenos2c0aa2a2005-09-21 11:56:27 -0500532
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400533 libipw_txb_free(txb);
Jeff Garzikb4538722005-05-12 22:48:20 -0400534 }
535
Patrick McHardyec634fe2009-07-05 19:23:38 -0700536 return NETDEV_TX_OK;
Jeff Garzikb4538722005-05-12 22:48:20 -0400537
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400538 failed:
Jeff Garzikb4538722005-05-12 22:48:20 -0400539 spin_unlock_irqrestore(&ieee->lock, flags);
540 netif_stop_queue(dev);
Stephen Hemmingerce55cba2009-03-20 19:36:38 +0000541 dev->stats.tx_errors++;
Patrick McHardy5b548142009-06-12 06:22:29 +0000542 return NETDEV_TX_BUSY;
Jeff Garzikb4538722005-05-12 22:48:20 -0400543}
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400544EXPORT_SYMBOL(libipw_xmit);
Jeff Garzikb4538722005-05-12 22:48:20 -0400545
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400546EXPORT_SYMBOL(libipw_txb_free);