blob: 62e10eeadd7e11339ff4ee2b67cdf04d097a6bbf [file] [log] [blame]
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001/*
2 * This file contains the handling of RX in wlan driver.
3 */
Joe Perches0e4e06a2011-05-02 16:49:14 -07004
5#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
6
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02007#include <linux/etherdevice.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +00008#include <linux/hardirq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include <linux/types.h>
Kiran Divekare86dc1c2010-06-14 22:01:26 +053011#include <net/cfg80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012
Kiran Divekare86dc1c2010-06-14 22:01:26 +053013#include "defs.h"
Holger Schurig9e66e702009-10-16 17:32:16 +020014#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015#include "radiotap.h"
16#include "decl.h"
17#include "dev.h"
Daniel Drake49fee692011-07-21 20:43:17 +010018#include "mesh.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019
20struct eth803hdr {
21 u8 dest_addr[6];
22 u8 src_addr[6];
23 u16 h803_len;
Eric Dumazetba2d3582010-06-02 18:10:09 +000024} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025
26struct rfc1042hdr {
27 u8 llc_dsap;
28 u8 llc_ssap;
29 u8 llc_ctrl;
30 u8 snap_oui[3];
31 u16 snap_type;
Eric Dumazetba2d3582010-06-02 18:10:09 +000032} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020033
34struct rxpackethdr {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020035 struct eth803hdr eth803_hdr;
36 struct rfc1042hdr rfc1042_hdr;
Eric Dumazetba2d3582010-06-02 18:10:09 +000037} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020038
39struct rx80211packethdr {
40 struct rxpd rx_pd;
41 void *eth80211_hdr;
Eric Dumazetba2d3582010-06-02 18:10:09 +000042} __packed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020043
Holger Schurig69f90322007-11-23 15:43:44 +010044static int process_rxed_802_11_packet(struct lbs_private *priv,
45 struct sk_buff *skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020046
47/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070048 * lbs_process_rxed_packet - processes received packet and forwards it
49 * to kernel/upper layer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020050 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070051 * @priv: A pointer to &struct lbs_private
52 * @skb: A pointer to skb which includes the received packet
53 * returns: 0 or -1
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054 */
Holger Schurig69f90322007-11-23 15:43:44 +010055int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020056{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020057 int ret = 0;
David Woodhouse6f93a8e2007-12-10 00:49:26 -050058 struct net_device *dev = priv->dev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059 struct rxpackethdr *p_rx_pkt;
60 struct rxpd *p_rx_pd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061 int hdrchop;
62 struct ethhdr *p_ethhdr;
Joe Perches482e0392010-11-20 18:38:58 -080063 static const u8 rfc1042_eth_hdr[] = {
64 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00
65 };
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066
Holger Schurig9012b282007-05-25 11:27:16 -040067 lbs_deb_enter(LBS_DEB_RX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020068
Holger Schurig7919b892008-04-01 14:50:43 +020069 BUG_ON(!skb);
70
David Woodhouse6f93a8e2007-12-10 00:49:26 -050071 skb->ip_summed = CHECKSUM_NONE;
72
Kiran Divekare86dc1c2010-06-14 22:01:26 +053073 if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020074 return process_rxed_802_11_packet(priv, skb);
75
Bing Zhaoe45d8e52009-04-06 15:50:56 -070076 p_rx_pd = (struct rxpd *) skb->data;
77 p_rx_pkt = (struct rxpackethdr *) ((u8 *)p_rx_pd +
78 le32_to_cpu(p_rx_pd->pkt_ptr));
Holger Schurige0e42da2009-11-25 13:10:15 +010079
80 dev = lbs_mesh_set_dev(priv, dev, p_rx_pd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020081
Holger Schurigece56192007-08-02 11:53:06 -040082 lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083 min_t(unsigned int, skb->len, 100));
84
85 if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
Holger Schurig9012b282007-05-25 11:27:16 -040086 lbs_deb_rx("rx err: frame received with bad length\n");
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +000087 dev->stats.rx_length_errors++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020088 ret = 0;
Philip Rakityf54930f2009-04-07 12:41:17 -070089 dev_kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020090 goto done;
91 }
92
Bing Zhaoe45d8e52009-04-06 15:50:56 -070093 lbs_deb_rx("rx data: skb->len - pkt_ptr = %d-%zd = %zd\n",
John W. Linvillea2caba62009-04-14 11:45:57 -040094 skb->len, (size_t)le32_to_cpu(p_rx_pd->pkt_ptr),
95 skb->len - (size_t)le32_to_cpu(p_rx_pd->pkt_ptr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020096
Holger Schurigece56192007-08-02 11:53:06 -040097 lbs_deb_hex(LBS_DEB_RX, "RX Data: Dest", p_rx_pkt->eth803_hdr.dest_addr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020098 sizeof(p_rx_pkt->eth803_hdr.dest_addr));
Holger Schurigece56192007-08-02 11:53:06 -040099 lbs_deb_hex(LBS_DEB_RX, "RX Data: Src", p_rx_pkt->eth803_hdr.src_addr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200100 sizeof(p_rx_pkt->eth803_hdr.src_addr));
101
102 if (memcmp(&p_rx_pkt->rfc1042_hdr,
103 rfc1042_eth_hdr, sizeof(rfc1042_eth_hdr)) == 0) {
104 /*
105 * Replace the 803 header and rfc1042 header (llc/snap) with an
106 * EthernetII header, keep the src/dst and snap_type (ethertype)
107 *
108 * The firmware only passes up SNAP frames converting
109 * all RX Data from 802.11 to 802.2/LLC/SNAP frames.
110 *
111 * To create the Ethernet II, just move the src, dst address right
112 * before the snap_type.
113 */
114 p_ethhdr = (struct ethhdr *)
Stewart Malik819cf152010-03-11 20:28:29 +1030115 ((u8 *) &p_rx_pkt->eth803_hdr
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200116 + sizeof(p_rx_pkt->eth803_hdr) + sizeof(p_rx_pkt->rfc1042_hdr)
117 - sizeof(p_rx_pkt->eth803_hdr.dest_addr)
118 - sizeof(p_rx_pkt->eth803_hdr.src_addr)
119 - sizeof(p_rx_pkt->rfc1042_hdr.snap_type));
120
121 memcpy(p_ethhdr->h_source, p_rx_pkt->eth803_hdr.src_addr,
122 sizeof(p_ethhdr->h_source));
123 memcpy(p_ethhdr->h_dest, p_rx_pkt->eth803_hdr.dest_addr,
124 sizeof(p_ethhdr->h_dest));
125
126 /* Chop off the rxpd + the excess memory from the 802.2/llc/snap header
127 * that was removed
128 */
Bing Zhaoe45d8e52009-04-06 15:50:56 -0700129 hdrchop = (u8 *)p_ethhdr - (u8 *)p_rx_pd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130 } else {
Holger Schurigece56192007-08-02 11:53:06 -0400131 lbs_deb_hex(LBS_DEB_RX, "RX Data: LLC/SNAP",
Stewart Malik819cf152010-03-11 20:28:29 +1030132 (u8 *) &p_rx_pkt->rfc1042_hdr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200133 sizeof(p_rx_pkt->rfc1042_hdr));
134
135 /* Chop off the rxpd */
Bing Zhaoe45d8e52009-04-06 15:50:56 -0700136 hdrchop = (u8 *)&p_rx_pkt->eth803_hdr - (u8 *)p_rx_pd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200137 }
138
139 /* Chop off the leading header bytes so the skb points to the start of
140 * either the reconstructed EthII frame or the 802.2/llc/snap frame
141 */
142 skb_pull(skb, hdrchop);
143
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530144 priv->cur_rate = lbs_fw_index_to_data_rate(p_rx_pd->rx_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145
Holger Schurig9012b282007-05-25 11:27:16 -0400146 lbs_deb_rx("rx data: size of actual packet %d\n", skb->len);
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000147 dev->stats.rx_bytes += skb->len;
148 dev->stats.rx_packets++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200149
David Woodhouse6f93a8e2007-12-10 00:49:26 -0500150 skb->protocol = eth_type_trans(skb, dev);
Holger Schurigae3e0fc2008-01-16 15:48:44 +0100151 if (in_interrupt())
152 netif_rx(skb);
153 else
154 netif_rx_ni(skb);
Florin Malita3d4bd242007-05-18 16:04:33 -0400155
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200156 ret = 0;
157done:
Holger Schurig9012b282007-05-25 11:27:16 -0400158 lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159 return ret;
160}
Holger Schurig10078322007-11-15 18:05:47 -0500161EXPORT_SYMBOL_GPL(lbs_process_rxed_packet);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162
163/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700164 * convert_mv_rate_to_radiotap - converts Tx/Rx rates from Marvell WLAN format
165 * (see Table 2 in Section 3.1) to IEEE80211_RADIOTAP_RATE units (500 Kb/s)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200166 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700167 * @rate: Input rate
168 * returns: Output Rate (0 if invalid)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200169 */
170static u8 convert_mv_rate_to_radiotap(u8 rate)
171{
172 switch (rate) {
173 case 0: /* 1 Mbps */
174 return 2;
175 case 1: /* 2 Mbps */
176 return 4;
177 case 2: /* 5.5 Mbps */
178 return 11;
179 case 3: /* 11 Mbps */
180 return 22;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400181 /* case 4: reserved */
182 case 5: /* 6 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183 return 12;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400184 case 6: /* 9 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200185 return 18;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400186 case 7: /* 12 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187 return 24;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400188 case 8: /* 18 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200189 return 36;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400190 case 9: /* 24 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191 return 48;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400192 case 10: /* 36 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193 return 72;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400194 case 11: /* 48 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 return 96;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400196 case 12: /* 54 Mbps */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200197 return 108;
198 }
Joe Perches0e4e06a2011-05-02 16:49:14 -0700199 pr_alert("Invalid Marvell WLAN rate %i\n", rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200200 return 0;
201}
202
203/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700204 * process_rxed_802_11_packet - processes a received 802.11 packet and forwards
205 * it to kernel/upper layer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700207 * @priv: A pointer to &struct lbs_private
208 * @skb: A pointer to skb which includes the received packet
209 * returns: 0 or -1
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200210 */
Holger Schurig69f90322007-11-23 15:43:44 +0100211static int process_rxed_802_11_packet(struct lbs_private *priv,
212 struct sk_buff *skb)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200214 int ret = 0;
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000215 struct net_device *dev = priv->dev;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200216 struct rx80211packethdr *p_rx_pkt;
217 struct rxpd *prxpd;
218 struct rx_radiotap_hdr radiotap_hdr;
219 struct rx_radiotap_hdr *pradiotap_hdr;
220
Holger Schurig9012b282007-05-25 11:27:16 -0400221 lbs_deb_enter(LBS_DEB_RX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200222
223 p_rx_pkt = (struct rx80211packethdr *) skb->data;
224 prxpd = &p_rx_pkt->rx_pd;
225
Stewart Malik819cf152010-03-11 20:28:29 +1030226 /* lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100)); */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200227
228 if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
David Woodhouse7bf02c22007-12-10 00:17:28 -0500229 lbs_deb_rx("rx err: frame received with bad length\n");
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000230 dev->stats.rx_length_errors++;
David Woodhouse7bf02c22007-12-10 00:17:28 -0500231 ret = -EINVAL;
Sergio Luisb700a982008-10-26 23:09:27 -0700232 kfree_skb(skb);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200233 goto done;
234 }
235
Holger Schurig9012b282007-05-25 11:27:16 -0400236 lbs_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237 skb->len, sizeof(struct rxpd), skb->len - sizeof(struct rxpd));
238
239 /* create the exported radio header */
David Woodhouse180be752007-12-10 00:05:37 -0500240
241 /* radiotap header */
Prarit Bhargavac6a63682010-05-27 14:41:20 -0400242 memset(&radiotap_hdr, 0, sizeof(radiotap_hdr));
243 /* XXX must check radiotap_hdr.hdr.it_pad for pad */
David Woodhouse180be752007-12-10 00:05:37 -0500244 radiotap_hdr.hdr.it_len = cpu_to_le16 (sizeof(struct rx_radiotap_hdr));
245 radiotap_hdr.hdr.it_present = cpu_to_le32 (RX_RADIOTAP_PRESENT);
David Woodhouse180be752007-12-10 00:05:37 -0500246 radiotap_hdr.rate = convert_mv_rate_to_radiotap(prxpd->rx_rate);
247 /* XXX must check no carryout */
248 radiotap_hdr.antsignal = prxpd->snr + prxpd->nf;
David Woodhouse180be752007-12-10 00:05:37 -0500249
250 /* chop the rxpd */
251 skb_pull(skb, sizeof(struct rxpd));
252
253 /* add space for the new radio header */
254 if ((skb_headroom(skb) < sizeof(struct rx_radiotap_hdr)) &&
David Woodhouse7bf02c22007-12-10 00:17:28 -0500255 pskb_expand_head(skb, sizeof(struct rx_radiotap_hdr), 0, GFP_ATOMIC)) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700256 netdev_alert(dev, "%s: couldn't pskb_expand_head\n", __func__);
David Woodhouse7bf02c22007-12-10 00:17:28 -0500257 ret = -ENOMEM;
258 kfree_skb(skb);
259 goto done;
Luis Carlos Cobo965f8bb2007-08-02 13:16:55 -0400260 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200261
David Woodhouse180be752007-12-10 00:05:37 -0500262 pradiotap_hdr = (void *)skb_push(skb, sizeof(struct rx_radiotap_hdr));
263 memcpy(pradiotap_hdr, &radiotap_hdr, sizeof(struct rx_radiotap_hdr));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530265 priv->cur_rate = lbs_fw_index_to_data_rate(prxpd->rx_rate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266
Holger Schurig9012b282007-05-25 11:27:16 -0400267 lbs_deb_rx("rx data: size of actual packet %d\n", skb->len);
Stephen Hemmingerbbfc6b72009-03-20 19:36:36 +0000268 dev->stats.rx_bytes += skb->len;
269 dev->stats.rx_packets++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270
Kiran Divekare86dc1c2010-06-14 22:01:26 +0530271 skb->protocol = eth_type_trans(skb, priv->dev);
272
273 if (in_interrupt())
274 netif_rx(skb);
275 else
276 netif_rx_ni(skb);
Florin Malita3d4bd242007-05-18 16:04:33 -0400277
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200278 ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200279
Holger Schurig9012b282007-05-25 11:27:16 -0400280done:
Holger Schurig9012b282007-05-25 11:27:16 -0400281 lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret);
282 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200283}