mac802154: rx: add CHECKSUM_UNNECESSARY
[deliverable/linux.git] / net / mac802154 / rx.c
CommitLineData
1cd829c8 1/*
2 * Copyright (C) 2007-2012 Siemens AG
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
1cd829c8 13 * Written by:
14 * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
15 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
16 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
17 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
18 */
19
20#include <linux/kernel.h>
21#include <linux/module.h>
1cd829c8 22#include <linux/netdevice.h>
23#include <linux/crc-ccitt.h>
24
25#include <net/mac802154.h>
26#include <net/ieee802154_netdev.h>
2a9820c9
AA
27#include <net/rtnetlink.h>
28#include <linux/nl802154.h>
1cd829c8 29
0f1556bc 30#include "ieee802154_i.h"
1cd829c8 31
2a9820c9
AA
32static int mac802154_process_data(struct net_device *dev, struct sk_buff *skb)
33{
75a46f0e 34 skb->ip_summed = CHECKSUM_UNNECESSARY;
702dcf99
AA
35 skb->protocol = htons(ETH_P_IEEE802154);
36
2a9820c9
AA
37 return netif_receive_skb(skb);
38}
39
40static int
41mac802154_subif_frame(struct ieee802154_sub_if_data *sdata, struct sk_buff *skb,
42 const struct ieee802154_hdr *hdr)
43{
44 __le16 span, sshort;
45 int rc;
46
47 pr_debug("getting packet via slave interface %s\n", sdata->dev->name);
48
49 spin_lock_bh(&sdata->mib_lock);
50
51 span = sdata->pan_id;
52 sshort = sdata->short_addr;
53
54 switch (mac_cb(skb)->dest.mode) {
55 case IEEE802154_ADDR_NONE:
56 if (mac_cb(skb)->dest.mode != IEEE802154_ADDR_NONE)
57 /* FIXME: check if we are PAN coordinator */
58 skb->pkt_type = PACKET_OTHERHOST;
59 else
60 /* ACK comes with both addresses empty */
61 skb->pkt_type = PACKET_HOST;
62 break;
63 case IEEE802154_ADDR_LONG:
64 if (mac_cb(skb)->dest.pan_id != span &&
65 mac_cb(skb)->dest.pan_id != cpu_to_le16(IEEE802154_PANID_BROADCAST))
66 skb->pkt_type = PACKET_OTHERHOST;
67 else if (mac_cb(skb)->dest.extended_addr == sdata->extended_addr)
68 skb->pkt_type = PACKET_HOST;
69 else
70 skb->pkt_type = PACKET_OTHERHOST;
71 break;
72 case IEEE802154_ADDR_SHORT:
73 if (mac_cb(skb)->dest.pan_id != span &&
74 mac_cb(skb)->dest.pan_id != cpu_to_le16(IEEE802154_PANID_BROADCAST))
75 skb->pkt_type = PACKET_OTHERHOST;
76 else if (mac_cb(skb)->dest.short_addr == sshort)
77 skb->pkt_type = PACKET_HOST;
78 else if (mac_cb(skb)->dest.short_addr ==
79 cpu_to_le16(IEEE802154_ADDR_BROADCAST))
80 skb->pkt_type = PACKET_BROADCAST;
81 else
82 skb->pkt_type = PACKET_OTHERHOST;
83 break;
84 default:
85 spin_unlock_bh(&sdata->mib_lock);
86 pr_debug("invalid dest mode\n");
87 kfree_skb(skb);
88 return NET_RX_DROP;
89 }
90
91 spin_unlock_bh(&sdata->mib_lock);
92
93 skb->dev = sdata->dev;
94
95 rc = mac802154_llsec_decrypt(&sdata->sec, skb);
96 if (rc) {
97 pr_debug("decryption failed: %i\n", rc);
98 goto fail;
99 }
100
101 sdata->dev->stats.rx_packets++;
102 sdata->dev->stats.rx_bytes += skb->len;
103
104 switch (mac_cb(skb)->type) {
105 case IEEE802154_FC_TYPE_DATA:
106 return mac802154_process_data(sdata->dev, skb);
107 default:
108 pr_warn("ieee802154: bad frame received (type = %d)\n",
109 mac_cb(skb)->type);
110 goto fail;
111 }
112
113fail:
114 kfree_skb(skb);
115 return NET_RX_DROP;
116}
117
118static void mac802154_print_addr(const char *name,
119 const struct ieee802154_addr *addr)
120{
121 if (addr->mode == IEEE802154_ADDR_NONE)
122 pr_debug("%s not present\n", name);
123
124 pr_debug("%s PAN ID: %04x\n", name, le16_to_cpu(addr->pan_id));
125 if (addr->mode == IEEE802154_ADDR_SHORT) {
126 pr_debug("%s is short: %04x\n", name,
127 le16_to_cpu(addr->short_addr));
128 } else {
129 u64 hw = swab64((__force u64)addr->extended_addr);
130
131 pr_debug("%s is hardware: %8phC\n", name, &hw);
132 }
133}
134
135static int mac802154_parse_frame_start(struct sk_buff *skb,
136 struct ieee802154_hdr *hdr)
137{
138 int hlen;
139 struct ieee802154_mac_cb *cb = mac_cb_init(skb);
140
141 hlen = ieee802154_hdr_pull(skb, hdr);
142 if (hlen < 0)
143 return -EINVAL;
144
145 skb->mac_len = hlen;
146
147 pr_debug("fc: %04x dsn: %02x\n", le16_to_cpup((__le16 *)&hdr->fc),
148 hdr->seq);
149
150 cb->type = hdr->fc.type;
151 cb->ackreq = hdr->fc.ack_request;
152 cb->secen = hdr->fc.security_enabled;
153
154 mac802154_print_addr("destination", &hdr->dest);
155 mac802154_print_addr("source", &hdr->source);
156
157 cb->source = hdr->source;
158 cb->dest = hdr->dest;
159
160 if (hdr->fc.security_enabled) {
161 u64 key;
162
163 pr_debug("seclevel %i\n", hdr->sec.level);
164
165 switch (hdr->sec.key_id_mode) {
166 case IEEE802154_SCF_KEY_IMPLICIT:
167 pr_debug("implicit key\n");
168 break;
169
170 case IEEE802154_SCF_KEY_INDEX:
171 pr_debug("key %02x\n", hdr->sec.key_id);
172 break;
173
174 case IEEE802154_SCF_KEY_SHORT_INDEX:
175 pr_debug("key %04x:%04x %02x\n",
176 le32_to_cpu(hdr->sec.short_src) >> 16,
177 le32_to_cpu(hdr->sec.short_src) & 0xffff,
178 hdr->sec.key_id);
179 break;
180
181 case IEEE802154_SCF_KEY_HW_INDEX:
182 key = swab64((__force u64)hdr->sec.extended_src);
183 pr_debug("key source %8phC %02x\n", &key,
184 hdr->sec.key_id);
185 break;
186 }
187 }
188
189 return 0;
190}
191
192static void
193mac802154_wpans_rx(struct ieee802154_local *local, struct sk_buff *skb)
194{
195 int ret;
196 struct ieee802154_sub_if_data *sdata;
197 struct ieee802154_hdr hdr;
198
199 ret = mac802154_parse_frame_start(skb, &hdr);
200 if (ret) {
201 pr_debug("got invalid frame\n");
202 kfree_skb(skb);
203 return;
204 }
205
206 rcu_read_lock();
207 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
208 if (sdata->type != IEEE802154_DEV_WPAN ||
209 !netif_running(sdata->dev))
210 continue;
211
212 mac802154_subif_frame(sdata, skb, &hdr);
213 skb = NULL;
214 break;
215 }
216 rcu_read_unlock();
217
218 if (skb)
219 kfree_skb(skb);
220}
221
4ca18be5
AA
222static void
223mac802154_monitors_rx(struct ieee802154_local *local, struct sk_buff *skb)
2a9820c9
AA
224{
225 struct sk_buff *skb2;
226 struct ieee802154_sub_if_data *sdata;
227 u16 crc = crc_ccitt(0, skb->data, skb->len);
228 u8 *data;
229
75a46f0e 230 skb->ip_summed = CHECKSUM_UNNECESSARY;
702dcf99
AA
231 skb->protocol = htons(ETH_P_IEEE802154);
232
2a9820c9
AA
233 rcu_read_lock();
234 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
235 if (sdata->type != IEEE802154_DEV_MONITOR ||
236 !netif_running(sdata->dev))
237 continue;
238
239 skb2 = skb_clone(skb, GFP_ATOMIC);
240 skb2->dev = sdata->dev;
241 skb2->pkt_type = PACKET_HOST;
242 data = skb_put(skb2, 2);
243 data[0] = crc & 0xff;
244 data[1] = crc >> 8;
245
246 netif_rx_ni(skb2);
247 }
248 rcu_read_unlock();
249}
250
469100d6 251void ieee802154_rx(struct ieee802154_hw *hw, struct sk_buff *skb)
1cd829c8 252{
60741361 253 struct ieee802154_local *local = hw_to_local(hw);
1cd829c8 254
469100d6
AA
255 WARN_ON_ONCE(softirq_count() == 0);
256
1cd829c8 257 skb_reset_mac_header(skb);
258
a5e1ec53 259 if (!(local->hw.flags & IEEE802154_HW_OMIT_CKSUM)) {
1cd829c8 260 u16 crc;
261
262 if (skb->len < 2) {
263 pr_debug("got invalid frame\n");
2d3b5b0a 264 goto fail;
1cd829c8 265 }
266 crc = crc_ccitt(0, skb->data, skb->len);
267 if (crc) {
268 pr_debug("CRC mismatch\n");
2d3b5b0a 269 goto fail;
1cd829c8 270 }
271 skb_trim(skb, skb->len - 2); /* CRC */
272 }
273
a5e1ec53
AA
274 mac802154_monitors_rx(local, skb);
275 mac802154_wpans_rx(local, skb);
2d3b5b0a
PB
276
277 return;
278
279fail:
280 kfree_skb(skb);
1cd829c8 281}
c5c47e67 282EXPORT_SYMBOL(ieee802154_rx);
1cd829c8 283
284void
5a504397 285ieee802154_rx_irqsafe(struct ieee802154_hw *hw, struct sk_buff *skb, u8 lqi)
1cd829c8 286{
60741361 287 struct ieee802154_local *local = hw_to_local(hw);
1cd829c8 288
c5c47e67
AA
289 mac_cb(skb)->lqi = lqi;
290 skb->pkt_type = IEEE802154_RX_MSG;
291 skb_queue_tail(&local->skb_queue, skb);
292 tasklet_schedule(&local->tasklet);
1cd829c8 293}
294EXPORT_SYMBOL(ieee802154_rx_irqsafe);
This page took 0.18471 seconds and 5 git commands to generate.