Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file contains the handling of RX in wlan driver. |
| 3 | */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 4 | #include <linux/etherdevice.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 5 | #include <linux/slab.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 6 | #include <linux/types.h> |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 7 | #include <net/cfg80211.h> |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 8 | |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 9 | #include "defs.h" |
Holger Schurig | 9e66e70 | 2009-10-16 17:32:16 +0200 | [diff] [blame] | 10 | #include "host.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 11 | #include "radiotap.h" |
| 12 | #include "decl.h" |
| 13 | #include "dev.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 14 | |
| 15 | struct eth803hdr { |
| 16 | u8 dest_addr[6]; |
| 17 | u8 src_addr[6]; |
| 18 | u16 h803_len; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 19 | } __packed; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 20 | |
| 21 | struct rfc1042hdr { |
| 22 | u8 llc_dsap; |
| 23 | u8 llc_ssap; |
| 24 | u8 llc_ctrl; |
| 25 | u8 snap_oui[3]; |
| 26 | u16 snap_type; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 27 | } __packed; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 28 | |
| 29 | struct rxpackethdr { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 30 | struct eth803hdr eth803_hdr; |
| 31 | struct rfc1042hdr rfc1042_hdr; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 32 | } __packed; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 33 | |
| 34 | struct rx80211packethdr { |
| 35 | struct rxpd rx_pd; |
| 36 | void *eth80211_hdr; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 37 | } __packed; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 38 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 39 | static int process_rxed_802_11_packet(struct lbs_private *priv, |
| 40 | struct sk_buff *skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 41 | |
| 42 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 43 | * lbs_process_rxed_packet - processes received packet and forwards it |
| 44 | * to kernel/upper layer |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 45 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 46 | * @priv: A pointer to &struct lbs_private |
| 47 | * @skb: A pointer to skb which includes the received packet |
| 48 | * returns: 0 or -1 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 49 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 50 | int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 51 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 52 | int ret = 0; |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 53 | struct net_device *dev = priv->dev; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 54 | struct rxpackethdr *p_rx_pkt; |
| 55 | struct rxpd *p_rx_pd; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 56 | int hdrchop; |
| 57 | struct ethhdr *p_ethhdr; |
Joe Perches | 482e039 | 2010-11-20 18:38:58 -0800 | [diff] [blame] | 58 | static const u8 rfc1042_eth_hdr[] = { |
| 59 | 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 |
| 60 | }; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 61 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 62 | lbs_deb_enter(LBS_DEB_RX); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 63 | |
Holger Schurig | 7919b89 | 2008-04-01 14:50:43 +0200 | [diff] [blame] | 64 | BUG_ON(!skb); |
| 65 | |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 66 | skb->ip_summed = CHECKSUM_NONE; |
| 67 | |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 68 | if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 69 | return process_rxed_802_11_packet(priv, skb); |
| 70 | |
Bing Zhao | e45d8e5 | 2009-04-06 15:50:56 -0700 | [diff] [blame] | 71 | 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 Schurig | e0e42da | 2009-11-25 13:10:15 +0100 | [diff] [blame] | 74 | |
| 75 | dev = lbs_mesh_set_dev(priv, dev, p_rx_pd); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 76 | |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 77 | lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 78 | min_t(unsigned int, skb->len, 100)); |
| 79 | |
| 80 | if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) { |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 81 | lbs_deb_rx("rx err: frame received with bad length\n"); |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 82 | dev->stats.rx_length_errors++; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 83 | ret = 0; |
Philip Rakity | f54930f | 2009-04-07 12:41:17 -0700 | [diff] [blame] | 84 | dev_kfree_skb(skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 85 | goto done; |
| 86 | } |
| 87 | |
Bing Zhao | e45d8e5 | 2009-04-06 15:50:56 -0700 | [diff] [blame] | 88 | lbs_deb_rx("rx data: skb->len - pkt_ptr = %d-%zd = %zd\n", |
John W. Linville | a2caba6 | 2009-04-14 11:45:57 -0400 | [diff] [blame] | 89 | 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 Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 91 | |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 92 | lbs_deb_hex(LBS_DEB_RX, "RX Data: Dest", p_rx_pkt->eth803_hdr.dest_addr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 93 | sizeof(p_rx_pkt->eth803_hdr.dest_addr)); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 94 | lbs_deb_hex(LBS_DEB_RX, "RX Data: Src", p_rx_pkt->eth803_hdr.src_addr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 95 | 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 Malik | 819cf15 | 2010-03-11 20:28:29 +1030 | [diff] [blame] | 110 | ((u8 *) &p_rx_pkt->eth803_hdr |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 111 | + 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 Zhao | e45d8e5 | 2009-04-06 15:50:56 -0700 | [diff] [blame] | 124 | hdrchop = (u8 *)p_ethhdr - (u8 *)p_rx_pd; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 125 | } else { |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 126 | lbs_deb_hex(LBS_DEB_RX, "RX Data: LLC/SNAP", |
Stewart Malik | 819cf15 | 2010-03-11 20:28:29 +1030 | [diff] [blame] | 127 | (u8 *) &p_rx_pkt->rfc1042_hdr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 128 | sizeof(p_rx_pkt->rfc1042_hdr)); |
| 129 | |
| 130 | /* Chop off the rxpd */ |
Bing Zhao | e45d8e5 | 2009-04-06 15:50:56 -0700 | [diff] [blame] | 131 | hdrchop = (u8 *)&p_rx_pkt->eth803_hdr - (u8 *)p_rx_pd; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 132 | } |
| 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 Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 139 | priv->cur_rate = lbs_fw_index_to_data_rate(p_rx_pd->rx_rate); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 140 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 141 | lbs_deb_rx("rx data: size of actual packet %d\n", skb->len); |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 142 | dev->stats.rx_bytes += skb->len; |
| 143 | dev->stats.rx_packets++; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 144 | |
David Woodhouse | 6f93a8e | 2007-12-10 00:49:26 -0500 | [diff] [blame] | 145 | skb->protocol = eth_type_trans(skb, dev); |
Holger Schurig | ae3e0fc | 2008-01-16 15:48:44 +0100 | [diff] [blame] | 146 | if (in_interrupt()) |
| 147 | netif_rx(skb); |
| 148 | else |
| 149 | netif_rx_ni(skb); |
Florin Malita | 3d4bd24 | 2007-05-18 16:04:33 -0400 | [diff] [blame] | 150 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 151 | ret = 0; |
| 152 | done: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 153 | lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 154 | return ret; |
| 155 | } |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 156 | EXPORT_SYMBOL_GPL(lbs_process_rxed_packet); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 157 | |
| 158 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 159 | * 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 Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 161 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 162 | * @rate: Input rate |
| 163 | * returns: Output Rate (0 if invalid) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 164 | */ |
| 165 | static 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 Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 176 | /* case 4: reserved */ |
| 177 | case 5: /* 6 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 178 | return 12; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 179 | case 6: /* 9 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 180 | return 18; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 181 | case 7: /* 12 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 182 | return 24; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 183 | case 8: /* 18 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 184 | return 36; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 185 | case 9: /* 24 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 186 | return 48; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 187 | case 10: /* 36 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 188 | return 72; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 189 | case 11: /* 48 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 190 | return 96; |
Luis Carlos Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 191 | case 12: /* 54 Mbps */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 192 | return 108; |
| 193 | } |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 194 | lbs_pr_alert("Invalid Marvell WLAN rate %i\n", rate); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | /** |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 199 | * process_rxed_802_11_packet - processes a received 802.11 packet and forwards |
| 200 | * it to kernel/upper layer |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 201 | * |
Randy Dunlap | 8973a6e | 2011-04-26 15:25:29 -0700 | [diff] [blame] | 202 | * @priv: A pointer to &struct lbs_private |
| 203 | * @skb: A pointer to skb which includes the received packet |
| 204 | * returns: 0 or -1 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 205 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 206 | static int process_rxed_802_11_packet(struct lbs_private *priv, |
| 207 | struct sk_buff *skb) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 208 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 209 | int ret = 0; |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 210 | struct net_device *dev = priv->dev; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 211 | 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 Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 216 | lbs_deb_enter(LBS_DEB_RX); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 217 | |
| 218 | p_rx_pkt = (struct rx80211packethdr *) skb->data; |
| 219 | prxpd = &p_rx_pkt->rx_pd; |
| 220 | |
Stewart Malik | 819cf15 | 2010-03-11 20:28:29 +1030 | [diff] [blame] | 221 | /* lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100)); */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 222 | |
| 223 | if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) { |
David Woodhouse | 7bf02c2 | 2007-12-10 00:17:28 -0500 | [diff] [blame] | 224 | lbs_deb_rx("rx err: frame received with bad length\n"); |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 225 | dev->stats.rx_length_errors++; |
David Woodhouse | 7bf02c2 | 2007-12-10 00:17:28 -0500 | [diff] [blame] | 226 | ret = -EINVAL; |
Sergio Luis | b700a98 | 2008-10-26 23:09:27 -0700 | [diff] [blame] | 227 | kfree_skb(skb); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 228 | goto done; |
| 229 | } |
| 230 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 231 | lbs_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 232 | skb->len, sizeof(struct rxpd), skb->len - sizeof(struct rxpd)); |
| 233 | |
| 234 | /* create the exported radio header */ |
David Woodhouse | 180be75 | 2007-12-10 00:05:37 -0500 | [diff] [blame] | 235 | |
| 236 | /* radiotap header */ |
Prarit Bhargava | c6a6368 | 2010-05-27 14:41:20 -0400 | [diff] [blame] | 237 | memset(&radiotap_hdr, 0, sizeof(radiotap_hdr)); |
| 238 | /* XXX must check radiotap_hdr.hdr.it_pad for pad */ |
David Woodhouse | 180be75 | 2007-12-10 00:05:37 -0500 | [diff] [blame] | 239 | 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 Woodhouse | 180be75 | 2007-12-10 00:05:37 -0500 | [diff] [blame] | 241 | 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 Woodhouse | 180be75 | 2007-12-10 00:05:37 -0500 | [diff] [blame] | 244 | |
| 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 Woodhouse | 7bf02c2 | 2007-12-10 00:17:28 -0500 | [diff] [blame] | 250 | 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 Cobo | 965f8bbc | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 255 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 256 | |
David Woodhouse | 180be75 | 2007-12-10 00:05:37 -0500 | [diff] [blame] | 257 | pradiotap_hdr = (void *)skb_push(skb, sizeof(struct rx_radiotap_hdr)); |
| 258 | memcpy(pradiotap_hdr, &radiotap_hdr, sizeof(struct rx_radiotap_hdr)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 259 | |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 260 | priv->cur_rate = lbs_fw_index_to_data_rate(prxpd->rx_rate); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 261 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 262 | lbs_deb_rx("rx data: size of actual packet %d\n", skb->len); |
Stephen Hemminger | bbfc6b7 | 2009-03-20 19:36:36 +0000 | [diff] [blame] | 263 | dev->stats.rx_bytes += skb->len; |
| 264 | dev->stats.rx_packets++; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 265 | |
Kiran Divekar | e86dc1c | 2010-06-14 22:01:26 +0530 | [diff] [blame] | 266 | 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 Malita | 3d4bd24 | 2007-05-18 16:04:33 -0400 | [diff] [blame] | 272 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 273 | ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 274 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 275 | done: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 276 | lbs_deb_leave_args(LBS_DEB_RX, "ret %d", ret); |
| 277 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 278 | } |