blob: a3f4b55aa41f7be653f73d55ae7054b34dc3dccc [file] [log] [blame]
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001/*
2 * This file contains the handling of RX in wlan driver.
3 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02004#include <linux/etherdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/slab.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02006#include <linux/types.h>
Kiran Divekare86dc1c2010-06-14 22:01:26 +05307#include <net/cfg80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02008
Kiran Divekare86dc1c2010-06-14 22:01:26 +05309#include "defs.h"
Holger Schurig9e66e702009-10-16 17:32:16 +020010#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011#include "radiotap.h"
12#include "decl.h"
13#include "dev.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
15struct eth803hdr {
16 u8 dest_addr[6];
17 u8 src_addr[6];
18 u16 h803_len;
Eric Dumazetba2d3582010-06-02 18:10:09 +000019} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020020
21struct rfc1042hdr {
22 u8 llc_dsap;
23 u8 llc_ssap;
24 u8 llc_ctrl;
25 u8 snap_oui[3];
26 u16 snap_type;
Eric Dumazetba2d3582010-06-02 18:10:09 +000027} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028
29struct rxpackethdr {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020030 struct eth803hdr eth803_hdr;
31 struct rfc1042hdr rfc1042_hdr;
Eric Dumazetba2d3582010-06-02 18:10:09 +000032} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020033
34struct rx80211packethdr {
35 struct rxpd rx_pd;
36 void *eth80211_hdr;
Eric Dumazetba2d3582010-06-02 18:10:09 +000037} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020038
Holger Schurig69f90322007-11-23 15:43:44 +010039static int process_rxed_802_11_packet(struct lbs_private *priv,
40 struct sk_buff *skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020041
42/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070043 * lbs_process_rxed_packet - processes received packet and forwards it
44 * to kernel/upper layer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020045 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070046 * @priv: A pointer to &struct lbs_private
47 * @skb: A pointer to skb which includes the received packet
48 * returns: 0 or -1
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020049 */
Holger Schurig69f90322007-11-23 15:43:44 +010050int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020051{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020052 int ret = 0;
David Woodhouse6f93a8e2007-12-10 00:49:26 -050053 struct net_device *dev = priv->dev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054 struct rxpackethdr *p_rx_pkt;
55 struct rxpd *p_rx_pd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020056 int hdrchop;
57 struct ethhdr *p_ethhdr;
Joe Perches482e0392010-11-20 18:38:58 -080058 static const u8 rfc1042_eth_hdr[] = {
59 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00
60 };
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061
Holger Schurig9012b282007-05-25 11:27:16 -040062 lbs_deb_enter(LBS_DEB_RX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020063
Holger Schurig7919b892008-04-01 14:50:43 +020064 BUG_ON(!skb);
65
David Woodhouse6f93a8e2007-12-10 00:49:26 -050066 skb->ip_summed = CHECKSUM_NONE;
67
Kiran Divekare86dc1c2010-06-14 22:01:26 +053068 if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020069 return process_rxed_802_11_packet(priv, skb);
70
Bing Zhaoe45d8e52009-04-06 15:50:56 -070071 p_rx_pd = (struct rxpd *) skb->data;
72 p_rx_pkt = (struct rxpackethdr *) ((u8 *)p_rx_pd +
73 le32_to_cpu(p_rx_pd->pkt_ptr));
Holger Schurige0e42da2009-11-25 13:10:15 +010074
75 dev = lbs_mesh_set_dev(priv, dev, p_rx_pd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076
Holger Schurigece56192007-08-02 11:53:06 -040077 lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020078 min_t(unsigned int, skb->len, 100));
79
80 if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
Holger Schurig9012b282007-05-25 11:27:16 -040081 lbs_deb_rx("rx err: frame received with bad length\n");
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +000082 dev->stats.rx_length_errors++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083 ret = 0;
Philip Rakityf54930f2009-04-07 12:41:17 -070084 dev_kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020085 goto done;
86 }
87
Bing Zhaoe45d8e52009-04-06 15:50:56 -070088 lbs_deb_rx("rx data: skb->len - pkt_ptr = %d-%zd = %zd\n",
John W. Linvillea2caba62009-04-14 11:45:57 -040089 skb->len, (size_t)le32_to_cpu(p_rx_pd->pkt_ptr),
90 skb->len - (size_t)le32_to_cpu(p_rx_pd->pkt_ptr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020091
Holger Schurigece56192007-08-02 11:53:06 -040092 lbs_deb_hex(LBS_DEB_RX, "RX Data: Dest", p_rx_pkt->eth803_hdr.dest_addr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020093 sizeof(p_rx_pkt->eth803_hdr.dest_addr));
Holger Schurigece56192007-08-02 11:53:06 -040094 lbs_deb_hex(LBS_DEB_RX, "RX Data: Src", p_rx_pkt->eth803_hdr.src_addr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020095 sizeof(p_rx_pkt->eth803_hdr.src_addr));
96
97 if (memcmp(&p_rx_pkt->rfc1042_hdr,
98 rfc1042_eth_hdr, sizeof(rfc1042_eth_hdr)) == 0) {
99 /*
100 * Replace the 803 header and rfc1042 header (llc/snap) with an
101 * EthernetII header, keep the src/dst and snap_type (ethertype)
102 *
103 * The firmware only passes up SNAP frames converting
104 * all RX Data from 802.11 to 802.2/LLC/SNAP frames.
105 *
106 * To create the Ethernet II, just move the src, dst address right
107 * before the snap_type.
108 */
109 p_ethhdr = (struct ethhdr *)
Stewart Malik819cf152010-03-11 20:28:29 +1030110 ((u8 *) &p_rx_pkt->eth803_hdr
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111 + sizeof(p_rx_pkt->eth803_hdr) + sizeof(p_rx_pkt->rfc1042_hdr)
112 - sizeof(p_rx_pkt->eth803_hdr.dest_addr)
113 - sizeof(p_rx_pkt->eth803_hdr.src_addr)
114 - sizeof(p_rx_pkt->rfc1042_hdr.snap_type));
115
116 memcpy(p_ethhdr->h_source, p_rx_pkt->eth803_hdr.src_addr,
117 sizeof(p_ethhdr->h_source));
118 memcpy(p_ethhdr->h_dest, p_rx_pkt->eth803_hdr.dest_addr,
119 sizeof(p_ethhdr->h_dest));
120
121 /* Chop off the rxpd + the excess memory from the 802.2/llc/snap header
122 * that was removed
123 */
Bing Zhaoe45d8e52009-04-06 15:50:56 -0700124 hdrchop = (u8 *)p_ethhdr - (u8 *)p_rx_pd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125 } else {
Holger Schurigece56192007-08-02 11:53:06 -0400126 lbs_deb_hex(LBS_DEB_RX, "RX Data: LLC/SNAP",
Stewart Malik819cf152010-03-11 20:28:29 +1030127 (u8 *) &p_rx_pkt->rfc1042_hdr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200128 sizeof(p_rx_pkt->rfc1042_hdr));
129
130 /* Chop off the rxpd */
Bing Zhaoe45d8e52009-04-06 15:50:56 -0700131 hdrchop = (u8 *)&p_rx_pkt->eth803_hdr - (u8 *)p_rx_pd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200132 }
133
134 /* Chop off the leading header bytes so the skb points to the start of
135 * either the reconstructed EthII frame or the 802.2/llc/snap frame
136 */
137 skb_pull(skb, hdrchop);
138
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530139 priv->cur_rate = lbs_fw_index_to_data_rate(p_rx_pd->rx_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140
Holger Schurig9012b282007-05-25 11:27:16 -0400141 lbs_deb_rx("rx data: size of actual packet %d\n", skb->len);
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000142 dev->stats.rx_bytes += skb->len;
143 dev->stats.rx_packets++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500145 skb->protocol = eth_type_trans(skb, dev);
Holger Schurigae3e0fc2008-01-16 15:48:44 +0100146 if (in_interrupt())
147 netif_rx(skb);
148 else
149 netif_rx_ni(skb);
Florin Malita3d4bd242007-05-18 16:04:33 -0400150
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200151 ret = 0;
152done:
Holger Schurig9012b282007-05-25 11:27:16 -0400153 lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 return ret;
155}
Holger Schurig10078322007-11-15 18:05:47 -0500156EXPORT_SYMBOL_GPL(lbs_process_rxed_packet);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200157
158/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700159 * convert_mv_rate_to_radiotap - converts Tx/Rx rates from Marvell WLAN format
160 * (see Table 2 in Section 3.1) to IEEE80211_RADIOTAP_RATE units (500 Kb/s)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200161 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700162 * @rate: Input rate
163 * returns: Output Rate (0 if invalid)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164 */
165static u8 convert_mv_rate_to_radiotap(u8 rate)
166{
167 switch (rate) {
168 case 0: /* 1 Mbps */
169 return 2;
170 case 1: /* 2 Mbps */
171 return 4;
172 case 2: /* 5.5 Mbps */
173 return 11;
174 case 3: /* 11 Mbps */
175 return 22;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400176 /* case 4: reserved */
177 case 5: /* 6 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178 return 12;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400179 case 6: /* 9 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200180 return 18;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400181 case 7: /* 12 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182 return 24;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400183 case 8: /* 18 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184 return 36;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400185 case 9: /* 24 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186 return 48;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400187 case 10: /* 36 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188 return 72;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400189 case 11: /* 48 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190 return 96;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400191 case 12: /* 54 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200192 return 108;
193 }
Holger Schurig9012b282007-05-25 11:27:16 -0400194 lbs_pr_alert("Invalid Marvell WLAN rate %i\n", rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 return 0;
196}
197
198/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700199 * process_rxed_802_11_packet - processes a received 802.11 packet and forwards
200 * it to kernel/upper layer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700202 * @priv: A pointer to &struct lbs_private
203 * @skb: A pointer to skb which includes the received packet
204 * returns: 0 or -1
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205 */
Holger Schurig69f90322007-11-23 15:43:44 +0100206static int process_rxed_802_11_packet(struct lbs_private *priv,
207 struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200209 int ret = 0;
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000210 struct net_device *dev = priv->dev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211 struct rx80211packethdr *p_rx_pkt;
212 struct rxpd *prxpd;
213 struct rx_radiotap_hdr radiotap_hdr;
214 struct rx_radiotap_hdr *pradiotap_hdr;
215
Holger Schurig9012b282007-05-25 11:27:16 -0400216 lbs_deb_enter(LBS_DEB_RX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200217
218 p_rx_pkt = (struct rx80211packethdr *) skb->data;
219 prxpd = &p_rx_pkt->rx_pd;
220
Stewart Malik819cf152010-03-11 20:28:29 +1030221 /* lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100)); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200222
223 if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
David Woodhouse7bf02c22007-12-10 00:17:28 -0500224 lbs_deb_rx("rx err: frame received with bad length\n");
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000225 dev->stats.rx_length_errors++;
David Woodhouse7bf02c22007-12-10 00:17:28 -0500226 ret = -EINVAL;
Sergio Luisb700a982008-10-26 23:09:27 -0700227 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200228 goto done;
229 }
230
Holger Schurig9012b282007-05-25 11:27:16 -0400231 lbs_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200232 skb->len, sizeof(struct rxpd), skb->len - sizeof(struct rxpd));
233
234 /* create the exported radio header */
David Woodhouse180be752007-12-10 00:05:37 -0500235
236 /* radiotap header */
Prarit Bhargavac6a63682010-05-27 14:41:20 -0400237 memset(&radiotap_hdr, 0, sizeof(radiotap_hdr));
238 /* XXX must check radiotap_hdr.hdr.it_pad for pad */
David Woodhouse180be752007-12-10 00:05:37 -0500239 radiotap_hdr.hdr.it_len = cpu_to_le16 (sizeof(struct rx_radiotap_hdr));
240 radiotap_hdr.hdr.it_present = cpu_to_le32 (RX_RADIOTAP_PRESENT);
David Woodhouse180be752007-12-10 00:05:37 -0500241 radiotap_hdr.rate = convert_mv_rate_to_radiotap(prxpd->rx_rate);
242 /* XXX must check no carryout */
243 radiotap_hdr.antsignal = prxpd->snr + prxpd->nf;
David Woodhouse180be752007-12-10 00:05:37 -0500244
245 /* chop the rxpd */
246 skb_pull(skb, sizeof(struct rxpd));
247
248 /* add space for the new radio header */
249 if ((skb_headroom(skb) < sizeof(struct rx_radiotap_hdr)) &&
David Woodhouse7bf02c22007-12-10 00:17:28 -0500250 pskb_expand_head(skb, sizeof(struct rx_radiotap_hdr), 0, GFP_ATOMIC)) {
251 lbs_pr_alert("%s: couldn't pskb_expand_head\n", __func__);
252 ret = -ENOMEM;
253 kfree_skb(skb);
254 goto done;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400255 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256
David Woodhouse180be752007-12-10 00:05:37 -0500257 pradiotap_hdr = (void *)skb_push(skb, sizeof(struct rx_radiotap_hdr));
258 memcpy(pradiotap_hdr, &radiotap_hdr, sizeof(struct rx_radiotap_hdr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530260 priv->cur_rate = lbs_fw_index_to_data_rate(prxpd->rx_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261
Holger Schurig9012b282007-05-25 11:27:16 -0400262 lbs_deb_rx("rx data: size of actual packet %d\n", skb->len);
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000263 dev->stats.rx_bytes += skb->len;
264 dev->stats.rx_packets++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530266 skb->protocol = eth_type_trans(skb, priv->dev);
267
268 if (in_interrupt())
269 netif_rx(skb);
270 else
271 netif_rx_ni(skb);
Florin Malita3d4bd242007-05-18 16:04:33 -0400272
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200273 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200274
Holger Schurig9012b282007-05-25 11:27:16 -0400275done:
Holger Schurig9012b282007-05-25 11:27:16 -0400276 lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret);
277 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200278}