blob: 1fe1bbabb90749e0b9644df1f5c8010b630bf954 [file] [log] [blame]
Adrian Bunk5fad5a22006-01-14 03:09:34 +01001#include "hostap_80211.h"
2#include "hostap_common.h"
3#include "hostap_wlan.h"
4#include "hostap.h"
5#include "hostap_ap.h"
6
7/* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
8/* Ethernet-II snap header (RFC1042 for most EtherTypes) */
9static unsigned char rfc1042_header[] =
10{ 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
11/* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
12static unsigned char bridge_tunnel_header[] =
13{ 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
14/* No encapsulation header if EtherType < 0x600 (=length) */
15
Jouni Malinenff1d2762005-05-12 22:54:16 -040016void hostap_dump_tx_80211(const char *name, struct sk_buff *skb)
17{
Dan Williams1ea893f2009-02-11 17:17:10 -050018 struct ieee80211_hdr *hdr;
Jouni Malinenff1d2762005-05-12 22:54:16 -040019 u16 fc;
20
Dan Williams1ea893f2009-02-11 17:17:10 -050021 hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenff1d2762005-05-12 22:54:16 -040022
23 printk(KERN_DEBUG "%s: TX len=%d jiffies=%ld\n",
24 name, skb->len, jiffies);
25
26 if (skb->len < 2)
27 return;
28
Dan Williams1ea893f2009-02-11 17:17:10 -050029 fc = le16_to_cpu(hdr->frame_control);
Jouni Malinenff1d2762005-05-12 22:54:16 -040030 printk(KERN_DEBUG " FC=0x%04x (type=%d:%d)%s%s",
Dan Williams1ea893f2009-02-11 17:17:10 -050031 fc, (fc & IEEE80211_FCTL_FTYPE) >> 2,
32 (fc & IEEE80211_FCTL_STYPE) >> 4,
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -070033 fc & IEEE80211_FCTL_TODS ? " [ToDS]" : "",
34 fc & IEEE80211_FCTL_FROMDS ? " [FromDS]" : "");
Jouni Malinenff1d2762005-05-12 22:54:16 -040035
36 if (skb->len < IEEE80211_DATA_HDR3_LEN) {
37 printk("\n");
38 return;
39 }
40
41 printk(" dur=0x%04x seq=0x%04x\n", le16_to_cpu(hdr->duration_id),
Dan Williams1ea893f2009-02-11 17:17:10 -050042 le16_to_cpu(hdr->seq_ctrl));
Jouni Malinenff1d2762005-05-12 22:54:16 -040043
Johannes Berge1749612008-10-27 15:59:26 -070044 printk(KERN_DEBUG " A1=%pM", hdr->addr1);
45 printk(" A2=%pM", hdr->addr2);
46 printk(" A3=%pM", hdr->addr3);
Jouni Malinenff1d2762005-05-12 22:54:16 -040047 if (skb->len >= 30)
Johannes Berge1749612008-10-27 15:59:26 -070048 printk(" A4=%pM", hdr->addr4);
Jouni Malinenff1d2762005-05-12 22:54:16 -040049 printk("\n");
50}
51
52
53/* hard_start_xmit function for data interfaces (wlan#, wlan#wds#, wlan#sta)
54 * Convert Ethernet header into a suitable IEEE 802.11 header depending on
55 * device configuration. */
56int hostap_data_start_xmit(struct sk_buff *skb, struct net_device *dev)
57{
58 struct hostap_interface *iface;
59 local_info_t *local;
60 int need_headroom, need_tailroom = 0;
Dan Williams1ea893f2009-02-11 17:17:10 -050061 struct ieee80211_hdr hdr;
Jouni Malinenff1d2762005-05-12 22:54:16 -040062 u16 fc, ethertype = 0;
63 enum {
64 WDS_NO = 0, WDS_OWN_FRAME, WDS_COMPLIANT_FRAME
65 } use_wds = WDS_NO;
66 u8 *encaps_data;
67 int hdr_len, encaps_len, skip_header_bytes;
68 int to_assoc_ap = 0;
69 struct hostap_skb_tx_data *meta;
70
71 iface = netdev_priv(dev);
72 local = iface->local;
73
74 if (skb->len < ETH_HLEN) {
75 printk(KERN_DEBUG "%s: hostap_data_start_xmit: short skb "
76 "(len=%d)\n", dev->name, skb->len);
77 kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -070078 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -040079 }
80
81 if (local->ddev != dev) {
82 use_wds = (local->iw_mode == IW_MODE_MASTER &&
83 !(local->wds_type & HOSTAP_WDS_STANDARD_FRAME)) ?
84 WDS_OWN_FRAME : WDS_COMPLIANT_FRAME;
85 if (dev == local->stadev) {
86 to_assoc_ap = 1;
87 use_wds = WDS_NO;
88 } else if (dev == local->apdev) {
89 printk(KERN_DEBUG "%s: prism2_tx: trying to use "
90 "AP device with Ethernet net dev\n", dev->name);
91 kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -070092 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -040093 }
94 } else {
95 if (local->iw_mode == IW_MODE_REPEAT) {
96 printk(KERN_DEBUG "%s: prism2_tx: trying to use "
97 "non-WDS link in Repeater mode\n", dev->name);
98 kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -070099 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400100 } else if (local->iw_mode == IW_MODE_INFRA &&
101 (local->wds_type & HOSTAP_WDS_AP_CLIENT) &&
102 memcmp(skb->data + ETH_ALEN, dev->dev_addr,
103 ETH_ALEN) != 0) {
104 /* AP client mode: send frames with foreign src addr
105 * using 4-addr WDS frames */
106 use_wds = WDS_COMPLIANT_FRAME;
107 }
108 }
109
110 /* Incoming skb->data: dst_addr[6], src_addr[6], proto[2], payload
111 * ==>
112 * Prism2 TX frame with 802.11 header:
113 * txdesc (address order depending on used mode; includes dst_addr and
114 * src_addr), possible encapsulation (RFC1042/Bridge-Tunnel;
115 * proto[2], payload {, possible addr4[6]} */
116
117 ethertype = (skb->data[12] << 8) | skb->data[13];
118
119 memset(&hdr, 0, sizeof(hdr));
120
121 /* Length of data after IEEE 802.11 header */
122 encaps_data = NULL;
123 encaps_len = 0;
124 skip_header_bytes = ETH_HLEN;
125 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
126 encaps_data = bridge_tunnel_header;
127 encaps_len = sizeof(bridge_tunnel_header);
128 skip_header_bytes -= 2;
129 } else if (ethertype >= 0x600) {
130 encaps_data = rfc1042_header;
131 encaps_len = sizeof(rfc1042_header);
132 skip_header_bytes -= 2;
133 }
134
Jouni Malinen4339d322005-08-14 19:08:44 -0700135 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400136 hdr_len = IEEE80211_DATA_HDR3_LEN;
137
138 if (use_wds != WDS_NO) {
139 /* Note! Prism2 station firmware has problems with sending real
140 * 802.11 frames with four addresses; until these problems can
141 * be fixed or worked around, 4-addr frames needed for WDS are
142 * using incompatible format: FromDS flag is not set and the
143 * fourth address is added after the frame payload; it is
144 * assumed, that the receiving station knows how to handle this
145 * frame format */
146
147 if (use_wds == WDS_COMPLIANT_FRAME) {
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -0700148 fc |= IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400149 /* From&To DS: Addr1 = RA, Addr2 = TA, Addr3 = DA,
150 * Addr4 = SA */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300151 skb_copy_from_linear_data_offset(skb, ETH_ALEN,
152 &hdr.addr4, ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400153 hdr_len += ETH_ALEN;
154 } else {
155 /* bogus 4-addr format to workaround Prism2 station
156 * f/w bug */
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -0700157 fc |= IEEE80211_FCTL_TODS;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400158 /* From DS: Addr1 = DA (used as RA),
159 * Addr2 = BSSID (used as TA), Addr3 = SA (used as DA),
160 */
161
162 /* SA from skb->data + ETH_ALEN will be added after
163 * frame payload; use hdr.addr4 as a temporary buffer
164 */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300165 skb_copy_from_linear_data_offset(skb, ETH_ALEN,
166 &hdr.addr4, ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400167 need_tailroom += ETH_ALEN;
168 }
169
170 /* send broadcast and multicast frames to broadcast RA, if
171 * configured; otherwise, use unicast RA of the WDS link */
172 if ((local->wds_type & HOSTAP_WDS_BROADCAST_RA) &&
173 skb->data[0] & 0x01)
174 memset(&hdr.addr1, 0xff, ETH_ALEN);
175 else if (iface->type == HOSTAP_INTERFACE_WDS)
176 memcpy(&hdr.addr1, iface->u.wds.remote_addr,
177 ETH_ALEN);
178 else
179 memcpy(&hdr.addr1, local->bssid, ETH_ALEN);
180 memcpy(&hdr.addr2, dev->dev_addr, ETH_ALEN);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300181 skb_copy_from_linear_data(skb, &hdr.addr3, ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400182 } else if (local->iw_mode == IW_MODE_MASTER && !to_assoc_ap) {
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -0700183 fc |= IEEE80211_FCTL_FROMDS;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400184 /* From DS: Addr1 = DA, Addr2 = BSSID, Addr3 = SA */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300185 skb_copy_from_linear_data(skb, &hdr.addr1, ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400186 memcpy(&hdr.addr2, dev->dev_addr, ETH_ALEN);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300187 skb_copy_from_linear_data_offset(skb, ETH_ALEN, &hdr.addr3,
188 ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400189 } else if (local->iw_mode == IW_MODE_INFRA || to_assoc_ap) {
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -0700190 fc |= IEEE80211_FCTL_TODS;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400191 /* To DS: Addr1 = BSSID, Addr2 = SA, Addr3 = DA */
192 memcpy(&hdr.addr1, to_assoc_ap ?
193 local->assoc_ap_addr : local->bssid, ETH_ALEN);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300194 skb_copy_from_linear_data_offset(skb, ETH_ALEN, &hdr.addr2,
195 ETH_ALEN);
196 skb_copy_from_linear_data(skb, &hdr.addr3, ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400197 } else if (local->iw_mode == IW_MODE_ADHOC) {
198 /* not From/To DS: Addr1 = DA, Addr2 = SA, Addr3 = BSSID */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300199 skb_copy_from_linear_data(skb, &hdr.addr1, ETH_ALEN);
200 skb_copy_from_linear_data_offset(skb, ETH_ALEN, &hdr.addr2,
201 ETH_ALEN);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400202 memcpy(&hdr.addr3, local->bssid, ETH_ALEN);
203 }
204
Dan Williams1ea893f2009-02-11 17:17:10 -0500205 hdr.frame_control = cpu_to_le16(fc);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400206
207 skb_pull(skb, skip_header_bytes);
208 need_headroom = local->func->need_tx_headroom + hdr_len + encaps_len;
209 if (skb_tailroom(skb) < need_tailroom) {
210 skb = skb_unshare(skb, GFP_ATOMIC);
211 if (skb == NULL) {
212 iface->stats.tx_dropped++;
Patrick McHardyec634fe2009-07-05 19:23:38 -0700213 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400214 }
215 if (pskb_expand_head(skb, need_headroom, need_tailroom,
216 GFP_ATOMIC)) {
217 kfree_skb(skb);
218 iface->stats.tx_dropped++;
Patrick McHardyec634fe2009-07-05 19:23:38 -0700219 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400220 }
221 } else if (skb_headroom(skb) < need_headroom) {
222 struct sk_buff *tmp = skb;
223 skb = skb_realloc_headroom(skb, need_headroom);
224 kfree_skb(tmp);
225 if (skb == NULL) {
226 iface->stats.tx_dropped++;
Patrick McHardyec634fe2009-07-05 19:23:38 -0700227 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400228 }
229 } else {
230 skb = skb_unshare(skb, GFP_ATOMIC);
231 if (skb == NULL) {
232 iface->stats.tx_dropped++;
Patrick McHardyec634fe2009-07-05 19:23:38 -0700233 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400234 }
235 }
236
237 if (encaps_data)
238 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
239 memcpy(skb_push(skb, hdr_len), &hdr, hdr_len);
240 if (use_wds == WDS_OWN_FRAME) {
241 memcpy(skb_put(skb, ETH_ALEN), &hdr.addr4, ETH_ALEN);
242 }
243
244 iface->stats.tx_packets++;
245 iface->stats.tx_bytes += skb->len;
246
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700247 skb_reset_mac_header(skb);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400248 meta = (struct hostap_skb_tx_data *) skb->cb;
249 memset(meta, 0, sizeof(*meta));
250 meta->magic = HOSTAP_SKB_TX_DATA_MAGIC;
Jouni Malinen5bee7202005-08-14 19:08:39 -0700251 if (use_wds)
252 meta->flags |= HOSTAP_TX_FLAGS_WDS;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400253 meta->ethertype = ethertype;
254 meta->iface = iface;
255
256 /* Send IEEE 802.11 encapsulated frame using the master radio device */
257 skb->dev = local->dev;
258 dev_queue_xmit(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700259 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400260}
261
262
263/* hard_start_xmit function for hostapd wlan#ap interfaces */
264int hostap_mgmt_start_xmit(struct sk_buff *skb, struct net_device *dev)
265{
266 struct hostap_interface *iface;
267 local_info_t *local;
268 struct hostap_skb_tx_data *meta;
Dan Williams1ea893f2009-02-11 17:17:10 -0500269 struct ieee80211_hdr *hdr;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400270 u16 fc;
271
272 iface = netdev_priv(dev);
273 local = iface->local;
274
275 if (skb->len < 10) {
276 printk(KERN_DEBUG "%s: hostap_mgmt_start_xmit: short skb "
277 "(len=%d)\n", dev->name, skb->len);
278 kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700279 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400280 }
281
282 iface->stats.tx_packets++;
283 iface->stats.tx_bytes += skb->len;
284
285 meta = (struct hostap_skb_tx_data *) skb->cb;
286 memset(meta, 0, sizeof(*meta));
287 meta->magic = HOSTAP_SKB_TX_DATA_MAGIC;
288 meta->iface = iface;
289
290 if (skb->len >= IEEE80211_DATA_HDR3_LEN + sizeof(rfc1042_header) + 2) {
Dan Williams1ea893f2009-02-11 17:17:10 -0500291 hdr = (struct ieee80211_hdr *) skb->data;
292 fc = le16_to_cpu(hdr->frame_control);
293 if (ieee80211_is_data(hdr->frame_control) &&
294 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_DATA) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400295 u8 *pos = &skb->data[IEEE80211_DATA_HDR3_LEN +
296 sizeof(rfc1042_header)];
297 meta->ethertype = (pos[0] << 8) | pos[1];
298 }
299 }
300
301 /* Send IEEE 802.11 encapsulated frame using the master radio device */
302 skb->dev = local->dev;
303 dev_queue_xmit(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700304 return NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400305}
306
307
308/* Called only from software IRQ */
Jouni Malinen79058ac2006-03-24 21:24:54 -0800309static struct sk_buff * hostap_tx_encrypt(struct sk_buff *skb,
John W. Linville274bfb82008-10-29 11:35:05 -0400310 struct lib80211_crypt_data *crypt)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400311{
312 struct hostap_interface *iface;
313 local_info_t *local;
Dan Williams1ea893f2009-02-11 17:17:10 -0500314 struct ieee80211_hdr *hdr;
Brandon Craig Rhodesd7ea3be2007-05-28 09:38:46 -0700315 int prefix_len, postfix_len, hdr_len, res;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400316
317 iface = netdev_priv(skb->dev);
318 local = iface->local;
319
320 if (skb->len < IEEE80211_DATA_HDR3_LEN) {
321 kfree_skb(skb);
322 return NULL;
323 }
324
325 if (local->tkip_countermeasures &&
Jouni Malinen79058ac2006-03-24 21:24:54 -0800326 strcmp(crypt->ops->name, "TKIP") == 0) {
Dan Williams1ea893f2009-02-11 17:17:10 -0500327 hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400328 if (net_ratelimit()) {
329 printk(KERN_DEBUG "%s: TKIP countermeasures: dropped "
Johannes Berge1749612008-10-27 15:59:26 -0700330 "TX packet to %pM\n",
331 local->dev->name, hdr->addr1);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400332 }
333 kfree_skb(skb);
334 return NULL;
335 }
336
337 skb = skb_unshare(skb, GFP_ATOMIC);
338 if (skb == NULL)
339 return NULL;
340
Brandon Craig Rhodesd7ea3be2007-05-28 09:38:46 -0700341 prefix_len = crypt->ops->extra_mpdu_prefix_len +
342 crypt->ops->extra_msdu_prefix_len;
343 postfix_len = crypt->ops->extra_mpdu_postfix_len +
344 crypt->ops->extra_msdu_postfix_len;
345 if ((skb_headroom(skb) < prefix_len ||
346 skb_tailroom(skb) < postfix_len) &&
347 pskb_expand_head(skb, prefix_len, postfix_len, GFP_ATOMIC)) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400348 kfree_skb(skb);
349 return NULL;
350 }
351
Dan Williams1ea893f2009-02-11 17:17:10 -0500352 hdr = (struct ieee80211_hdr *) skb->data;
353 hdr_len = hostap_80211_get_hdrlen(hdr->frame_control);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400354
355 /* Host-based IEEE 802.11 fragmentation for TX is not yet supported, so
356 * call both MSDU and MPDU encryption functions from here. */
357 atomic_inc(&crypt->refcnt);
358 res = 0;
359 if (crypt->ops->encrypt_msdu)
360 res = crypt->ops->encrypt_msdu(skb, hdr_len, crypt->priv);
361 if (res == 0 && crypt->ops->encrypt_mpdu)
362 res = crypt->ops->encrypt_mpdu(skb, hdr_len, crypt->priv);
363 atomic_dec(&crypt->refcnt);
364 if (res < 0) {
365 kfree_skb(skb);
366 return NULL;
367 }
368
369 return skb;
370}
371
372
373/* hard_start_xmit function for master radio interface wifi#.
374 * AP processing (TX rate control, power save buffering, etc.).
375 * Use hardware TX function to send the frame. */
376int hostap_master_start_xmit(struct sk_buff *skb, struct net_device *dev)
377{
378 struct hostap_interface *iface;
379 local_info_t *local;
Patrick McHardy5b548142009-06-12 06:22:29 +0000380 int ret = NETDEV_TX_BUSY;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400381 u16 fc;
382 struct hostap_tx_data tx;
383 ap_tx_ret tx_ret;
384 struct hostap_skb_tx_data *meta;
385 int no_encrypt = 0;
Dan Williams1ea893f2009-02-11 17:17:10 -0500386 struct ieee80211_hdr *hdr;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400387
388 iface = netdev_priv(dev);
389 local = iface->local;
390
391 tx.skb = skb;
392 tx.sta_ptr = NULL;
393
394 meta = (struct hostap_skb_tx_data *) skb->cb;
395 if (meta->magic != HOSTAP_SKB_TX_DATA_MAGIC) {
396 printk(KERN_DEBUG "%s: invalid skb->cb magic (0x%08x, "
397 "expected 0x%08x)\n",
398 dev->name, meta->magic, HOSTAP_SKB_TX_DATA_MAGIC);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700399 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400400 iface->stats.tx_dropped++;
401 goto fail;
402 }
403
404 if (local->host_encrypt) {
405 /* Set crypt to default algorithm and key; will be replaced in
406 * AP code if STA has own alg/key */
John W. Linville274bfb82008-10-29 11:35:05 -0400407 tx.crypt = local->crypt_info.crypt[local->crypt_info.tx_keyidx];
Jouni Malinenff1d2762005-05-12 22:54:16 -0400408 tx.host_encrypt = 1;
409 } else {
410 tx.crypt = NULL;
411 tx.host_encrypt = 0;
412 }
413
414 if (skb->len < 24) {
415 printk(KERN_DEBUG "%s: hostap_master_start_xmit: short skb "
416 "(len=%d)\n", dev->name, skb->len);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700417 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400418 iface->stats.tx_dropped++;
419 goto fail;
420 }
421
422 /* FIX (?):
423 * Wi-Fi 802.11b test plan suggests that AP should ignore power save
424 * bit in authentication and (re)association frames and assume tha
425 * STA remains awake for the response. */
426 tx_ret = hostap_handle_sta_tx(local, &tx);
427 skb = tx.skb;
428 meta = (struct hostap_skb_tx_data *) skb->cb;
Dan Williams1ea893f2009-02-11 17:17:10 -0500429 hdr = (struct ieee80211_hdr *) skb->data;
430 fc = le16_to_cpu(hdr->frame_control);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400431 switch (tx_ret) {
432 case AP_TX_CONTINUE:
433 break;
434 case AP_TX_CONTINUE_NOT_AUTHORIZED:
435 if (local->ieee_802_1x &&
Dan Williams1ea893f2009-02-11 17:17:10 -0500436 ieee80211_is_data(hdr->frame_control) &&
Jouni Malinen5bee7202005-08-14 19:08:39 -0700437 meta->ethertype != ETH_P_PAE &&
438 !(meta->flags & HOSTAP_TX_FLAGS_WDS)) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400439 printk(KERN_DEBUG "%s: dropped frame to unauthorized "
440 "port (IEEE 802.1X): ethertype=0x%04x\n",
441 dev->name, meta->ethertype);
442 hostap_dump_tx_80211(dev->name, skb);
443
Patrick McHardyec634fe2009-07-05 19:23:38 -0700444 ret = NETDEV_TX_OK; /* drop packet */
Jouni Malinenff1d2762005-05-12 22:54:16 -0400445 iface->stats.tx_dropped++;
446 goto fail;
447 }
448 break;
449 case AP_TX_DROP:
Patrick McHardyec634fe2009-07-05 19:23:38 -0700450 ret = NETDEV_TX_OK; /* drop packet */
Jouni Malinenff1d2762005-05-12 22:54:16 -0400451 iface->stats.tx_dropped++;
452 goto fail;
453 case AP_TX_RETRY:
454 goto fail;
455 case AP_TX_BUFFERED:
456 /* do not free skb here, it will be freed when the
457 * buffered frame is sent/timed out */
Patrick McHardyec634fe2009-07-05 19:23:38 -0700458 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400459 goto tx_exit;
460 }
461
462 /* Request TX callback if protocol version is 2 in 802.11 header;
463 * this version 2 is a special case used between hostapd and kernel
464 * driver */
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -0700465 if (((fc & IEEE80211_FCTL_VERS) == BIT(1)) &&
Jouni Malinenff1d2762005-05-12 22:54:16 -0400466 local->ap && local->ap->tx_callback_idx && meta->tx_cb_idx == 0) {
467 meta->tx_cb_idx = local->ap->tx_callback_idx;
468
469 /* remove special version from the frame header */
Jouni Malinenb2f4a2e2005-08-14 21:00:01 -0700470 fc &= ~IEEE80211_FCTL_VERS;
Dan Williams1ea893f2009-02-11 17:17:10 -0500471 hdr->frame_control = cpu_to_le16(fc);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400472 }
473
Dan Williams1ea893f2009-02-11 17:17:10 -0500474 if (!ieee80211_is_data(hdr->frame_control)) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400475 no_encrypt = 1;
476 tx.crypt = NULL;
477 }
478
479 if (local->ieee_802_1x && meta->ethertype == ETH_P_PAE && tx.crypt &&
Jouni Malinencfa146e2006-03-24 21:24:55 -0800480 !(fc & IEEE80211_FCTL_PROTECTED)) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400481 no_encrypt = 1;
482 PDEBUG(DEBUG_EXTRA2, "%s: TX: IEEE 802.1X - passing "
483 "unencrypted EAPOL frame\n", dev->name);
484 tx.crypt = NULL; /* no encryption for IEEE 802.1X frames */
485 }
486
487 if (tx.crypt && (!tx.crypt->ops || !tx.crypt->ops->encrypt_mpdu))
488 tx.crypt = NULL;
John W. Linville274bfb82008-10-29 11:35:05 -0400489 else if ((tx.crypt ||
490 local->crypt_info.crypt[local->crypt_info.tx_keyidx]) &&
491 !no_encrypt) {
Jouni Malinenff1d2762005-05-12 22:54:16 -0400492 /* Add ISWEP flag both for firmware and host based encryption
493 */
Jeff Garzik831a1792005-08-25 20:59:10 -0400494 fc |= IEEE80211_FCTL_PROTECTED;
Dan Williams1ea893f2009-02-11 17:17:10 -0500495 hdr->frame_control = cpu_to_le16(fc);
Jouni Malinenff1d2762005-05-12 22:54:16 -0400496 } else if (local->drop_unencrypted &&
Dan Williams1ea893f2009-02-11 17:17:10 -0500497 ieee80211_is_data(hdr->frame_control) &&
Jouni Malinenff1d2762005-05-12 22:54:16 -0400498 meta->ethertype != ETH_P_PAE) {
499 if (net_ratelimit()) {
500 printk(KERN_DEBUG "%s: dropped unencrypted TX data "
501 "frame (drop_unencrypted=1)\n", dev->name);
502 }
503 iface->stats.tx_dropped++;
Patrick McHardyec634fe2009-07-05 19:23:38 -0700504 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400505 goto fail;
506 }
507
508 if (tx.crypt) {
509 skb = hostap_tx_encrypt(skb, tx.crypt);
510 if (skb == NULL) {
511 printk(KERN_DEBUG "%s: TX - encryption failed\n",
512 dev->name);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700513 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400514 goto fail;
515 }
516 meta = (struct hostap_skb_tx_data *) skb->cb;
517 if (meta->magic != HOSTAP_SKB_TX_DATA_MAGIC) {
518 printk(KERN_DEBUG "%s: invalid skb->cb magic (0x%08x, "
519 "expected 0x%08x) after hostap_tx_encrypt\n",
520 dev->name, meta->magic,
521 HOSTAP_SKB_TX_DATA_MAGIC);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700522 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400523 iface->stats.tx_dropped++;
524 goto fail;
525 }
526 }
527
528 if (local->func->tx == NULL || local->func->tx(skb, dev)) {
Patrick McHardyec634fe2009-07-05 19:23:38 -0700529 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400530 iface->stats.tx_dropped++;
531 } else {
Patrick McHardyec634fe2009-07-05 19:23:38 -0700532 ret = NETDEV_TX_OK;
Jouni Malinenff1d2762005-05-12 22:54:16 -0400533 iface->stats.tx_packets++;
534 iface->stats.tx_bytes += skb->len;
535 }
536
537 fail:
Patrick McHardyec634fe2009-07-05 19:23:38 -0700538 if (ret == NETDEV_TX_OK && skb)
Jouni Malinenff1d2762005-05-12 22:54:16 -0400539 dev_kfree_skb(skb);
540 tx_exit:
541 if (tx.sta_ptr)
542 hostap_handle_sta_release(tx.sta_ptr);
543 return ret;
544}
545
546
Jouni Malinenff1d2762005-05-12 22:54:16 -0400547EXPORT_SYMBOL(hostap_master_start_xmit);