/** * lbs_process_rxed_packet - processes received packet and forwards it * to kernel/upper layer * * @priv: A pointer to &struct lbs_private * @skb: A pointer to skb which includes the received packet * returns: 0 or -1
*/ int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb)
{ int ret = 0; struct net_device *dev = priv->dev; struct rxpackethdr *p_rx_pkt; struct rxpd *p_rx_pd; int hdrchop; struct ethhdr *p_ethhdr;
BUG_ON(!skb);
skb->ip_summed = CHECKSUM_NONE;
if (priv->wdev->iftype == NL80211_IFTYPE_MONITOR) {
ret = process_rxed_802_11_packet(priv, skb); goto done;
}
lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data,
min_t(unsignedint, skb->len, 100));
if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
lbs_deb_rx("rx err: frame received with bad length\n");
dev->stats.rx_length_errors++;
ret = -EINVAL;
dev_kfree_skb(skb); goto done;
}
if (memcmp(&p_rx_pkt->rfc1042_hdr,
rfc1042_header, sizeof(rfc1042_header)) == 0) { /* * Replace the 803 header and rfc1042 header (llc/snap) with an * EthernetII header, keep the src/dst and snap_type (ethertype) * * The firmware only passes up SNAP frames converting * all RX Data from 802.11 to 802.2/LLC/SNAP frames. * * To create the Ethernet II, just move the src, dst address right * before the snap_type.
*/
p_ethhdr = (struct ethhdr *)
((u8 *) &p_rx_pkt->eth803_hdr
+ sizeof(p_rx_pkt->eth803_hdr) + sizeof(p_rx_pkt->rfc1042_hdr)
- sizeof(p_rx_pkt->eth803_hdr.dest_addr)
- sizeof(p_rx_pkt->eth803_hdr.src_addr)
- sizeof(p_rx_pkt->rfc1042_hdr.snap_type));
/* Chop off the rxpd + the excess memory from the 802.2/llc/snap header * that was removed
*/
hdrchop = (u8 *)p_ethhdr - (u8 *)p_rx_pd;
} else {
lbs_deb_hex(LBS_DEB_RX, "RX Data: LLC/SNAP",
(u8 *) &p_rx_pkt->rfc1042_hdr, sizeof(p_rx_pkt->rfc1042_hdr));
/* Chop off the rxpd */
hdrchop = (u8 *)&p_rx_pkt->eth803_hdr - (u8 *)p_rx_pd;
}
/* Chop off the leading header bytes so the skb points to the start of * either the reconstructed EthII frame or the 802.2/llc/snap frame
*/
skb_pull(skb, hdrchop);
ret = 0;
done: return ret;
}
EXPORT_SYMBOL_GPL(lbs_process_rxed_packet);
/** * convert_mv_rate_to_radiotap - converts Tx/Rx rates from Marvell WLAN format * (see Table 2 in Section 3.1) to IEEE80211_RADIOTAP_RATE units (500 Kb/s) * * @rate: Input rate * returns: Output Rate (0 if invalid)
*/ static u8 convert_mv_rate_to_radiotap(u8 rate)
{ switch (rate) { case 0: /* 1 Mbps */ return 2; case 1: /* 2 Mbps */ return 4; case 2: /* 5.5 Mbps */ return 11; case 3: /* 11 Mbps */ return 22; /* case 4: reserved */ case 5: /* 6 Mbps */ return 12; case 6: /* 9 Mbps */ return 18; case 7: /* 12 Mbps */ return 24; case 8: /* 18 Mbps */ return 36; case 9: /* 24 Mbps */ return 48; case 10: /* 36 Mbps */ return 72; case 11: /* 48 Mbps */ return 96; case 12: /* 54 Mbps */ return 108;
}
pr_alert("Invalid Marvell WLAN rate %i\n", rate); return 0;
}
/** * process_rxed_802_11_packet - processes a received 802.11 packet and forwards * it to kernel/upper layer * * @priv: A pointer to &struct lbs_private * @skb: A pointer to skb which includes the received packet * returns: 0 or -1
*/ staticint process_rxed_802_11_packet(struct lbs_private *priv, struct sk_buff *skb)
{ int ret = 0; struct net_device *dev = priv->dev; struct rx80211packethdr *p_rx_pkt; struct rxpd *prxpd; struct rx_radiotap_hdr radiotap_hdr; struct rx_radiotap_hdr *pradiotap_hdr;
/* lbs_deb_hex(LBS_DEB_RX, "RX Data: Before chop rxpd", skb->data, min(skb->len, 100)); */
if (skb->len < (ETH_HLEN + 8 + sizeof(struct rxpd))) {
lbs_deb_rx("rx err: frame received with bad length\n");
dev->stats.rx_length_errors++;
ret = -EINVAL;
kfree_skb(skb); goto done;
}
/* radiotap header */
memset(&radiotap_hdr, 0, sizeof(radiotap_hdr)); /* XXX must check radiotap_hdr.hdr.it_pad for pad */
radiotap_hdr.hdr.it_len = cpu_to_le16 (sizeof(struct rx_radiotap_hdr));
radiotap_hdr.hdr.it_present = cpu_to_le32 (RX_RADIOTAP_PRESENT);
radiotap_hdr.rate = convert_mv_rate_to_radiotap(prxpd->rx_rate); /* XXX must check no carryout */
radiotap_hdr.antsignal = prxpd->snr + prxpd->nf;
/* chop the rxpd */
skb_pull(skb, sizeof(struct rxpd));
/* add space for the new radio header */ if ((skb_headroom(skb) < sizeof(struct rx_radiotap_hdr)) &&
pskb_expand_head(skb, sizeof(struct rx_radiotap_hdr), 0, GFP_ATOMIC)) {
netdev_alert(dev, "%s: couldn't pskb_expand_head\n", __func__);
ret = -ENOMEM;
kfree_skb(skb); goto done;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.